@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800&family=Source+Serif+4:ital,opsz@0,8..60;1,8..60&display=swap');

:root{
  --red: #C8102E;
  --red-dark: #6E0D1B;
  --red-deep: #4A0812;
  --ink: #101012;
  --ink-soft: #26262a;
  --paper: #F7F4EF;
  --paper-dark: #ECE7DE;
  --white: #ffffff;
  --yellow: #FFD100;
  --blue: #1450A3;
  --line: rgba(16,16,18,0.12);
  --shadow: 0 20px 45px rgba(16,16,18,0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ff-display: 'Archivo Black', 'Archivo', sans-serif;
  --ff-body: 'Archivo', sans-serif;
  --ff-serif: 'Source Serif 4', serif;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{max-width:100%;display:block;}

a{color:inherit;text-decoration:none;}

ul{list-style:none;}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.visually-hidden{
  position:absolute;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-display);
  font-size:0.92rem;
  letter-spacing:0.02em;
  padding:16px 30px;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(16,16,18,0.25);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(16,16,18,0.3);
  background: var(--red);
}
.btn-primary i{color:var(--yellow);}
.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover{
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white{
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover{
  background: var(--yellow);
  transform: translateY(-3px);
}
.btn-block{width:100%;justify-content:center;}

/* ============ TOP TICKER ============ */
.top-ticker{
  background: var(--ink);
  color: var(--white);
  overflow:hidden;
  position:relative;
  height:38px;
  display:flex;
  align-items:center;
}
.top-ticker__tag{
  position:relative;
  z-index:2;
  background: var(--red);
  height:100%;
  display:flex;
  align-items:center;
  padding:0 16px;
  font-family:var(--ff-display);
  font-size:0.68rem;
  letter-spacing:0.08em;
  flex-shrink:0;
}
.top-ticker__track{
  display:flex;
  white-space:nowrap;
  animation: ticker 32s linear infinite;
}
.top-ticker__track span{
  padding:0 28px;
  font-size:0.8rem;
  font-family:var(--ff-serif);
  font-style:italic;
  opacity:0.9;
  border-right:1px solid rgba(255,255,255,0.25);
}
@keyframes ticker{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: var(--paper);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-display);
  font-size:1.15rem;
  letter-spacing:-0.01em;
}
.logo__mark{
  width:40px;height:40px;
  border-radius:11px;
  background: linear-gradient(155deg, var(--red) 0%, var(--red-dark) 60%, var(--red-deep) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-family:var(--ff-display);
  font-size:1rem;
  flex-shrink:0;
}
.logo__text span{color:var(--red);}
.nav__links{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav__links a{
  font-size:0.92rem;
  font-weight:600;
  position:relative;
  padding:6px 0;
}
.nav__links a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--red);
  transition:width .25s ease;
}
.nav__links a:hover::after{width:100%;}
.nav__cta{display:flex;align-items:center;gap:16px;}
.nav__burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav__burger span{
  width:26px;height:3px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}
.nav__burger.is-active span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.nav__burger.is-active span:nth-child(2){opacity:0;}
.nav__burger.is-active span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* ============ HERO ============ */
.hero{
  position:relative;
  background: linear-gradient(150deg, var(--red-dark) 0%, var(--red) 45%, #8a1223 100%);
  color:var(--white);
  overflow:hidden;
  padding:90px 0 0;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,209,0,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(20,80,163,0.25), transparent 45%);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
  padding-bottom:60px;
}
.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:999px;
  padding:8px 16px;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:24px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow i{color:var(--yellow);}
.hero h1{
  font-family:var(--ff-display);
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:1.04;
  letter-spacing:-0.01em;
  margin-bottom:22px;
}
.hero h1 .line{display:block;overflow:hidden;}
.hero h1 .line span{
  display:block;
  transform:translateY(110%);
  animation: reveal 0.9s cubic-bezier(.2,.9,.2,1) forwards;
}
.hero h1 .line:nth-child(2) span{animation-delay:0.12s;}
.hero h1 .line:nth-child(3) span{animation-delay:0.24s; color: var(--yellow);}
@keyframes reveal{to{transform:translateY(0);}}
.hero p.lead{
  font-family:var(--ff-serif);
  font-size:1.15rem;
  max-width:520px;
  color:rgba(255,255,255,0.88);
  margin-bottom:34px;
}
.hero__actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:38px;
}
.hero__meta{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}
.hero__meta div{display:flex;flex-direction:column;gap:2px;}
.hero__meta strong{font-family:var(--ff-display);font-size:1.5rem;}
.hero__meta span{font-size:0.78rem;text-transform:uppercase;letter-spacing:0.06em;color:rgba(255,255,255,0.7);}

.hero__visual{
  position:relative;
  display:flex;
  justify-content:center;
  z-index:2;
}
.hero__phone{
  position:relative;
  width:min(320px, 78vw);
  border-radius:38px;
  overflow:hidden;
  box-shadow: 0 40px 70px rgba(0,0,0,0.45);
  border:6px solid var(--ink);
  animation: float 6s ease-in-out infinite;
}
.hero__phone img{width:100%;height:auto;}
@keyframes float{
  0%,100%{transform:translateY(0) rotate(-1.5deg);}
  50%{transform:translateY(-16px) rotate(1.5deg);}
}
.hero__card{
  position:absolute;
  background:var(--white);
  color:var(--ink);
  border-radius:16px;
  padding:12px 16px;
  box-shadow:0 18px 30px rgba(0,0,0,0.28);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.82rem;
  font-weight:700;
  animation: floatCard 5s ease-in-out infinite;
}
.hero__card--alert{
  top:6%;
  left:-8%;
  animation-delay:.4s;
}
.hero__card--alert .dot{width:10px;height:10px;border-radius:50%;background:var(--red);flex-shrink:0;}
.hero__card--dark{
  bottom:10%;
  right:-6%;
  background: var(--ink);
  color:var(--white);
  animation-delay:1.1s;
}
.hero__card--dark i{color:var(--yellow);}
@keyframes floatCard{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}
.hero__wave{
  position:relative;
  z-index:2;
  height:64px;
  background: var(--paper);
  border-radius:60% 60% 0 0 / 100% 100% 0 0;
  margin-top:-2px;
}

/* ============ SECTION HEADINGS ============ */
.section{padding:100px 0;}
.section--tight{padding:70px 0;}
.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--red);
  margin-bottom:14px;
}
.tag::before{
  content:'';
  width:8px;height:8px;
  background:var(--red);
  border-radius:50%;
}
.section-head h2{
  font-family:var(--ff-display);
  font-size:clamp(1.9rem, 3.4vw, 2.7rem);
  line-height:1.12;
  margin-bottom:16px;
}
.section-head p{
  font-family:var(--ff-serif);
  font-size:1.05rem;
  color:var(--ink-soft);
}

/* ============ FEATURES ============ */
.bg-paper-dark{background:var(--paper-dark);}
.features__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.feature-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:32px 28px;
  border:1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative;
  overflow:hidden;
}
.feature-card::after{
  content:'';
  position:absolute;
  right:-40px;top:-40px;
  width:120px;height:120px;
  background: var(--red);
  opacity:0.05;
  border-radius:50%;
  transition: transform .4s ease;
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow: var(--shadow);
  border-color:transparent;
}
.feature-card:hover::after{transform:scale(1.6);}
.feature-card__icon{
  width:54px;height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  color:var(--white);
  margin-bottom:20px;
  position:relative;
  z-index:1;
}
.feature-card__icon.red{background:var(--red);}
.feature-card__icon.ink{background:var(--ink);}
.feature-card__icon.yellow{background:var(--yellow);color:var(--ink);}
.feature-card__icon.blue{background:var(--blue);}
.feature-card h3{
  font-family:var(--ff-display);
  font-size:1.15rem;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.feature-card p{
  font-size:0.94rem;
  color:var(--ink-soft);
  position:relative;
  z-index:1;
}

/* ============ SHOWCASE (alternating) ============ */
.showcase{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  margin-bottom:110px;
}
.showcase:last-child{margin-bottom:0;}
.showcase.reverse .showcase__media{order:2;}
.showcase.reverse .showcase__text{order:1;}
.showcase__media{
  position:relative;
  display:flex;
  justify-content:center;
}
.showcase__media img{
  border-radius:26px;
  border:6px solid var(--ink);
  box-shadow: var(--shadow);
  width:min(280px, 100%);
}
.showcase__badge{
  position:absolute;
  bottom:-18px;
  left:50%;
  transform:translateX(-50%);
  background:var(--ink);
  color:var(--white);
  padding:10px 22px;
  border-radius:999px;
  font-family:var(--ff-display);
  font-size:0.78rem;
  letter-spacing:0.05em;
  white-space:nowrap;
}
.showcase__text .tag{color:var(--blue);}
.showcase__text h3{
  font-family:var(--ff-display);
  font-size:clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom:18px;
  line-height:1.15;
}
.showcase__text p{
  color:var(--ink-soft);
  margin-bottom:22px;
  font-size:1.02rem;
}
.checklist{display:flex;flex-direction:column;gap:12px;}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:0.96rem;
}
.checklist i{
  color:var(--red);
  margin-top:3px;
}

/* ============ PODCASTS ============ */
.podcasts{background:var(--ink);color:var(--white);}
.podcasts .section-head h2{color:var(--white);}
.podcasts .section-head p{color:rgba(255,255,255,0.7);}
.podcasts .tag{color:var(--yellow);}
.podcast__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.podcast-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition: transform .3s ease, background .3s ease;
}
.podcast-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.07);
}
.podcast-card__cover{
  aspect-ratio:1/1;
  overflow:hidden;
}
.podcast-card__cover img{width:100%;height:100%;object-fit:cover;}
.podcast-card__body{padding:22px;}
.podcast-card__body span{
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--yellow);
}
.podcast-card__body h3{
  font-family:var(--ff-display);
  font-size:1.1rem;
  margin:8px 0 10px;
}
.podcast-card__body p{font-size:0.9rem;color:rgba(255,255,255,0.65);}

/* ============ STATS ============ */
.stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.stat-card{
  text-align:center;
  padding:36px 20px;
  border-radius:var(--radius-md);
  background:var(--white);
  border:1px solid var(--line);
}
.stat-card strong{
  display:block;
  font-family:var(--ff-display);
  font-size:2.4rem;
  color:var(--red);
}
.stat-card span{
  display:block;
  margin-top:8px;
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--ink-soft);
}

/* ============ TOPICS TAGS ============ */
.topics{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.topics a{
  padding:12px 22px;
  border-radius:999px;
  border:2px solid var(--ink);
  font-weight:700;
  font-size:0.92rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.topics a:hover{
  background:var(--ink);
  color:var(--white);
  transform:translateY(-3px);
}
.topics a.is-accent{
  border-color:var(--red);
  color:var(--red);
}
.topics a.is-accent:hover{background:var(--red);color:var(--white);}

/* ============ REVIEWS ============ */
.reviews__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.review-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:28px;
  border:1px solid var(--line);
  position:relative;
}
.review-card__stars{color:var(--yellow);margin-bottom:14px;letter-spacing:2px;}
.review-card p{font-family:var(--ff-serif);font-size:1rem;color:var(--ink-soft);margin-bottom:18px;}
.review-card__author{display:flex;align-items:center;gap:12px;}
.review-card__avatar{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--ff-display);
  font-size:0.9rem;
  flex-shrink:0;
}
.review-card__author strong{display:block;font-size:0.92rem;}
.review-card__author span{font-size:0.78rem;color:var(--ink-soft);}

/* ============ FAQ ============ */
.faq{max-width:760px;margin:0 auto;}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item__q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 4px;
  cursor:pointer;
  font-family:var(--ff-display);
  font-size:1.02rem;
}
.faq-item__q i{transition:transform .3s ease;color:var(--red);flex-shrink:0;}
.faq-item.is-open .faq-item__q i{transform:rotate(45deg);}
.faq-item__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-item__a p{padding:0 4px 22px;color:var(--ink-soft);font-size:0.96rem;max-width:640px;}

/* ============ FINAL CTA ============ */
.final-cta{
  position:relative;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 60%, var(--blue));
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:72px 48px;
  text-align:center;
  overflow:hidden;
  margin:0 24px;
  max-width:1152px;
  margin-inline:auto;
}
.final-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,209,0,0.2), transparent 40%);
}
.final-cta h2{
  position:relative;
  z-index:1;
  font-family:var(--ff-display);
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom:16px;
}
.final-cta p{
  position:relative;
  z-index:1;
  font-family:var(--ff-serif);
  font-size:1.1rem;
  max-width:480px;
  margin:0 auto 32px;
  color:rgba(255,255,255,0.9);
}
.final-cta .btn{position:relative;z-index:1;}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,0.75);
  padding:80px 0 30px;
  margin-top:110px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo{color:var(--white);margin-bottom:16px;}
.footer__brand p{
  font-size:0.92rem;
  max-width:320px;
  color:rgba(255,255,255,0.6);
  margin-bottom:20px;
}
.footer__brand address{font-size:0.85rem;font-style:normal;color:rgba(255,255,255,0.55);line-height:1.7;}
.footer h4{
  font-family:var(--ff-display);
  font-size:0.85rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:20px;
  color:var(--white);
}
.footer ul{display:flex;flex-direction:column;gap:12px;}
.footer ul a{
  font-size:0.92rem;
  color:rgba(255,255,255,0.65);
  transition:color .2s ease;
}
.footer ul a:hover{color:var(--yellow);}
.footer__bottom{
  padding-top:26px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:space-between;
  align-items:center;
}
.footer__bottom p{font-size:0.8rem;color:rgba(255,255,255,0.45);}
.footer__disclaimer{
  font-size:0.78rem;
  color:rgba(255,255,255,0.4);
  max-width:900px;
  line-height:1.7;
  padding-top:26px;
}

/* ============ LEGAL PAGES ============ */
.legal-hero{
  background: var(--ink);
  color:var(--white);
  padding:80px 0 60px;
}
.legal-hero .tag{color:var(--yellow);}
.legal-hero h1{
  font-family:var(--ff-display);
  font-size:clamp(2rem, 4vw, 3rem);
  margin-bottom:12px;
}
.legal-hero p{color:rgba(255,255,255,0.7);font-family:var(--ff-serif);}
.legal-body{
  padding:64px 0 100px;
}
.legal-body .container{
  max-width:820px;
}
.legal-body h2{
  font-family:var(--ff-display);
  font-size:1.4rem;
  margin:44px 0 16px;
}
.legal-body h2:first-child{margin-top:0;}
.legal-body h3{
  font-family:var(--ff-body);
  font-weight:800;
  font-size:1.1rem;
  margin:24px 0 10px;
}
.legal-body p{margin-bottom:16px;color:var(--ink-soft);}
.legal-body ul{margin:0 0 16px;padding-left:0;}
.legal-body ul li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
  color:var(--ink-soft);
}
.legal-body ul li::before{
  content:'\f111';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  font-size:0.4rem;
  color:var(--red);
  position:absolute;
  left:0;
  top:8px;
}
.legal-body a{color:var(--red);font-weight:700;border-bottom:1px solid transparent;}
.legal-body a:hover{border-color:var(--red);}
.legal-note{
  background:var(--paper-dark);
  border-left:4px solid var(--red);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  padding:18px 22px;
  margin:26px 0;
  font-size:0.92rem;
}
.legal-updated{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.82rem;
  color:rgba(255,255,255,0.6);
  margin-top:18px;
}

/* ============ 404 ============ */
.not-found{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: linear-gradient(150deg, var(--red-dark), var(--red));
  color:var(--white);
  padding:80px 24px;
}
.not-found__code{
  font-family:var(--ff-display);
  font-size:clamp(5rem, 16vw, 9rem);
  line-height:1;
  color:var(--yellow);
}
.not-found h1{
  font-family:var(--ff-display);
  font-size:clamp(1.4rem, 3vw, 2rem);
  margin:12px 0 16px;
}
.not-found p{
  color:rgba(255,255,255,0.8);
  margin-bottom:30px;
  font-family:var(--ff-serif);
}

/* ============ SCROLL REVEAL ============ */
[data-reveal]{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;text-align:center;}
  .hero p.lead{margin-inline:auto;}
  .hero__actions{justify-content:center;}
  .hero__meta{justify-content:center;}
  .hero__visual{margin-top:40px;}
  .showcase{grid-template-columns:1fr;text-align:center;}
  .showcase.reverse .showcase__media{order:1;}
  .showcase.reverse .showcase__text{order:2;}
  .showcase__text .checklist{text-align:left;}
  .features__grid{grid-template-columns:repeat(2,1fr);}
  .podcast__grid{grid-template-columns:repeat(2,1fr);}
  .stats{grid-template-columns:repeat(2,1fr);}
  .reviews__grid{grid-template-columns:1fr;}
  .footer__grid{grid-template-columns:1fr 1fr;}
}

@media (max-width: 720px){
  .nav__links{
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    max-height:0;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    transition:max-height .35s ease;
  }
  .nav__links.is-open{max-height:400px;}
  .nav__links a{padding:16px 24px;width:100%;border-top:1px solid var(--line);}
  .nav__links a::after{display:none;}
  .nav__burger{display:flex;}
  .nav__cta .btn-outline{display:none;}
  .features__grid{grid-template-columns:1fr;}
  .podcast__grid{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr 1fr;}
  .final-cta{padding:52px 24px;margin:0 16px;}
  .footer__grid{grid-template-columns:1fr;gap:32px;}
  .section{padding:70px 0;}
}
