/* ============================================================
   黑料在线看 · 人设之下 真相在线
   Design System — "Ink & Evidence" Editorial Neo-Brutalism
   Palette: Bone Paper / Deep Aubergine Ink / Signal Magenta / Acid Lime
   ============================================================ */

:root {
  --paper:      #F7F3EA;
  --paper-deep: #EFE8DA;
  --paper-warm: #E8DFCD;
  --ink:        #1E1830;
  --ink-80:     rgba(30, 24, 48, 0.80);
  --ink-70:     rgba(30, 24, 48, 0.70);
  --ink-45:     rgba(30, 24, 48, 0.45);
  --ink-14:     rgba(30, 24, 48, 0.14);
  --ink-08:     rgba(30, 24, 48, 0.08);
  --pop:        #FF3B6B;
  --pop-soft:   #FFE3EA;
  --lime:       #C8F45B;
  --lime-soft:  #EDFBC9;
  --violet:     #6C4BF4;
  --cyan:       #57DDCC;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-soft: 0 18px 40px -22px rgba(30, 24, 48, 0.45);

  --font-display: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

/* ================= 基础重置 ================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  padding-top: 68px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

/* 纸张颗粒质感层 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
  background-image: radial-gradient(rgba(30, 24, 48, 0.055) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a { color: inherit; }

img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2.5px solid var(--pop);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================= 核心布局 ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--paper-deep);
}

/* 版块之间的档案分割线 */
.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink-14) 0 8px,
    transparent 8px 16px
  );
}

/* ================= 顶部导航 ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 243, 234, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1.5px solid var(--ink);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 100%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    var(--pop) 0 40px,
    var(--lime) 40px 80px,
    var(--violet) 80px 120px
  );
  opacity: 0.85;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--pop), var(--violet) 55%, var(--lime));
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-6deg);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.logo:hover .logo-icon {
  transform: rotate(8deg) scale(1.06);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-80);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--lime);
  transition: width 0.28s cubic-bezier(.65, 0, .35, 1);
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  background: var(--pop);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  background: var(--lime);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ================= Hero ================= */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 244, 91, 0.75), transparent 42%),
    radial-gradient(circle at 6% 88%, rgba(255, 59, 107, 0.16), transparent 44%),
    radial-gradient(circle at 55% 105%, rgba(108, 75, 244, 0.12), transparent 46%),
    var(--paper);
}

.hero::before {
  content: '真相 / EVIDENCE / 檔案 / DOSSIER';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--ink-45);
  white-space: nowrap;
  pointer-events: none;
}

.hero .container { width: 100%; }

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--lime-soft);
  border: 1.5px dashed var(--ink);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero h1 .text-accent {
  background: linear-gradient(transparent 58%, var(--lime) 58%, var(--lime) 94%, transparent 94%);
  padding: 0 0.08em;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.72;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  border-left: 3px solid var(--pop);
  padding-left: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--paper-deep);
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* ================= 按钮 ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.18s ease, background 0.2s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}

.btn-primary {
  color: #fff;
  background: var(--pop);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink-14);
}

.btn-outline:hover {
  background: var(--lime);
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

/* ================= 标签与标题 ================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--pop);
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--pop);
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-title::after {
  content: '';
  display: block;
  width: 68px;
  height: 8px;
  margin-top: 16px;
  background: var(--lime);
  border-radius: 999px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.68;
  margin-bottom: 44px;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ================= 卡片网格 ================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: dossier;
}

.category-card {
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  transition: transform 0.22s cubic-bezier(.34, 1.4, .64, 1), box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
  counter-increment: dossier;
  box-shadow: 3px 3px 0 var(--ink-08);
}

.category-card::before {
  content: 'FILE ' counter(dossier, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--ink-45);
}

.category-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--pop), var(--violet), var(--lime));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.32s cubic-bezier(.65, 0, .35, 1);
}

.category-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard);
  background: #fff;
}

.category-card:hover::after {
  transform: scaleY(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  background: var(--lime-soft);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.category-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.05);
  background: var(--pop-soft);
}

.category-card h3 {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.92rem;
  opacity: 0.66;
  line-height: 1.75;
  margin-bottom: 18px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
  transition: gap 0.22s ease, color 0.2s ease;
}

.card-link::after {
  content: '→';
  transition: transform 0.22s ease;
}

.card-link:hover {
  color: var(--pop);
  gap: 10px;
}

/* ================= 特性块 ================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
  background: var(--paper-deep);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.feature-text { }

.feature-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.feature-text p {
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 4px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--ink-14);
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  flex: 0 0 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--ink);
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  margin-top: 2px;
}

/* ================= 数据条 ================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px 26px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 3px 3px 0 var(--ink-08);
}

.stat-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
  background: #fff;
}

.stat-item:nth-child(1) .stat-number { color: var(--pop); }
.stat-item:nth-child(2) .stat-number { color: var(--violet); }
.stat-item:nth-child(3) .stat-number { color: #2C7A6B; }
.stat-item:nth-child(4) .stat-number { color: var(--ink); }

.stat-number {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ================= 内容墙 ================= */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.content-wall-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  transition: transform 0.24s cubic-bezier(.34, 1.4, .64, 1), box-shadow 0.24s ease;
  box-shadow: 3px 3px 0 var(--ink-08);
  display: flex;
  flex-direction: column;
}

.content-wall-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1.5px solid var(--ink);
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.5s cubic-bezier(.65, 0, .35, 1);
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 22px;
  flex: 1;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.35;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.7;
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink-14);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  flex: 0 0 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease;
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.72;
  line-height: 1.85;
  font-size: 0.94rem;
}

.faq-item.open {
  background: var(--lime-soft);
  box-shadow: var(--shadow-hard);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--pop);
  color: #fff;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ================= CTA 横幅 ================= */
.cta-banner {
  padding: 62px 40px;
  text-align: center;
  border-radius: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 244, 91, 0.45), transparent 40%),
    radial-gradient(circle at 88% 85%, rgba(255, 59, 107, 0.55), transparent 45%),
    linear-gradient(120deg, var(--violet), #3B2F87 60%, #241C55);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.cta-banner .btn-primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.cta-banner .btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

/* ================= 页脚 ================= */
.site-footer {
  padding: 62px 0 28px;
  background: var(--paper-warm);
  border-top: 1.5px solid var(--ink);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    var(--pop) 0 40px,
    var(--lime) 40px 80px,
    var(--violet) 80px 120px
  );
}

.site-footer .container { }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand { }

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.68;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
  opacity: 0.55;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-80);
  transition: color 0.2s ease, padding-left 0.22s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--pop);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--ink-14);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--ink-70);
}

/* ================= 工具类 ================= */
.text-accent {
  display: inline;
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(transparent 60%, var(--lime) 60%);
  padding: 0 0.06em;
  border-radius: 2px;
}

.text-center { text-align: center; }

.text-center .section-label::before { display: none; }

.text-center .section-title::after { margin-left: auto; margin-right: auto; }

.text-center .section-desc { margin-left: auto; margin-right: auto; }

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.68;
  line-height: 1.85;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ================= 响应式 ================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }

  .section { padding: 62px 0; }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-image { box-shadow: 7px 7px 0 var(--lime); }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav {
    display: none;
  }

  .menu-toggle { display: flex; }

  .site-header:has(.main-nav.open) { background: var(--paper); }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--paper);
    padding: 18px 24px 26px;
    border-bottom: 1.5px solid var(--ink);
    box-shadow: 0 22px 40px -26px rgba(30, 24, 48, 0.6);
  }

  .main-nav.open li { width: 100%; }

  .main-nav.open a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px dashed var(--ink-14);
  }

  .main-nav.open .nav-cta {
    margin-top: 14px;
    display: inline-block;
    width: auto;
    border-bottom: 1.5px solid var(--ink);
    padding: 10px 22px;
  }

  .hero { padding: 72px 0 64px; }
  .hero::before { display: none; }
  .hero p { border-left-width: 2px; padding-left: 14px; }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }

  .cta-banner {
    padding: 44px 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .section-title::after { width: 54px; height: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}