/* ==========================================================================
   ההגה בידיים שלי — דף VSL
   Design tokens taken from the brand's existing webinar page (smartsheep.co.il):
   Fredoka font, navy/yellow/cyan palette, pill buttons & inputs, RTL.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

:root{
  /* brand colors */
  --navy: #111F30;
  --navy-soft: #1B2C42;
  --navy-radial: radial-gradient(120% 120% at 50% 0%, #3B4D61 0%, #111F30 65%);
  --yellow: #FEC601;
  --yellow-soft: #FFE180;
  --cyan: #2EE6E3;
  --white: #FBFBFB;
  --paper: #F5F7FA;
  --ink: #16202E;
  --ink-soft: #4B5A6B;
  --line: #E3E8EE;
  --danger: #E85D5D;

  /* type */
  --font: 'Fredoka', 'Arial Hebrew', system-ui, sans-serif;

  /* shape */
  --radius-pill: 100px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  /* spacing */
  --space-section: clamp(56px, 9vw, 120px);
  --container: 1120px;

  --shadow-card: 0 10px 30px rgba(17, 31, 48, 0.08);
  --shadow-pop: 0 18px 40px rgba(17, 31, 48, 0.16);
}

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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a{ color: inherit; text-decoration: none; }

ul{ margin: 0; padding: 0; list-style: none; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section{
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

/* ---------- decorative background icons ---------- */
.deco-bg{ position: relative; }
.deco-shapes{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.deco-waves{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.16;
}
.deco-fish-outer{ position: absolute; }
.deco-fish{
  display: block;
  height: auto;
  color: var(--cyan);
  opacity: 0.7;
  fill: currentColor;
  stroke: var(--navy);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes swim-left-loop{
  from{ transform: translateX(0); }
  to{ transform: translateX(-160vw); }
}
@keyframes swim-right-loop{
  from{ transform: translateX(0); }
  to{ transform: translateX(160vw); }
}
.deco-bg .section-head{
  background: var(--white);
  border-radius: 28px;
  padding: 10px 30px 2px;
}

.section--dark{
  background: var(--navy-radial);
  color: var(--white);
}

.section--paper{ background-color: var(--paper); }
.section--white{ background-color: var(--white); }

/* ---------- typography ---------- */

.eyebrow{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--yellow-soft);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section--dark .eyebrow{
  background: rgba(254, 198, 1, 0.14);
  color: var(--yellow);
}

h1, h2, h3, h4{
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 18px;
  text-wrap: balance;
}

h1{
  font-size: clamp(32px, 5.4vw, 58px);
  font-weight: 700;
  color: var(--yellow);
}

h2{
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
}

.section--dark h2{ color: var(--white); }

h2 .accent{ color: var(--yellow); }
.section--white h2 .accent, .section--paper h2 .accent{ color: var(--navy); text-decoration: underline; text-decoration-color: var(--cyan); text-decoration-thickness: 4px; text-underline-offset: 6px; }

h3{ font-size: 20px; color: inherit; }

p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.section--dark p{ color: rgba(251,251,251,0.82); }

.lede{
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
  max-width: 680px;
  text-wrap: balance;
}

.center{ text-align: center; margin-inline: auto; }
.max-w{ max-width: 680px; margin-inline: auto; }

.section-head{
  max-width: 720px;
  margin: 0 0 48px;
}
.section-head.center{ margin-inline: auto; text-align: center; }

.timeline-head{
  max-width: 1040px;
}
.timeline-head h2{
  font-size: clamp(21px, 2.7vw, 32px);
  white-space: nowrap;
}
.timeline-head p{
  font-size: clamp(13.5px, 1.5vw, 16px);
  white-space: nowrap;
  max-width: none;
}

.big-number{
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin: 8px 0;
}

.big-line{
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--white);
}

/* ---------- buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover{ background: #4CEEEB; }

.btn--yellow{
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-pop);
}
.btn--yellow:hover{ background: #FFD230; }

.btn--ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(251,251,251,0.4);
}
.btn--ghost:hover{ border-color: var(--white); }

.btn--block{ width: 100%; justify-content: center; }

.cta-wrap{ display: flex; flex-direction: column; align-items: center; margin-top: 8px; }
.cta-wrap.align-start{ align-items: flex-start; }

/* ---------- hero ---------- */

.hero{
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(64px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.hero-glow-a{
  width: 620px;
  height: 620px;
  top: -260px;
  inset-inline-end: -220px;
  background: radial-gradient(circle, rgba(46,230,227,0.22) 0%, transparent 72%);
}
.hero-glow-b{
  width: 520px;
  height: 520px;
  top: 160px;
  inset-inline-start: -220px;
  background: radial-gradient(circle, rgba(40,116,252,0.22) 0%, transparent 72%);
}

.hero .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1{ max-width: 880px; }
.hero .lede{ margin: 0 auto 28px; }

.hero-top{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-align: right;
  margin-bottom: 12px;
}
.hero-text h1{
  margin: 0 0 20px;
  font-size: clamp(46px, 7.2vw, 84px);
}
.hero-subhead{
  text-wrap: balance;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin: 0 0 28px;
}
.hero-subhead .accent{ color: var(--cyan); }
.hero-text .lede{
  margin: 0;
  max-width: none;
  text-align: right;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.6;
}
.hl-underline{
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.hero-text .lede strong{ color: var(--white); font-weight: 700; }

.hero-visual{ display: flex; justify-content: center; }
.hero-visual img{ width: 100%; max-width: 420px; height: auto; display: block; }

.vsl-section{
  background: #0C1622;
  padding: clamp(60px, 9vw, 96px) 0;
}
.vsl-section .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vsl-mini-title{
  text-wrap: balance;
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.4;
}

.vsl{
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1B2C42 0%, #0C1622 100%);
  border: 3px solid rgba(254,198,1,0.35);
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 36px;
  overflow: hidden;
}
#vsl-video{
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

/* ---------- stage divider ---------- */

.stage-divider{
  background: var(--white);
  padding: 30px 0;
}
.stage-divider span{
  display: block;
  width: 150px;
  height: 4px;
  margin: 0 auto;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow) 18%, var(--cyan) 82%, transparent);
}

/* ---------- problem flow ---------- */

.flow-steps{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  max-width: 1120px;
  margin: 44px auto 40px;
}

.flow-step{
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.num-badge{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.flow-step h3{
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.flow-step p{
  font-size: clamp(14.5px, 1.6vw, 16px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.flow-arrow{
  flex: 0 0 auto;
  align-self: center;
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  opacity: 0.55;
}

/* scroll reveal */
.reveal{
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.dir-up{ transform: translateY(30px); }
.reveal.dir-up-soft{ transform: translateY(14px); }
.reveal.scale-soft{ transform: scale(0.92); }
.reveal.dir-left{ transform: translateX(-36px); }
.reveal.dir-right{ transform: translateX(36px); }
.reveal.in-view{ opacity: 1; transform: none; }

.emoji-down{ font-size: 0.75em; }

/* ---------- life timeline ---------- */

.timeline-intro{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 8px;
}
.timeline-intro-box{
  background: rgba(46,230,227,0.12);
  border: 1.5px solid rgba(46,230,227,0.4);
  border-radius: 16px;
  padding: 22px 28px;
}
.timeline-intro-main{
  text-wrap: balance;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.timeline-intro-note{
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.timeline-intro-note strong{ font-weight: 700; color: var(--navy); }

.timeline{
  position: relative;
  max-width: 920px;
  margin: 40px auto 0;
  padding: 8px 0;
}

.timeline-track{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.timeline-track-fill{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--cyan), var(--yellow));
}

.timeline-item{
  position: relative;
  width: 50%;
  padding-bottom: 54px;
  opacity: 0;
  transform: translate(0, 15px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.timeline-item.in-view{ opacity: 1; transform: translate(0, 0); }
.timeline-track + .timeline-item{ margin-top: 96px; }

.timeline-item.side-right{
  margin-left: auto;
  padding-left: 38px;
  transform: translate(25px, 15px);
}
.timeline-item.side-left{
  margin-right: auto;
  padding-right: 38px;
  transform: translate(-25px, 15px);
}
.timeline-item.side-right.in-view,
.timeline-item.side-left.in-view{ transform: translate(0, 0); }

.timeline-dot{
  position: absolute;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  z-index: 2;
  transition: background .3s ease, border-color .3s ease;
}
.side-right .timeline-dot{ left: -7px; }
.side-left .timeline-dot{ right: -7px; }
.timeline-item.in-view .timeline-dot{ background: var(--cyan); border-color: var(--cyan); }

.timeline-sheep{
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 170px;
  object-fit: contain;
  object-position: center bottom;
  z-index: 3;
  pointer-events: none;
  margin-bottom: -22px;
}
.timeline-sheep[src*="sheep-age-26.png"],
.timeline-sheep[src*="sheep-age-46.png"]{
  transform: translateX(-50%) scale(1.35);
  transform-origin: center bottom;
}
.timeline-sheep[src*="sheep-age-22.png"],
.timeline-sheep[src*="sheep-age-58.png"]{
  transform: translateX(-50%) translateY(18px);
}

.timeline-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.timeline-age{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(46, 230, 227, 0.22);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.timeline-card h3{
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 9px;
  line-height: 1.4;
}
.timeline-card p{
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 12px;
}
.timeline-cost{
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #C0524C;
}

.timeline-section{
  padding-bottom: 4px;
  background-color: #FFF7F7;
}

.deco-arrow{
  position: absolute;
  height: auto;
  color: var(--danger);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deco-car2-outer{ position: absolute; pointer-events: none; }
.deco-car2{
  display: block;
  height: auto;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deco-money-outer{ position: absolute; pointer-events: none; }
.deco-money{
  display: block;
  height: auto;
  color: var(--danger);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fall-a{
  0%{ transform: translate(0, -30px) rotate(-6deg); opacity: 0; }
  12%{ opacity: 1; }
  88%{ opacity: 1; }
  100%{ transform: translate(10px, 260px) rotate(10deg); opacity: 0; }
}
@keyframes fall-b{
  0%{ transform: translate(0, -30px) rotate(8deg); opacity: 0; }
  12%{ opacity: 1; }
  88%{ opacity: 1; }
  100%{ transform: translate(-14px, 300px) rotate(-12deg); opacity: 0; }
}
@keyframes fall-c{
  0%{ transform: translate(0, -30px) rotate(-10deg); opacity: 0; }
  12%{ opacity: 1; }
  88%{ opacity: 1; }
  100%{ transform: translate(16px, 220px) rotate(5deg); opacity: 0; }
}

@media (max-width: 960px){
  .timeline-section .deco-car2-outer:not(.keep-mobile){
    display: none;
  }
}

@media (prefers-reduced-motion: reduce){
  .deco-fish-outer,
  .deco-car2-outer,
  .deco-money{
    animation: none !important;
  }
  .timeline-section .deco-money-outer,
  .timeline-section .deco-car2-outer{
    display: none;
  }
}

/* ---------- payoff section ---------- */

.payoff-section{
  background: radial-gradient(120% 100% at 50% 0%, #1B2C42 0%, #0A121C 70%);
  padding: clamp(10px, 1.5vw, 18px) 0 clamp(56px, 8vw, 90px);
  text-align: center;
  overflow: visible;
  position: relative;
}

.payoff-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.payoff-badge-line{ width: 54px; height: 2px; background: rgba(254,198,1,0.45); }
.payoff-flag-icon{ width: 22px; height: 22px; color: var(--yellow); }

.payoff-line1{
  text-wrap: balance;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.payoff-line2{
  text-wrap: balance;
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(251,251,251,0.72);
  margin: 0 0 8px;
}
.payoff-line2 .hl{
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 3px;
}

.payoff-hero{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 6px;
}
.payoff-number{
  font-size: clamp(48px, 11vw, 100px);
  font-weight: 800;
  color: #FF6355;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 0 46px rgba(255,99,85,0.4);
}
.payoff-burn{
  text-wrap: balance;
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  color: #FF6355;
  margin: 0 0 30px;
}

.payoff-section .container{ position: relative; z-index: 2; }
.payoff-sheep{
  position: absolute;
  bottom: 0;
  right: 2%;
  height: clamp(340px, 58vh, 560px);
  width: auto;
  z-index: 1;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.45));
  opacity: 0;
  transform: translateY(90px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.payoff-sheep.in-view{ opacity: 1; transform: translateY(0); }
@media (min-width: 861px) and (max-width: 1150px){
  .payoff-sheep{ height: clamp(260px, 42vh, 400px); right: 1%; }
}

.payoff-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,99,85,0.08);
  border: 1.5px solid rgba(255,99,85,0.5);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 540px;
  margin: 0 auto 34px;
  text-align: center;
}
.payoff-box-text{ text-align: center; }
.payoff-box-text p{ margin: 0; font-size: 17px; color: rgba(251,251,251,0.82); line-height: 1.5; }
.payoff-box-cta{ font-size: 19px !important; font-weight: 700; color: #FF6355 !important; margin-top: 6px !important; }

.payoff-question{
  text-wrap: balance;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 30px;
}

/* ---------- section 4: the infinite loop ---------- */

.loop-section{ padding: 48px 0 56px; }

.loop-head{ margin-bottom: 0; }
.loop-head h2{ font-size: clamp(34px, 5.4vw, 54px); margin-bottom: 0; }

.loop-wheel{
  position: relative;
  width: min(600px, 54vw);
  aspect-ratio: 1;
  margin: 190px auto 200px;
}

.loop-ring{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.loop-connector{
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
  opacity: 0.55;
}

.loop-hub{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  z-index: 2;
}
.loop-hub-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.loop-hub-bg{
  position: absolute;
  top: 2%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232, 93, 93, 0.08);
  z-index: -1;
}
.loop-hub-car{
  width: 90%;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse 60% 62% at 50% 46%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 62% at 50% 46%, #000 55%, transparent 100%);
  margin-bottom: 8px;
}
.loop-stop-outer{
  position: absolute;
  width: 250px;
  z-index: 1;
}
.loop-stop-outer.loop-stop-top{ bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); }
.loop-stop-outer.loop-stop-bottom{ top: calc(100% + 6px); left: 50%; transform: translateX(-50%); }
.loop-stop-outer.loop-stop-left{ right: calc(100% + 6px); top: 50%; transform: translateY(-50%); }
.loop-stop-outer.loop-stop-right{ left: calc(100% + 6px); top: 50%; transform: translateY(-50%); }

.loop-stop{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.loop-icon{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.loop-icon svg{
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.loop-icon-cyan{ background: rgba(46, 230, 227, 0.16); color: var(--navy); }
.loop-icon-red{ background: rgba(232, 93, 93, 0.14); color: var(--danger); }
.loop-stop h3{ font-size: 19px; font-weight: 700; color: var(--navy); margin: 0; }
.loop-stop p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; margin: 0; }

.loop-arrow-mobile{ display: none; }

.loop-punch{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border-radius: 32px;
  padding: 34px 36px;
}
.loop-punch-line, .loop-punch-line2{
  text-wrap: balance;
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.loop-punch-line2{ margin-bottom: 0; }
.loop-red{ color: var(--danger); }
.loop-accent{
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

@media (max-width: 1180px){
  .loop-wheel{
    width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin: 40px auto;
  }
  .loop-ring{ display: none; }
  .loop-hub{ position: static; transform: none; width: 240px; order: 0; }
  .loop-hub-bg{ display: none; }
  .loop-stop-outer{ position: static; width: 320px; max-width: 90vw; }
  .loop-stop-outer.loop-stop-top,
  .loop-stop-outer.loop-stop-bottom,
  .loop-stop-outer.loop-stop-left,
  .loop-stop-outer.loop-stop-right{ top: auto; bottom: auto; left: auto; right: auto; transform: none; }
  .loop-stop-outer.loop-stop-top{ order: 2; }
  .loop-stop-outer.loop-stop-right{ order: 4; }
  .loop-stop-outer.loop-stop-bottom{ order: 6; }
  .loop-stop-outer.loop-stop-left{ order: 8; }

  .loop-arrow-mobile{
    display: block;
    font-size: 30px;
    line-height: 1;
    color: var(--cyan);
    opacity: 0.8;
    margin: -6px 0;
  }
  .loop-arrow-1{ order: 1; }
  .loop-arrow-2{ order: 3; }
  .loop-arrow-3{ order: 5; }
  .loop-arrow-4{ order: 7; }

  .loop-punch{ padding: 26px 22px; border-radius: 24px; }
}

/* ---------- section 4.5: life-road (transition) ---------- */

.life-road{ background: #F8FAFC; }
.life-road .section-head{ margin-bottom: 36px; }

.life-road-objection{
  text-wrap: balance;
  font-size: clamp(15px, 3.6vw, 19px);
  font-weight: 600;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0 0 18px;
}

.life-road h2{ margin-bottom: 14px; }

.life-road .hl{
  color: var(--navy);
  background: linear-gradient(180deg, transparent 58%, var(--yellow-soft) 58%);
  padding: 0 3px;
  border-radius: 3px;
}

.road-wrap{
  position: relative;
  height: 190px;
  margin: 8px auto 0;
  max-width: 980px;
}
.road-line{
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 26px);
}
.road-progress{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(3% + var(--progress, 0) * 94%);
  background: var(--cyan);
  opacity: .55;
}

.road-car{
  position: absolute;
  top: 58px;
  right: calc(3% + var(--progress, 0) * 94%);
  transform: translate(50%, -54%);
  width: 62px;
  z-index: 3;
  transition: right .5s cubic-bezier(.4,0,.2,1);
}
.road-car img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(17,31,48,.28));
}

.road-station{
  position: absolute;
  top: 58px;
  right: calc(var(--pos) * 1%);
  transform: translate(50%, -7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 130px;
  text-align: center;
}
.road-station-dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.road-station.is-passed .road-station-dot{ background: var(--cyan); border-color: var(--cyan); }
.road-station.is-active .road-station-dot{
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(46,230,227,0.22);
}
.road-station-label{
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft);
  transition: color .3s ease;
}
.road-station.is-passed .road-station-label{ color: var(--navy); }

.road-payoff{ margin-top: 52px; max-width: 760px; }
.road-card{
  background: #E7FFFE;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-card);
}
.road-line-1{
  text-wrap: balance;
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 10px;
}
.road-line-2{
  text-wrap: balance;
  font-size: clamp(23px, 2.9vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 30px;
}
.road-warn{
  text-wrap: balance;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.road-warn-sub{
  display: inline-block;
  margin-top: 10px;
  font-size: 0.4em;
  font-weight: 600;
  font-style: italic;
  color: var(--ink-soft);
}

@media (min-width: 861px){
  .life-road .section-head{ max-width: 1000px; }
  .life-road-objection{
    font-size: clamp(18px, 1.7vw, 23px);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce){
  .road-car{ transition: none; }
  .road-station-dot{ transition: none; }
}

@media (max-width: 860px){
  .road-wrap{ height: 460px; max-width: 340px; margin-top: 16px; }
  .road-line{
    top: 0;
    bottom: 0;
    right: 27px;
    left: auto;
    width: 3px;
    height: auto;
    background-image: repeating-linear-gradient(180deg, var(--line) 0 14px, transparent 14px 26px);
  }
  .road-progress{
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: calc(3% + var(--progress, 0) * 94%);
  }
  .road-car{
    top: calc(3% + var(--progress, 0) * 94%);
    right: 27px;
    transform: translate(50%, -50%);
    transition: top .5s cubic-bezier(.4,0,.2,1);
  }
  .road-station{
    top: calc(var(--pos) * 1%);
    right: 20px;
    transform: translateY(-50%);
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: 280px;
    text-align: right;
    gap: 12px;
  }
  .road-station-label{ font-size: 14px; }

  .road-card{ padding: 30px 24px; }
  .road-warn{ font-size: clamp(28px, 8vw, 38px); }
}

.callout{
  text-wrap: balance;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  text-align: center;
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto;
}
.callout .accent{ color: var(--yellow); }

.callout--split{ padding: 34px 30px; }
.callout-big{
  display: block;
  text-wrap: balance;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}
.callout-small{
  display: block;
  text-wrap: balance;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 500;
  color: rgba(251,251,251,0.85);
}

/* ---------- section 5: program intro ---------- */

.program-intro .eyebrow{ font-size: 20px; padding: 10px 22px; }
.program-intro-logo{ width: 160px; height: auto; margin: 4px auto 18px; }
.program-intro h2{ font-size: clamp(31px, 4.8vw, 48px); }
.program-intro .lede{ font-size: clamp(22px, 2.6vw, 26px); margin-inline: auto; }

.program-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.program-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-card:hover{
  transform: scale(1.045);
  box-shadow: var(--shadow-pop);
}
.program-card-green{
  background: #F0FFF4;
  border-color: rgba(37, 211, 102, 0.28);
}
.program-card-icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--navy);
}
.program-card-cyan .program-card-icon,
.program-card-yellow .program-card-icon{ background: rgba(46, 230, 227, 0.18); }
.program-card-green .program-card-icon{ background: rgba(37, 211, 102, 0.18); color: #1DA851; }
.program-card-icon svg{
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.program-card h3{ color: var(--navy); font-size: 21px; margin-bottom: 8px; }
.program-card p{ font-size: 17.5px; margin: 0; color: var(--ink-soft); }

.program-showcase{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 70px;
}
.showcase-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 22px;
  min-height: 560px;
  background: linear-gradient(160deg, #E7FFFE 0%, var(--white) 60%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-row:hover{
  transform: scale(1.015);
  box-shadow: var(--shadow-pop);
}
.showcase-row-green{ background: linear-gradient(160deg, #E3FBEA 0%, var(--white) 60%); }

.showcase-phone{ order: 1; height: 300px; width: 100%; min-width: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.iphone-frame{
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #0A0E17;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.06) inset;
}
.iphone-screen{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #0A0E17;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.iphone-screen img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}
.iphone-island{
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 20px;
  background: #0A0E17;
  border-radius: 12px;
  z-index: 2;
}

.laptop-frame{
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
}
.laptop-camera{
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  z-index: 2;
}
.laptop-screen{
  position: relative;
  flex: 1;
  background: #0A0E17;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.06) inset;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop-screen img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}
.laptop-base{
  height: 12px;
  margin: 0 -14px;
  background: linear-gradient(180deg, #1B2230, #0A0E17);
  border-radius: 0 0 8px 8px;
  position: relative;
  flex-shrink: 0;
}
.laptop-base::after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: rgba(0,0,0,0.35);
  border-radius: 0 0 6px 6px;
}

.showcase-paper{
  height: 100%;
  width: auto;
  max-width: 100%;
  display: flex;
  background: var(--white);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 20px 45px rgba(17,31,48,0.2), 0 0 0 1px rgba(17,31,48,0.06);
  transform: rotate(-2.5deg);
}
.showcase-paper img{
  height: 100%;
  width: auto;
  max-width: 100%;
  min-height: 0;
  display: block;
  border-radius: 2px;
}

.showcase-text{ order: 3; text-align: center; }
.showcase-text h3{ color: var(--navy); font-size: 22px; margin-bottom: 16px; }
.showcase-list{ list-style: none; padding: 0; margin: 0; width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.showcase-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: right;
}
.showcase-list li svg{
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  color: #16B8B5;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-icon{
  order: 2;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 230, 227, 0.16);
  color: var(--navy);
}
.showcase-row-green .showcase-icon{ background: rgba(29, 168, 81, 0.14); color: #1DA851; }
.showcase-icon svg{
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 861px){
  .program-showcase{ grid-template-columns: 1fr; gap: 24px; margin-top: 110px; }
  .showcase-row{
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    min-height: 0;
    height: 360px;
    padding: 32px 48px;
  }

  .showcase-phone{ order: 3; height: 100%; width: 300px; }
  .showcase-text{ order: 2; flex: 1; min-width: 0; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .showcase-text h3{ font-size: 26px; margin-bottom: 18px; }
  .showcase-list{ gap: 13px; }
  .showcase-list li{ text-align: right; font-size: 17px; gap: 12px; }
  .showcase-list li svg{ width: 21px; height: 21px; }

  .showcase-icon{ order: 1; width: 96px; height: 96px; border-radius: 24px; }
  .showcase-icon svg{ width: 50px; height: 50px; }
}


/* ---------- section 7: learn grid ---------- */

.learn-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learn-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.learn-card:hover{
  transform: scale(1.045);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--shadow-pop);
}
.learn-card:hover .learn-icon{ background: var(--white); }
.learn-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
  transition: background-color .2s ease;
}
.learn-icon svg{ width: 26px; height: 26px; }
.learn-card h3{ color: var(--navy); font-size: 17.5px; margin-bottom: 8px; }
.learn-card p{ color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.learn-card:hover h3, .learn-card:hover p{ color: var(--navy); }

.learn-guarantee{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.learn-guarantee:hover{
  transform: scale(1.015);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--shadow-pop);
}
.learn-guarantee-icon{
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background-color .2s ease;
}
.learn-guarantee:hover .learn-guarantee-icon{ background: var(--white); }
.learn-guarantee-icon svg{
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.learn-guarantee-text{ flex: 1; }
.learn-guarantee-text h3{ color: var(--navy); font-size: 19px; margin: 0 0 6px; }
.learn-guarantee-text p{ color: var(--ink-soft); font-size: 16.5px; font-weight: 600; margin: 0 0 6px; text-wrap: balance; }
.learn-guarantee-fine{ display: block; font-size: 12.5px; color: var(--ink-soft); opacity: .7; }

/* ---------- section 9: about ---------- */

.about{
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: rgba(251,251,251,0.05);
  border: 1px solid rgba(251,251,251,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-photo img{ width: 100%; height: 100%; object-fit: cover; }

.about-greeting{
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(251,251,251,0.55);
  margin-bottom: 8px;
}
.about-body h2{ color: var(--yellow); margin-bottom: 18px; }
.about-body p{ margin-bottom: 16px; }
.about-body p:last-child{ margin-bottom: 0; }

.hl-bold{ color: var(--white); font-weight: 700; }
.hl-underline{
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---------- section 12: form ---------- */

.form-section .section-head{ margin-inline: auto; }

.form-card{
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cyan);
  box-shadow: var(--shadow-pop);
  padding: clamp(28px, 5vw, 48px);
}

.field{
  margin-bottom: 18px;
  text-align: right;
}
.field label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input{
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus{ border-color: var(--cyan); background: var(--white); }

.field-consent{ margin-bottom: 22px; }
.consent-label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"]{
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.consent-label span{
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.form-status{
  display: none;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 18px;
}
.form-status.show{ display: block; }

/* ---------- section 13: FAQ ---------- */

.faq-list{
  max-width: 760px;
  margin: 0 auto;
}
.faq-item{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .q{ flex: 1; min-width: 0; text-wrap: balance; }
.faq-item .plus{
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .2s ease, background .2s ease;
}
.faq-item .plus::before, .faq-item .plus::after{
  content: "";
  position: absolute;
  background: var(--navy);
}
.faq-item .plus::before{ width: 12px; height: 2px; }
.faq-item .plus::after{ width: 2px; height: 12px; }
.faq-item[open] .plus{ transform: rotate(45deg); background: var(--yellow-soft); }
.faq-item .a{
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- section 14: final CTA ---------- */

.final-cta{
  text-align: center;
  background: linear-gradient(160deg, #0C1622 0%, #111F30 55%, #1B2C42 100%);
}
.final-cta .container{ position: relative; z-index: 1; }
.final-cta-icon{ width: 130px; margin: 0 auto 22px; }
.final-cta h2{
  color: var(--white);
  font-size: clamp(26px, 4.4vw, 42px);
  max-width: 780px;
  margin: 0 auto 4px;
}
.final-cta .line2{
  color: var(--yellow);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  margin-bottom: 36px;
}
.road-rule{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 26px, transparent 26px 52px);
  opacity: .6;
}

/* ---------- footer ---------- */

.site-footer{
  background: var(--navy);
  padding: 28px 0;
  text-align: center;
}
.site-footer p{
  color: rgba(251,251,251,0.55);
  font-size: 13px;
  margin: 0;
}

/* ---------- sticky mobile CTA ---------- */

.sticky-cta{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(17,31,48,0.12);
  transform: translateY(100%);
  transition: transform .25s ease;
  display: none;
}
.sticky-cta.show{ transform: translateY(0); }

/* ---------- responsive ---------- */

@media (max-width: 860px){
  .iphone-frame{ border-radius: 24px; padding: 7px; }
  .iphone-screen{ border-radius: 17px; }
  .iphone-island{ width: 52px; height: 15px; top: 9px; }

  .about{ grid-template-columns: 1fr; }
  .about-photo{ max-width: 260px; margin: 0 auto 8px; }
  .about-greeting, .about-body h2{ text-align: center; }
  .learn-grid{ grid-template-columns: repeat(2, 1fr); }
  .learn-guarantee{ flex-direction: column; text-align: center; padding: 28px 26px; }
  .program-cards{ grid-template-columns: 1fr; }

  .upgrade-cost-section{ padding-top: 34px; }
  .upgrade-head h2{ font-size: clamp(24px, 7vw, 30px); }
  .hero-car{ margin-top: 24px; }
  .hero-car-img{ width: clamp(240px, 70vw, 340px); }
  .money-flow{ margin-top: 22px; padding-bottom: 0; }
  .flow-line{ display: none; }
  .flow-track{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .flow-num{ height: auto; background: none; }
  .flow-loss{ position: static; transform: none; }
  .flow-loss::before{ display: none; }
  .upgrade-punch{ margin-top: 30px; padding: 32px 20px; }
  .hero-top{ grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero-text{ text-align: center; }
  .hero-text .lede{ text-align: center; margin-inline: auto; max-width: 480px; }
  .hero-visual{ order: -1; }
  .hero-visual img{ max-width: 260px; }
  .flow-steps{ flex-direction: column; align-items: center; }
  .flow-step{ width: 100%; max-width: 360px; }
  .flow-arrow{ transform: rotate(-90deg); padding: 4px 0; }

  .timeline{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    row-gap: 68px;
    max-width: 480px;
  }
  .timeline-track{ display: none; }
  .timeline-item,
  .timeline-item.side-right,
  .timeline-item.side-left{
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translate(0, 10px);
  }
  .timeline-item.in-view,
  .timeline-item.side-right.in-view,
  .timeline-item.side-left.in-view{ transform: translate(0, 0); }
  .timeline-dot{ display: none; }

  .timeline-sheep{ width: 64px; height: 72px; margin-bottom: -16px; }
  .timeline-card{ padding: 24px 10px 14px; border-radius: 14px; height: 236px; overflow: hidden; }
  .timeline-age{ font-size: 10.5px; padding: 3px 9px; margin-bottom: 6px; }
  .timeline-card h3{ font-size: 13.5px; margin-bottom: 6px; line-height: 1.3; }
  .timeline-card p{ font-size: 11.5px; line-height: 1.4; margin-bottom: 8px; }
  .timeline-cost{ font-size: 10.5px; }
  .timeline-sheep[src*="sheep-age-26.png"],
  .timeline-sheep[src*="sheep-age-46.png"]{ transform: translateX(-50%) scale(1.1); }
  .timeline-sheep[src*="sheep-age-22.png"],
  .timeline-sheep[src*="sheep-age-58.png"]{ transform: translateX(-50%) translateY(8px); }
  .timeline-track + .timeline-item{ margin-top: 0; }

  .timeline-head h2{ white-space: normal; font-size: clamp(28px, 8vw, 36px); }
  .timeline-head p{ white-space: normal; font-size: 14px; }

  .payoff-sheep{ display: none; }

  .program-intro .eyebrow{ font-size: 14px; line-height: 1.4; text-wrap: balance; padding: 9px 16px; }
}

@media (max-width: 640px){
  section{ padding: 48px 0; }
  .learn-grid{ grid-template-columns: 1fr; }
  .sticky-cta{ display: block; }
  body{ padding-bottom: 0; }
  .chain{ gap: 6px; }
  .chain-item{ padding: 10px 14px; font-size: 13.5px; }

  .showcase-row{ height: auto; min-height: 480px; padding: 28px 22px; }
  .showcase-phone{ height: 260px; }
  .iphone-frame{ border-radius: 20px; padding: 6px; }
  .iphone-screen{ border-radius: 14px; }
  .iphone-island{ width: 44px; height: 13px; top: 8px; }
}

@media (min-width: 641px){
  .sticky-cta{ display: none !important; }
}
