/* =====================================================
   VTA · Mapea Procesos con ChatGPT
   Premium landing — mobile-first · v3
   ===================================================== */

/* ---------- TOKENS ---------- */
:root{
  /* brand */
  --navy:        #0F1E47;
  --navy-deep:   #07112E;
  --navy-soft:   #1A2D63;
  --orange:      #F0782B;
  --orange-deep: #D8631A;
  --orange-light:#FBA66A;
  --teal:        #27B5B5;
  --teal-deep:   #1A8F8F;
  --teal-light:  #5FD3D3;

  /* surface */
  --bg:          #FAFBFC;
  --surface:     #FFFFFF;
  --surface-2:   #F1F4F9;
  --line:        #E4E9F2;
  --ink:         #0F1E47;
  --ink-soft:    #3A4566;
  --muted:       #6B7593;

  /* radii / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --shadow-sm: 0 2px 8px rgba(15,30,71,.05);
  --shadow-md: 0 8px 24px rgba(15,30,71,.08);
  --shadow-lg: 0 24px 60px -20px rgba(15,30,71,.25);
  --shadow-xl: 0 40px 80px -30px rgba(15,30,71,.35);
  --shadow-orange: 0 14px 32px -10px rgba(240,120,43,.55);
  --shadow-teal: 0 14px 32px -10px rgba(39,181,181,.45);

  /* type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* layout */
  --max: 1180px;
  --gutter: clamp(18px, 5vw, 40px);

  /* easings */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out-back: cubic-bezier(.34, 1.56, .64, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing: border-box }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px }
body{
  margin:0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg{ display:block; max-width:100%; height:auto }
button{ font: inherit }
a{ color: inherit; text-decoration: none }
ul{ margin:0; padding:0; list-style:none }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.018em; line-height: 1.05 }
p{ margin:0 }
:focus-visible{ outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px }
::selection{ background: var(--orange); color: #fff }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress{
  position: fixed; top: 0; left: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--orange), var(--teal));
  z-index: 100;
  transition: width 60ms linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(240,120,43,.5);
}

/* ---------- CURSOR GLOW (desktop) ---------- */
.cursor-glow{
  position: fixed; pointer-events: none;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,120,43,.08), transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  mix-blend-mode: multiply;
}
@media (min-width: 1024px) and (hover: hover){
  .cursor-glow.is-active{ opacity: 1 }
}

/* ---------- NAV ---------- */
.nav{
  position: sticky; top:0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px var(--gutter);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(15,30,71,.06);
  transition: padding .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled{ padding: 8px var(--gutter); background: rgba(255,255,255,.92) }
.brand{
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 13px;
}
.brand-mark{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  padding: 6px 9px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease);
}
.brand:hover .brand-mark{ transform: scale(1.05) rotate(-3deg) }
.brand-mark::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.brand:hover .brand-mark::before{ transform: translateX(100%) }
.brand-v{ color: #fff; position: relative; z-index: 1 }
.brand-t{ color: var(--orange); position: relative; z-index: 1 }
.brand-a{ color: var(--teal); position: relative; z-index: 1 }
.brand-text{
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  display: none;
}
.nav-cta{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.nav-cta:hover{ background: var(--orange); transform: translateY(-1px); box-shadow: var(--shadow-orange) }
.nav-cta-divider{ opacity: .5 }
.nav-cta strong{ font-weight: 700 }

/* ---------- HERO ---------- */
.hero{
  position: relative;
  padding: 32px var(--gutter) 60px;
  overflow: hidden;
  min-height: 92vh;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero-bg{ position:absolute; inset:0; pointer-events:none; z-index:0 }
.mesh{
  position:absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  will-change: transform;
}
.mesh-1{
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: floatA 20s ease-in-out infinite;
}
.mesh-2{
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  bottom: -140px; left: -100px;
  opacity: .35;
  animation: floatB 24s ease-in-out infinite;
}
.mesh-3{
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--navy-soft) 0%, transparent 70%);
  top: 40%; left: 50%;
  opacity: .12;
  animation: floatC 28s ease-in-out infinite;
}
@keyframes floatA{ 0%,100%{transform: translate(0,0) scale(1)} 50%{transform: translate(-30px,40px) scale(1.08)} }
@keyframes floatB{ 0%,100%{transform: translate(0,0) scale(1)} 50%{transform: translate(40px,-30px) scale(1.12)} }
@keyframes floatC{ 0%,100%{transform: translate(-50%,-50%) scale(1)} 50%{transform: translate(-30%,-60%) scale(1.2)} }

.grid-deco{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(15,30,71,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,30,71,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 75%);
}
.hero-noise{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
  mix-blend-mode: overlay;
}

.hero-inner{ position:relative; z-index:1; max-width: var(--max); margin:0 auto; width: 100%; display: grid; gap: 32px }
.hero-copy{ display: flex; flex-direction: column; gap: 16px }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
}
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(39,181,181,.18);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(39,181,181,.18); transform: scale(1) }
  50%{    box-shadow: 0 0 0 8px rgba(39,181,181,.06); transform: scale(1.1) }
}

.hero-title{
  font-size: clamp(38px, 11vw, 76px);
  letter-spacing: -0.035em;
  line-height: .98;
  color: var(--navy);
  font-weight: 800;
}
.title-line{ display: block; overflow: hidden; padding-bottom: 4px }
.hero-title .grad{
  display: inline-block;
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-light) 30%, var(--teal-light) 65%, var(--teal) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift{
  0%,100%{ background-position: 0% 50% }
  50%{ background-position: 100% 50% }
}

.hero-sub{ display: flex; flex-wrap: wrap; gap: 6px }

.chip{
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s var(--ease);
}
.chip:hover{ transform: translateY(-2px) }
.chip-navy{ background: rgba(15,30,71,.08); color: var(--navy) }
.chip-orange{ background: rgba(240,120,43,.12); color: var(--orange-deep) }
.chip-teal{ background: rgba(39,181,181,.12); color: var(--teal-deep) }

.hero-lede{
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.5;
}
.hero-lede strong{ color: var(--navy); font-weight: 700 }

.hero-actions{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px }

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  border: 0;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn .btn-icon svg{ width: 18px; height: 18px; transition: transform .35s var(--ease) }
.btn:hover .btn-icon svg{ transform: translateX(4px) }
.btn-primary{
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(240,120,43,.65) }
.btn-glow{
  position: absolute;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.4), transparent 60%);
  top: -50%; left: -100%;
  transition: left .8s var(--ease);
  pointer-events: none;
}
.btn:hover .btn-glow{ left: 100% }
.btn-ghost{
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover{ background: var(--surface-2); transform: translateY(-2px); border-color: var(--ink-soft) }
.btn-lg{ padding: 17px 28px; font-size: 15.5px }

.hero-price{
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.price-label{ font-weight: 500 }
.price-amount{
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.price-note{ position: relative; padding-left: 12px }
.price-note::before{
  content: ''; position: absolute; left: 4px; top: 50%;
  width: 3px; height: 3px; background: var(--muted); border-radius: 50%;
  transform: translateY(-50%);
}

/* ---------- Hero figure ---------- */
.hero-figure{ margin: 0; position: relative; perspective: 1000px }
.instructor-card{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, var(--teal-deep) 130%);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  margin-inline: auto;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.instructor-card:hover{
  box-shadow: 0 50px 100px -30px rgba(15,30,71,.45);
}
.instructor-photo-wrap{
  position: absolute; inset: 0;
  overflow: hidden;
}
.instructor-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.instructor-card:hover img{ transform: scale(1.04) }
.instructor-card::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,17,46,.92) 100%);
  pointer-events:none;
}
.instructor-badge{
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--navy);
  transform: translateZ(40px);
  box-shadow: var(--shadow-md);
}
.instructor-badge svg{ width: 16px; height: 16px; color: var(--orange) }
.instructor-name{
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  color: #fff;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateZ(30px);
}
.instructor-name small{
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .75;
  font-weight: 600;
}
.instructor-name strong{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.instructor-name span{
  font-size: 12.5px;
  opacity: .85;
}
.instructor-ring{
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(39,181,181,.25);
  border-radius: var(--r-xl);
  animation: spin 30s linear infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes spin{ to{ transform: rotate(360deg) } }

/* Floating cards */
.float-card{
  position: absolute;
  display: none;
  padding: 12px 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  gap: 10px;
  align-items: center;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.6);
}
.float-card .fc-emoji{ font-size: 20px }
.float-card .fc-text{ display: flex; flex-direction: column; line-height: 1.2 }
.float-card .fc-text strong{
  font-family: var(--font-display);
  font-size: 15px; color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.float-card-1{
  bottom: 20%; left: -10px;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card-2{
  top: 24%; right: -10px;
  animation: floatCard 5s ease-in-out infinite -2.5s;
}
@keyframes floatCard{
  0%,100%{ transform: translateY(0) rotate(-2deg) }
  50%{ transform: translateY(-8px) rotate(1deg) }
}

/* Scroll indicator */
.scroll-indicator{
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(15,30,71,.25);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
  z-index: 2;
  transition: border-color .25s var(--ease);
  display: none;
}
.scroll-indicator:hover{ border-color: var(--orange) }
.scroll-indicator span{
  width: 3px; height: 8px;
  background: var(--navy);
  border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown{
  0%{ transform: translateY(0); opacity: 1 }
  100%{ transform: translateY(14px); opacity: 0 }
}

/* ---------- MARQUEE ---------- */
.marquee{
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.marquee::before, .marquee::after{
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--navy), transparent) }
.marquee::after{ right: 0; background: linear-gradient(-90deg, var(--navy), transparent) }
.marquee-track{
  display: flex; gap: 28px;
  white-space: nowrap;
  animation: marqueeSlide 30s linear infinite;
  width: max-content;
}
.marquee-track span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.85);
}
.marquee-track .dot-sep{ color: var(--orange); font-size: 8px; opacity: .8 }
.marquee-reverse{
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}
.marquee-reverse::before{ background: linear-gradient(90deg, var(--orange), transparent) }
.marquee-reverse::after{ background: linear-gradient(-90deg, var(--orange), transparent) }
.marquee-reverse .marquee-track{
  animation: marqueeSlideReverse 28s linear infinite;
}
.marquee-reverse .marquee-track span{
  color: #fff; font-weight: 800; font-size: 14px;
}
@keyframes marqueeSlide{
  from{ transform: translateX(0) }
  to{ transform: translateX(-50%) }
}
@keyframes marqueeSlideReverse{
  from{ transform: translateX(-50%) }
  to{ transform: translateX(0) }
}

/* ---------- STATS ---------- */
.stats{
  padding: 36px var(--gutter);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before{
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(39,181,181,.15), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(240,120,43,.12), transparent 60%);
}
.stats-grid{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
  position: relative;
  z-index: 1;
}
.stat{
  display: flex; flex-direction: column;
  gap: 6px;
  position: relative;
  padding: 8px 4px 14px;
  transition: transform .35s var(--ease);
}
.stat:hover{ transform: translateY(-3px) }
.stat-icon{
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(240,120,43,.15);
  color: var(--orange-light);
  margin-bottom: 2px;
}
.stat-icon svg{ width: 18px; height: 18px }
.stat:nth-child(2) .stat-icon{ background: rgba(39,181,181,.18); color: var(--teal-light) }
.stat:nth-child(3) .stat-icon{ background: rgba(240,120,43,.15); color: var(--orange-light) }
.stat:nth-child(4) .stat-icon{ background: rgba(39,181,181,.18); color: var(--teal-light) }
.stat-value{
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat:nth-child(2) .stat-value{ color: var(--teal-light) }
.stat:nth-child(3) .stat-value{ color: var(--orange) }
.stat:nth-child(4) .stat-value{ color: var(--teal-light) }
.stat-label{
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
  font-weight: 500;
}
.stat-bar{
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}
.stat-bar-fill{
  position: absolute; left: 0; top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 2px;
  transition: width 1.4s var(--ease);
}
.stat:nth-child(2) .stat-bar-fill{ background: linear-gradient(90deg, var(--teal), var(--orange)) }
.stat:nth-child(4) .stat-bar-fill{ background: linear-gradient(90deg, var(--teal-light), var(--teal)) }

/* ---------- SECTION basics ---------- */
.section{ padding: 64px var(--gutter); position: relative; max-width: var(--max); margin: 0 auto }

.section-dark{
  max-width: none; margin: 0;
  background: linear-gradient(180deg, #07112E 0%, #0F1E47 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark > *{ position: relative; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section-dark{ padding: 64px 0 }
.section-dark-deco{
  position: absolute; inset: 0; pointer-events: none;
}
.orb{
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .25;
}
.orb-1{
  width: 500px; height: 500px;
  background: var(--teal);
  top: -100px; right: -150px;
  animation: floatA 24s ease-in-out infinite;
}
.orb-2{
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -150px; left: -100px;
  opacity: .15;
  animation: floatB 28s ease-in-out infinite;
}

.section-head{
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.kicker{
  display: inline-flex; align-items: center;
  width: max-content;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--orange);
  position: relative;
  padding-left: 22px;
}
.kicker::before{
  content:''; position: absolute; left: 0; top: 50%;
  width: 16px; height: 2px; background: var(--orange);
  transform: translateY(-50%);
}
.kicker-light{ color: var(--teal-light) }
.kicker-light::before{ background: var(--teal-light) }

.section h2{
  font-size: clamp(28px, 6.5vw, 44px);
  letter-spacing: -0.028em;
  color: var(--navy);
  font-weight: 800;
}
.section-dark h2{ color: #fff }
.section-lede{
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-top: 6px;
}
.section-dark .section-lede{ color: rgba(255,255,255,.7) }

/* ---------- Word reveal ---------- */
[data-reveal-words]{
  display: inline-block;
}
.word{
  display: inline-block;
  opacity: 0;
  transform: translateY(80%);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.word.is-revealed{
  opacity: 1; transform: translateY(0);
}
.word-space{ display: inline-block; width: .26em }

/* ---------- BENEFITS ---------- */
.benefits{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--gutter));
  padding: 12px var(--gutter) 16px;
}
.benefits::-webkit-scrollbar{ display:none }

.benefit-card{
  flex: 0 0 86%;
  min-width: 280px;
  max-width: 360px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.benefit-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,120,43,.3);
}
.benefit-card::before{
  content:''; position: absolute; top:0; left:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.benefit-card:hover::before{ transform: scaleX(1) }
.benefit-deco{
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  pointer-events: none;
  overflow: hidden;
}
.benefit-shape{
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  top: -60px; right: -60px;
  opacity: .12;
  transition: transform .6s var(--ease), opacity .4s var(--ease);
}
.benefit-shape-orange{ background: var(--orange) }
.benefit-shape-teal{ background: var(--teal) }
.benefit-shape-navy{ background: var(--navy) }
.benefit-card:hover .benefit-shape{ transform: scale(2.5); opacity: .18 }
.benefit-num{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: .15em;
  position: relative; z-index: 1;
}
.benefit-card h3{
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.benefit-card p{
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative; z-index: 1;
}
.mini-list{
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.mini-list li{
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--surface-2);
  color: var(--navy);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.mini-list li:hover{ background: var(--navy); color: #fff }
.benefit-arrow{
  position: absolute;
  bottom: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  opacity: 0;
  transform: translate(8px, 0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.benefit-arrow svg{ width: 16px; height: 16px }
.benefit-card:hover .benefit-arrow{
  opacity: 1;
  transform: translate(0, 0);
  background: var(--orange);
  color: #fff;
}

/* ---------- MODULES (accordion) ---------- */
.modules{ display: flex; flex-direction: column; gap: 10px }
.module{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.module:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(39,181,181,.25);
  transform: translateX(2px);
}
.module[open]{
  background: linear-gradient(135deg, rgba(39,181,181,.08) 0%, rgba(15,30,71,.0) 100%);
  border-color: rgba(39,181,181,.4);
}
.module summary{
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  font-weight: 600;
  position: relative;
}
.module summary::-webkit-details-marker{ display:none }
.module-num{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--orange);
  background: rgba(240,120,43,.12);
  padding: 6px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.module[open] .module-num{ background: var(--orange); color: #fff }
.module-title{
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.95);
  flex: 1;
  line-height: 1.3;
}
.module-icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  position: relative;
  flex-shrink: 0;
  transition: background .3s var(--ease), transform .35s var(--ease);
}
.module-icon::before, .module-icon::after{
  content:''; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 1.8px; background: #fff;
  transform-origin: center;
  transition: transform .35s var(--ease);
}
.module-icon::before{ transform: translate(-50%,-50%) }
.module-icon::after{ transform: translate(-50%,-50%) rotate(90deg) }
.module[open] .module-icon{ background: var(--orange); transform: rotate(180deg) }
.module[open] .module-icon::after{ transform: translate(-50%,-50%) rotate(0) }
.module-body{
  padding: 0 18px 16px 56px;
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  animation: moduleSlide .35s var(--ease);
}
@keyframes moduleSlide{
  from{ opacity: 0; transform: translateY(-6px) }
  to{ opacity: 1; transform: translateY(0) }
}
.module-body ul{ display: flex; flex-direction: column; gap: 7px }
.module-body li{
  position: relative;
  padding-left: 16px;
}
.module-body li::before{
  content:''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(39,181,181,.18);
}

/* ---------- INCLUDES grid ---------- */
.includes{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.include{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex; align-items: center; gap: 12px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.include:hover{ transform: translateY(-3px); border-color: rgba(15,30,71,.18); box-shadow: var(--shadow-md) }
.include::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(240,120,43,.04) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.include:hover::after{ opacity: 1 }
.include-icon{
  width: 40px; height: 40px;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease) }
.include:hover .include-icon{ transform: scale(1.1) rotate(-5deg) }
.include-icon svg{ width: 20px; height: 20px }
.include-icon-orange{ background: rgba(240,120,43,.14); color: var(--orange-deep) }
.include-icon-navy{ background: rgba(15,30,71,.08); color: var(--navy) }
.include-icon-teal{ background: rgba(39,181,181,.14); color: var(--teal-deep) }
.include strong{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.include-check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .3s var(--ease), transform .3s var(--ease-out-back);
}
.include-check svg{ width: 13px; height: 13px }
.include:hover .include-check, .include.is-visible .include-check{
  opacity: 1; transform: scale(1);
}

/* ---------- DIFFERENTIATOR ---------- */
.diff{
  background:
    linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  border-radius: var(--r-2xl);
  margin-block: 32px;
  padding: 44px 22px 48px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  width: calc(100% - 2*var(--gutter));
  max-width: calc(var(--max) - 40px);
  margin-inline: auto;
}
.diff-bg{ position: absolute; inset: 0; pointer-events: none; z-index: 0 }
.diff-glow{
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,43,.1), transparent 70%);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatA 18s ease-in-out infinite;
}
.diff-inner{ display: flex; flex-direction: column; align-items: center; gap: 18px; position: relative; z-index: 1 }
.diff .kicker{ margin: 0 auto }
.diff-title{
  font-size: clamp(26px, 7vw, 40px);
  color: var(--navy);
  letter-spacing: -0.028em;
}
.diff-lede{
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 36ch;
}
.diff-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 8px 0;
}
.diff-list li{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px;
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: left;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.diff-list li:hover{
  transform: translateY(-4px);
  border-color: rgba(39,181,181,.4);
  box-shadow: var(--shadow-md);
}
.diff-list li strong{
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: block;
}
.diff-list li span{ color: var(--ink-soft) }
.diff-icon{
  width: 38px; height: 38px;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  color: #fff;
  transition: transform .35s var(--ease);
}
.diff-list li:hover .diff-icon{ transform: rotate(-8deg) scale(1.08) }
.diff-icon svg{ width: 18px; height: 18px }
.quote{
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 26px 24px 24px 32px;
  font-family: var(--font-display);
  font-size: clamp(16px, 4.2vw, 21px);
  font-weight: 600;
  line-height: 1.32;
  text-align: left;
  max-width: 560px;
  margin: 8px 0 4px;
  letter-spacing: -0.012em;
  overflow: hidden;
}
.quote::before{
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(39,181,181,.2), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(240,120,43,.15), transparent 50%);
}
.quote-text{ position: relative; z-index: 1 }
.quote em{
  color: var(--orange);
  font-style: normal;
  display: block;
  margin-top: 4px;
}
.quote-mark{
  position: absolute; left: 14px; top: -8px;
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
  color: var(--orange);
  opacity: .3;
  z-index: 1;
}
.diff-foot{
  font-size: 14px;
  color: var(--ink-soft);
}
.diff-foot strong{ color: var(--orange-deep); font-weight: 700 }

/* ---------- INSTRUCTOR ---------- */
.instructor{ background: linear-gradient(180deg, transparent 0%, var(--surface-2) 100%) }
.instructor-wrap{
  display: grid;
  gap: 28px;
}
.instructor-photo{
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 380px;
  margin-inline: auto;
  background: var(--navy);
  position: relative;
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease);
}
.instructor-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .8s var(--ease);
}
.instructor-photo:hover img{ transform: scale(1.04) }
.instructor-photo::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,17,46,.6));
}
.ph-deco{
  position: absolute;
  inset: -10px -10px auto auto;
  width: 80px; height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  z-index: -1;
  opacity: .6;
}
.instructor-content{ display: flex; flex-direction: column; gap: 18px }
.instructor-lede{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.instructor-lede strong{ color: var(--navy); font-weight: 700 }
.creds{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.creds li{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13.5px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.creds li:hover{
  transform: translateX(6px);
  border-color: rgba(240,120,43,.35);
  box-shadow: var(--shadow-sm);
}
.cred-pill{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 5px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.creds li:nth-child(2) .cred-pill{ background: var(--orange) }
.creds li:nth-child(3) .cred-pill{ background: var(--teal-deep) }
.creds li:nth-child(4) .cred-pill{ background: var(--navy-soft) }
.creds li:nth-child(5) .cred-pill{ background: var(--orange-deep) }
.creds li:nth-child(6) .cred-pill{ background: var(--teal) }
.creds li strong{
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.instructor-foot{
  font-size: 13.8px;
  color: var(--ink-soft);
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  position: relative;
}
.instructor-foot strong{ color: var(--navy); font-weight: 700 }

/* ---------- CTA FINAL ---------- */
.cta-final{
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 110%);
  color: #fff;
  padding: 64px var(--gutter) 88px;
  overflow: hidden;
}
.cta-bg{ position: absolute; inset: 0; pointer-events: none }
.ring{
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(39,181,181,.18);
}
.ring-1{ width: 480px; height: 480px; top: -200px; right: -160px; animation: spin 60s linear infinite }
.ring-2{ width: 360px; height: 360px; bottom: -140px; left: -100px; border-color: rgba(240,120,43,.2); animation: spin 80s linear infinite reverse }
.ring-3{ width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(255,255,255,.08); border-style: dashed }
.cta-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}
.cta-inner{ position: relative; max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center }
.cta-final h2{
  font-size: clamp(30px, 7.5vw, 46px);
  letter-spacing: -0.028em;
  line-height: 1.04;
}
.grad-orange{
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-light) 35%, var(--teal-light) 70%, var(--teal) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 6s ease-in-out infinite;
  display: inline-block;
}
.cta-card{
  width: 100%;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-top: 8px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.cta-card::before{
  content:''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
.cta-card-top{ padding: 26px 24px 20px }
.badge{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(39,181,181,.2);
  color: var(--teal-light);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.badge-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(95,211,211,.25);
  animation: pulse 1.8s ease-in-out infinite;
}
.cta-card h3{
  margin-top: 14px;
  font-size: clamp(22px, 5.5vw, 28px);
  letter-spacing: -0.022em;
}
.cta-chips{ margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center }
.cta-card-bottom{
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.cta-price{
  display: flex; flex-direction: column;
  gap: 0;
}
.cta-price small{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.cta-price strong{
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(120deg, #fff 0%, var(--orange-light) 60%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.cta-note{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.cta-note svg{ color: var(--orange) }

/* ---------- FOOTER ---------- */
.footer{
  padding: 32px var(--gutter) 110px;
  background: #07112E;
  color: rgba(255,255,255,.7);
  text-align: center;
}
.footer-inner{ max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px }
.brand-foot{ color: rgba(255,255,255,.9) }
.brand-foot .brand-mark{ background: rgba(255,255,255,.08) }
.footer-tag{
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
  font-weight: 500;
}
.footer-rights{ font-size: 11px; opacity: .55; margin-top: 8px }

/* ---------- STICKY CTA mobile ---------- */
.sticky-cta{
  position: fixed; left: 14px; right: 14px; bottom: 14px;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: 0 18px 40px -10px rgba(240,120,43,.7), 0 2px 0 rgba(0,0,0,.05);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  overflow: hidden;
}
.sticky-cta-glow{
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.3), transparent 50%);
  opacity: 0;
  animation: stickyGlow 4s ease-in-out infinite;
}
@keyframes stickyGlow{
  0%,100%{ opacity: 0; transform: translateX(-100%) }
  50%{ opacity: 1; transform: translateX(100%) }
}
.sticky-cta strong{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.sticky-cta > span{ position: relative; z-index: 1 }
.sticky-cta.is-hidden{ transform: translateY(180%); opacity: 0; pointer-events: none }

/* ---------- ANIMATION states ---------- */
[data-anim]{ opacity: 0; transform: translateY(20px); will-change: transform, opacity }
[data-anim="hero-figure"]{ transform: translateY(30px) scale(.94); opacity: 0 }
[data-anim="card"]{ transform: translateY(28px) scale(.97) }
[data-anim="fade-up"]{ transform: translateY(20px) }
.is-visible[data-anim]{
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  [data-anim], .word{ opacity: 1; transform: none }
}

/* ============================================
   BREAKPOINTS — tablet / desktop refinements
   ============================================ */

@media (min-width: 480px){
  .hero-title{ font-size: clamp(44px, 9.5vw, 64px) }
  .stats-grid{ gap: 24px 20px }
}

@media (min-width: 640px){
  .stats-grid{ grid-template-columns: repeat(4, 1fr) }
  .includes{ grid-template-columns: repeat(3, 1fr) }
  .diff-list{ grid-template-columns: repeat(2, 1fr); max-width: 560px }
}

@media (min-width: 760px){
  body{ font-size: 16px }
  .brand-text{ display: inline }
  .nav-cta{ padding: 11px 18px; font-size: 13.5px }
  .scroll-indicator{ display: flex }

  .hero{ padding: 56px var(--gutter) 72px; min-height: 85vh }
  .hero-inner{
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .hero-figure{ order: 2 }
  .hero-lede{ font-size: 17px }
  .float-card{ display: inline-flex }

  .section{ padding: 96px var(--gutter) }
  .section-dark{ padding: 96px 0 }

  .benefits{
    overflow: visible;
    margin: 0;
    padding: 8px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .benefit-card{ flex: none; max-width: none; min-width: 0 }

  .includes{ grid-template-columns: repeat(4, 1fr); gap: 16px }
  .include{ padding: 20px; flex-direction: column; align-items: flex-start; gap: 14px; text-align: left }
  .include-icon{ width: 46px; height: 46px }
  .include strong{ font-size: 14px }
  .include-check{ position: absolute; top: 14px; right: 14px; margin: 0 }

  .modules{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px }
  .module[open]{ grid-column: span 2 }

  .diff{ padding: 64px 40px; margin-block: 48px }
  .diff-list{ grid-template-columns: repeat(4, 1fr); max-width: 860px; gap: 14px }

  .instructor-wrap{
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
  }
  .instructor-photo{ margin-inline: 0; max-width: none }
  .creds{ grid-template-columns: repeat(2, 1fr) }

  .cta-final{ padding: 110px var(--gutter) 110px }
  .cta-card{ max-width: 580px; margin-inline: auto }
  .cta-card-bottom{ flex-direction: row; align-items: center; justify-content: space-between; padding: 24px 28px; gap: 18px }
  .cta-price{ align-items: flex-start; text-align: left }
  .cta-note{ display: none }
  .cta-card-top{ padding: 32px 28px 24px }

  .footer{ padding: 48px var(--gutter) 56px }
  .sticky-cta{ display: none }

  .stats{ padding: 40px var(--gutter) }
  .stat{ padding: 12px 8px 16px }
  .stat-icon{ width: 38px; height: 38px }
  .stat-icon svg{ width: 22px; height: 22px }
  .stat-value{ font-size: 48px }
  .stat-label{ font-size: 13px }

  .marquee{ padding: 18px 0 }
  .marquee-track span{ font-size: 14px }
}

@media (min-width: 1024px){
  .section h2{ font-size: 52px }
  .hero{ padding: 72px var(--gutter) 96px }
  .hero-title{ font-size: 80px }
  .modules{ grid-template-columns: repeat(3, 1fr) }
  .module[open]{ grid-column: span 3 }
  .module-body{ padding-bottom: 18px }
  .stat-value{ font-size: 54px }
}

/* =====================================================
   V3 OVERRIDES — visible redesign
   ===================================================== */

/* ---- Real VTA logo SVG ---- */
.brand-mark{ display: none !important }
.brand-logo{
  width: 84px; height: 28px;
  color: var(--navy);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-logo{ transform: scale(1.08) }
.brand-text{
  display: none;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}
.brand-text span{
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.brand-text strong{
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.footer .brand-logo{ color: #fff }
.footer .brand-text span{ color: rgba(255,255,255,.6) }
.footer .brand-text strong{ color: #fff }

/* ---- Nav CTA with dot ---- */
.nav-cta{ gap: 8px; padding: 9px 12px 9px 14px }
.nav-cta-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(39,181,181,.3);
  animation: pulse 1.8s ease-in-out infinite;
}
.nav-cta:hover .nav-cta-dot{ background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3) }

/* ---- Eyebrow with arrow ---- */
.eyebrow-arrow{
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  animation: arrowBob 2s ease-in-out infinite;
}
@keyframes arrowBob{ 0%,100%{transform:translate(0,0)} 50%{transform:translate(2px,-2px)} }

/* ---- Hero title gradient stronger ---- */
.title-line-grad{
  display: block;
  padding-top: 4px;
}
.hero-title .grad{
  background: linear-gradient(120deg, #F0782B 0%, #FBA66A 25%, #5FD3D3 60%, #27B5B5 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradShift 5s ease-in-out infinite;
}

/* ---- Hero decorative lines ---- */
.hero-line{
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,120,43,.4), transparent);
  pointer-events: none;
}
.hero-line-1{ top: 30%; left: 0; right: 0; transform: rotate(-2deg) translateY(0); animation: linePulse 8s ease-in-out infinite }
.hero-line-2{ bottom: 25%; left: 0; right: 0; transform: rotate(1deg); animation: linePulse 10s ease-in-out infinite reverse }
@keyframes linePulse{
  0%,100%{ opacity: .3; transform: translateY(0) }
  50%{ opacity: .8; transform: translateY(-10px) }
}

/* ---- Button shimmer ---- */
.btn-shimmer{
  position: absolute;
  top: 0; bottom: 0; width: 30%;
  left: -40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer{
  0%,100%{ left: -40% }
  50%{ left: 110% }
}

/* ---- Trust row ---- */
.trust-row{
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15,30,71,.15);
  margin-top: 8px;
}
.trust-item{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.trust-item svg{
  width: 14px; height: 14px;
  color: var(--orange);
}
.trust-item:nth-child(3) svg{ color: var(--teal-deep) }
.trust-item:nth-child(5) svg{ color: var(--navy) }
.trust-divider{
  width: 3px; height: 3px;
  background: var(--muted); border-radius: 50%;
  opacity: .5;
}

/* ---- Section divider SVG ---- */
.section-divider{
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%; height: 60px;
  z-index: 1;
}
@media (min-width: 760px){ .section-divider{ height: 80px } }

/* ---- Floating cards (mobile too) ---- */
.float-card{
  display: inline-flex !important;
  position: absolute;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  gap: 8px;
  align-items: center;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.7);
}
.fc-icon{
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(15,30,71,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.fc-icon-teal{ background: rgba(39,181,181,.15); color: var(--teal-deep) }
.fc-icon-orange{ background: rgba(240,120,43,.15); color: var(--orange-deep) }
.fc-icon svg{ width: 15px; height: 15px }
.fc-text{ display: flex; flex-direction: column; line-height: 1.15; gap: 1px }
.fc-text strong{
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.float-card-1{
  bottom: 12%; left: -8px;
  animation: floatCard1 5s ease-in-out infinite;
}
.float-card-2{
  top: 18%; right: -8px;
  animation: floatCard2 5.5s ease-in-out infinite -2.5s;
}
.float-card-3{
  display: none !important;
  bottom: 38%; right: -12px;
  animation: floatCard1 6s ease-in-out infinite -1.5s;
}
@media (min-width: 760px){
  .float-card-3{ display: inline-flex !important }
}
@keyframes floatCard1{
  0%,100%{ transform: translateY(0) rotate(-3deg) }
  50%{ transform: translateY(-10px) rotate(-1deg) }
}
@keyframes floatCard2{
  0%,100%{ transform: translateY(0) rotate(2deg) }
  50%{ transform: translateY(-8px) rotate(4deg) }
}

/* ---- Instructor card extra ring ---- */
.instructor-ring-2{
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(240,120,43,.4);
  border-radius: var(--r-xl);
  z-index: -1;
  pointer-events: none;
  animation: spin 40s linear infinite reverse;
}

/* ---- Dark section grid overlay ---- */
.dark-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* =====================================================
   BENEFITS — much more visible, colored variants
   ===================================================== */
.benefit-card{
  padding: 24px 22px 60px;
  position: relative;
  isolation: isolate;
  background: var(--surface);
  overflow: visible;
}
.benefit-card::before{ display: none } /* old top border */

/* Rotating conic gradient border (visible on mobile) */
.benefit-border{
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-xl) + 2px);
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, var(--orange) 40deg, transparent 80deg, transparent 200deg, var(--teal) 240deg, transparent 280deg);
  opacity: 0;
  animation: borderRotate 6s linear infinite;
  transition: opacity .4s var(--ease);
}
.benefit-card-orange .benefit-border{ background: conic-gradient(from 0deg, transparent 0deg, var(--orange) 60deg, transparent 120deg, transparent 240deg, var(--orange-light) 300deg, transparent 360deg) }
.benefit-card-teal .benefit-border{ background: conic-gradient(from 0deg, transparent 0deg, var(--teal) 60deg, transparent 120deg, transparent 240deg, var(--teal-light) 300deg, transparent 360deg) }
.benefit-card-navy .benefit-border{ background: conic-gradient(from 0deg, transparent 0deg, var(--navy) 60deg, transparent 120deg, transparent 240deg, var(--navy-soft) 300deg, transparent 360deg) }
.benefit-card:hover .benefit-border, .benefit-card.is-visible .benefit-border{ opacity: 1 }
@keyframes borderRotate{ to{ transform: rotate(360deg) } }

.benefit-icon-big{
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: transform .4s var(--ease), border-radius .4s var(--ease);
}
.benefit-icon-big svg{ width: 28px; height: 28px }
.benefit-card-orange .benefit-icon-big{
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(240,120,43,.5);
}
.benefit-card-teal .benefit-icon-big{
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(39,181,181,.5);
}
.benefit-card-navy .benefit-icon-big{
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(15,30,71,.5);
}
.benefit-card:hover .benefit-icon-big{ transform: rotate(-8deg) scale(1.08); border-radius: 50% }

.benefit-card h3{ font-size: 24px; margin-top: 4px }
.benefit-card p{ flex: 1 }
.benefit-card .benefit-num{
  position: absolute;
  top: 22px; right: 22px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(15,30,71,.3);
  font-weight: 700;
  letter-spacing: .15em;
}
.benefit-card-orange .benefit-num{ color: rgba(240,120,43,.4) }
.benefit-card-teal .benefit-num{ color: rgba(39,181,181,.4) }
.benefit-card-navy .benefit-num{ color: rgba(15,30,71,.4) }

.benefit-arrow{
  position: absolute;
  bottom: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 1;
  transform: translate(0, 0) rotate(-45deg);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.benefit-arrow svg{ width: 16px; height: 16px; transform: rotate(45deg) }
.benefit-card-orange .benefit-arrow{ background: var(--orange) }
.benefit-card-teal .benefit-arrow{ background: var(--teal) }
.benefit-card:hover .benefit-arrow{ transform: translate(4px, -4px) rotate(0); background: var(--navy) }
.benefit-card-orange:hover .benefit-arrow{ background: var(--orange-deep) }
.benefit-card-teal:hover .benefit-arrow{ background: var(--teal-deep) }

/* Remove old shape since border handles it */
.benefit-deco{ display: none }

/* =====================================================
   STATS — bigger & more dramatic
   ===================================================== */
.stat{
  padding: 18px 12px 18px;
  background: rgba(255,255,255,.025);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat::before{
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease);
}
.stat.is-visible::before{ transform: scaleX(1) }
.stat:hover{ background: rgba(255,255,255,.05); border-color: rgba(240,120,43,.3); transform: translateY(-3px) }
.stat-icon{
  width: 38px; height: 38px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.stat-icon svg{ width: 20px; height: 20px }
.stat-value{
  font-size: clamp(40px, 11vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(240,120,43,.3));
}
.stat:nth-child(2) .stat-value{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(39,181,181,.3));
}
.stat:nth-child(3) .stat-value{
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
}
.stat:nth-child(4) .stat-value{
  background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
}
.stat-label{
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  line-height: 1.25;
  font-weight: 500;
}
.stat-bar{ height: 4px; margin-top: 10px }

/* =====================================================
   MODULES — better visualization
   ===================================================== */
.module{
  position: relative;
  padding-left: 4px;
}
.module::before{
  content: ''; position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--orange), var(--teal));
  border-radius: 2px;
  transition: height .4s var(--ease), top .4s var(--ease);
  transform: translateY(-50%);
}
.module[open]::before{ height: 80% }

/* =====================================================
   INCLUDES — colored gradient backgrounds
   ===================================================== */
.include{
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.include::before{
  content:''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  transition: height .3s var(--ease);
}
.include-orange::before{ background: linear-gradient(90deg, var(--orange), var(--orange-light)) }
.include-navy::before{ background: linear-gradient(90deg, var(--navy), var(--navy-soft)) }
.include-teal::before{ background: linear-gradient(90deg, var(--teal), var(--teal-light)) }
.include:hover::before{ height: 100%; opacity: .08 }

.include-icon{
  position: relative;
  z-index: 1;
}
.include-orange .include-icon{ background: rgba(240,120,43,.14); color: var(--orange-deep) }
.include-navy .include-icon{ background: rgba(15,30,71,.08); color: var(--navy) }
.include-teal .include-icon{ background: rgba(39,181,181,.14); color: var(--teal-deep) }

/* =====================================================
   DIFF — second glow
   ===================================================== */
.diff-glow-2{
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,181,181,.12), transparent 70%);
  top: 60%; left: 10%;
  animation: floatB 22s ease-in-out infinite reverse;
}

/* =====================================================
   INSTRUCTOR — extra decorations
   ===================================================== */
.ph-deco{
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80px; height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  z-index: -1;
  opacity: .6;
}
.ph-deco-2{
  inset: auto auto -12px -12px;
  width: 60px; height: 60px;
  border-color: var(--teal);
  border-style: dashed;
}
.ph-stamp{
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--orange);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 0 8px 20px -4px rgba(240,120,43,.6);
  z-index: 3;
}
.ph-stamp small{ font-size: 10px; font-weight: 800 }

/* =====================================================
   CTA CARD — rotating gradient border + shimmer price
   ===================================================== */
.cta-card{ isolation: isolate }
.cta-card-border{
  position: absolute;
  inset: -1px;
  border-radius: var(--r-2xl);
  background: conic-gradient(from 0deg, var(--orange), var(--teal), var(--orange-light), var(--teal-light), var(--orange));
  z-index: -1;
  animation: borderRotate 8s linear infinite;
  filter: blur(2px);
}
.cta-card::before{ display: none } /* hide old top border */

.cta-price{ position: relative }
.cta-price-amount{
  position: relative;
  display: inline-block;
}
.cta-price-shimmer{
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.7) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  pointer-events: none;
  animation: priceShimmer 3s ease-in-out infinite;
}
@keyframes priceShimmer{
  0%,100%{ background-position: 200% 0 }
  50%{ background-position: -100% 0 }
}

.cta-spotlight{
  position: absolute;
  top: 30%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,120,43,.15), transparent 60%);
  transform: translate(-50%, -50%);
  animation: spotlightPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spotlightPulse{
  0%,100%{ transform: translate(-50%,-50%) scale(1); opacity: .6 }
  50%{ transform: translate(-50%,-50%) scale(1.2); opacity: 1 }
}

/* =====================================================
   ALWAYS-VISIBLE benefit border on mobile (no hover)
   ===================================================== */
@media (max-width: 759px){
  .benefit-card.is-visible .benefit-border{ opacity: .7 }
}

/* =====================================================
   Show brand text on mobile too (smaller)
   ===================================================== */
.brand-text{ display: none }
@media (min-width: 420px){
  .brand-text{ display: flex }
}
@media (min-width: 760px){
  .brand-text span{ font-size: 10px }
  .brand-text strong{ font-size: 14px }
  .brand-logo{ width: 96px; height: 32px }
}

/* =====================================================
   Stats grid on mobile - keep 2 cols but more space
   ===================================================== */
@media (max-width: 639px){
  .stats-grid{ gap: 14px 10px }
  .stat{ padding: 14px 10px }
  .stat-value{ font-size: 38px }
}

/* =====================================================
   V4 — REAL LOGO + STILL BGs ON MOBILE + DECORATIONS
   ===================================================== */

/* ---- REAL LOGO ---- */
.brand-logo{
  display: block;
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.brand:hover .brand-logo{ transform: scale(1.04) }
.brand-text{ display: none !important }
.footer .brand-logo{ height: 36px; max-width: 220px; opacity: .95 }
@media (min-width: 480px){
  .brand-logo{ height: 34px; max-width: 200px }
}
@media (min-width: 760px){
  .brand-logo{ height: 38px; max-width: 240px }
}

/* ---- KILL ALL BG MOVEMENT ON MOBILE ---- */
@media (max-width: 759px){
  /* Hero meshes — keep visible but stop floating */
  .mesh-1, .mesh-2, .mesh-3{ animation: none !important }

  /* Hero diagonal lines — static */
  .hero-line-1, .hero-line-2{ animation: none !important; opacity: .5 !important }

  /* Floating cards on hero — keep position, stop floating */
  .float-card-1, .float-card-2, .float-card-3{ animation: none !important }

  /* Dark section orbs — static */
  .orb-1, .orb-2{ animation: none !important }

  /* Diff section glow — static */
  .diff-glow, .diff-glow-2{ animation: none !important }

  /* Instructor decorative rings — static (no spin) */
  .instructor-ring, .instructor-ring-2{ animation: none !important }

  /* CTA rings + spotlight — static (no spin or pulse) */
  .ring-1, .ring-2, .ring-3{ animation: none !important }
  .cta-spotlight{ animation: none !important; opacity: .35 !important }

  /* Conic-gradient borders — static (no rotation) */
  .benefit-border, .cta-card-border{ animation: none !important }

  /* Gradient text — slower (less seizure-y) */
  .hero-title .grad, .grad-orange{ animation-duration: 12s !important }

  /* Marquee — keep moving (it's the content itself) */
  /* Button shimmer — keep (it's a CTA highlight) */
  /* Price shimmer — keep (it's a focal element) */
  /* Sticky CTA glow — keep */
}

/* ---- ELEGANT SECTION DECORATIONS ---- */
.section-light{ position: relative; isolation: isolate }
.section-deco{
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-deco > *{ position: absolute }
.section > .section-head, .section > .benefits, .section > .includes, .section > .modules, .section > .instructor-wrap{
  position: relative; z-index: 1;
}

/* Dot pattern decoration */
.deco-dots{
  width: 200px; height: 200px;
  background-image: radial-gradient(circle, rgba(15,30,71,.18) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .5;
  mask-image: radial-gradient(circle, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000, transparent 75%);
}
.deco-dots-tl{ top: 32px; left: -40px }
.deco-dots-br{ bottom: 32px; right: -40px }
@media (min-width: 760px){
  .deco-dots{ width: 280px; height: 280px }
  .deco-dots-tl{ top: 64px; left: -60px }
  .deco-dots-br{ bottom: 64px; right: -60px }
}

/* Decorative thin vertical line */
.deco-line{
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(15,30,71,.15), transparent);
  top: 80px; bottom: 80px;
  left: 50%;
  height: auto;
}
.deco-line-right{ left: auto; right: 30% }

/* VTA watermark (faded big logo) */
.deco-watermark{
  width: 380px; height: 280px;
  background-image: url('./assets/vta-mark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .03;
  top: 50%;
  right: -100px;
  transform: translate3d(0, calc(-50% + var(--py, 0px)), 0) rotate(-8deg);
  filter: blur(.5px);
  transition: transform .15s linear;
  will-change: transform;
}
.deco-watermark-right{ right: -50px; opacity: .04 }
@media (max-width: 759px){
  .deco-line{ display: none }
  .deco-watermark{ width: 260px; height: 180px; right: -80px }
}

/* ---- IMPROVED HERO MESHES ---- */
/* Make meshes static-looking but still soft/colorful */
.mesh-1{
  width: 360px; height: 360px;
  filter: blur(90px);
}
.mesh-2{
  width: 320px; height: 320px;
  filter: blur(80px);
}
.mesh-3{
  width: 280px; height: 280px;
  filter: blur(70px);
}

/* ---- DESKTOP: ensure animations match mobile parity ---- */
/* All animations defined globally work on both. Hover/cursor-only effects stay desktop. */
@media (min-width: 760px){
  /* Make sure scroll animations fire identically */
  .float-card{ display: inline-flex !important }
  .scroll-indicator{ display: flex }

  /* Reveal benefit border on visible cards too on desktop (not just hover) */
  .benefit-card.is-visible .benefit-border{ opacity: 1 }
}

/* ---- ELEGANT SCROLL — apply will-change to animated layers ---- */
.benefit-card, .include, .stat, .module, .cta-card, .creds li, .diff-list li{
  will-change: transform, opacity;
}

/* ---- SMOOTHER SECTION TRANSITIONS ---- */
.section + .section,
.section + .marquee,
.marquee + .section{
  position: relative;
}

/* Subtle radial light below section heads */
.section-head{
  position: relative;
}
.section-head::after{
  content: '';
  position: absolute;
  width: 200px; height: 4px;
  bottom: -16px; left: 0;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 60%);
  border-radius: 2px;
  opacity: .25;
}
.section-dark .section-head::after{
  background: linear-gradient(90deg, var(--teal) 0%, transparent 60%);
  opacity: .35;
}

/* ---- INSTRUCTOR section — give it some texture ---- */
.instructor{
  background:
    linear-gradient(180deg, transparent 0%, var(--surface-2) 100%),
    radial-gradient(circle at 90% 20%, rgba(240,120,43,.04), transparent 50%);
}

/* ---- BETTER WHITE SPACE — subtle dot grid in light sections ---- */
.section-light::before{
  content:'';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,30,71,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 50%, transparent 30%, #000 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, transparent 30%, #000 75%);
  pointer-events: none;
  z-index: 0;
}

/* ---- IMPROVED Hero figure on desktop ---- */
@media (min-width: 760px){
  .hero-figure{ max-width: 540px }
  .instructor-card{ max-width: 460px }
}

/* ---- Better stats on mobile ---- */
@media (max-width: 479px){
  .stat-value{ font-size: 34px }
  .stat-icon{ width: 34px; height: 34px }
  .stat-icon svg{ width: 17px; height: 17px }
  .stat-label{ font-size: 11px }
}

/* ---- Fix potential horizontal overflow ---- */
.hero-inner{ width: 100% }
.benefit-card{ max-width: 100% }
img{ max-width: 100% }
.marquee, .marquee-track{ max-width: 100vw }
section, header, footer{ max-width: 100vw }

/* ---- Slightly slower gradient text animations (less distracting) ---- */
@keyframes gradShift{
  0%,100%{ background-position: 0% 50% }
  50%{ background-position: 100% 50% }
}
.hero-title .grad{ animation-duration: 8s }

/* ---- Make benefit cards more uniform on desktop ---- */
@media (min-width: 760px){
  .benefits{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .benefit-card{
    display: flex;
    flex-direction: column;
  }
  .benefit-card p{ flex: 1 }
}

/* ---- Better module hover ---- */
.module summary{ user-select: none }

/* ---- Cleaner instructor card ---- */
.instructor-card{
  border-radius: var(--r-2xl);
}

/* ---- Reduce sticky CTA glow intensity ---- */
@media (max-width: 759px){
  .sticky-cta-glow{ opacity: 0 !important; animation: none !important }
}

/* ---- Ensure trust row wraps nicely ---- */
.trust-row{ row-gap: 8px }

/* ---- Stat bar — slower fill, smoother ---- */
.stat-bar-fill{ transition: width 1.8s var(--ease) }

/* ---- Ensure no horizontal scroll from floating cards ---- */
.hero{ overflow-x: clip }
.cta-final{ overflow-x: clip }
.section-dark{ overflow-x: clip }

/* ---- Better module body padding ---- */
.module-body{
  padding-left: 56px;
}
@media (max-width: 479px){
  .module-body{ padding-left: 50px; padding-right: 14px }
  .module-body ul{ font-size: 13px }
}

/* ---- Module icon: more visible on mobile ---- */
.module-icon{
  background: rgba(255,255,255,.12);
}

/* ---- Footer subtle shine ---- */
.footer{
  background:
    radial-gradient(circle at 50% 0%, rgba(240,120,43,.08), transparent 50%),
    #07112E;
}

/* ---- Better quote ---- */
.quote{
  border: 1px solid rgba(255,255,255,.05);
}

/* ---- Section dark grid more visible ---- */
.dark-grid{
  background-size: 56px 56px;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
}

/* ---- Make the brand more elegant in footer ---- */
.brand-foot{ flex-direction: column; gap: 4px; align-items: center }
.brand-foot .brand-logo{ filter: brightness(0) invert(1); opacity: .92 }

/* The white version was extracted with transparent bg, so no filter needed */
.brand-foot .brand-logo[src*="white"]{ filter: none }

/* =====================================================
   V5 — UNIFIED EXPERIENCE (desktop = mobile parity)
   Stop ALL background animations on every screen size.
   Belt-and-suspenders fix for gradient text invisibility.
   ===================================================== */

/* ---- KILL ALL BACKGROUND/AMBIENT MOTION EVERYWHERE ---- */
.mesh-1, .mesh-2, .mesh-3,
.orb-1, .orb-2,
.diff-glow, .diff-glow-2,
.ring-1, .ring-2, .ring-3,
.cta-spotlight,
.instructor-ring, .instructor-ring-2,
.benefit-border, .cta-card-border,
.hero-line-1, .hero-line-2,
.float-card-1, .float-card-2, .float-card-3{
  animation: none !important;
}

/* Gradient text shifting can stay (subtle) but very slow */
.hero-title .grad, .grad-orange{
  animation-duration: 14s !important;
}

/* ---- GRADIENT TEXT — bulletproof rendering ---- */
.hero-title .grad,
.grad-orange{
  display: inline-block;
  position: relative;
  background: linear-gradient(120deg, #F0782B 0%, #FBA66A 30%, #5FD3D3 65%, #27B5B5 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Fallback if browser doesn't support background-clip: text */
@supports not (background-clip: text){
  .hero-title .grad,
  .grad-orange{
    background: none;
    color: var(--orange) !important;
    -webkit-text-fill-color: var(--orange) !important;
  }
}

/* Inside the gradient text, prevent any word-splitting from breaking it */
.hero-title .grad .word,
.grad-orange .word{
  -webkit-text-fill-color: inherit;
  color: inherit;
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
}

/* Gradient text is always visible — no fade animation
   to avoid background-clip:text + transition rendering issues */
.hero-title .grad,
.grad-orange{
  opacity: 1 !important;
  transform: none !important;
}

/* =====================================================
   PARITY — same component visibility across breakpoints
   ===================================================== */

/* Show floating cards on desktop AND mobile (we want consistency) */
.float-card{ display: inline-flex !important }
.float-card-3{ display: none !important } /* hide 3rd one universally to keep balance */
@media (min-width: 760px){
  .float-card-3{ display: inline-flex !important }
}

/* Scroll indicator only desktop (mobile users naturally scroll) */
@media (max-width: 759px){
  .scroll-indicator{ display: none }
}

/* Make sure benefit border shows ON ALL sizes when visible */
.benefit-card.is-visible .benefit-border{ opacity: .7 }
.benefit-card:hover .benefit-border{ opacity: 1 }

/* Make sure all entry animations work the same regardless of size */
[data-anim]{ transition-duration: .8s !important }

/* =====================================================
   AUDIT — fix specific visual issues
   ===================================================== */

/* Hero — proper alignment on tablet */
@media (min-width: 480px) and (max-width: 759px){
  .hero-inner{ max-width: 540px }
  .hero-title{ font-size: 56px }
}

/* Reduce hero padding on very small screens */
@media (max-width: 379px){
  .hero{ padding: 24px var(--gutter) 48px }
  .hero-title{ font-size: 36px }
  .hero-lede{ font-size: 14.5px }
}

/* Better hero figure ordering on mobile (after copy) */
.hero-inner > .hero-copy{ order: 1 }
.hero-inner > .hero-figure{ order: 2 }
@media (min-width: 760px){
  .hero-inner > .hero-figure{ order: 0 } /* default flow */
}

/* Stats: cleaner 2x2 on mobile, 4 on tablet+ */
@media (min-width: 640px) and (max-width: 759px){
  .stats-grid{ grid-template-columns: repeat(4, 1fr) }
}

/* CTA card on mobile — clear stacking */
@media (max-width: 759px){
  .cta-card-bottom{ flex-direction: column; align-items: stretch; text-align: left }
  .cta-card-bottom .btn{ width: 100%; justify-content: center }
  .cta-price{ flex-direction: row; align-items: baseline; gap: 10px }
  .cta-price small{ font-size: 10.5px }
  .cta-price strong{ font-size: 36px }
}

/* Instructor on mobile — slightly smaller photo */
@media (max-width: 479px){
  .instructor-photo{ max-width: 320px }
}

/* Ensure modules display = same look mobile + desktop */
.module summary{ gap: 14px }
.module-num{ min-width: 30px; text-align: center }

/* Diff section: more consistent grid */
.diff-list{ gap: 10px }
@media (min-width: 640px){
  .diff-list{ grid-template-columns: repeat(4, 1fr); max-width: 760px; margin-inline: auto }
}

/* Reduce hero mesh opacity slightly — too saturated otherwise */
.mesh-1{ opacity: .42 }
.mesh-2{ opacity: .28 }
.mesh-3{ opacity: .12 }

/* CTA spotlight static but subtle */
.cta-spotlight{ opacity: .4 }
.diff-glow{ opacity: .9 }
.diff-glow-2{ opacity: .7 }

/* Footer logo size consistent */
.brand-foot .brand-logo{ height: 36px; max-width: 220px; filter: none; opacity: .95 }

/* Title-line overflow hidden was causing the grad to be clipped — relax it */
.title-line-grad{ overflow: visible !important; padding-bottom: 8px }
.title-line{ padding-bottom: 4px }
