:root {
  --navy-950: #061a38;
  --navy-900: #082a52;
  --navy-800: #0b3f73;
  --navy-700: #135a91;
  --teal: #19abc2;
  --teal-dark: #117f9b;
  --orange: #7438d1;
  --orange-dark: #5a25b8;
  --cream: #eef7fb;
  --cream-deep: #dceef5;
  --paper: #fbfdff;
  --ink: #102b46;
  --muted: #5b6d80;
  --line: rgba(8, 55, 100, .14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(4, 30, 67, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #d9ccfb; color: var(--navy-950); }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.narrow { max-width: 820px; }
.center { text-align: center; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(4, 30, 67, .06);
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(4, 30, 67, .09);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  text-decoration: none;
  line-height: 1;
}

.brand-logo { width: auto; height: 62px; object-fit: contain; object-position: left center; }

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.brand-mark svg { width: 100%; fill: currentColor; }
.brand-mark .brand-spark { fill: var(--orange); }
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-size: 1.17rem; letter-spacing: -.04em; }
.brand small { color: var(--orange-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: var(--navy-800); font-size: .87rem; font-weight: 700; text-decoration: none; }
.desktop-nav a:hover { color: var(--orange-dark); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, .desktop-nav a:focus-visible, .brand:focus-visible {
  outline: 3px solid #61d5e6;
  outline-offset: 4px;
}

.button svg { width: 22px; height: 22px; fill: currentColor; flex: 0 0 auto; }
.button-primary { color: var(--white); background: linear-gradient(135deg, #7438d1, #5222b4); box-shadow: 0 12px 28px rgba(101, 45, 196, .3); }
.button-primary:hover { background: linear-gradient(135deg, #6630c1, #461b9f); box-shadow: 0 16px 34px rgba(82, 34, 180, .34); }
.button-secondary { color: var(--white); background: var(--navy-800); box-shadow: 0 12px 28px rgba(7, 26, 35, .18); }
.button-secondary:hover { background: var(--navy-950); }
.button-large { min-height: 60px; padding: 17px 27px; font-size: 1rem; }
.button-small { min-height: 46px; padding: 11px 19px; font-size: .85rem; }
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 0;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(6, 26, 56, .99) 0%, rgba(8, 42, 82, .98) 58%, rgba(35, 35, 107, .96) 100%),
    var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  background-image: radial-gradient(circle at center, #fff 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 520px; height: 520px; right: -200px; top: 60px; background: radial-gradient(circle, rgba(25, 171, 194, .34), transparent 68%); }
.hero-orb-two { width: 420px; height: 420px; left: -210px; bottom: -120px; background: radial-gradient(circle, rgba(116, 56, 209, .24), transparent 68%); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .88fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8be5f1;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span { width: 27px; height: 2px; background: var(--orange); }
.eyebrow-dark { color: var(--teal-dark); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.04em; }
h1 { max-width: 760px; margin-bottom: 25px; font-size: clamp(3rem, 5.2vw, 5.15rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.2vw, 4rem); }
h3 { font-size: 1.4rem; }
h1 em, h2 em { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

.hero-lead { max-width: 690px; margin-bottom: 30px; color: #d7e6f3; font-size: 1.18rem; line-height: 1.65; }
.hero-lead strong { color: var(--white); }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-bottom: 33px; }
.action-note { max-width: 175px; color: #b9cade; font-size: .78rem; line-height: 1.45; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e5edf7;
  font-size: .88rem;
}

.hero-points li { display: flex; align-items: center; gap: 9px; }
.hero-points li:last-child { grid-column: 1 / -1; }
.check { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; color: #bff4fb; background: rgba(25, 171, 194, .2); border: 1px solid rgba(97, 213, 230, .32); border-radius: 50%; font-size: .72rem; font-weight: 900; }

.hero-visual { align-self: end; }
.portrait-frame { position: relative; height: 545px; margin-bottom: 34px; }
.portrait-frame::before { content: ""; position: absolute; inset: 18px -18px -18px 22px; background: linear-gradient(145deg, rgba(25,171,194,.65), rgba(116,56,209,.52)); border-radius: 34px; }
.portrait-frame::after { content: ""; position: absolute; z-index: -1; width: 330px; height: 330px; right: -80px; top: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(58,201,222,.32), transparent 69%); }
.portrait-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 67% center; border: 1px solid rgba(255,255,255,.34); border-radius: 32px; box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.portrait-label { position: absolute; z-index: 3; top: 28px; left: -34px; display: grid; padding: 16px 19px; background: rgba(255,255,255,.96); color: var(--navy-900); border: 1px solid rgba(25,171,194,.18); border-radius: 15px; box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.portrait-label span { color: var(--orange-dark); font-size: .64rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.portrait-label strong { margin: 2px 0 3px; font-size: 1rem; }
.portrait-label small { color: var(--muted); font-size: .66rem; }
.floating-card { position: absolute; z-index: 3; right: -22px; bottom: 24px; display: flex; align-items: center; gap: 11px; padding: 14px 17px; color: var(--navy-900); background: rgba(255,255,255,.96); border: 1px solid rgba(25,171,194,.18); border-radius: 15px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.floating-card > span:last-child { display: grid; }
.floating-card strong { font-size: .8rem; }
.floating-card small { color: var(--muted); font-size: .67rem; }
.floating-icon { width: 37px; height: 37px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 10px; }

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  padding: 27px 0 30px;
  border-top: 1px solid rgba(255,255,255,.11);
  list-style: none;
}

.trust-strip > li { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 0 18px; border-right: 1px solid rgba(255,255,255,.11); }
.trust-strip > li:last-child { border: 0; }
.trust-strip span:last-child { display: grid; }
.trust-strip strong { font-size: .82rem; line-height: 1.35; }
.trust-strip small { color: #9eb0b4; font-size: .67rem; }
.trust-icon { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; color: #a7e4de; border: 1px solid rgba(167,228,222,.26); border-radius: 50%; font-size: .8rem; font-weight: 900; }

.section { padding: 116px 0; }
.intro { background: var(--paper); }
.intro .narrow > p, .bonuses .narrow > p, .pricing .narrow > p { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }

.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 62px; }
.outcome-card { position: relative; min-height: 350px; padding: 34px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 14px 40px rgba(12, 37, 49, .06); }
.outcome-card::after { content: ""; position: absolute; inset: auto 22px 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--teal)); border-radius: 10px 10px 0 0; transform: scaleX(.22); transform-origin: left; transition: transform .3s ease; }
.outcome-card:hover::after { transform: scaleX(1); }
.source-note { max-width: 900px; margin-top: 34px; margin-bottom: 0; color: var(--muted); font-size: .78rem; text-align: center; }
.source-note a { color: var(--navy-800); font-weight: 800; text-underline-offset: 3px; }
.card-number { position: absolute; top: 22px; right: 25px; color: #d7dede; font-family: Georgia, serif; font-size: 1.3rem; }
.line-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 55px; color: var(--teal-dark); background: #eaf6f3; border-radius: 18px; }
.line-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.outcome-card h3 { margin-bottom: 14px; font-size: 1.23rem; }
.outcome-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.difference-section { background: var(--cream); }
.difference-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 68px; align-items: center; }
.class-photo { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.class-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,26,35,.35)); pointer-events: none; }
.class-photo img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
.photo-badge { position: absolute; z-index: 2; left: 24px; bottom: 24px; display: grid; padding: 16px 20px; color: var(--white); background: rgba(7,26,35,.86); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; backdrop-filter: blur(10px); }
.photo-badge strong { font-size: .92rem; }
.photo-badge span { color: #b7c6c9; font-size: .71rem; }
.photo-caption { position: absolute; z-index: 2; right: 17px; bottom: 12px; color: rgba(255,255,255,.72); font-size: .56rem; }
.difference-copy > p { color: var(--muted); font-size: 1.04rem; }
.feature-list { display: grid; gap: 0; margin: 36px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 62px 1fr; gap: 17px; align-items: center; padding: 19px 0; border-top: 1px solid rgba(13,48,59,.13); }
.feature-list li > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--orange-dark); background: #fff9f3; border-radius: 50%; font-size: .78rem; font-weight: 900; }
.feature-list div { display: grid; }
.feature-list strong { font-size: .94rem; }
.feature-list small { color: var(--muted); font-size: .82rem; line-height: 1.5; }

.curriculum { color: var(--white); background: var(--navy-950); }
.section-heading { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: end; margin-bottom: 62px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 8px; color: #aebdc0; font-size: .98rem; }
.module-list { display: grid; gap: 14px; }
.module { display: grid; grid-template-columns: 112px 1.2fr .9fr; gap: 30px; align-items: center; padding: 30px 34px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 17px; transition: background .2s ease, border-color .2s ease; }
.module:hover { background: rgba(255,255,255,.07); border-color: rgba(117,210,200,.26); }
.module-index { display: grid; align-content: center; justify-items: center; height: 88px; border-right: 1px solid rgba(255,255,255,.11); }
.module-index span { color: #8fa5aa; font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.module-index strong { color: var(--orange); font-family: Georgia, serif; font-size: 2.2rem; font-weight: 500; line-height: 1; }
.module-period { color: #80d2ca; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.module h3 { margin: 7px 0 9px; font-size: 1.34rem; }
.module p { margin: 0; color: #bdc9cb; font-size: .88rem; line-height: 1.6; }
.module ul { display: grid; gap: 8px; margin: 0; padding: 0; color: #e0e7e8; font-size: .82rem; list-style: none; }
.module li { position: relative; padding-left: 20px; }
.module li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.lunch-break { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 4px 0; padding: 19px 25px; color: var(--navy-900); background: var(--cream); border-radius: 15px; }
.lunch-break > div { display: grid; }
.lunch-break strong { font-size: .86rem; }
.lunch-break small { color: var(--muted); font-size: .78rem; }
.lunch-icon { width: 40px; height: 40px; display: grid; place-items: center; background: var(--white); border-radius: 50%; }

.instructor { overflow: hidden; background: var(--paper); }
.instructor-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 92px; align-items: center; }
.instructor-portrait { position: relative; min-height: 540px; }
.portrait-backdrop { position: absolute; inset: 24px 18px 76px 0; background: linear-gradient(145deg, var(--teal), var(--orange)); border-radius: 34px; }
.instructor-portrait img { position: absolute; inset: 0 8px 70px 0; width: calc(100% - 8px); height: calc(100% - 70px); object-fit: cover; object-position: 67% center; border: 1px solid rgba(255,255,255,.7); border-radius: 32px; box-shadow: var(--shadow); }
.instructor-portrait blockquote { position: absolute; inset: auto -38px 0 56px; margin: 0; padding: 23px 26px; color: var(--white); background: var(--teal-dark); border-radius: 15px; box-shadow: 0 20px 50px rgba(7,26,35,.2); font-family: Georgia, serif; font-size: 1.02rem; line-height: 1.45; }
.instructor-copy .lead { color: var(--navy-800); font-size: 1.1rem; font-weight: 650; }
.instructor-copy p:not(.lead) { color: var(--muted); font-size: .96rem; }
.experience-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 29px 0 27px; padding: 0; list-style: none; }
.experience-tags li { padding: 8px 13px; color: var(--navy-800); background: var(--cream); border-radius: 999px; font-size: .7rem; font-weight: 750; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark); font-size: .82rem; font-weight: 850; text-decoration: none; border-bottom: 1px solid rgba(201,83,40,.28); }
.text-link:hover { border-color: currentColor; }
.content-reviewed { margin: 20px 0 0; color: var(--muted); font-size: .7rem !important; line-height: 1.5; }

.mentor-teaser { padding: 0 0 116px; background: var(--paper); }
.mentor-teaser-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 105px 1fr auto; gap: 34px; align-items: center; padding: 42px 45px; color: var(--white); background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(7,26,35,.18); }
.mentor-teaser-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -180px; top: -220px; background: radial-gradient(circle, rgba(47,158,146,.4), transparent 68%); border-radius: 50%; pointer-events: none; }
.mentor-teaser-symbol { position: relative; width: 94px; height: 94px; border: 1px solid rgba(130,218,209,.28); border-radius: 50%; }
.mentor-teaser-symbol::before, .mentor-teaser-symbol::after { content: ""; position: absolute; left: 25px; width: 44px; height: 1px; background: rgba(130,218,209,.4); transform-origin: left center; }
.mentor-teaser-symbol::before { top: 46px; transform: rotate(-34deg); }
.mentor-teaser-symbol::after { top: 47px; transform: rotate(34deg); }
.mentor-teaser-symbol span { position: absolute; z-index: 1; width: 17px; height: 17px; background: var(--teal); border: 4px solid #153c48; border-radius: 50%; box-shadow: 0 0 0 1px rgba(149,226,218,.35); }
.mentor-teaser-symbol span:nth-child(1) { left: 16px; top: 38px; background: var(--orange); }
.mentor-teaser-symbol span:nth-child(2) { right: 13px; top: 13px; }
.mentor-teaser-symbol span:nth-child(3) { right: 13px; bottom: 13px; }
.mentor-teaser-copy { position: relative; z-index: 1; max-width: 670px; }
.mentor-teaser-label { margin-bottom: 10px; color: #8edbd3; font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.mentor-teaser h2 { margin-bottom: 11px; font-size: clamp(1.75rem, 2.8vw, 2.65rem); }
.mentor-teaser p { margin: 0; color: #b8c8ca; font-size: .84rem; line-height: 1.6; }
.mentor-teaser-action { position: relative; z-index: 1; display: grid; gap: 9px; justify-items: center; }
.mentor-teaser-action small { color: #82989d; font-size: .62rem; }

.mentor-network { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.mentor-orb { position: absolute; width: 640px; height: 640px; right: -270px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(47,158,146,.26), transparent 68%); pointer-events: none; }
.mentor-intro { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 86px; align-items: end; }
.mentor-intro h2 { max-width: 680px; margin-bottom: 0; }
.mentor-lead p { color: #b9c8cb; font-size: 1rem; }
.mentor-lead p:last-child { margin-bottom: 3px; color: #f1f5f5; font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; font-style: italic; }
.mentor-lead strong { color: var(--white); }
.mentor-pillars { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.mentor-pillar { min-height: 285px; padding: 34px 30px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.mentor-number { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 48px; color: #a7e4de; border: 1px solid rgba(167,228,222,.3); border-radius: 50%; font-family: Georgia, serif; font-size: .9rem; }
.mentor-pillar h3 { margin-bottom: 13px; color: var(--white); }
.mentor-pillar p { margin: 0; color: #aebfc2; font-size: .88rem; line-height: 1.65; }
.mentor-invitation { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; margin-top: 26px; padding: 36px 40px; color: var(--navy-900); background: var(--cream); border-radius: var(--radius-md); box-shadow: 0 22px 65px rgba(0,0,0,.2); }
.mentor-invitation-copy { max-width: 730px; }
.mentor-kicker { color: var(--orange-dark); font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.mentor-invitation h3 { margin: 8px 0 8px; font-size: 1.65rem; }
.mentor-invitation p { margin: 0; color: var(--muted); font-size: .88rem; }

.bonuses { color: var(--white); background: var(--navy-900); }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.bonus-card { position: relative; min-height: 310px; padding: 35px 30px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.bonus-card.featured { background: var(--cream); color: var(--navy-900); transform: translateY(-12px); }
.bonus-label { display: inline-flex; padding: 6px 10px; color: #8bdbd2; background: rgba(47,158,146,.14); border-radius: 999px; font-size: .61rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.featured .bonus-label { color: var(--orange-dark); background: #fde5d8; }
.bonus-icon { display: block; margin: 43px 0 20px; color: var(--orange); font-family: Georgia, serif; font-size: 2.8rem; line-height: 1; }
.bonus-card h3 { margin-bottom: 12px; }
.bonus-card p { margin: 0; color: #bcc9cc; font-size: .9rem; }
.bonus-card.featured p { color: var(--muted); }

.audience { padding-top: 0; background: var(--navy-900); }
.audience-card { display: grid; grid-template-columns: .9fr 1fr; gap: 60px; align-items: center; padding: 58px 64px; background: var(--teal-dark); border-radius: var(--radius-lg); box-shadow: 0 25px 80px rgba(0,0,0,.16); }
.audience-card h2 { margin-bottom: 0; color: var(--white); font-size: clamp(2.1rem, 3.4vw, 3.3rem); }
.audience-list { display: grid; gap: 13px; margin: 0; padding: 0; color: var(--white); list-style: none; }
.audience-list li { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .92rem; }
.audience-list li:last-child { border: 0; }
.audience-list span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal-dark); background: var(--white); border-radius: 50%; font-size: .7rem; font-weight: 900; }

.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 500px)); justify-content: center; gap: 22px; align-items: stretch; margin-top: 60px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 40px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 55px rgba(7,26,35,.08); }
.price-card-featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); box-shadow: 0 28px 70px rgba(7,26,35,.2); }
.best-value { position: absolute; top: 18px; right: 18px; padding: 7px 11px; color: #8a3416; background: #ffd8c2; border-radius: 999px; font-size: .58rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.plan-name { color: var(--teal-dark); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price-card-featured .plan-name { color: #8bdbd2; }
.price-head h3 { margin: 8px 0 12px; font-size: 1.85rem; }
.price-head p { min-height: 54px; margin: 0; color: var(--muted); font-size: .86rem; }
.price-card-featured .price-head p { color: #aebdc0; }
.price-block { display: grid; margin: 32px 0 27px; padding: 27px 0; border-block: 1px solid var(--line); }
.price-card-featured .price-block { border-color: rgba(255,255,255,.12); }
.old-price { color: var(--muted); font-size: .76rem; text-decoration: line-through; }
.price-card-featured .old-price { color: #8fa1a5; }
.installments { display: flex; align-items: flex-end; gap: 9px; }
.installments > small { margin-bottom: 9px; color: var(--muted); font-size: .72rem; }
.price-card-featured .installments > small { color: #b7c4c6; }
.installments strong { color: var(--orange-dark); font-size: 3.3rem; line-height: 1; letter-spacing: -.06em; }
.price-card-featured .installments strong { color: #ff9a6d; }
.installments sup { font-size: .93rem; letter-spacing: 0; vertical-align: 1.2em; }
.installments strong small { font-size: 1.1rem; }
.total-price { margin-top: 8px; color: var(--muted); font-size: .67rem; }
.price-card-featured .total-price { color: #9cacae; }
.saving-note { margin: -16px 0 22px; padding: 11px 14px; color: #d7e1e3; background: rgba(47,158,146,.16); border: 1px solid rgba(107,201,191,.18); border-radius: 10px; font-size: .72rem; text-align: center; }
.saving-note strong { color: #98dfd8; }
.plan-features { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; color: var(--navy-800); font-size: .86rem; list-style: none; }
.price-card-featured .plan-features { color: #e1e8e9; }
.plan-features li { position: relative; padding-left: 24px; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.price-card .button { margin-top: auto; }
.limited-note { display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: center; max-width: 760px; margin-top: 38px; padding: 23px 28px; background: rgba(255,255,255,.58); border: 1px solid rgba(13,48,59,.1); border-radius: 15px; }
.limited-number { width: 62px; height: 62px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 50%; font-family: Georgia, serif; font-size: 1.55rem; }
.limited-note strong { font-size: .88rem; }
.limited-note p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; font-weight: 800; line-height: 1.45; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 50%; right: 6px; width: 24px; height: 24px; transform: translateY(-50%); }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 11px; left: 4px; width: 16px; height: 2px; background: var(--orange-dark); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: -5px 42px 24px 0; color: var(--muted); font-size: .9rem; }

.final-cta { position: relative; overflow: hidden; padding: 90px 0; color: var(--white); background: var(--navy-950); }
.final-orb { position: absolute; width: 500px; height: 500px; right: -150px; top: -220px; background: radial-gradient(circle, rgba(47,158,146,.32), transparent 67%); border-radius: 50%; }
.final-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .75fr; gap: 90px; align-items: center; }
.final-grid h2 { margin: 0; font-size: clamp(2.4rem, 4.2vw, 4rem); }
.final-action p { color: #afbec1; }
.final-action small { display: block; margin-top: 12px; color: #81969b; font-size: .66rem; }

.site-footer { padding: 55px 0 28px; color: #bbcbe0; background: #04152f; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 50px; align-items: center; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-footer { padding: 7px 11px; background: var(--white); border-radius: 12px; }
.brand-logo-footer { height: 56px; }
.footer-grid > p { max-width: 390px; margin: 0; font-size: .76rem; }
.footer-links { max-width: 430px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 20px; }
.footer-links a { color: #c7d0d2; font-size: .7rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; color: #72868b; font-size: .64rem; }
.footer-bottom a { color: #9ecdc8; }

.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 12px 17px; color: var(--white); background: #117a46; border: 2px solid rgba(255,255,255,.8); border-radius: 999px; box-shadow: 0 12px 35px rgba(0,0,0,.24); font-size: .75rem; font-weight: 850; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-2px); background: #0b6438; }
.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }

.consent-banner {
  position: fixed;
  z-index: 500;
  left: 50%;
  bottom: 18px;
  width: min(1080px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(6, 26, 56, .98);
  border: 1px solid rgba(97, 213, 230, .28);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(4, 20, 48, .38);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}
.consent-copy strong { display: block; margin-bottom: 3px; font-size: .88rem; }
.consent-copy p { margin: 0; color: #c7d6e7; font-size: .72rem; line-height: 1.5; }
.consent-copy a { color: #89e5ef; font-size: .68rem; font-weight: 800; text-underline-offset: 3px; }
.consent-actions { display: flex; gap: 10px; }
.consent-button { min-height: 44px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; font: inherit; font-size: .7rem; font-weight: 850; cursor: pointer; }
.consent-decline { color: #dbe7f4; background: rgba(255,255,255,.07); }
.consent-accept { color: var(--white); background: var(--orange); border-color: transparent; }
.consent-button:focus-visible { outline: 3px solid #61d5e6; outline-offset: 3px; }

.legal-page { background: var(--paper); }
.legal-header { border-bottom: 1px solid var(--line); background: var(--white); }
.legal-nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.legal-content { padding-top: 76px; }
.legal-content article { max-width: 850px; }
.legal-content h1 { margin-bottom: 12px; color: var(--navy-950); font-size: clamp(2.8rem, 6vw, 4.8rem); }
.legal-content h2 { margin: 48px 0 12px; color: var(--navy-900); font-size: 1.55rem; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--orange-dark); font-weight: 750; }
.legal-updated { padding-bottom: 28px; border-bottom: 1px solid var(--line); font-size: .78rem; }
.legal-footer { padding-top: 28px; }
.legal-footer .footer-bottom { padding-top: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 35px; }
  .portrait-frame { height: 500px; }
  .portrait-label { left: 0; }
  .floating-card { right: 0; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-card { min-height: 310px; }
  .difference-grid { grid-template-columns: 1fr; }
  .class-photo, .class-photo img { min-height: 470px; height: 470px; }
  .instructor-grid { gap: 55px; }
  .instructor-portrait blockquote { right: 0; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header { background: rgba(255,255,255,.96); border-color: var(--line); }
  .nav-wrap { height: 72px; }
  .header-cta { display: none; }
  .brand-logo { height: 55px; }
  .hero { padding-top: 118px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy, .hero-visual { min-width: 0; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-points { max-width: 550px; margin-inline: auto; text-align: left; }
  .hero-visual { width: 100%; max-width: 500px; margin: 15px auto 0; }
  .portrait-frame { height: 440px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > li:nth-child(2) { border-right: 0; }
  .trust-strip > li { justify-content: flex-start; padding: 17px 12px; border-bottom: 1px solid rgba(255,255,255,.11); }
  .trust-strip > li:nth-child(n+3) { border-bottom: 0; }
  .section { padding: 88px 0; }
  .section-heading, .module, .instructor-grid, .mentor-intro, .audience-card, .faq-grid, .final-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 15px; }
  .module { gap: 18px; }
  .module-index { grid-row: span 2; border-right: 1px solid rgba(255,255,255,.11); }
  .module-copy { grid-column: 2; }
  .module ul { grid-column: 2; }
  .instructor-grid { gap: 35px; }
  .instructor-portrait { width: min(100%, 520px); margin-inline: auto; }
  .mentor-teaser { padding-bottom: 88px; }
  .mentor-teaser-card { grid-template-columns: 82px 1fr; padding: 38px 34px; }
  .mentor-teaser-symbol { width: 76px; height: 76px; transform: scale(.82); transform-origin: left center; }
  .mentor-teaser-action { grid-column: 2; justify-items: start; }
  .mentor-intro { gap: 28px; }
  .mentor-pillars { grid-template-columns: 1fr; }
  .mentor-pillar { min-height: 0; }
  .mentor-number { margin-bottom: 30px; }
  .mentor-invitation { grid-template-columns: 1fr; gap: 25px; }
  .mentor-invitation .button { justify-self: start; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card { min-height: 0; }
  .bonus-card.featured { transform: none; }
  .bonus-icon { margin-top: 32px; }
  .audience-card { gap: 35px; padding: 45px 35px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; }
  .faq-grid { gap: 38px; }
  .faq-intro { position: static; }
  .final-grid { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { justify-content: flex-start; }
  .consent-banner { grid-template-columns: 1fr; gap: 16px; }
  .consent-actions { justify-content: flex-end; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.45rem, 11.4vw, 3.15rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; max-width: 360px; }
  .action-note { max-width: none; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-points li:last-child { grid-column: auto; }
  .portrait-frame { height: 390px; margin-bottom: 25px; }
  .portrait-label { top: 18px; }
  .floating-card { right: 4px; bottom: 18px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11) !important; }
  .trust-strip > li:last-child { border-bottom: 0 !important; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; }
  .line-icon { margin-bottom: 42px; }
  .class-photo, .class-photo img { min-height: 360px; height: 360px; }
  .class-photo img { object-position: 48% center; }
  .module { grid-template-columns: 66px 1fr; padding: 24px 19px; }
  .module-index { height: 100%; }
  .module-index strong { font-size: 1.75rem; }
  .lunch-break { align-items: flex-start; }
  .instructor-portrait { min-height: 455px; }
  .instructor-portrait blockquote { left: 18px; font-size: .9rem; }
  .consent-banner { bottom: 10px; width: calc(100% - 20px); padding: 19px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .consent-button { width: 100%; }
  .legal-nav { min-height: 78px; }
  .legal-nav .brand-logo { height: 50px; }
  .legal-nav .button { display: none; }
  .legal-content { padding-top: 58px; }
  .mentor-teaser-card { grid-template-columns: 1fr; gap: 22px; padding: 34px 24px; }
  .mentor-teaser-symbol { display: none; }
  .mentor-teaser-action { grid-column: auto; }
  .mentor-teaser-action, .mentor-teaser-action .button { width: 100%; }
  .mentor-invitation { padding: 30px 24px; }
  .mentor-invitation .button { width: 100%; }
  .price-card { padding: 33px 24px; }
  .best-value { position: static; align-self: flex-start; width: max-content; margin: -12px 0 24px; }
  .installments { align-items: baseline; flex-wrap: wrap; }
  .installments > small { width: 100%; margin: 0; }
  .installments strong { font-size: 3rem; }
  .limited-note { grid-template-columns: 1fr; text-align: center; }
  .limited-number { margin: auto; }
  .audience-card { padding: 38px 24px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .floating-whatsapp { right: 12px; bottom: 12px; width: 54px; padding: 11px; justify-content: center; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

@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; }
}
