:root{
  --bg:#050811;
  --bg-2:#080d18;
  --surface:#0b1220;
  --surface-2:#0e1727;
  --text:#f5f8ff;
  --muted:#95a3b9;
  --line:rgba(255,255,255,.09);
  --cyan:#61e7ff;
  --blue:#5b8cff;
  --purple:#a978ff;
  --green:#6dffbd;
  --shadow:0 24px 80px rgba(0,0,0,.35);
  --radius:24px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,sans-serif;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(91,140,255,.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(169,120,255,.07),
      transparent 24%
    );
  z-index:-2;
}

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

button{
  font:inherit;
}

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

.section{
  position:relative;
  padding:120px 0;
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:100;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:transparent;
  z-index:1000;
}

.scroll-progress span{
  display:block;
  height:100%;
  width:0;
  background:linear-gradient(90deg,var(--cyan),var(--purple));
  box-shadow:0 0 16px var(--cyan);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR (KTSEMICON STYLE) & OFFER BAR
   ════════════════════════════════════════════════════════════ */

.navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:900;
  height:76px;
  background:rgba(7,11,20,.88);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(97,231,255,.14);
  transition:box-shadow .3s, background .3s;
}

.navbar.scrolled{
  background:rgba(5,9,18,.96);
  box-shadow:0 4px 28px rgba(0,0,0,.5), 0 0 30px rgba(97,231,255,.08);
}

.nav-inner{
  max-width:var(--container);
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
}

.nav-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.logo-img{
  height:48px;
  width:auto;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 0 16px rgba(97,231,255,.2));
  transition:transform .25s ease;
}

.logo-img:hover{
  transform:scale(1.03);
}

/* OFFER BAR */
.offer-bar{
  position:fixed;
  top:76px;
  left:0;
  right:0;
  z-index:890;
  background:linear-gradient(90deg, rgba(14,24,44,.95), rgba(16,36,64,.95) 50%, rgba(14,24,44,.95));
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(97,231,255,.18);
  padding:10px 16px;
  box-shadow:0 4px 20px rgba(0,0,0,.35);
}

.offer-bar-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:#d4e5f7;
}

.offer-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(30,111,217,.22);
  border:1px solid rgba(97,231,255,.3);
  color:var(--cyan);
  padding:3px 10px;
  border-radius:100px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
}

.offer-text strong{
  color:#fff;
  font-family:"Space Grotesk";
}

.offer-timer{
  font-family:"Space Grotesk",monospace;
  font-weight:700;
  font-size:14px;
  color:var(--cyan);
  background:rgba(0,0,0,.4);
  padding:4px 10px;
  border-radius:6px;
  border:1px solid rgba(97,231,255,.2);
  letter-spacing:.04em;
}

.offer-btn{
  background:linear-gradient(100deg,#66eaff,#728fff);
  color:#041018;
  border:none;
  padding:6px 18px;
  border-radius:8px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  font-family:"Space Grotesk",sans-serif;
  letter-spacing:.04em;
  transition:all .2s ease;
  box-shadow:0 0 16px rgba(97,231,255,.25);
}

.offer-btn:hover{
  box-shadow:0 0 25px rgba(97,231,255,.45);
  transform:translateY(-1px);
}

/* ============================================================
   BOOK NOW POPUP MODAL
   ============================================================ */

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(2,6,12,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:9999;
  display:grid;
  place-items:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.modal-backdrop.open{
  opacity:1;
  pointer-events:auto;
}

.modal-dialog{
  width:100%;
  max-width:480px;
  background:#0c1424;
  border:1px solid rgba(97,231,255,.28);
  border-radius:24px;
  padding:36px 32px;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.7), 0 0 40px rgba(97,231,255,.1);
  transform:translateY(20px) scale(.97);
  transition:transform .25s ease;
}

.modal-backdrop.open .modal-dialog{
  transform:translateY(0) scale(1);
}

.modal-close{
  position:absolute;
  top:18px;
  right:20px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#94a3b8;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:all .2s ease;
}

.modal-close:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(97,231,255,.3);
}

.modal-header{
  margin-bottom:24px;
}

.modal-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  color:var(--cyan);
  background:rgba(97,231,255,.08);
  padding:4px 10px;
  border-radius:100px;
  border:1px solid rgba(97,231,255,.2);
  margin-bottom:12px;
}

.modal-header h3{
  font-size:24px;
  letter-spacing:-.03em;
  margin-bottom:8px;
}

.modal-header p{
  font-size:13px;
  color:#94a3b8;
  line-height:1.5;
}

.modal-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
  text-align:left;
}

.form-group label{
  font-size:12px;
  font-weight:600;
  color:#cbd5e1;
  letter-spacing:.02em;
}

.form-group input,
.form-group select{
  width:100%;
  padding:12px 14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  color:#fff;
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus{
  border-color:var(--cyan);
  box-shadow:0 0 15px rgba(97,231,255,.2);
  background:rgba(255,255,255,.05);
}

.form-group select option{
  background:#0c1424;
  color:#fff;
}

.modal-submit{
  width:100%;
  margin-top:8px;
  padding:14px;
  font-size:14px;
  cursor:pointer;
}

.form-privacy{
  font-size:11px;
  color:#64748b;
  text-align:center;
  margin-top:4px;
}

.form-success-msg{
  display:none;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  color:#4ade80;
  padding:12px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  text-align:center;
  animation:fadeIn .3s ease;
}

/* ============================================================
   HERO
   ============================================================ */

.hero{
  min-height:850px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  padding-top:175px;
  background:
    radial-gradient(
      circle at 65% 45%,
      rgba(91,140,255,.10),
      transparent 28%
    );
}

.hero-grid,
.final-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(
      rgba(255,255,255,.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.045) 1px,
      transparent 1px
    );
  background-size:56px 56px;
  mask-image:linear-gradient(
    to bottom,
    black,
    transparent 80%
  );
  opacity:.42;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(40px);
  pointer-events:none;
}

.orb-a{
  width:360px;
  height:360px;
  background:rgba(97,231,255,.09);
  left:-120px;
  top:180px;
  animation:float 9s ease-in-out infinite;
}

.orb-b{
  width:440px;
  height:440px;
  background:rgba(169,120,255,.08);
  right:-180px;
  bottom:80px;
  animation:float 11s ease-in-out infinite reverse;
}

.hero-inner{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:40px;
  align-items:center;
  position:relative;
}

.hero-copy{
  max-width:680px;
}

.eyebrow,
.section-kicker{
  font-size:11px;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--cyan);
}

.eyebrow{
  display:inline-flex;
  gap:9px;
  align-items:center;
  padding:8px 11px;
  border:1px solid rgba(97,231,255,.18);
  background:rgba(97,231,255,.04);
  border-radius:100px;
}

.pulse-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 14px var(--green);
  animation:pulse 1.8s infinite;
}

h1,
h2,
h3{
  font-family:"Space Grotesk",Inter,sans-serif;
}

h1{
  font-size:clamp(50px,6vw,88px);
  line-height:.98;
  letter-spacing:-.065em;
  margin:25px 0 25px;
  max-width:760px;
}

h1 em,
h2 em{
  font-style:normal;
  background:
    linear-gradient(
      100deg,
      #fff 0%,
      var(--cyan) 42%,
      #b18cff 85%
    );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

h2{
  font-size:clamp(36px,4vw,58px);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:15px 0 18px;
}

h3{
  letter-spacing:-.025em;
}

.hero-sub{
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
  max-width:620px;
}

.hero-actions{
  display:flex;
  gap:13px;
  flex-wrap:wrap;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  border-radius:14px;
  padding:15px 20px;
  font-weight:800;
  font-size:14px;
  border:1px solid transparent;
  transition:
    transform .25s,
    box-shadow .25s,
    border-color .25s,
    background .25s;
  position:relative;
  overflow:hidden;
}

.btn b{
  font-size:18px;
}

.btn-primary{
  background:linear-gradient(
    100deg,
    #66eaff,
    #728fff
  );
  color:#041018;
  box-shadow:0 0 35px rgba(97,231,255,.2);
}

.btn-primary:hover{
  box-shadow:0 0 55px rgba(97,231,255,.35);
  transform:translateY(-3px);
}

.btn-ghost{
  border-color:var(--line);
  color:#dce5f5;
  background:rgba(255,255,255,.025);
}

.btn-ghost:hover{
  border-color:rgba(97,231,255,.3);
  background:rgba(97,231,255,.04);
  transform:translateY(-3px);
}

.hero-trust{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:28px;
  color:#8796ad;
  font-size:12px;
}

.hero-trust span:first-child{
  color:#b9c8dd;
}

/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual{
  height:540px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.visual-glow{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(97,231,255,.16),
      transparent 65%
    );
  filter:blur(10px);
  animation:breathe 4s ease-in-out infinite;
}

/* ============================================================
   CHIP
   ============================================================ */

.chip{
  width:280px;
  height:280px;
  border:1px solid rgba(97,231,255,.4);
  border-radius:34px;
  background:
    linear-gradient(
      145deg,
      rgba(20,38,58,.92),
      rgba(8,15,27,.95)
    );
  box-shadow:
    0 0 80px rgba(97,231,255,.12),
    inset 0 0 60px rgba(91,140,255,.08);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.chip:before,
.chip:after{
  content:"";
  position:absolute;
  border:1px solid rgba(97,231,255,.13);
  border-radius:22px;
}

.chip:before{
  inset:22px;
}

.chip:after{
  inset:48px;
  border-color:rgba(169,120,255,.12);
}

.chip-core{
  text-align:center;
  position:relative;
  z-index:2;
}

.chip-label{
  display:block;
  color:#7f90a9;
  font-size:9px;
  letter-spacing:.2em;
}

.chip-core strong{
  display:block;
  font-family:"Space Grotesk";
  font-size:64px;
  line-height:1;
  margin:9px 0;
  background:
    linear-gradient(
      135deg,
      #fff,
      var(--cyan)
    );
  -webkit-background-clip:text;
  color:transparent;
}

.chip-core small{
  font-size:9px;
  letter-spacing:.18em;
  color:#6d7f98;
}

/* ============================================================
   FIXED / SYMMETRICAL CHIP PINS
   ============================================================ */

.chip-pins{
  position:absolute;
  display:block;
  pointer-events:none;
}

/* Top + Bottom pins */

.pins-top,
.pins-bottom{
  left:45px;
  right:45px;
  height:18px;
}

.pins-top{
  top:-18px;
}

.pins-bottom{
  bottom:-18px;
}

/* Left + Right pins */

.pins-left,
.pins-right{
  top:45px;
  bottom:45px;
  width:18px;
}

.pins-left{
  left:-18px;
}

.pins-right{
  right:-18px;
}

/* Horizontal pins */

.pins-top:before,
.pins-bottom:before{
  content:"";
  position:absolute;
  width:5px;
  height:18px;
  top:0;
  left:0;
  background:var(--cyan);
  border-radius:3px;

  box-shadow:
    0 0 10px rgba(97,231,255,.55),
    80px 0 var(--cyan),
    160px 0 var(--cyan);
}

/* Vertical pins */

.pins-left:before,
.pins-right:before{
  content:"";
  position:absolute;
  width:18px;
  height:5px;
  top:0;
  left:0;
  background:var(--cyan);
  border-radius:3px;

  box-shadow:
    0 0 10px rgba(97,231,255,.55),
    0 80px var(--cyan),
    0 160px var(--cyan);
}

/* ============================================================
   HERO NODES
   ============================================================ */

.node{
  position:absolute;
  z-index:4;
  padding:9px 12px;
  border:1px solid rgba(97,231,255,.2);
  border-radius:10px;
  background:rgba(5,10,19,.75);
  backdrop-filter:blur(10px);
  font-size:9px;
  letter-spacing:.15em;
  color:#b9dfff;
  box-shadow:0 0 20px rgba(97,231,255,.05);
}

.node-1{
  top:58px;
  left:20px;
}

.node-2{
  top:145px;
  right:8px;
}

.node-3{
  bottom:105px;
  right:28px;
}

.node-4{
  bottom:44px;
  left:30px;
}

.node-5{
  top:12px;
  right:110px;
  color:#d9c8ff;
  border-color:rgba(169,120,255,.25);
}

/* ============================================================
   CONNECTIONS
   ============================================================ */

.connection{
  position:absolute;
  height:1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--cyan),
      transparent
    );
  opacity:.7;
  transform-origin:left;
}

.c1{
  width:120px;
  left:118px;
  top:180px;
  transform:rotate(18deg);
}

.c2{
  width:115px;
  right:90px;
  top:200px;
  transform:rotate(165deg);
}

.c3{
  width:120px;
  right:110px;
  bottom:180px;
  transform:rotate(198deg);
}

.c4{
  width:130px;
  left:115px;
  bottom:135px;
  transform:rotate(-20deg);
}

/* ============================================================
   DATA PACKETS
   ============================================================ */

.data-packet{
  position:absolute;
  width:6px;
  height:6px;
  background:#fff;
  border-radius:50%;
  box-shadow:
    0 0 15px 4px var(--cyan);
  z-index:3;
}

.p1{
  animation:packet1 3.4s linear infinite;
}

.p2{
  animation:packet2 4s linear infinite 1s;
}

.p3{
  animation:packet3 3.7s linear infinite 1.7s;
}

/* ============================================================
   HERO STATS
   ============================================================ */

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:65px;
  border-top:1px solid var(--line);
  padding-top:28px;
  position:relative;
}

.stat{
  display:flex;
  flex-direction:column;
  gap:5px;
  border-right:1px solid var(--line);
  padding-left:22px;
}

.stat:first-child{
  padding-left:0;
}

.stat:last-child{
  border-right:0;
}

.stat strong{
  font-family:"Space Grotesk";
  font-size:27px;
  letter-spacing:-.04em;
}

.stat span{
  color:#718097;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */

.proof-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.015);
  padding:18px 0;
  overflow:hidden;
}

.proof-inner{
  display:flex;
  align-items:center;
  gap:32px;
}

.proof-label{
  white-space:nowrap;
  color:#65738a;
  font-size:9px;
  letter-spacing:.18em;
}

.tool-marquee{
  display:flex;
  gap:18px;
  align-items:center;
  white-space:nowrap;
  color:#a9b6ca;
  font-family:"Space Grotesk";
  font-size:14px;
}

.tool-marquee i{
  color:var(--cyan);
  font-size:7px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-heading{
  max-width:760px;
}

.section-heading.centered{
  margin:0 auto 55px;
  text-align:center;
}

.section-heading p{
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
  max-width:650px;
}

.centered p{
  margin-left:auto;
  margin-right:auto;
}

/* ============================================================
   PROBLEM
   ============================================================ */

.problem{
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(91,140,255,.025),
      transparent
    );
}

.problem-grid,
.outcome-grid,
.audience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:55px;
}

.problem-card,
.audience-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:20px;
  padding:28px;
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.problem-card:before,
.audience-card:before{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  border-radius:50%;
  background:rgba(97,231,255,.08);
  filter:blur(35px);
  right:-80px;
  top:-80px;
}

.problem-card:hover,
.audience-card:hover{
  transform:translateY(-7px);
  border-color:rgba(97,231,255,.2);
  box-shadow:var(--shadow);
}

.icon,
.audience-card>span{
  font-family:"Space Grotesk";
  color:var(--cyan);
  font-size:11px;
  letter-spacing:.15em;
}

.problem-card h3,
.audience-card h3{
  font-size:22px;
  margin:22px 0 10px;
}

.problem-card p,
.audience-card p{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* ============================================================
   OUTCOMES
   ============================================================ */

.outcome-grid{
  grid-template-columns:repeat(3,1fr);
}

.glow-card{
  min-height:250px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.008)
    );
  position:relative;
  overflow:hidden;
  transition:.4s;
}

.glow-card:after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  right:-100px;
  bottom:-100px;
  background:rgba(97,231,255,.12);
  filter:blur(40px);
  transition:.4s;
}

.glow-card:hover{
  transform:translateY(-8px);
  border-color:rgba(97,231,255,.25);
  box-shadow:
    0 25px 70px rgba(0,0,0,.28),
    0 0 35px rgba(97,231,255,.07);
}

.glow-card:hover:after{
  transform:scale(1.5);
}

.glow-icon{
  width:45px;
  height:45px;
  border:1px solid rgba(97,231,255,.25);
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--cyan);
  font-size:21px;
  box-shadow:0 0 22px rgba(97,231,255,.07);
}

.glow-card h3{
  font-size:21px;
  margin:25px 0 10px;
}

.glow-card p{
  color:var(--muted);
  line-height:1.7;
  font-size:13px;
  max-width:290px;
}

.card-arrow{
  position:absolute;
  right:26px;
  top:27px;
  color:#67768e;
}

/* ============================================================
   CURRICULUM
   ============================================================ */

.curriculum{
  background:
    linear-gradient(
      180deg,
      rgba(97,231,255,.02),
      transparent
    );
}

.curriculum-wrap{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:18px;
}

.week-tabs{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.week-tab{
  text-align:left;
  padding:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:#708098;
  border-radius:16px;
  cursor:pointer;
  transition:.3s;
}

.week-tab.active,
.week-tab:hover{
  color:#fff;
  border-color:rgba(97,231,255,.3);
  background:
    linear-gradient(
      100deg,
      rgba(97,231,255,.08),
      rgba(169,120,255,.04)
    );
  box-shadow:inset 3px 0 var(--cyan);
}

.week-tab span{
  display:block;
  font-size:9px;
  letter-spacing:.15em;
  margin-top:5px;
}

.curriculum-panel{
  border:1px solid var(--line);
  border-radius:24px;
  padding:38px;
  min-height:380px;
  background:rgba(255,255,255,.018);
}

.week-content{
  display:none;
  animation:panelIn .45s ease;
}

.week-content.active{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
}

.module-tag{
  font-size:9px;
  letter-spacing:.2em;
  color:var(--cyan);
  font-weight:800;
}

.week-content h3{
  font-size:34px;
  line-height:1.1;
  margin:16px 0;
}

.week-content p{
  color:var(--muted);
  line-height:1.7;
}

.week-content ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.week-content li{
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:11px;
  background:rgba(255,255,255,.02);
  font-size:13px;
  color:#cad4e5;
}

.week-content li:before{
  content:"→";
  color:var(--cyan);
  margin-right:10px;
}

/* ============================================================
   PROJECT
   ============================================================ */

.project{
  background:#060b14;
}

.project-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:center;
}

.deliverables{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:30px;
}

.deliverables span{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:9px;
  color:#9aa9bd;
  font-size:10px;
}

.architecture{
  min-height:600px;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    radial-gradient(
      circle at center,
      rgba(97,231,255,.05),
      transparent 55%
    ),
    rgba(255,255,255,.015);
  position:relative;
  display:flex;
  align-items:center;
  flex-direction:column;
  padding-top:48px;
}

.arch-node{
  padding:14px 19px;
  border:1px solid rgba(97,231,255,.22);
  border-radius:12px;
  background:rgba(7,15,27,.9);
  font-size:10px;
  letter-spacing:.16em;
  color:#cbeeff;
  z-index:3;
  cursor:help;
  transition:.3s;
  box-shadow:0 0 22px rgba(97,231,255,.04);
}

.arch-node:hover{
  border-color:var(--cyan);
  color:#fff;
  box-shadow:0 0 28px rgba(97,231,255,.16);
  transform:translateY(-2px);
}

.arch-line{
  height:55px;
  width:1px;
  background:linear-gradient(var(--cyan),transparent);
}

.arch-branches{
  display:flex;
  gap:95px;
  position:relative;
  margin-top:5px;
}

.arch-branches:before{
  content:"";
  position:absolute;
  height:1px;
  width:210px;
  left:50%;
  top:-5px;
  transform:translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--cyan),
      transparent
    );
}

.arch-tooltip{
  position:absolute;
  bottom:26px;
  left:50%;
  transform:translateX(-50%);
  width:min(85%,370px);
  text-align:center;
  color:#75869e;
  font-size:12px;
  line-height:1.5;
}

.tools-section{
  padding-top:40px;
}

.tool-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  max-width:960px;
  margin:0 auto;
}

.tool-card{
  padding:24px 20px;
  border:1px solid var(--line);
  border-radius:16px;
  color:#d4e2f5;
  text-align:center;
  background:rgba(255,255,255,.02);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}

.tool-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0%, rgba(97,231,255,.12), transparent 70%);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.tool-card:hover{
  color:#fff;
  border-color:rgba(97,231,255,.4);
  box-shadow:0 8px 30px rgba(0,0,0,.35), 0 0 25px rgba(97,231,255,.12);
  transform:translateY(-3px);
}

.tool-card:hover:before{
  opacity:1;
}

.tool-tag{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--cyan);
  font-weight:700;
}

.tool-card strong{
  font-family:"Space Grotesk";
  font-size:16px;
  letter-spacing:-.01em;
}

.not-for{
  margin-top:18px;
  padding:18px;
  border:1px dashed var(--line);
  border-radius:14px;
  color:#7f8da2;
  font-size:12px;
}

.not-for strong{
  color:#b7c4d8;
  margin-right:5px;
}

/* ============================================================
   MENTOR
   ============================================================ */

.mentor-card{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:70px;
  align-items:center;
  padding:70px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(
      circle at 15% 40%,
      rgba(97,231,255,.07),
      transparent 30%
    ),
    rgba(255,255,255,.015);
}

.mentor-portrait{
  height:370px;
  display:grid;
  place-items:center;
  position:relative;
}

.portrait-ring{
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  border:1px solid rgba(97,231,255,.22);
  box-shadow:
    0 0 70px rgba(97,231,255,.08),
    inset 0 0 50px rgba(169,120,255,.06);
  animation:spinSlow 16s linear infinite;
}

.portrait-ring:before,
.portrait-ring:after{
  content:"";
  position:absolute;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 15px var(--cyan);
}

.portrait-ring:before{
  top:10px;
  left:50%;
}

.portrait-ring:after{
  bottom:32px;
  right:14px;
  background:var(--purple);
  box-shadow:0 0 15px var(--purple);
}

.portrait-placeholder,
.mentor-img{
  width:210px;
  height:260px;
  border-radius:110px 110px 35px 35px;
  background:linear-gradient(160deg,#1c3147,#0b121e);
  border:1px solid rgba(97,231,255,.22);
  display:grid;
  place-items:center;
  text-align:center;
  color:#6f8199;
  font-family:"Space Grotesk";
  font-size:20px;
  letter-spacing:.08em;
  object-fit:cover;
  position:relative;
  z-index:2;
}

.portrait-placeholder span{
  font-size:10px;
  color:var(--cyan);
  letter-spacing:.2em;
}

.mentor-copy>p{
  color:var(--muted);
  line-height:1.7;
}

.mentor-name{
  font-family:"Space Grotesk";
  font-weight:700;
  color:#fff!important;
  font-size:22px;
  margin-bottom:0;
}

.mentor-metrics{
  display:flex;
  gap:35px;
  margin:28px 0;
}

.mentor-metrics div{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.mentor-metrics strong{
  font-family:"Space Grotesk";
  font-size:22px;
}

.mentor-metrics span{
  font-size:10px;
  color:#718097;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.mentor-note{
  padding-left:20px;
  border-left:2px solid var(--cyan);
  font-style:italic;
  color:#aebcd0!important;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */



@keyframes testimonialIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.testimonials{
  overflow:hidden;
}

.testimonial-slider{
  position:relative;
  max-width:850px;
  margin:auto;
}

.testimonial-window{
  overflow:hidden;
}
.testimonial {
    display: none;
    opacity: 0;
    transform: translateX(30px);
}

.testimonial.active {
    display: block;
    animation: testimonialIn 0.6s ease forwards;
}
.quote-mark{
  font-family:Georgia;
  font-size:80px;
  line-height:.5;
  color:var(--cyan);
  opacity:.55;
}

.testimonial blockquote{
  font-family:"Space Grotesk";
  font-size:30px;
  line-height:1.35;
  letter-spacing:-.03em;
  margin:25px auto 35px;
}

.person{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.person>div:last-child{
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:3px;
}

.person span{
  font-size:11px;
  color:#74839a;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#19384c,#2c1e50);
  border:1px solid rgba(97,231,255,.2);
  font-size:11px;
  color:#c9eaff;
}

.testimonial-window{
  overflow:hidden;
  padding:0 50px;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:1px solid rgba(97,231,255,.3);
  border-radius:50%;
  background:rgba(12,22,38,.85);
  backdrop-filter:blur(8px);
  color:#e2f1ff;
  font-size:18px;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:10;
  transition:all .25s ease;
}

.slider-btn:hover{
  border-color:var(--cyan);
  background:rgba(97,231,255,.15);
  box-shadow:0 0 25px rgba(97,231,255,.25);
  color:#fff;
  transform:translateY(-50%) scale(1.08);
}

.prev{
  left:0;
}

.next{
  right:0;
}

.slider-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:20px;
}

.slider-dots button{
  width:6px;
  height:6px;
  border:0;
  border-radius:50%;
  background:#344256;
  cursor:pointer;
  padding:0;
}

.slider-dots button.active{
  background:var(--cyan);
  box-shadow:0 0 10px var(--cyan);
}

/* ============================================================
   INCLUDED
   ============================================================ */

.included-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}

.include-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.include-list div{
  padding:17px;
  border:1px solid var(--line);
  border-radius:12px;
  color:#b8c5d7;
  font-size:12px;
  background:rgba(255,255,255,.015);
}

.include-list div::first-letter{
  color:var(--cyan);
}

.bonus-stack{
  display:grid;
  gap:10px;
}

.bonus-card{
  padding:25px;
  border:1px solid rgba(169,120,255,.15);
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      rgba(169,120,255,.055),
      rgba(255,255,255,.01)
    );
}

.bonus-card span{
  font-size:9px;
  letter-spacing:.18em;
  color:#b89aff;
}

.bonus-card h3{
  margin:10px 0 5px;
  font-size:19px;
}

.bonus-card p{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  margin:0;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing{
  padding-top:100px;
}

.pricing-shell{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:30px;
  padding:50px;
  border:1px solid rgba(97,231,255,.16);
  border-radius:30px;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(97,231,255,.07),
      transparent 40%
    ),
    rgba(255,255,255,.015);
  box-shadow:var(--shadow);
}

.pricing-copy p{
  color:var(--muted);
  line-height:1.7;
  max-width:520px;
}

.date-line{
  display:flex;
  gap:9px;
  align-items:center;
  color:#a4b2c7;
  font-size:13px;
  margin-top:14px;
}

.date-line span{
  color:var(--green);
  font-size:8px;
  box-shadow:0 0 10px var(--green);
}

.price-card{
  border:1px solid rgba(97,231,255,.25);
  border-radius:22px;
  padding:30px;
  background:rgba(3,8,16,.65);
  box-shadow:0 0 60px rgba(97,231,255,.08);
}

.price-label{
  font-size:9px;
  letter-spacing:.2em;
  color:var(--cyan);
  font-weight:800;
}

.old-price{
  text-decoration:line-through;
  color:#617087;
  margin-top:18px;
}

.price{
  font-family:"Space Grotesk";
  font-size:60px;
  letter-spacing:-.06em;
  margin-top:2px;
}

.price-sub{
  color:#718096;
  font-size:11px;
}

.price-features{
  display:grid;
  gap:9px;
  margin:25px 0;
  color:#b8c6d9;
  font-size:12px;
}

.wide{
  width:100%;
}

.price-card small{
  display:block;
  color:#5f6f85;
  font-size:9px;
  line-height:1.5;
  margin-top:14px;
}

.countdown{
  text-align:center;
  margin-top:50px;
}

.countdown p{
  font-size:9px;
  letter-spacing:.2em;
  color:#728197;
}

.timer{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px;
}

.timer div{
  min-width:90px;
  padding:17px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.015);
}

.timer strong{
  display:block;
  font-family:"Space Grotesk";
  font-size:30px;
}

.timer span{
  font-size:8px;
  color:#68788f;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.countdown small{
  display:block;
  color:#536278;
  margin-top:13px;
  font-size:9px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
}

.text-link{
  display:inline-block;
  margin-top:18px;
  color:var(--cyan);
  font-size:13px;
}

.faq-list{
  border-top:1px solid var(--line);
}

details{
  border-bottom:1px solid var(--line);
  padding:0;
}

summary{
  list-style:none;
  cursor:pointer;
  padding:22px 0;
  font-family:"Space Grotesk";
  font-weight:600;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

summary::-webkit-details-marker{
  display:none;
}

summary span{
  color:#728199;
  transition:.2s;
}

details[open] summary span{
  transform:rotate(45deg);
  color:var(--cyan);
}

details p{
  color:var(--muted);
  line-height:1.7;
  font-size:13px;
  margin:-4px 30px 22px 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta{
  overflow:hidden;
  text-align:center;
  min-height:530px;
  display:flex;
  align-items:center;
}

.final-grid{
  mask-image:
    radial-gradient(
      circle,
      black,
      transparent 75%
    );
  opacity:.25;
}

.final-inner{
  position:relative;
}

.final-inner p{
  color:var(--muted);
  margin:0 0 30px;
}

.btn-large{
  padding:18px 25px;
  font-size:15px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer{
  border-top:1px solid var(--line);
  padding:30px 0;
  background:#04070d;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer p,
.footer a:not(.brand){
  color:#59687d;
  font-size:11px;
}

.footer-inner>div{
  display:flex;
  gap:18px;
}

/* ============================================================
   WHATSAPP
   ============================================================ */

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:90;
  display:flex;
  align-items:center;
  gap:9px;
  padding:12px 14px;
  border-radius:14px;
  background:#0d2019;
  border:1px solid rgba(109,255,189,.25);
  color:#baffdc;
  box-shadow:0 12px 35px rgba(0,0,0,.3);
  font-size:11px;
}

.whatsapp b{
  font-size:15px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.in-view{
  opacity:1;
  transform:none;
}

.delay-1{
  transition-delay:.08s;
}

.delay-2{
  transition-delay:.16s;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes float{
  50%{
    transform:
      translateY(-25px)
      translateX(10px);
  }
}

@keyframes breathe{
  50%{
    transform:scale(1.13);
    opacity:.75;
  }
}

@keyframes pulse{
  50%{
    transform:scale(1.7);
    opacity:.5;
  }
}

@keyframes spinSlow{
  to{
    transform:rotate(360deg);
  }
}

@keyframes panelIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:none;
  }
}

@keyframes packet1{
  0%{
    left:29%;
    top:35%;
    opacity:0;
  }

  15%{
    opacity:1;
  }

  70%{
    left:67%;
    top:43%;
  }

  100%{
    left:71%;
    top:42%;
    opacity:0;
  }
}

@keyframes packet2{
  0%{
    right:28%;
    top:38%;
    opacity:0;
  }

  15%{
    opacity:1;
  }

  70%{
    right:18%;
    top:67%;
  }

  100%{
    right:19%;
    top:68%;
    opacity:0;
  }
}

@keyframes packet3{
  0%{
    left:30%;
    bottom:29%;
    opacity:0;
  }

  15%{
    opacity:1;
  }

  70%{
    left:63%;
    bottom:25%;
  }

  100%{
    left:67%;
    bottom:24%;
    opacity:0;
  }
}

/* ============================================================
   HERO PREMIUM POLISH
   ============================================================ */

.hero-spotlight{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0;
  transition:opacity .4s ease;
  background:
    radial-gradient(
      480px circle at var(--mx,50%) var(--my,35%),
      rgba(97,231,255,.12),
      rgba(169,120,255,.05) 42%,
      transparent 65%
    );
}

@media(hover:hover) and (pointer:fine){

  .hero:hover .hero-spotlight{
    opacity:1;
  }

}

/* ============================================================
   HEADLINE SHIMMER
   ============================================================ */

h1 em{
  background-size:220% auto;
  animation:textShimmer 7s ease-in-out infinite;
}

@keyframes textShimmer{

  0%,
  100%{
    background-position:0% 50%;
  }

  50%{
    background-position:100% 50%;
  }

}

/* ============================================================
   CTA GLOW
   ============================================================ */

.hero-actions .btn-primary{
  animation:ctaGlow 2.6s ease-in-out infinite;
}

.hero-actions .btn-primary:hover{
  animation-play-state:paused;
}

@keyframes ctaGlow{

  0%,
  100%{
    box-shadow:0 0 32px rgba(97,231,255,.18);
  }

  50%{
    box-shadow:0 0 52px rgba(97,231,255,.38);
  }

}

/* ============================================================
   BUTTON SHINE
   ============================================================ */

.btn:before{
  content:"";
  position:absolute;
  top:0;
  left:-65%;
  width:45%;
  height:100%;
  background:
    linear-gradient(
      115deg,
      transparent,
      rgba(255,255,255,.35),
      transparent
    );
  transform:skewX(-18deg);
  transition:left .65s cubic-bezier(.2,.7,.2,1);
  pointer-events:none;
  z-index:1;
}

.btn:hover:before{
  left:130%;
}

.btn span,
.btn b{
  position:relative;
  z-index:2;
}

/* ============================================================
   BUTTON RIPPLE
   ============================================================ */

.btn .ripple{
  position:absolute;
  border-radius:50%;
  transform:scale(0);
  opacity:.55;
  background:rgba(255,255,255,.55);
  pointer-events:none;
  animation:rippleAnim .6s ease-out forwards;
  z-index:1;
}

@keyframes rippleAnim{

  to{
    transform:scale(2.8);
    opacity:0;
  }

}

/* ============================================================
   FLOATING BADGES
   ============================================================ */

.float-badge{
  position:absolute;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid rgba(97,231,255,.22);
  border-radius:14px;
  background:rgba(6,12,22,.78);
  backdrop-filter:blur(14px);
  font-size:11px;
  letter-spacing:.03em;
  color:#cfe6ff;
  box-shadow:
    0 14px 34px rgba(0,0,0,.4),
    0 0 25px rgba(97,231,255,.08);
  z-index:5;
  animation:float 6.5s ease-in-out infinite;
  white-space:nowrap;
}

.float-badge strong{
  color:#fff;
  font-family:"Space Grotesk";
  margin-left:3px;
}

.float-badge .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  display:inline-block;
  flex:none;
}

.dot-green{
  background:var(--green);
  box-shadow:0 0 10px var(--green);
}

.dot-cyan{
  background:var(--cyan);
  box-shadow:0 0 10px var(--cyan);
}

.fb-1{
  top:-4%;
  right:-8%;
  animation-delay:.3s;
}

.fb-2{
  bottom:-4%;
  left:-10%;
  animation-delay:1.3s;
}

/* ============================================================
   SCROLL CUE
   ============================================================ */

.scroll-cue{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:#7d8da3;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  z-index:5;
  opacity:.85;
  transition:
    opacity .3s,
    color .3s;
}

.scroll-cue:hover{
  color:#cfe6ff;
  opacity:1;
}

.scroll-cue-mouse{
  width:20px;
  height:32px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:12px;
  display:flex;
  justify-content:center;
  padding-top:6px;
}

.scroll-cue-mouse i{
  width:3px;
  height:6px;
  border-radius:2px;
  background:var(--cyan);
  box-shadow:0 0 8px var(--cyan);
  animation:scrollDot 1.8s infinite;
}

@keyframes scrollDot{

  0%{
    opacity:1;
    transform:translateY(0);
  }

  70%{
    opacity:0;
    transform:translateY(9px);
  }

  100%{
    opacity:0;
    transform:translateY(0);
  }

}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media(max-width:1000px){

  .hero-inner,
  .project-layout,
  .mentor-card,
  .pricing-shell,
  .faq-layout{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding-top:145px;
  }

  .hero-copy{
    max-width:800px;
  }

  .hero-visual{
    margin-top:10px;
  }

  .project-layout{
    gap:45px;
  }

  .mentor-card{
    padding:45px;
  }

  .mentor-portrait{
    height:280px;
  }

  .pricing-shell{
    gap:40px;
  }

  .faq-layout{
    gap:40px;
  }

  .curriculum-wrap{
    grid-template-columns:1fr;
  }

  .week-tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
  }

  .week-tab{
    padding:14px;
  }

  .week-content.active{
    grid-template-columns:1fr;
  }

  .outcome-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .scroll-cue{
    display:none;
  }

  .fb-1{
    right:2%;
  }

  .fb-2{
    left:0;
  }

}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media(max-width:700px){

  .container{
    width:min(
      calc(100% - 30px),
      var(--container)
    );
  }

  .site-header{
    padding:8px 0;
  }

  .nav{
    height:58px;
  }

  .nav-links{
    position:fixed;
    top:74px;
    left:15px;
    right:15px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:16px;
    background:rgba(7,11,20,.95);
    backdrop-filter:blur(20px);
    border:1px solid var(--line);
    border-radius:18px;
    gap:4px;
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    padding:13px;
  }

  .nav-cta{
    text-align:center;
  }

  .menu-toggle{
    display:block;
  }

  .navbar{
    height:60px;
  }

  .logo-img{
    height:36px;
  }

  .offer-bar{
    top:60px;
    padding:8px 10px;
  }

  .offer-bar-inner{
    font-size:11.5px;
    gap:8px;
    justify-content:center;
  }

  .offer-text{
    text-align:center;
    line-height:1.4;
  }

  .offer-timer{
    font-size:12px;
    padding:3px 7px;
  }

  .offer-btn{
    padding:5px 14px;
    font-size:11px;
  }

  .hero{
    padding-top:165px;
  }

  .hero-inner{
    gap:10px;
  }

  .hero h1{
    font-size:clamp(34px, 8.5vw, 48px);
    letter-spacing:-.045em;
    line-height:1.05;
  }

  .hero-sub{
    font-size:15px;
    line-height:1.6;
  }

  .hero-actions{
    flex-direction:column;
    width:100%;
  }

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

  .hero-visual{
    height:340px;
    transform:scale(.72);
    margin:-30px -30px 0;
  }

  .hero-stats{
    grid-template-columns:1fr 1fr;
    gap:18px 14px;
  }

  .stat{
    border-right:0;
    padding-left:0;
  }

  .stat strong{
    font-size:20px;
    line-height:1.2;
  }

  .stat span{
    font-size:10px;
  }

  .proof-inner{
    display:block;
  }

  .proof-label{
    display:block;
    margin-bottom:15px;
  }

  .tool-marquee{
    overflow:hidden;
  }

  .section{
    padding:70px 0;
  }

  .problem-grid,
  .outcome-grid,
  .audience-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .tool-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .tool-card{
    padding:18px 16px;
  }

  .section-heading{
    max-width:100%;
  }

  .curriculum-panel{
    padding:20px;
  }

  .week-tabs{
    grid-template-columns:1fr 1fr;
    gap:6px;
  }

  .week-tab{
    padding:10px 8px;
    font-size:12px;
  }

  .week-content h3{
    font-size:23px;
  }

  .architecture{
    min-height:480px;
    padding:20px 10px;
  }

  .arch-branches{
    gap:15px;
  }

  .arch-branches:before{
    width:120px;
  }

  .arch-node{
    font-size:11px;
    padding:10px 16px;
  }

  .mentor-card{
    padding:26px 20px;
    gap:20px;
  }

  .mentor-portrait{
    height:250px;
  }

  .mentor-portrait .portrait-ring{
    width:220px;
    height:220px;
  }

  .mentor-portrait .mentor-img{
    width:170px;
    height:210px;
    border-radius:90px 90px 25px 25px;
  }

  .mentor-metrics{
    gap:16px;
    flex-wrap:wrap;
  }

  .mentor-metrics div strong{
    font-size:19px;
  }

  .testimonial{
    padding:10px 15px;
  }

  .testimonial-window{
    padding:0 30px;
  }

  .testimonial blockquote{
    font-size:19px;
    line-height:1.4;
    margin:18px auto 24px;
  }

  .slider-btn{
    width:36px;
    height:36px;
    font-size:15px;
  }

  .prev{
    left:-5px;
  }

  .next{
    right:-5px;
  }

  .slider-dots{
    margin-top:14px;
  }

  .included-grid{
    grid-template-columns:1fr;
  }

  .include-list{
    grid-template-columns:1fr;
  }

  .pricing-shell{
    padding:24px 18px;
  }

  .price-card{
    padding:22px 18px;
  }

  .price{
    font-size:22px;
    line-height:1.3;
  }

  .timer{
    gap:6px;
  }

  .timer div{
    min-width:58px;
    padding:10px 5px;
  }

  .timer strong{
    font-size:19px;
  }

  .timer span{
    font-size:8px;
  }

  .modal-dialog{
    padding:28px 20px;
    border-radius:18px;
  }

  .modal-header h3{
    font-size:20px;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }

  .whatsapp span{
    display:none;
  }

  .whatsapp{
    width:48px;
    height:48px;
    justify-content:center;
    border-radius:50%;
    padding:0;
  }

  .hero-trust{
    gap:9px;
  }

  .hero-trust span{
    font-size:10px;
  }

  .float-badge{
    font-size:9.5px;
    padding:8px 11px;
  }

  .fb-1{
    top:2%;
    right:4%;
  }

  .fb-2{
    bottom:6%;
    left:2%;
  }

}

/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media(max-width:420px){

  .float-badge{
    display:none;
  }

  .offer-text{
    font-size:11px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:12px;
  }

  .timer{
    flex-wrap:wrap;
    justify-content:center;
  }

  .timer div{
    min-width:50px;
    padding:8px 4px;
  }

  .timer strong{
    font-size:17px;
  }

  .modal-dialog{
    padding:22px 16px;
  }

}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *:before,
  *:after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }

  .hero-actions .btn-primary,
  .float-badge,
  h1 em,
  .scroll-cue-mouse i{
    animation:none;
  }

}

/* ============================================================
   MOBILE SAFE AREA
   ============================================================ */

:root{
  padding-top:env(safe-area-inset-top,0px);
  padding-bottom:env(safe-area-inset-bottom,0px);
}

.site-header{
  padding-top:
    calc(
      14px + env(safe-area-inset-top,0px)
    );
}

.whatsapp{
  bottom:
    calc(
      20px + env(safe-area-inset-bottom,0px)
    );
}