/* ============================================================
   黑料 今日 · 今日黑料不隔夜
   设计系统 —「晨报暴击」编辑部风格
   米黄纸张 / 朱红油墨 / 电光紫 / 荧光黄绿
   ============================================================ */

:root{
  --paper:      #fbf6ec;
  --paper-2:    #f2e9d9;
  --paper-3:    #fffdf7;
  --ink:        #161210;
  --ink-soft:   #6b6157;
  --brand:      #ff3b2f;
  --brand-deep: #d6200f;
  --violet:     #5b3df5;
  --lime:       #d9ff4b;
  --line:       rgba(22,18,16,.14);
  --rule:       2px solid var(--ink);
  --hard:       6px 6px 0 var(--ink);
  --hard-sm:    4px 4px 0 var(--ink);
  --r:          8px;
}

/* 基础重置 */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

*::selection{ background:var(--brand); color:#fff; }
*::-moz-selection{ background:var(--brand); color:#fff; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x:hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(22,18,16,.055) 1px, transparent 1.2px),
    radial-gradient(rgba(255,59,47,.05) 1px, transparent 1.2px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{ line-height:1.15; letter-spacing:-.02em; }

/* 滚动条 — 油墨质感 */
::-webkit-scrollbar{ width:12px; }
::-webkit-scrollbar-track{ background:var(--paper-2); }
::-webkit-scrollbar-thumb{
  background:var(--ink);
  border:3px solid var(--paper-2);
  border-radius:99px;
}
::-webkit-scrollbar-thumb:hover{ background:var(--brand); }

/* ============================================================
   核心布局 — 必须居中
   ============================================================ */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

.section {
  padding:80px 0;
  position:relative;
}

.section:nth-child(even) {
  background: var(--paper-2);
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.section:nth-child(even)::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(
      -45deg,
      rgba(22,18,16,.028) 0 2px,
      transparent 2px 12px
  );
  pointer-events:none;
}

.section > .container{ position:relative; z-index:1; }

/* ============================================================
   导航 — 固定顶部
   ============================================================ */
.site-header {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:rgba(251,246,236,.88);
  -webkit-backdrop-filter:blur(14px) saturate(150%);
  backdrop-filter:blur(14px) saturate(150%);
  border-bottom:var(--rule);
}

.site-header::after{
  content:"";
  position:absolute; left:0; bottom:-5px; width:100%; height:3px;
  background: repeating-linear-gradient(
      90deg,
      var(--brand) 0 18px,
      transparent 18px 30px
  );
  opacity:.5;
  pointer-events:none;
}

.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:8px;
  font-weight:700; font-size:1.2rem;
  text-decoration:none; color:inherit;
  letter-spacing:-.03em;
  white-space:nowrap;
}

.logo span{ font-weight:900; }

.logo-icon {
  width:36px; height:36px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color:#fff;
  font-weight:900;
  border:var(--rule);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-7deg);
  transition: transform .3s cubic-bezier(.2,.9,.3,1.4), box-shadow .3s;
}

.logo:hover .logo-icon{
  transform: rotate(7deg) scale(1.06);
  box-shadow: 4px 4px 0 var(--violet);
}

.main-nav {
  display:flex; align-items:center; gap:24px; list-style:none;
}

.main-nav a {
  text-decoration:none; font-size:.9rem; font-weight:500;
  transition:0.2s;
  position:relative;
  color:var(--ink);
  padding:4px 0;
  letter-spacing:.02em;
}

.main-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:3px;
  background: var(--brand);
  transition: width .28s cubic-bezier(.4,0,.2,1);
}

.main-nav a:not(.nav-cta):hover{ color:var(--brand); }
.main-nav a:not(.nav-cta):hover::after{ width:100%; }

.nav-cta {
  padding:8px 20px; border-radius:999px; color:#fff!important;
  font-weight:600;
  background: var(--ink);
  border:var(--rule);
  box-shadow: 3px 3px 0 var(--brand);
  transition: transform .18s, box-shadow .18s, background .18s;
}

.nav-cta:hover{
  background: var(--brand);
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.menu-toggle {
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  background:var(--paper-3);
  border:var(--rule);
  border-radius:8px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor:pointer;
  font-size:1.1rem;
  font-weight:900;
  line-height:1;
  color:var(--ink);
}

.menu-toggle::before{ content:"≡"; font-size:1.4rem; line-height:1; }

/* ============================================================
   首页 Hero — 巨型报纸头版
   ============================================================ */
.hero {
  min-height:70vh;
  display:flex; align-items:center;
  padding:150px 0 90px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"今日黑料";
  position:absolute;
  right:-4%; top:16%;
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight:900;
  line-height:.85;
  letter-spacing:-.06em;
  color:transparent;
  -webkit-text-stroke: 2px rgba(255,59,47,.18);
  pointer-events:none;
  user-select:none;
  z-index:0;
  white-space:nowrap;
}

.hero::after{
  content:"";
  position:absolute;
  left:-80px; bottom:-80px;
  width:280px; height:280px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(91,61,245,.22), transparent 65%);
  pointer-events:none;
}

.hero > .container{ position:relative; z-index:2; }

.hero-content { max-width:720px; }

.hero-eyebrow {
  display:inline-block; font-size:.85rem; font-weight:600;
  padding:4px 14px; border-radius:20px;
  margin-bottom:16px;
  background: var(--lime);
  color: var(--ink);
  border: var(--rule);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  transform: rotate(-1.4deg);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.4rem);
  line-height:1.2; margin-bottom:20px;
  font-weight:900;
  letter-spacing:-.04em;
}

.hero h1::after{
  content:"";
  display:block;
  width:110px; height:10px;
  margin-top:22px;
  background: var(--brand);
  box-shadow: 6px 6px 0 var(--ink);
  transform: skewX(-12deg);
}

.hero p {
  font-size:1.1rem; opacity:0.7; max-width:560px; margin-bottom:32px;
  color: var(--ink-soft);
  opacity:1;
  line-height:1.8;
}

.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; }

.hero-image {
  border-radius:12px; overflow:hidden;
  border: var(--rule);
  box-shadow: 10px 10px 0 var(--lime), 10px 10px 0 2px var(--ink);
}

.hero-image img { width:100%; height:auto; }

/* ============================================================
   按钮 — 硬阴影新粗野
   ============================================================ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 28px; border-radius:999px;
  font-weight:600; cursor:pointer; border:none;
  text-decoration:none; transition:0.2s;
  position:relative;
  font-size:.95rem;
  letter-spacing:.02em;
}

.btn-primary {
  color:#fff;
  background: linear-gradient(160deg, var(--brand), var(--brand-deep));
  border: var(--rule);
  box-shadow: var(--hard-sm);
  font-weight:800;
}

.btn-primary:hover{
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-outline {
  background: var(--paper-3);
  border:1.5px solid;
  border: var(--rule);
  color: var(--ink);
  box-shadow: var(--hard-sm);
  font-weight:800;
}

.btn-outline:hover{
  background: var(--lime);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn::after{
  content:"→";
  font-weight:900;
  transition: transform .25s;
}
.btn:hover::after{ transform: translateX(4px); }

/* ============================================================
   标签 / 标题 — 编辑部导语
   ============================================================ */
.section-label {
  display:inline-block; font-size:0.8rem; font-weight:600;
  letter-spacing:2px; margin-bottom:12px;
  color: var(--brand);
  letter-spacing:.32em;
  text-transform:uppercase;
  font-weight:900;
}

.section-label::before{
  content:"";
  display:inline-block;
  width:10px; height:10px;
  background: var(--brand);
  margin-right:10px;
  transform: rotate(45deg) translateY(-1px);
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-bottom:14px;
  font-weight:900;
  letter-spacing:-.035em;
}

.section-desc {
  max-width:600px; opacity:0.7; margin-bottom:40px;
  color: var(--ink-soft);
  opacity:1;
  font-size:1.02rem;
  line-height:1.8;
}

/* ============================================================
   卡片网格
   ============================================================ */
.cards-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:24px;
}

.category-card {
  border-radius:12px; padding:28px;
  border:1px solid #eee;
  transition:0.2s;
  position:relative;
  background: var(--paper-3);
  border: var(--rule);
  border-radius: var(--r);
  box-shadow: 5px 5px 0 rgba(22,18,16,.13);
  overflow:hidden;
  isolation:isolate;
}

.category-card::before{
  content:"";
  position:absolute;
  left:0; top:0; width:0; height:6px;
  background: var(--brand);
  transition: width .4s cubic-bezier(.4,0,.2,1);
  z-index:2;
}

.category-card::after{
  content:"";
  position:absolute;
  right:-40px; bottom:-40px;
  width:120px; height:120px;
  border-radius:50%;
  background: var(--violet);
  opacity:0;
  transition:opacity .35s, transform .5s cubic-bezier(.4,0,.2,1);
  transform: scale(.6);
  z-index:0;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 0 var(--ink);
  transform: translate(-5px,-5px);
}

.category-card:hover::before{ width:100%; }
.category-card:hover::after{ opacity:.10; transform:scale(1); }

.category-card > *{ position:relative; z-index:1; }

.category-card h3{
  font-size:1.15rem;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-.02em;
}

.category-card p{
  color: var(--ink-soft);
  font-size:.95rem;
  line-height:1.75;
  margin-bottom:14px;
}

/* 卡片色彩轮换 */
.cards-grid .category-card:nth-child(3n+2)::before{ background: var(--violet); }
.cards-grid .category-card:nth-child(3n+3)::before{ background: var(--lime); }
.cards-grid .category-card:nth-child(3n+2)::after{ background: var(--brand); }
.cards-grid .category-card:nth-child(3n+3)::after{ background: var(--violet); }

.card-icon {
  width:48px; height:48px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; font-size:1.3rem;
  background: var(--violet);
  color:#fff;
  border: var(--rule);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .3s cubic-bezier(.2,.9,.3,1.4);
}

.category-card:nth-child(3n+2) .card-icon{
  background: var(--brand);
}
.category-card:nth-child(3n+3) .card-icon{
  background: var(--lime);
  color: var(--ink);
}
.category-card:hover .card-icon{ transform: rotate(-8deg) scale(1.05); }

.card-link {
  font-weight:600; font-size:0.85rem; text-decoration:none;
  color: var(--brand);
  font-weight:900;
  letter-spacing:.05em;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding-bottom:2px;
  border-bottom:2px solid transparent;
  transition:.25s;
}

.card-link::after{ content:"→"; transition:transform .25s; }
.card-link:hover{ border-bottom-color: var(--brand); }
.card-link:hover::after{ transform: translateX(4px); }

/* ============================================================
   特性块 — 图文咬合
   ============================================================ */
.feature-block {
  display:grid; grid-template-columns:1fr 1fr;
  gap:56px; align-items:center;
}

.feature-image {
  border-radius:12px; overflow:hidden;
  border: var(--rule);
  border-radius: var(--r);
  box-shadow: 10px 10px 0 var(--brand), 10px 10px 0 2px var(--ink);
  transition: transform .4s cubic-bezier(.2,.9,.3,1.2), box-shadow .4s;
}

.feature-image:hover{
  transform: translate(-4px,-4px) rotate(-.6deg);
  box-shadow: 16px 16px 0 var(--violet), 16px 16px 0 2px var(--ink);
}

.feature-image img { width:100%; height:auto; }

.feature-text { }

.feature-text h2{ margin-bottom:16px; }

.feature-text p{
  color: var(--ink-soft);
  line-height:1.85;
  margin-bottom:20px;
}

.feature-list { list-style:none; }

.feature-list li {
  padding:6px 0; display:flex; align-items:center; gap:8px;
  font-weight:600;
  font-size:.98rem;
  gap:12px;
}

.feature-list li::before {
  content:'✓';
  font-weight:700;
  display:grid;
  place-items:center;
  flex:0 0 22px;
  width:22px; height:22px;
  font-size:.72rem;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius:5px;
  box-shadow: 2px 2px 0 var(--ink);
}

/* ============================================================
   数据条
   ============================================================ */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px; text-align:center;
}

.stat-item {
  padding:24px; border-radius:12px;
  border:1px solid #eee;
  background: var(--paper-3);
  border: var(--rule);
  border-radius: var(--r);
  box-shadow: var(--hard-sm);
  transition: transform .25s, box-shadow .25s, background .25s;
  position:relative;
  overflow:hidden;
}

.stat-item:nth-child(odd){ transform: rotate(-.8deg); }
.stat-item:nth-child(even){ transform: rotate(.8deg); }

.stat-item:hover{
  transform: rotate(0) translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--brand);
  background: #fff;
}

.stat-number {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight:800;
  font-weight:900;
  letter-spacing:-.05em;
  color: var(--brand);
  line-height:1.1;
}

.stat-item:nth-child(2) .stat-number{ color: var(--violet); }
.stat-item:nth-child(3) .stat-number{ color: var(--ink); }
.stat-item:nth-child(4) .stat-number{ color: var(--brand-deep); }

.stat-label {
  font-size:0.9rem; opacity:0.6; margin-top:6px;
  color: var(--ink-soft);
  opacity:1;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
}

/* ============================================================
   内容墙
   ============================================================ */
.content-wall {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
}

.content-wall-item {
  border-radius:12px; overflow:hidden;
  border:1px solid #eee; transition:0.2s;
  background: var(--paper-3);
  border: var(--rule);
  border-radius: var(--r);
  box-shadow: 5px 5px 0 rgba(22,18,16,.13);
  display:flex;
  flex-direction:column;
}

.content-wall-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translate(-5px,-5px);
  box-shadow: 10px 10px 0 var(--ink);
}

.content-wall-item img {
  width:100%; height:200px; object-fit:cover;
  border-bottom: var(--rule);
  filter: saturate(1.05) contrast(1.03);
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .4s;
}

.content-wall-item:hover img{
  transform: scale(1.05);
  filter: saturate(1.25) contrast(1.08);
}

.content-wall-body { padding:20px; flex:1; display:flex; flex-direction:column; gap:8px; }

.content-wall-body h3{
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:-.02em;
}

.content-wall-body p{
  color: var(--ink-soft);
  font-size:.92rem;
  line-height:1.75;
}

.content-wall-body span,
.content-wall-body time{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--brand);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width:800px; margin:0 auto; }

.faq-item {
  border:1px solid #eee; border-radius:10px;
  margin-bottom:8px; overflow:hidden; cursor:pointer;
  background: var(--paper-3);
  border: var(--rule);
  border-radius: var(--r);
  margin-bottom:12px;
  box-shadow: 4px 4px 0 rgba(22,18,16,.12);
  transition: box-shadow .25s, transform .25s, background .25s;
}

.faq-item:hover{
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.faq-item .faq-question {
  padding:16px 20px; font-weight:600;
  display:flex; justify-content:space-between;
  align-items:center;
  gap:16px;
  font-weight:800;
  font-size:1rem;
  letter-spacing:-.01em;
}

.faq-item .faq-answer {
  padding:0 20px 16px; display:none; opacity:0.7;
  display:none;
  color: var(--ink-soft);
  line-height:1.85;
  opacity:1;
}

.faq-item.open {
  background: #fff;
  box-shadow: 7px 7px 0 var(--brand);
  transform: translate(-2px,-2px);
}

.faq-item.open .faq-question{
  color: var(--brand);
  border-bottom: 2px dashed var(--line);
  margin-bottom:14px;
}

.faq-item.open .faq-answer { display:block; }

/* ============================================================
   CTA横幅
   ============================================================ */
.cta-banner {
  padding:56px 24px; text-align:center; border-radius:12px;
  color:#fff;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(217,255,75,.35), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(255,255,255,.22), transparent 45%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 45%, var(--violet) 100%);
  border: var(--rule);
  border-radius: var(--r);
  box-shadow: 12px 12px 0 var(--ink);
}

.cta-banner::before{
  content:"不隔夜";
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%,-50%) rotate(-6deg);
  font-size: clamp(4rem, 15vw, 11rem);
  font-weight:900;
  letter-spacing:-.06em;
  color:transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.18);
  pointer-events:none;
  white-space:nowrap;
  z-index:0;
}

.cta-banner > *{ position:relative; z-index:1; }

.cta-banner h2 {
  color:#fff;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:14px;
}

.cta-banner p{
  max-width:560px;
  margin:0 auto 28px;
  opacity:.9;
  line-height:1.8;
}

.cta-banner .btn-primary {
  background:#fff;
  color: var(--ink) !important;
  border: var(--rule);
  box-shadow: 4px 4px 0 var(--ink);
}

.cta-banner .btn-primary:hover{
  background: var(--lime);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  padding:56px 0 28px;
  background: var(--paper-2);
  border-top: var(--rule);
  position:relative;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:0; left:0; width:100%; height:8px;
  background: repeating-linear-gradient(
      90deg,
      var(--brand) 0 26px,
      var(--ink) 26px 34px,
      transparent 34px 60px
  );
  opacity:.28;
}

.site-footer .container { }

.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-brand { }

.footer-brand p{
  color: var(--ink-soft);
  margin-top:14px;
  max-width:340px;
  line-height:1.85;
  font-size:.94rem;
}

.footer-col { }

.footer-col h4{
  font-size:.8rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:18px;
  color: var(--ink);
  padding-bottom:10px;
  border-bottom: 2px solid var(--ink);
  display:inline-block;
}

.footer-col ul{ list-style:none; }

.footer-col li{ margin-bottom:10px; }

.footer-col a{
  text-decoration:none;
  color: var(--ink-soft);
  font-size:.92rem;
  font-weight:500;
  transition:.22s;
  display:inline-block;
}

.footer-col a:hover{
  color: var(--brand);
  transform: translateX(4px);
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--ink);
  margin-top:40px; padding-top:20px; text-align:center;
  font-size:0.85rem;
  color: var(--ink-soft);
  letter-spacing:.04em;
}

.footer-bottom a{
  color: var(--brand);
  text-decoration:none;
  font-weight:700;
}

/* ============================================================
   工具类
   ============================================================ */
.text-accent {
  color: var(--brand);
  font-weight:900;
  background: linear-gradient(transparent 62%, var(--lime) 62%);
  padding:0 4px;
}

.text-center { text-align:center; }

.text-center .section-desc{ margin-left:auto; margin-right:auto; }
.text-center .section-title::after{
  content:"";
  display:block;
  width:60px; height:6px;
  background: var(--brand);
  margin:18px auto 0;
  transform: skewX(-14deg);
}

.seo-description {
  max-width:600px; margin:0 auto 48px; opacity:0.7;
  color: var(--ink-soft);
  opacity:1;
  line-height:1.9;
  text-align:center;
  font-size:.98rem;
}

.mt-0 { margin-top:0; }
.mb-0 { margin-bottom:0; }

/* 首屏以外的 section 轻微节奏 */
.section + .section{ }

/* ============================================================
   ⚠️ 响应式
   ============================================================ */
@media (max-width: 900px){
  .hero{ padding:130px 0 70px; }
  .hero::before{ font-size: clamp(4rem, 24vw, 9rem); top:auto; bottom:6%; right:-8%; }
  .feature-image{ box-shadow: 7px 7px 0 var(--brand), 7px 7px 0 2px var(--ink); }
}

@media (max-width: 768px) {
  .feature-block { grid-template-columns:1fr; gap:40px; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .main-nav { display:none; }
  .menu-toggle { display:flex; }

  .main-nav.open {
    display:flex; flex-direction:column;
    position:absolute; top:68px; left:0; width:100%;
    background:#fff;
    padding:20px;
    gap:6px;
    align-items:stretch;
    border-bottom: var(--rule);
    box-shadow: 0 10px 0 rgba(22,18,16,.06);
  }

  .main-nav.open a{
    padding:12px 8px;
    border-bottom:1px dashed var(--line);
    font-size:1rem;
    font-weight:600;
  }

  .main-nav.open .nav-cta{
    text-align:center;
    margin-top:10px;
    border-bottom: var(--rule);
  }

  .section{ padding:60px 0; }
  .hero{ min-height:auto; padding-top:120px; }
  .cta-banner{ box-shadow: 8px 8px 0 var(--ink); padding:44px 20px; }
  .stat-item:nth-child(odd),
  .stat-item:nth-child(even){ transform:none; }
}

@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; }
  .hero-buttons .btn{ width:100%; justify-content:center; }
  .hero h1::after{ width:80px; height:8px; margin-top:18px; }
  .section-title{ letter-spacing:-.03em; }
}