:root {
  --ink: #0d2d1d;
  --ink-2: #183b2b;
  --ink-3: #274d3b;
  --lime: #b2ce2f;
  --lime-bright: #c9eb28;
  --lime-soft: #ecf5c3;
  --cream: #f5f4ed;
  --paper: #fff;
  --mist: #e7ece7;
  --text: #163126;
  --muted: #65756d;
  --danger: #b73939;
  --orange: #ef9b2d;
  --shadow-sm: 0 8px 22px rgba(13, 45, 29, .08);
  --shadow-md: 0 22px 60px rgba(4, 29, 17, .14);
  --shadow-lg: 0 32px 90px rgba(4, 29, 17, .24);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.024em; }
h1 { font-size: clamp(3rem, 5vw, 5.6rem); }
h2 { font-size: clamp(2.15rem, 3.6vw, 4.1rem); }
h3 { font-size: 1.35rem; }

::selection { color: var(--ink); background: var(--lime-bright); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime-bright);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.section { padding: 96px 0; }
.text-accent { color: var(--lime-bright); }
.muted { color: #819089; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #496152;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--lime);
  content: "";
}

.eyebrow--light { color: #c9d5ce; }
.section-lead { color: var(--muted); font-size: 1.1rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, .choice-card:has(input:focus-visible) {
  outline: 3px solid rgba(201, 235, 40, .55);
  outline-offset: 3px;
}
.button--primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  box-shadow: 0 12px 30px rgba(178, 206, 47, .25);
}
.button--primary:hover { box-shadow: 0 16px 34px rgba(178, 206, 47, .36); }
.button--dark { color: #fff; background: var(--ink); }
.button--ghost { color: var(--ink); background: transparent; border-color: #cbd4ce; }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .88rem; }
.button--large { min-height: 58px; padding: 17px 26px; }
.button--full { width: 100%; }

.topline {
  color: #dce7df;
  background: #092619;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.topline__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--lime-bright);
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(201, 235, 40, .14);
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e7ebe8;
}

.site-header__inner, .webinar-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.header-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: #6a7a71;
  font-size: .84rem;
  font-weight: 700;
}
.header-trust__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--ink);
  background: var(--lime-soft);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #123b27 0%, var(--ink) 56%, #092519 100%);
}

.hero::after { display: none; }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}
.hero__glow--one { top: 8%; left: 47%; width: 260px; height: 260px; background: rgba(169, 211, 39, .08); }
.hero__glow--two { right: 8%; bottom: 0; width: 320px; height: 320px; background: rgba(46, 163, 101, .09); }

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 80px;
  padding-top: 58px;
  padding-bottom: 64px;
}

.hero__copy { align-self: center; }
.hero__brand {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 11px 15px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.hero__brand img { width: 172px; }
.hero h1 { max-width: 760px; margin-bottom: 24px; color: #fff; font-size: clamp(2.9rem, 4.6vw, 4.45rem); }
.hero__lead { max-width: 690px; margin-bottom: 28px; color: #d2ddd6; font-size: 1.06rem; }

.outcome-list {
  display: grid;
  gap: 15px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.outcome-list li { display: flex; align-items: flex-start; gap: 12px; color: #dbe5df; font-size: .96rem; }
.outcome-list strong { color: #fff; }
.check {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--ink);
  background: var(--lime-bright);
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 900;
}

.hero__trust { margin: 28px 0 0; color: #9fb2a7; font-size: .72rem; font-weight: 700; }
.hero__trust span { margin: 0 8px; color: var(--lime); }

.hero__visual { position: relative; align-self: stretch; min-width: 0; }
.hero__product {
  position: absolute;
  z-index: 2;
  top: 51%;
  left: 56%;
  width: min(620px, 128%);
  max-width: none;
  border-radius: 18px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 35px 35px rgba(0,0,0,.26));
}
.product-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 235, 40, .19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.product-orbit::before, .product-orbit::after {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: inherit;
  content: "";
}
.product-orbit::after { inset: 25%; border-style: solid; border-color: rgba(201, 235, 40, .09); }

.visual-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.visual-card strong { display: block; font-size: .82rem; }
.visual-card__label { display: block; margin-bottom: 2px; color: #718078; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.visual-card--top { top: 21%; left: -4%; }
.visual-card--bottom { right: -2%; bottom: 23%; align-items: center; }
.pulse-icon { width: 10px; height: 10px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 7px rgba(178,206,47,.18); }

.lead-card {
  position: relative;
  padding: 34px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(4,29,17,.2);
}
.lead-card__badge {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--lime-bright);
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lead-card__kicker { margin-bottom: 4px; color: #718078; font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.lead-card h2 { margin-bottom: 9px; font-size: 2rem; }
.lead-card__intro { margin-bottom: 24px; color: var(--muted); font-size: .9rem; }

.form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field > span { color: #3d5247; font-size: .8rem; font-weight: 750; }
.field em { color: #87958e; font-size: .7rem; font-style: normal; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid #d9e0dc;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 94px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: #7d9a24; box-shadow: 0 0 0 3px rgba(178,206,47,.15); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.field-error { display: block; min-height: 0; color: var(--danger); font-size: .68rem; font-weight: 700; }
.field-error:empty { display: none; }

.consent { display: flex; align-items: flex-start; gap: 9px; color: #6c7b73; font-size: .73rem; line-height: 1.5; }
.consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--ink); }
.consent a { text-decoration: underline; }
.consent--dark { color: #637269; }
.form-note { margin: -2px 0 0; color: #7a8981; font-size: .72rem; text-align: center; }
.form-note--dark { margin-top: 12px; }

.signal-strip { color: #cdd9d2; background: #092519; border-top: 1px solid rgba(255,255,255,.06); }
.signal-strip__inner { display: flex; min-height: 76px; align-items: center; gap: 32px; }
.signal-strip p { flex: 0 0 auto; margin: 0; color: #fff; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.signal-items { display: flex; flex: 1; justify-content: space-between; gap: 24px; font-size: .8rem; }
.signal-items span { white-space: nowrap; }

.problem-section { background: var(--cream); }
.narrow-heading { max-width: 870px; text-align: center; }
.narrow-heading .eyebrow { justify-content: center; }
.narrow-heading h2 { margin-bottom: 24px; }
.narrow-heading p { max-width: 740px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.pain-card { padding: 30px; background: #fff; border: 1px solid #e2e7e3; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.pain-card__number { margin-bottom: 42px; color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.pain-card h3 { margin-bottom: 14px; font-size: 1.45rem; }
.pain-card p { min-height: 75px; margin-bottom: 26px; color: var(--muted); font-size: .9rem; }
.pain-card__line { height: 1px; margin-bottom: 18px; background: #e1e7e2; }
.pain-card__result { color: var(--ink); font-size: .78rem; font-weight: 800; }

.mechanism-section { overflow: hidden; }
.mechanism-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.mechanism-image { position: relative; }
.mechanism-image::before { position: absolute; z-index: -1; right: -24px; bottom: -24px; width: 70%; height: 70%; background: var(--lime-soft); border-radius: 28px; content: ""; }
.mechanism-image__frame { overflow: hidden; background: #f2f2ed; border: 1px solid #e1e6e2; border-radius: 30px; box-shadow: var(--shadow-md); }
.mechanism-image__frame img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; object-position: 46% center; }
.spec-float { position: absolute; right: -28px; bottom: 28px; display: grid; min-width: 150px; padding: 18px; color: #fff; background: var(--ink); border-radius: 16px; box-shadow: var(--shadow-md); }
.spec-float span, .spec-float small { color: #b7c6bd; font-size: .65rem; text-transform: uppercase; }
.spec-float strong { margin: 3px 0; color: var(--lime-bright); font-size: 1.45rem; }
.mechanism-copy h2 { margin-bottom: 22px; }
.mechanism-copy > p { max-width: 580px; }
.steps-list { display: grid; gap: 0; margin: 32px 0; padding: 0; list-style: none; }
.steps-list li { display: flex; gap: 18px; padding: 19px 0; border-bottom: 1px solid #e5eae6; }
.steps-list__number { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; color: var(--ink); background: var(--lime-soft); border-radius: 9px; font-size: .78rem; font-weight: 900; }
.steps-list strong { color: var(--ink); }
.steps-list p { margin: 4px 0 0; color: var(--muted); font-size: .85rem; }
.text-link { padding: 0; color: var(--ink); background: none; border: 0; cursor: pointer; font-weight: 900; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 6px; }

.agenda-section { color: #fff; background: var(--ink); }
.agenda-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.agenda-copy { align-self: start; position: sticky; top: 40px; }
.agenda-copy h2 { color: #fff; }
.agenda-copy > p { max-width: 450px; color: #b9c8bf; }
.host-note { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.host-note__mark { display: grid; width: 48px; height: 48px; place-items: center; color: var(--ink); background: var(--lime-bright); border-radius: 50%; font-weight: 900; }
.host-note strong, .host-note span { display: block; }
.host-note span { color: #9db0a5; font-size: .72rem; }
.agenda-list { display: grid; }
.agenda-list article { display: grid; grid-template-columns: 76px 1fr; gap: 26px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.agenda-list article > span { color: var(--lime-bright); font-size: .8rem; font-weight: 900; }
.agenda-list h3 { margin-bottom: 7px; color: #fff; }
.agenda-list p { margin: 0; color: #aebfb5; font-size: .86rem; }

.value-section { background: #eef0e9; }
.value-card { position: relative; overflow: hidden; padding: 58px; background: #fff; border: 1px solid #dfe5df; border-radius: 30px; box-shadow: var(--shadow-md); }
.value-card::after { position: absolute; top: -130px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(201,235,40,.2), transparent 68%); content: ""; pointer-events: none; }
.value-card__copy { max-width: 760px; }
.value-card__copy h2 { margin-bottom: 16px; }
.value-card__copy p { color: var(--muted); }
.value-stack { display: grid; margin: 36px 0 26px; border-top: 1px solid #e2e7e3; }
.value-item { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid #e2e7e3; }
.value-item > span { color: #90a097; font-size: .72rem; font-weight: 800; }
.value-item strong, .value-item small { display: block; }
.value-item small { margin-top: 2px; color: var(--muted); }
.value-item b { color: var(--ink); background: var(--lime-soft); border-radius: 99px; padding: 6px 10px; font-size: .68rem; }
.value-card__cta { display: flex; align-items: center; gap: 20px; }
.value-card__cta > span { color: var(--muted); font-size: .72rem; }

.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; }
.faq-heading { align-self: start; position: sticky; top: 40px; }
.faq-heading h2 { margin-bottom: 18px; }
.faq-heading p { color: var(--muted); font-size: .88rem; }
.faq-heading a { color: var(--ink); font-weight: 800; }
.faq-list details { border-top: 1px solid #dfe5df; }
.faq-list details:last-child { border-bottom: 1px solid #dfe5df; }
.faq-list summary { position: relative; padding: 24px 42px 24px 0; color: var(--ink); cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 23px; right: 4px; width: 24px; height: 24px; color: var(--ink); content: "+"; font-size: 1.3rem; font-weight: 400; text-align: center; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; margin: -5px 0 24px; color: var(--muted); font-size: .9rem; }

.final-cta { padding: 76px 0; color: #fff; background: radial-gradient(circle at 75% 50%, #23543a, var(--ink) 54%); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 760px; margin-bottom: 0; color: #fff; font-size: clamp(2rem, 3.4vw, 3.6rem); }

.footer { padding: 34px 0; background: #f3f4ef; border-top: 1px solid #e1e6e2; }
.footer__inner { display: flex; align-items: center; gap: 28px; }
.footer img { width: 150px; }
.footer p { margin: 0; color: var(--muted); font-size: .75rem; }
.footer__links { display: flex; gap: 20px; margin-left: auto; font-size: .75rem; font-weight: 800; }
.footer__links a { text-decoration: none; }
.mobile-sticky-cta { display: none; }

/* Webinar */
.webinar-page { background: #f4f5f0; }
.webinar-header { background: #fff; border-bottom: 1px solid #e1e6e2; }
.webinar-header__progress { display: flex; align-items: center; gap: 10px; color: #829087; font-size: .74rem; font-weight: 800; }
.webinar-header__progress span:first-child { color: var(--ink); }
.webinar-header__progress i { display: block; width: 46px; height: 2px; background: linear-gradient(90deg, var(--lime), #dce3de); }
.header-contact { color: #738077; font-size: .72rem; text-decoration: none; }
.header-contact strong { display: block; color: var(--ink); font-size: .9rem; text-align: right; }

.watch-section { padding: 70px 0 86px; color: #fff; background: #092519; }
.watch-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 34px; }
.watch-heading h1 { max-width: 830px; margin: 0; color: #fff; font-size: clamp(2.3rem, 4vw, 4.5rem); }
.watch-heading__meta { display: flex; flex: 0 0 auto; gap: 12px; padding-bottom: 10px; color: #b5c5bc; font-size: .7rem; font-weight: 800; }
.watch-heading__meta span { padding: 7px 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 99px; }

.player-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; }
.player-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #061a11; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.player-poster { position: absolute; inset: 0; }
.player-poster > img { width: 100%; height: 100%; object-fit: cover; }
.player-poster__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,32,19,.95), rgba(5,32,19,.56) 56%, rgba(5,32,19,.15)); }
.player-poster__content { position: absolute; inset: 0; display: flex; max-width: 650px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8%; }
.player-poster__tag { margin-bottom: 14px; color: var(--lime-bright); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.player-poster h2 { margin-bottom: 24px; color: #fff; font-size: clamp(2rem, 3.1vw, 3.6rem); }
.player-poster p { margin: 13px 0 0; color: #c6d2cb; font-size: .7rem; }
.play-button { display: grid; width: 66px; height: 66px; place-items: center; color: var(--ink); background: var(--lime-bright); border: 0; border-radius: 50%; cursor: pointer; box-shadow: 0 0 0 12px rgba(201,235,40,.13); transition: transform .2s ease; }
.play-button:hover { transform: scale(1.06); }
.play-button span { margin-left: 4px; }

.player-sim { position: absolute; inset: 0; }
.player-sim__stage { position: absolute; inset: 0 0 48px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 70% 30%, #1f5d3b, #08271a 55%); }
.energy-lines { position: absolute; inset: -20%; opacity: .22; background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0 30px, var(--lime-bright) 32px 33px, transparent 35px 70px); transform: rotate(-12deg); }
.sim-slide { position: relative; z-index: 2; max-width: 720px; padding: 50px; text-align: center; }
.sim-slide > span { color: var(--lime-bright); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sim-slide h2 { margin: 18px 0; color: #fff; font-size: clamp(2rem, 4vw, 4.4rem); }
.sim-slide p { color: #c8d4cd; }
.sim-speaker { position: absolute; z-index: 3; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 8px 11px; background: rgba(0,0,0,.3); border-radius: 99px; font-size: .68rem; }
.sim-speaker span { display: grid; width: 25px; height: 25px; place-items: center; color: var(--ink); background: var(--lime-bright); border-radius: 50%; font-size: .58rem; font-weight: 900; }
.player-controls { position: absolute; right: 0; bottom: 0; left: 0; display: flex; height: 48px; align-items: center; gap: 11px; padding: 0 16px; background: #05170f; font-size: .65rem; }
.player-controls button { color: #fff; background: none; border: 0; cursor: pointer; }
.player-track { flex: 1; height: 4px; overflow: hidden; background: rgba(255,255,255,.18); border-radius: 99px; }
.player-track i { display: block; width: 0; height: 100%; background: var(--lime-bright); }

.chapter-card { overflow: hidden; color: var(--text); background: #fff; border: 1px solid #e0e5e2; border-radius: 20px; }
.chapter-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 20px 15px; border-bottom: 1px solid #e7ebe8; }
.chapter-card__head span { color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.chapter-card__head h2 { margin: 2px 0 0; font-size: 1rem; letter-spacing: -.02em; }
.chapter-card__duration { color: var(--ink) !important; background: var(--lime-soft); border-radius: 99px; padding: 5px 8px; }
.chapter-nav { margin: 0; padding: 6px; list-style: none; }
.chapter-nav li button { display: grid; width: 100%; grid-template-columns: 42px 1fr; gap: 10px; padding: 12px; color: var(--text); background: transparent; border: 0; border-radius: 10px; cursor: pointer; text-align: left; }
.chapter-nav li.is-active button { background: #edf5d4; }
.chapter-nav li button > span { color: #7c8d83; font-size: .65rem; font-weight: 900; }
.chapter-nav strong, .chapter-nav small { display: block; }
.chapter-nav strong { font-size: .75rem; }
.chapter-nav small { margin-top: 2px; color: var(--muted); font-size: .62rem; }
.chapter-card__tip { display: flex; gap: 9px; margin: 4px 14px 14px; padding: 11px; color: #76867d; background: #f5f6f2; border-radius: 9px; font-size: .6rem; }
.chapter-card__tip > span { display: grid; flex: 0 0 auto; width: 16px; height: 16px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-size: .58rem; font-weight: 900; }

.timed-offer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding: 15px 17px; color: var(--text); background: #fff; border: 1px solid rgba(201,235,40,.65); border-radius: 16px; box-shadow: var(--shadow-md); }
.timed-offer > div { display: flex; align-items: center; gap: 12px; }
.timed-offer__icon { display: grid; width: 36px; height: 36px; place-items: center; color: var(--ink); background: var(--lime-bright); border-radius: 50%; font-weight: 900; }
.timed-offer p { margin: 0; font-size: .82rem; }
.timed-offer strong { display: block; color: var(--ink); }

.quote-section { background: #f4f5f0; }
.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 80px; }
.quote-copy { position: sticky; top: 30px; }
.quote-copy h2 { margin-bottom: 20px; }
.deliverables { display: grid; gap: 18px; margin: 32px 0; }
.deliverables > div { display: flex; gap: 13px; }
.deliverables > div > span { display: grid; flex: 0 0 auto; width: 26px; height: 26px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.deliverables p { margin: 0; }
.deliverables strong, .deliverables small { display: block; }
.deliverables small { margin-top: 2px; color: var(--muted); }
.risk-reversal { display: flex; align-items: center; gap: 14px; padding: 16px; background: #e8ecdf; border: 1px solid #d6ddca; border-radius: 14px; }
.risk-reversal__icon { display: grid; flex: 0 0 auto; width: 50px; height: 50px; place-items: center; color: var(--lime-bright); background: var(--ink); border-radius: 50%; font-size: 1rem; font-weight: 900; }
.risk-reversal p { margin: 0; }
.risk-reversal strong, .risk-reversal span { display: block; }
.risk-reversal strong { font-size: .82rem; }
.risk-reversal span { color: var(--muted); font-size: .7rem; }

.quote-card { overflow: hidden; background: #fff; border: 1px solid #dce3de; border-radius: 24px; box-shadow: var(--shadow-md); }
.quote-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 30px 22px; background: var(--ink); }
.quote-card__head > div > span { color: #aebfb5; font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.quote-card__head h2 { margin: 4px 0 0; color: #fff; font-size: 1.7rem; }
.quote-card__time { color: var(--ink); background: var(--lime-bright); border-radius: 99px; padding: 7px 10px; font-size: .68rem; font-weight: 900; }
.form-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; padding: 20px 30px; background: #f8faf7; border-bottom: 1px solid #e5eae6; }
.form-progress button { display: flex; align-items: center; gap: 7px; padding: 0; color: #89978f; background: none; border: 0; font-weight: 800; }
.form-progress button span { display: grid; width: 26px; height: 26px; place-items: center; background: #e3e8e4; border-radius: 50%; font-size: .68rem; }
.form-progress button small { font-size: .65rem; }
.form-progress button.is-active { color: var(--ink); }
.form-progress button.is-active span, .form-progress button.is-complete span { color: var(--ink); background: var(--lime); }
.form-progress i { height: 2px; background: #dde4df; }
.form-progress i.is-complete { background: var(--lime); }
.form-step { display: none; padding: 30px; }
.form-step.is-active { display: block; animation: stepIn .28s ease both; }
.form-step fieldset { margin: 0; padding: 0; border: 0; }
.form-step legend { color: var(--ink); font-size: 1.28rem; font-weight: 900; letter-spacing: -.02em; }
.step-help { margin: 4px 0 22px; color: var(--muted); font-size: .78rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-card { position: relative; display: grid; min-height: 128px; align-content: center; padding: 17px; background: #f8faf8; border: 1px solid #dce3de; border-radius: 13px; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.choice-card:hover { transform: translateY(-2px); border-color: #9fb64a; }
.choice-card:has(input:checked) { background: #edf5d1; border-color: #91aa2d; box-shadow: inset 0 0 0 1px #91aa2d; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card__icon { display: grid; width: 32px; height: 32px; margin-bottom: 10px; place-items: center; color: var(--ink); background: var(--lime-soft); border-radius: 8px; font-weight: 900; }
.choice-card strong, .choice-card small { display: block; }
.choice-card strong { color: var(--ink); font-size: .82rem; }
.choice-card small { margin-top: 3px; color: var(--muted); font-size: .65rem; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-bottom: 14px; }
.form-step > fieldset > .field { margin-bottom: 14px; }
.step-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; }
.step-actions--end { justify-content: flex-end; }
.quote-success { padding: 54px 34px; text-align: center; }
.success-check { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; color: var(--ink); background: var(--lime-bright); border-radius: 50%; font-size: 1.5rem; font-weight: 900; box-shadow: 0 0 0 10px var(--lime-soft); }
.quote-success > span { color: #6e7d74; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.quote-success h2 { margin: 8px 0 13px; }
.quote-success > p { max-width: 520px; margin: 0 auto 22px; color: var(--muted); }
.success-summary { margin-bottom: 22px; padding: 15px; color: #42564b; background: #f4f7ed; border-radius: 10px; font-size: .78rem; }

.mini-proof { padding: 28px 0; background: #fff; border-top: 1px solid #e2e7e3; }
.mini-proof__inner { display: flex; align-items: center; justify-content: center; gap: 28px; color: #6c7c73; font-size: .72rem; font-weight: 800; }
.mini-proof__inner i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }
.footer--compact { padding-block: 24px; }

.reveal { animation: revealUp .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal--delay { animation-delay: .12s; }
.reveal--delay-2 { animation-delay: .24s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@media (max-width: 1120px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 48px; }
  .hero__visual { display: none; }
  .hero__copy { padding-right: 20px; }
  .player-layout { grid-template-columns: 1fr 310px; }
  .chapter-nav li button { padding-block: 9px; }
  .quote-layout { gap: 48px; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .header-trust { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 48px; }
  .hero__copy { max-width: 680px; padding-right: 0; }
  .hero__visual { right: -20px; bottom: 310px; width: 480px; height: 430px; opacity: .26; }
  .lead-card { max-width: 610px; }
  .signal-strip__inner { align-items: flex-start; flex-direction: column; gap: 12px; padding: 22px 0; }
  .signal-items { width: 100%; flex-wrap: wrap; }
  .mechanism-grid, .agenda-grid, .faq-grid, .quote-layout { grid-template-columns: 1fr; gap: 54px; }
  .mechanism-image { max-width: 590px; }
  .agenda-copy, .faq-heading, .quote-copy { position: static; }
  .pain-card p { min-height: 98px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .player-layout { grid-template-columns: 1fr; }
  .chapter-nav { display: grid; grid-template-columns: repeat(5, 1fr); overflow-x: auto; }
  .chapter-nav li button { min-width: 155px; grid-template-columns: 1fr; }
  .chapter-card__tip { display: none; }
  .quote-copy { max-width: 720px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.25rem; }
  .topline__meta { display: none; }
  .topline__inner { justify-content: center; }
  .site-header__inner, .webinar-header__inner { min-height: 64px; }
  .brand img { width: 156px; }
  .site-header .button { display: none; }
  .hero { min-height: auto; }
  .hero__grid { min-height: auto; padding-top: 28px; padding-bottom: 52px; }
  .hero__brand { margin-bottom: 36px; padding: 9px 12px; }
  .hero__brand img { width: 148px; }
  .hero h1 { font-size: clamp(2.55rem, 11vw, 3.25rem); }
  .hero__lead { font-size: 1rem; }
  .hero__visual { display: none; }
  .lead-card { padding: 24px 20px; border-radius: 20px; }
  .signal-items { display: grid; gap: 10px; }
  .pain-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .pain-card p { min-height: auto; }
  .pain-card__number { margin-bottom: 24px; }
  .mechanism-grid { gap: 48px; }
  .mechanism-image { padding-right: 10px; }
  .spec-float { right: 0; bottom: -20px; }
  .agenda-list article { grid-template-columns: 62px 1fr; gap: 15px; }
  .value-card { padding: 32px 22px; }
  .value-item { grid-template-columns: 30px 1fr; }
  .value-item b { grid-column: 2; justify-self: start; }
  .value-card__cta { align-items: stretch; flex-direction: column; }
  .final-cta { padding-bottom: 100px; }
  .lead-page .footer { padding-bottom: 34px; }
  .footer__inner { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer__links { margin-left: 0; }
  .mobile-sticky-cta { position: fixed; z-index: 50; right: 12px; bottom: 12px; left: 12px; display: flex; min-height: 56px; box-shadow: 0 16px 40px rgba(5,37,22,.3); }
  .webinar-header__progress { display: none; }
  .header-contact { font-size: 0; }
  .header-contact strong { font-size: .72rem; }
  .watch-section { padding-top: 48px; }
  .watch-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .watch-heading h1 { font-size: 2.6rem; }
  .watch-heading__meta { padding: 0; }
  .player-shell { aspect-ratio: 4 / 3; }
  .player-poster__content { padding: 28px; }
  .player-poster h2 { font-size: 2rem; }
  .sim-slide { padding: 28px; }
  .sim-slide h2 { font-size: 2rem; }
  .sim-slide p { font-size: .78rem; }
  .timed-offer { align-items: stretch; flex-direction: column; }
  .quote-card__head { padding: 23px 20px; }
  .quote-card__head h2 { font-size: 1.35rem; }
  .form-progress { padding: 17px 20px; }
  .form-progress button small { display: none; }
  .form-step { padding: 24px 20px; }
  .choice-grid, .field-row { grid-template-columns: 1fr; }
  .choice-card { min-height: 105px; }
  .step-actions { align-items: stretch; flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .step-actions--end { flex-direction: row; }
  .mini-proof { padding-bottom: 90px; }
  .mini-proof__inner { flex-wrap: wrap; gap: 14px; }
  .footer--compact { padding-bottom: 100px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.85rem; }
  .outcome-list li { font-size: .88rem; }
  .proof-chip { width: 100%; }
  .watch-heading h1 { font-size: 2.25rem; }
  .watch-heading__meta { flex-wrap: wrap; }
  .player-shell { aspect-ratio: 1 / 1.04; }
  .player-poster h2 { font-size: 1.75rem; }
  .play-button { width: 56px; height: 56px; }
  .form-progress { gap: 6px; }
  .form-progress i { min-width: 18px; }
}
