/* ===== Design tokens ===== */
:root{
  --ink: #0a0a0a;
  --ink-2: #161414;
  --ink-3: #221d1d;
  --gold: #e8b34a;
  --gold-soft: #f2cd82;
  --red-50: #fdf1f0;
  --red-400: #f5433c;
  --red-500: #e0201f;
  --red-600: #c81414;
  --red-700: #9c0f0f;
  --red-800: #650a0a;
  --paper: #ffffff;
  --paper-2: #f7f4f2;
  --text: #1c1717;
  --text-muted: #75685f;
  --text-on-dark: #c9bfba;
  --line: #e9e2df;
  --line-on-dark: rgba(255,255,255,.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(10,5,5,.06);
  --shadow-md: 0 10px 30px -12px rgba(10,5,5,.25);
  --shadow-lg: 0 30px 60px -20px rgba(10,5,5,.45);
  --shadow-card: 0 1px 2px rgba(10,5,5,.04), 0 2px 10px -4px rgba(10,5,5,.08);
  --shadow-card-hover: 0 8px 16px -6px rgba(10,5,5,.1), 0 20px 40px -16px rgba(10,5,5,.16);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font);
  --container: 1120px;
  --ease: cubic-bezier(.22,.9,.34,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .brand-text, .trio-num, .path-title, .video-title, .mid-cta-text{
  font-family: var(--font-display);
}

img, svg{ display: block; max-width: 100%; }

/* ===== Scroll reveal (progressive enhancement — see script.js) ===== */
.js-ready .reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-ready .reveal.in-view{ opacity: 1; transform: none; }
.js-ready .cards-2.reveal .prod-card,
.js-ready .path.reveal .path-step,
.js-ready .antecip-grid.reveal .antecip-item{
  transition-delay: inherit;
}
.js-ready .cards-2.in-view .prod-card:nth-child(2){ transition-delay: .1s; }
.js-ready .path.in-view .path-step:nth-child(3){ transition-delay: .08s; }
.js-ready .path.in-view .path-step:nth-child(5){ transition-delay: .16s; }
.js-ready .path.in-view .path-step:nth-child(7){ transition-delay: .24s; }
.js-ready .antecip-grid.in-view .antecip-item:nth-child(2){ transition-delay: .08s; }
.js-ready .antecip-grid.in-view .antecip-item:nth-child(3){ transition-delay: .16s; }

.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap-narrow{ max-width: 760px; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ===== Buttons ===== */
.btn{
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font);
  font-weight: 700; font-size: 15px; letter-spacing: -.1px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
  white-space: nowrap;
}
.btn svg{ transition: transform .18s var(--ease); }
.btn:hover svg{ transform: scale(1.08) rotate(-4deg); }
.btn-primary{
  background: linear-gradient(180deg, var(--red-500), var(--red-700));
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(200,20,20,.55), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-primary:hover{ filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(200,20,20,.65), inset 0 1px 0 rgba(255,255,255,.16); }
.btn-primary:active{ transform: translateY(0); filter: brightness(.98); }
.btn-lg{ padding: 17px 30px; font-size: 16.5px; border-radius: 10px; }
.btn-nav{ padding: 10px 18px; font-size: 14px; }
.btn-block{ width: 100%; }
.btn:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* Glow-pulse: reserved for the one or two highest-intent WhatsApp CTAs
   (hero + final) so it reads as "the" action, not decoration everywhere */
.btn-glow{ isolation: isolate; }
.btn-glow::after{
  content: "";
  position: absolute; inset: -3px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--red-400), var(--red-700));
  z-index: -1;
  opacity: 0;
  animation: btn-glow-pulse 2.8s ease-in-out infinite;
}
@keyframes btn-glow-pulse{
  0%, 100%{ opacity: 0; transform: scale(1); }
  50%{ opacity: .55; transform: scale(1.06); }
}

/* ===== Topbar ===== */
.topbar{ background: var(--ink); color: #fff; }
.topbar-inner{
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 9px 24px; font-size: 13px; font-weight: 600;
  flex-wrap: wrap; text-align: center;
}
.topbar-text strong{ color: var(--gold); font-weight: 800; }
.topbar-link{ color: #fff; text-decoration: none; font-weight: 800; white-space: nowrap; opacity: .92; }
.topbar-link:hover{ opacity: 1; text-decoration: underline; }

/* ===== Header / nav ===== */
.site{
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav{ display: flex; align-items: center; justify-content: space-between; padding: 13px 24px; }
.brand{ display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--text); transition: opacity .15s ease; }
.brand:hover{ opacity: .8; }
.brand-star{ color: var(--gold); display: flex; }
.brand-text{ font-size: 15px; font-weight: 700; letter-spacing: .1px; color: var(--text); }
.brand-text b{ font-weight: 800; }
.brand-logo{ height: 34px; width: auto; display: block; }

/* ===== Section scaffolding ===== */
.section{ padding: 88px 0; }
.section-alt{ background: var(--paper-2); }
.section-dark{ background: var(--ink); color: #fff; }

.section-head{ max-width: 640px; margin: 0 0 44px; }
.section-head.on-dark{ color: #fff; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; letter-spacing: -.5px; line-height: 1.18; margin: 10px 0 12px; }
.muted{ color: var(--text-muted); font-size: 16.5px; line-height: 1.6; margin: 0; }
.muted.on-dark{ color: var(--text-on-dark); }

.eyebrow{
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--red-600); margin: 0;
}
.eyebrow.on-dark{ color: var(--red-400); }

/* ===== Hero ===== */
.hero{ background: var(--ink); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.hero::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 88% -10%, rgba(232,179,74,.10), transparent 60%),
    radial-gradient(620px 360px at 8% 0%, rgba(200,20,20,.16), transparent 60%);
  pointer-events: none;
}
.hero-inner{ position: relative; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy{ max-width: 620px; }
.hero .eyebrow{ margin-bottom: 18px; }
.hl-title{
  font-family: var(--font-display);
  font-size: clamp(32px, 5.6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.08;
  margin: 0 0 20px;
  color: #fff;
}
.hl{
  background: linear-gradient(90deg, var(--red-400), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub{ font-size: 17.5px; line-height: 1.6; color: var(--text-on-dark); max-width: 620px; margin: 0 0 26px; }

.hero-list{ list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hero-list li{ display: flex; align-items: center; gap: 10px; font-size: 15px; color: #ece7e4; }
.hero-list li svg{ color: var(--gold); flex-shrink: 0; }

.hero-cta{ margin-bottom: 0; }
.micro{ margin: 14px 2px 0; font-size: 13px; color: #a49a94; display: flex; align-items: center; gap: 7px; }
.micro::before{
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232,179,74,.18);
}
.micro.on-dark{ color: #b9aea8; }

/* ===== Hero media (photo) ===== */
.hero-media{ position: relative; display: flex; justify-content: center; }
.hero-media-frame{
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-media-frame::before{
  content: "";
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(200px 200px at 15% 15%, rgba(232,179,74,.35), transparent 70%),
    radial-gradient(240px 240px at 90% 90%, rgba(200,20,20,.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.hero-media-frame img{
  width: 100%; height: auto; display: block;
  aspect-ratio: 900 / 1125;
  object-fit: cover;
}
.hero-media-tag{
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232,179,74,.3);
  border-left: 3px solid var(--gold);
  color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .2px;
  padding: 9px 12px; border-radius: 8px;
  text-align: left;
}

.stat-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.stat-pill{
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 5px;
  transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
}
.stat-pill:hover{ background: rgba(255,255,255,.075); border-color: rgba(232,179,74,.3); transform: translateY(-2px); }
.stat-pill strong{ font-family: var(--font-display); font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.stat-pill span{ font-size: 12.5px; color: var(--text-on-dark); line-height: 1.3; }

/* ===== Preparação cards ===== */
.cards-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 48px; }
.prod-card{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.prod-card::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.prod-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(200,20,20,.14); }
.prod-card:hover::before{ transform: scaleX(1); }
.prod-media{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.prod-media img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.badge{
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase;
  color: var(--red-700);
  background: linear-gradient(135deg, var(--red-50), #fdece9);
  border-radius: 999px; padding: 6px 12px;
  margin-bottom: 16px;
}
.prod-card h3{ font-size: 22px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.3px; }
.prod-desc{ color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.check-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li{ display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--text); }
.check-list li svg{ color: var(--red-600); flex-shrink: 0; }

.stat-trio{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 1px solid var(--line); padding-top: 36px;
}
.trio-item{
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--paper-2);
  transition: transform .2s var(--ease), border-color .2s ease;
}
.trio-item:hover{ transform: translateY(-2px); border-color: rgba(200,20,20,.18); }
.trio-num{
  display: block; font-size: 34px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 4px;
  background: linear-gradient(180deg, var(--ink), var(--red-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trio-label{ font-size: 13.5px; color: var(--text-muted); font-weight: 500; }

/* ===== Jornada / transformação ===== */
.path{
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 4px; margin-top: 8px;
}
.path-step{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 0 6px; transition: transform .2s var(--ease); }
.path-step:hover{ transform: translateY(-3px); }
.path-icon{
  width: 58px; height: 58px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--line-on-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 16px -8px rgba(0,0,0,.5);
  color: var(--text-on-dark);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.path-icon-gold{
  background: linear-gradient(160deg, rgba(232,179,74,.22), rgba(232,179,74,.06));
  border-color: rgba(232,179,74,.5); color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 5px rgba(232,179,74,.08), 0 10px 24px -10px rgba(232,179,74,.5);
}
.path-title{ font-size: 15px; font-weight: 800; color: #fff; }
.path-title-gold{ color: var(--gold); }
.path-text{ font-size: 12.5px; color: var(--text-on-dark); max-width: 130px; line-height: 1.4; }
.path-line{ width: 34px; height: 2px; background: linear-gradient(90deg, var(--line-on-dark), var(--line-on-dark)); align-self: flex-start; margin-top: 29px; border-radius: 2px; }
.path > .path-line:nth-child(6){ background: linear-gradient(90deg, var(--line-on-dark), rgba(232,179,74,.55)); }
.path-step-final .path-title{ font-weight: 800; }

/* ===== Antecipação ===== */
.antecip-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.antecip-item{
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.antecip-item:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.antecip-num{
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 0;
  color: var(--red-700); background: linear-gradient(135deg, var(--red-50), #fdece9);
}
.antecip-item p{ font-size: 15.5px; line-height: 1.65; color: var(--text); margin: 0; }

/* ===== Video ===== */
.video-card{
  display: flex; align-items: center; gap: 22px;
  background: var(--ink); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 22px; text-decoration: none; color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.video-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(232,179,74,.25); }
.video-thumb{
  position: relative; flex-shrink: 0;
  width: 128px; height: 128px; border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(10,8,8,.1), rgba(10,8,8,.6)),
    url("img/capa.jpeg") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-play{
  position: relative;
  width: 52px; height: 52px; border-radius: 999px;
  background: linear-gradient(180deg, var(--red-500), var(--red-700));
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 20px -6px rgba(200,20,20,.6);
  transition: transform .25s var(--ease);
}
.video-card:hover .video-play{ transform: scale(1.08); }
.video-play svg{ margin-left: 2px; }
.video-info{ display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.video-label{ font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); }
.video-title{ font-size: 18px; font-weight: 700; letter-spacing: -.2px; }
.video-cta{ font-size: 13.5px; color: var(--text-on-dark); margin-top: 2px; }

/* ===== Mid CTA ===== */
.mid-cta{
  background: linear-gradient(180deg, var(--paper-2), #f2ebe6);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 40px 0;
  display: flex;
}
.mid-cta .wrap{ display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.mid-cta-text{ font-size: 19px; font-weight: 800; letter-spacing: -.3px; margin: 0; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.mid-cta-text::before{
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: var(--red-600); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,20,20,.14);
  animation: dot-pulse 1.8s ease-in-out infinite;
}
@keyframes dot-pulse{ 0%, 100%{ opacity: 1; } 50%{ opacity: .35; } }

/* ===== FAQ ===== */
.faq-section{ background: var(--paper); }
.faq-list{ display: flex; flex-direction: column; gap: 10px; }
.faq-item{
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 4px 22px; background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover{ border-color: rgba(200,20,20,.16); box-shadow: var(--shadow-card); }
.faq-item[open]{ border-color: rgba(200,20,20,.22); box-shadow: var(--shadow-card); }
.faq-item summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-size: 16px; font-weight: 700; color: var(--text);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item .plus{
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
}
.faq-item .plus::before, .faq-item .plus::after{
  content: ""; position: absolute; background: var(--red-600); border-radius: 2px;
  transition: transform .2s ease, background .2s ease;
}
.faq-item .plus::before{ width: 14px; height: 2px; top: 8px; left: 2px; }
.faq-item .plus::after{ width: 2px; height: 14px; top: 2px; left: 8px; }
.faq-item[open] .plus::before, .faq-item[open] .plus::after{ background: var(--gold); }
.faq-item[open] .plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-item p{ margin: 0 0 18px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }

.faq-cta{
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.faq-cta p{ margin: 0; font-size: 15.5px; font-weight: 700; color: var(--text); }

/* ===== Final CTA ===== */
.final-cta{ position: relative; background: var(--ink); color: #fff; padding: 96px 0; text-align: center; overflow: hidden; }
.final-cta::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(680px 380px at 50% 0%, rgba(232,179,74,.09), transparent 62%),
    radial-gradient(520px 320px at 15% 100%, rgba(200,20,20,.14), transparent 60%);
  pointer-events: none;
}
.final-cta .wrap{ position: relative; }
.final-cta .eyebrow{ margin-bottom: 16px; }
.final-cta h2{ font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; letter-spacing: -.7px; line-height: 1.14; max-width: 760px; margin: 0 auto 16px; }
.final-sub{ color: var(--text-on-dark); font-size: 16.5px; max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }
.final-cta .btn-lg{ margin-bottom: 14px; }

/* ===== Footer ===== */
.site-footer{ background: var(--ink-3); color: #d8cfca; padding: 56px 0 28px; }
.foot-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.foot-brand .brand{ color: #fff; }
.foot-brand .brand-text{ color: #fff; }
.foot-brand .brand-logo{
  height: 40px;
  background: #fff;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
}
.foot-tagline{ font-size: 14px; color: #b3a8a2; line-height: 1.6; margin: 14px 0 0; max-width: 280px; }
.foot-col h3{ font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: #fff; margin: 0 0 14px; }
.foot-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a{ color: #c3b8b2; text-decoration: none; font-size: 14.5px; }
.foot-col a:hover{ color: #fff; }
.foot-disclaimer{
  grid-column: 1 / -1;
  font-size: 12.5px; color: #8a7e78; line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; margin: 12px 0 0;
  max-width: 820px;
}
.foot-bottom{ grid-column: 1 / -1; font-size: 12.5px; color: #766b66; margin-top: 4px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: none;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sticky-cta.visible{ transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px){
  .cards-2{ grid-template-columns: 1fr; }
  .prod-media{ height: 260px; }
  .antecip-grid{ grid-template-columns: 1fr; gap: 26px; }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .foot-brand{ grid-column: 1 / -1; }
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; gap: 32px; }
  .hero-copy{ max-width: 100%; }
  .hero-media-frame{ max-width: 300px; }
}

@media (max-width: 720px){
  .section{ padding: 60px 0; }
  .hero{ padding: 26px 0 32px; }
  .hero-inner{ max-width: 100%; }
  .hero .eyebrow{ margin-bottom: 12px; }
  .hl-title{ margin-bottom: 14px; }
  .hero-sub{ margin-bottom: 18px; font-size: 16px; }
  .hero-list{ margin-bottom: 22px; gap: 8px; }
  .hero-list li{ font-size: 14px; }
  .topbar-inner{ padding: 7px 24px; }
  .nav{ padding: 10px 24px; }
  .hero-media-frame{ max-width: 220px; }
  .stat-row{ grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .stat-trio{ grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .trio-item{ text-align: left; display: flex; align-items: baseline; gap: 10px; }
  .trio-num{ margin-bottom: 0; }
  .path{ grid-template-columns: 1fr; justify-items: start; }
  .path-line{ display: none; }
  .path-step{ flex-direction: row; text-align: left; padding: 10px 0; width: 100%; }
  .path-text{ max-width: none; }
  .video-card{ flex-direction: column; align-items: flex-start; text-align: left; }
  .video-thumb{ width: 100%; height: 180px; }
  .mid-cta .wrap{ flex-direction: column; align-items: flex-start; }
  .foot-grid{ grid-template-columns: 1fr; }
  .topbar-inner{ font-size: 12px; gap: 10px; }
  .brand-text{ font-size: 14px; }
  .btn-nav{ padding: 9px 14px; font-size: 13px; }
  .sticky-cta{ display: block; }
  body{ padding-bottom: 0; }
}

@media (max-width: 420px){
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .hl-title{ letter-spacing: -1px; }
}
