/* 抖阴官方网站 - dyvip.pics */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a28;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --accent-cyan: #25f4ee;
  --accent-magenta: #fe2c55;
  --accent-red: #ff2d55;
  --border-color: #2a2a3a;
  --max-width: 1200px;
  --header-height: 64px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-magenta);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-link img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li {
  flex-shrink: 0;
}

.nav-desktop a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  display: block;
  padding: 6px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
  z-index: 999;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 60px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-magenta), #d91a4a);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.4);
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Main content */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.section {
  margin-bottom: 64px;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-magenta);
  display: inline-block;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--accent-cyan);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Screenshot gallery */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.screenshot-item {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
}

.screenshot-item:hover {
  transform: scale(1.02);
}

.screenshot-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}

.screenshot-caption {
  padding: 14px 16px;
}

.screenshot-caption h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.screenshot-caption p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Article content */
.article-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--accent-cyan);
}

.article-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  text-align: justify;
}

.article-content ul,
.article-content ol {
  margin: 16px 0 16px 24px;
  color: var(--text-secondary);
}

.article-content li {
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--text-primary);
}

/* Category tags */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tag.active {
  background: var(--accent-magenta);
  border-color: var(--accent-magenta);
  color: #fff;
}

/* FAQ */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Download steps */
.steps {
  counter-reset: step;
  margin: 24px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h4 {
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Page header for subpages */
.page-header {
  padding: 48px 20px 32px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-secondary);
}

.page-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.page-body h2 {
  font-size: 1.35rem;
  margin: 32px 0 14px;
  color: var(--accent-cyan);
}

.page-body h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}

.page-body p,
.page-body li {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}

.page-body ul,
.page-body ol {
  margin: 14px 0 14px 24px;
}

/* Error pages */
.error-page {
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.error-title {
  font-size: 1.5rem;
  margin: 16px 0 12px;
}

.error-desc {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 20px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--accent-cyan);
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

/* Internal link highlight */
.internal-link {
  color: var(--accent-cyan);
  border-bottom: 1px dashed var(--accent-cyan);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .header-inner {
    gap: 12px;
  }

  .hero {
    padding: 40px 16px 60px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .screenshot-item img {
    aspect-ratio: 9/14;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 首页专属排版 ===== */
.home-page {
  overflow-x: hidden;
}

.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 56px;
  min-height: calc(100vh - var(--header-height) - 80px);
}

.home-intro-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.home-intro-text h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, #fff 50%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.8;
}

.home-domain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  background: rgba(37, 244, 238, 0.08);
  border: 1px solid rgba(37, 244, 238, 0.25);
  padding: 6px 14px;
  margin-bottom: 24px;
}

.home-domain::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-btn-primary {
  background: var(--accent-magenta);
  color: #fff;
  border: none;
}

.home-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 44, 85, 0.45);
  color: #fff;
}

.home-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.home-btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.home-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.home-metric strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.home-metric span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-intro-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-phone {
  position: relative;
  width: min(280px, 90%);
  padding: 12px;
  background: #0d0d14;
  border-radius: 36px;
  border: 2px solid var(--border-color);
  box-shadow:
    -4px 0 0 rgba(37, 244, 238, 0.35),
    4px 0 0 rgba(254, 44, 85, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.6);
}

.home-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #2a2a3a;
  border-radius: 3px;
}

.home-phone img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}

.home-phone-tag {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--accent-magenta);
  color: var(--accent-magenta);
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
}

.home-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 14px 0;
  overflow: hidden;
}

.home-strip-inner {
  display: flex;
  gap: 40px;
  animation: homeMarquee 28s linear infinite;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.home-strip-inner span {
  flex-shrink: 0;
}

.home-strip-inner span::before {
  content: "◆ ";
  color: var(--accent-magenta);
}

@keyframes homeMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-channels {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 20px 24px;
}

.home-channels-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.home-channels-head h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.home-channels-head p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 360px;
  text-align: right;
}

.home-channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.home-channel-row a {
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: all 0.2s;
}

.home-channel-row a:hover,
.home-channel-row a.is-hot {
  color: #fff;
  background: var(--accent-magenta);
  border-color: var(--accent-magenta);
}

.home-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

.home-bento-cell {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.home-bento-cell:hover {
  border-color: rgba(37, 244, 238, 0.4);
}

.home-bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.home-bento-cell figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.82rem;
}

.home-bento-cell figcaption strong {
  display: block;
  margin-bottom: 2px;
}

.home-bento-cell figcaption span {
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.home-bento-a { grid-column: span 5; grid-row: span 2; min-height: 380px; }
.home-bento-b { grid-column: span 3; grid-row: span 2; min-height: 380px; }
.home-bento-c { grid-column: span 4; min-height: 180px; }
.home-bento-d { grid-column: span 4; min-height: 180px; }
.home-bento-e { grid-column: span 4; min-height: 180px; }
.home-bento-f { grid-column: span 3; min-height: 200px; }
.home-bento-g { grid-column: span 3; min-height: 200px; }
.home-bento-h { grid-column: span 3; min-height: 200px; }
.home-bento-i { grid-column: span 3; min-height: 200px; }

.home-bento-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-bento-text h3 {
  font-size: 1rem;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.home-bento-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.home-download-band {
  margin: 64px 0;
  background: linear-gradient(135deg, #12121a 0%, #1a1020 50%, #12121a 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 56px 20px;
}

.home-download-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.home-download-inner h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.home-download-inner > div > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.home-timeline {
  list-style: none;
  border-left: 2px solid var(--border-color);
  padding-left: 28px;
}

.home-timeline li {
  position: relative;
  padding-bottom: 28px;
}

.home-timeline li::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-magenta);
  box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.2);
}

.home-timeline li:last-child {
  padding-bottom: 0;
}

.home-timeline h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.home-timeline p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.home-reader {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.home-reader-main h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-cyan);
}

.home-reader-main h2:first-child {
  margin-top: 0;
}

.home-reader-main h3 {
  font-size: 1.05rem;
  color: var(--accent-magenta);
  margin: 24px 0 10px;
}

.home-reader-main p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 14px;
  text-align: justify;
}

.home-reader-main ul,
.home-reader-main ol {
  margin: 12px 0 16px 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.home-reader-main li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.home-reader-main strong {
  color: var(--text-primary);
}

.home-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.home-tag-cloud span {
  font-size: 0.78rem;
  padding: 5px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 2px;
}

.home-tag-cloud span:nth-child(3n) {
  border-color: rgba(37, 244, 238, 0.3);
  color: var(--accent-cyan);
}

.home-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 80px);
}

.home-sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 16px;
}

.home-sidebar-block h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.home-sidebar-block ul {
  list-style: none;
}

.home-sidebar-block li {
  margin-bottom: 10px;
}

.home-sidebar-block a {
  font-size: 0.88rem;
  color: var(--text-primary);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.home-sidebar-block a:hover {
  color: var(--accent-cyan);
  border-bottom-color: rgba(37, 244, 238, 0.3);
}

.home-sidebar-cta {
  background: linear-gradient(160deg, rgba(254,44,85,0.15), rgba(37,244,238,0.08));
  border-color: rgba(254, 44, 85, 0.3);
  text-align: center;
}

.home-sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.home-faq {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 64px;
}

.home-faq-head {
  margin-bottom: 28px;
}

.home-faq-head h2 {
  font-size: 1.6rem;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 20px 22px;
}

.home-faq-card h4 {
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.home-faq-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.home-legal-row {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-legal-item {
  padding: 22px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.home-legal-item:hover {
  border-color: var(--accent-cyan);
}

.home-legal-item h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.home-legal-item h3 a {
  color: var(--text-primary);
}

.home-legal-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .home-intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }

  .home-intro-visual {
    order: -1;
  }

  .home-phone {
    width: 220px;
  }

  .home-bento-a,
  .home-bento-b { grid-column: span 6; min-height: 300px; }
  .home-bento-c,
  .home-bento-d,
  .home-bento-e { grid-column: span 4; }
  .home-bento-f,
  .home-bento-g,
  .home-bento-h,
  .home-bento-i { grid-column: span 6; }

  .home-download-inner {
    grid-template-columns: 1fr;
  }

  .home-reader {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-legal-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-bento {
    grid-template-columns: 1fr;
  }

  .home-bento-a,
  .home-bento-b,
  .home-bento-c,
  .home-bento-d,
  .home-bento-e,
  .home-bento-f,
  .home-bento-g,
  .home-bento-h,
  .home-bento-i {
    grid-column: span 1;
    min-height: 240px;
  }

  .home-sidebar {
    grid-template-columns: 1fr;
  }

  .home-channels-head p {
    text-align: left;
  }
}
