:root {
  --bg: #050505;
  --bg-soft: #0b0c0e;
  --panel: #17191d;
  --panel-2: #23262c;
  --ink: #f8f5ef;
  --muted: #aaa7a2;
  --orange: #ff6508;
  --amber: #ffad0d;
  --cream: #fff0d1;
  --green: #59dd9a;
  --shadow-dark: 0 0 0 1px rgba(255,255,255,.08);
  --shadow-dark-hover: 0 0 0 1px rgba(255,255,255,.14), 0 24px 70px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 8%, rgba(255,92,0,.11), transparent 25rem),
    linear-gradient(180deg, #050505, #090806 35%, #050505 100%);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  max-width: 100%;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .14;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.2) .65px, transparent .65px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: -1px;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }
em { color: var(--orange); font-style: normal; }

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  z-index: -2;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .11;
  pointer-events: none;
}
.page-glow-a { top: 34%; left: -20rem; background: var(--orange); }
.page-glow-b { right: -22rem; top: 68%; background: var(--amber); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1240px, calc(100% - 36px));
  height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 20px;
  border-radius: 22px;
  background: rgba(12,12,12,.72);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 14px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(140%);
  transition-property: background-color, box-shadow, transform;
  transition-duration: 180ms;
}
.site-header.scrolled { background: rgba(6,6,6,.9); box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 18px 60px rgba(0,0,0,.46); }
.brand { display: flex; align-items: center; min-width: 124px; height: 46px; }
.brand img { width: 118px; outline: none; }
.view-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-left: 18px;
  padding: 4px;
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.view-tab {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  color: #9d9c9a;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  transition-property: color, background-color, box-shadow, scale;
  transition-duration: 170ms;
}
.view-tab small { padding: 3px 5px; border-radius: 5px; color: #767676; background: rgba(255,255,255,.06); font-size: 8px; letter-spacing: .06em; }
.view-tab.is-active { color: #071114; background: linear-gradient(110deg, #bffaff, #57e8ff); box-shadow: 0 8px 24px rgba(70,224,255,.18), inset 0 0 0 1px rgba(255,255,255,.6); }
.view-tab.is-active small { color: #087285; background: rgba(0,104,123,.1); }
.hot-tab:not(.is-active) small { color: #ffc36f; background: rgba(255,102,8,.14); }
.hot-tab.is-active { color: #251205; background: linear-gradient(110deg, var(--amber), var(--orange)); box-shadow: 0 8px 24px rgba(255,91,0,.22), inset 0 0 0 1px rgba(255,255,255,.42); }
.hot-tab.is-active small { color: #6e2500; background: rgba(71,25,0,.11); }
.view-tab:active { scale: .96; }
body[data-view="notes"] .hot-tab {
  position: relative;
  overflow: visible;
  color: #2a1406;
  background: linear-gradient(112deg, #ffd84f, #ff760d 72%, #ff5b08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 0 0 3px rgba(255,111,13,.1), 0 9px 30px rgba(255,91,0,.3);
}
body[data-view="notes"] .hot-tab::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff3326;
  box-shadow: 0 0 0 3px #18110b, 0 0 0 7px rgba(255,51,38,.24), 0 0 21px rgba(255,51,38,.98);
  animation: hotPulse 1.25s cubic-bezier(.45,0,.35,1) infinite;
  will-change: transform, box-shadow;
}
body[data-view="notes"] .hot-tab:hover { color: #1f0d02; filter: brightness(1.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.58), 0 0 0 4px rgba(255,111,13,.13), 0 12px 34px rgba(255,91,0,.38); }
body[data-view="notes"] .hot-tab small { color: #fff7e8; background: rgba(87,30,0,.34); box-shadow: inset 0 0 0 1px rgba(255,255,255,.13); }
@keyframes hotPulse {
  0%, 100% { transform: scale(.9); box-shadow: 0 0 0 3px #18110b, 0 0 0 4px rgba(255,51,38,.4), 0 0 14px rgba(255,51,38,.88); }
  50% { transform: scale(1.16); box-shadow: 0 0 0 3px #18110b, 0 0 0 10px rgba(255,51,38,0), 0 0 26px rgba(255,51,38,1); }
}
.course-nudge {
  position: absolute;
  top: calc(100% + 13px);
  left: 230px;
  width: 390px;
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  text-align: left;
  color: #351805;
  background: linear-gradient(135deg, #fff8eb, #ffe3b4);
  box-shadow: 0 0 0 1px rgba(255,255,255,.7), 0 18px 48px rgba(0,0,0,.42), 0 10px 30px rgba(255,116,13,.2);
  transition-property: opacity, transform, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(.2,0,0,1);
}
.course-nudge::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 41%;
  width: 19px;
  height: 19px;
  border-radius: 5px 0 0;
  background: #fff0d2;
  box-shadow: -1px -1px 0 rgba(255,255,255,.62);
  transform: rotate(45deg);
}
.course-nudge:hover { transform: translateY(-3px) rotate(-.35deg); box-shadow: 0 0 0 1px rgba(255,255,255,.8), 0 24px 58px rgba(0,0,0,.5), 0 13px 36px rgba(255,94,0,.26); }
.course-nudge:active { scale: .96; }
.nudge-avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #ffcf42, #ff6a08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.52), 0 7px 16px rgba(255,101,8,.2); font-size: 22px; transform: rotate(-7deg); }
.nudge-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.nudge-copy small { color: #bf5d13; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.nudge-copy b { color: #341706; font-size: 13px; line-height: 1.35; text-wrap: balance; }
.nudge-go { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0 13px; border-radius: 14px; color: #fff8eb; background: #321606; box-shadow: 0 7px 16px rgba(79,35,5,.18); font-size: 10px; font-weight: 950; white-space: nowrap; transition-property: background-color, transform; transition-duration: 160ms; }
.nudge-go i { font-style: normal; transition-property: transform; transition-duration: 160ms; }
.course-nudge:hover .nudge-go { background: #ff6508; transform: translateY(-1px); }
.course-nudge:hover .nudge-go i { transform: translateX(2px); }
body[data-view="course"] .course-nudge,
body.has-scrolled .course-nudge { opacity: 0; transform: translateY(-9px) scale(.98); pointer-events: none; }
.site-header nav { display: flex; gap: 24px; margin: 0 auto; }
.site-header nav[hidden] { display: none !important; }
.site-header nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: #c7c5c1;
  font-size: 14px;
  transition-property: color, transform;
  transition-duration: 150ms;
}
.site-header nav a:hover, .site-header nav a.active { color: #fff; }
.site-header nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 1px; height: 2px; border-radius: 2px; opacity: 0; transition-property: left, right, opacity; transition-duration: 170ms; }
.site-header nav a.active::after { left: 0; right: 0; opacity: 1; }
.notes-nav a::after { background: #62efff; box-shadow: 0 0 10px rgba(98,239,255,.65); }
.course-nav a::after { background: var(--orange); box-shadow: 0 0 10px rgba(255,101,8,.65); }
body[data-view="notes"] .notes-nav a.active { color: #b9faff; }
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px 0 20px;
  border-radius: 14px;
  background: linear-gradient(110deg, var(--amber), var(--orange));
  color: #17100b;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255,91,0,.28);
  transition-property: scale, filter;
  transition-duration: 150ms;
}
.header-cta:hover { filter: brightness(1.08); }
.header-cta:active, .button:active, .mobile-cta:active { scale: .96; }
body[data-view="notes"] .header-cta { color: #071114; background: linear-gradient(110deg, #c9fbff, #57e8ff); box-shadow: 0 8px 30px rgba(70,224,255,.2); }

.page-panel[hidden] { display: none !important; }
#notes, #free-start, #free-route, #free-version, #free-next,
#lesson-01, #lesson-02, #lesson-03, #lesson-04, #lesson-05, #lesson-06 { scroll-margin-top: 105px; }

/* Free-course notes */
.notes-page {
  --cyan: #62efff;
  --cyan-soft: #c5fbff;
  --violet: #7c73ff;
  --notes-panel: #121923;
  color: #f5fbff;
  background:
    radial-gradient(circle at 86% 7%, rgba(96,235,255,.12), transparent 28rem),
    radial-gradient(circle at 3% 48%, rgba(117,103,255,.11), transparent 30rem),
    #05080d;
}
.notes-page em { color: var(--cyan); }
.notes-page .section-kicker { color: var(--cyan); }
.notes-hero {
  min-height: 900px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 68px;
  align-items: center;
  padding: 150px max(6vw, calc((100vw - 1240px)/2)) 105px;
  background:
    linear-gradient(rgba(90,225,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,225,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 38%, rgba(94,229,255,.11), transparent 23rem),
    #05080d;
  background-size: 46px 46px, 46px 46px, auto, auto;
  mask-image: linear-gradient(to bottom, black 88%, transparent);
}
.notes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .35;
  background: linear-gradient(115deg, transparent 10%, rgba(100,240,255,.08) 10.15%, transparent 10.3%, transparent 52%, rgba(124,115,255,.09) 52.15%, transparent 52.35%);
}
.notes-orbit { position: absolute; z-index: -1; border-radius: 50%; border: 1px solid rgba(98,239,255,.16); pointer-events: none; animation: orbitSpin 22s linear infinite; }
.notes-orbit::before, .notes-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.notes-orbit::before { width: 8px; height: 8px; left: 13%; top: 13%; }
.notes-orbit::after { width: 4px; height: 4px; right: 5%; bottom: 27%; }
.orbit-a { width: 760px; height: 760px; right: -280px; top: 40px; }
.orbit-b { width: 430px; height: 430px; left: -260px; bottom: -170px; animation-direction: reverse; animation-duration: 16s; }
@keyframes orbitSpin { to { rotate: 360deg; } }
.notes-hero-copy { position: relative; z-index: 2; }
.notes-page .eyebrow { color: var(--cyan); }
.notes-page .eyebrow span { background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 15px rgba(98,239,255,.7); }
.fresh-badge { width: fit-content; display: flex; align-items: center; gap: 8px; margin-top: 24px; padding: 7px 11px; border-radius: 999px; color: #b9faff; background: rgba(87,221,255,.075); box-shadow: inset 0 0 0 1px rgba(98,239,255,.2); font-size: 11px; font-weight: 800; }
.fresh-badge i, .console-tip i, .hot-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 50% { opacity: .38; scale: .72; } }
.notes-hero h1 { max-width: 710px; margin-top: 22px; font-size: clamp(52px, 5.2vw, 80px); line-height: .98; letter-spacing: -.06em; font-weight: 950; }
.notes-hero h1 em { display: inline-block; margin-top: 9px; white-space: nowrap; font-style: normal; color: transparent; background: linear-gradient(100deg, #71f3ff, #b9caff 55%, #8177ff); background-clip: text; -webkit-background-clip: text; }
.notes-subtitle { max-width: 670px; margin-top: 26px; color: #aeb8c4; font-size: 17px; line-height: 1.85; }
.notes-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; color: #c8d4dc; font-size: 12px; }
.notes-meta span { min-height: 48px; display: inline-flex; align-items: center; gap: 7px; padding: 0 18px; border-radius: 15px; background: rgba(255,255,255,.055); box-shadow: 0 0 0 1px rgba(255,255,255,.13), inset 0 1px 0 rgba(255,255,255,.04); }
.notes-meta span:first-child { color: #071114; background: linear-gradient(110deg, #d2fdff, #52e8fb); box-shadow: 0 12px 40px rgba(64,220,245,.18), inset 0 0 0 1px rgba(255,255,255,.58); }
.notes-meta b { color: #e9fdff; font-family: Impact, sans-serif; font-size: 21px; font-variant-numeric: tabular-nums; }
.notes-meta span:first-child b { color: #071114; }
.route-console { overflow: hidden; border-radius: 28px; background: rgba(12,18,27,.78); box-shadow: 0 0 0 1px rgba(143,238,255,.13), 0 38px 100px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.04); backdrop-filter: blur(18px); transform: perspective(1000px) rotateY(-4deg) rotateX(1deg); }
.console-top { min-height: 50px; display: flex; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.025); color: #6e7e8b; font-size: 9px; letter-spacing: .08em; }
.console-top > span { display: flex; gap: 6px; }
.console-top i { width: 7px; height: 7px; border-radius: 50%; background: #38424d; }
.console-top i:first-child { background: #62efff; box-shadow: 0 0 10px rgba(98,239,255,.7); }
.console-top b { margin-left: 16px; font-family: monospace; font-weight: 500; }
.console-top small { margin-left: auto; color: #75efba; }
.console-body { padding: 28px; }
.console-label { color: #64717f; font-family: monospace; font-size: 10px; letter-spacing: .12em; }
.console-body ol { display: grid; gap: 8px; list-style: none; padding: 0; margin: 20px 0 0; }
.console-body li { min-height: 57px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 12px; padding: 8px 15px 8px 11px; border-radius: 14px; color: #dce5eb; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px rgba(255,255,255,.045); transition-property: transform, background-color, box-shadow; transition-duration: 170ms; }
.console-body li:hover { transform: translateX(5px); background: rgba(91,228,255,.08); box-shadow: inset 0 0 0 1px rgba(98,239,255,.13); }
.console-body li span { color: var(--cyan); font-family: monospace; font-size: 11px; }
.console-body li b { font-size: 13px; }
.console-body li small { color: #697785; font-family: monospace; font-size: 8px; letter-spacing: .08em; }
.console-progress { height: 4px; margin-top: 24px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.06); }
.console-progress span { width: 34%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 14px var(--cyan); animation: loadingRoute 4.5s ease-in-out infinite; }
@keyframes loadingRoute { 0%,100% { width: 21%; translate: 0; } 50% { width: 48%; translate: 105%; } }
.console-tip { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: #71808d; font-size: 10px; }
.console-tip i { flex: 0 0 auto; width: 6px; height: 6px; background: #6cecb6; box-shadow: 0 0 10px #6cecb6; }
.notes-ticker { overflow: hidden; border-block: 1px solid rgba(99,235,255,.1); background: #0a1118; }
.notes-ticker-track { width: max-content; display: flex; color: #d9faff; font-size: 12px; font-weight: 900; letter-spacing: .1em; animation: ticker 27s linear infinite; will-change: transform; }
.notes-ticker i { color: var(--cyan); font-style: normal; text-shadow: 0 0 12px rgba(98,239,255,.8); }
.free-section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.free-heading { max-width: 790px; }
.free-heading h2, .free-course-bridge h2 { margin-top: 15px; color: #fff; font-size: clamp(42px, 5vw, 72px); line-height: 1.08; letter-spacing: -.055em; font-weight: 950; }
.free-heading > p:last-child { margin-top: 23px; color: #93a0ad; font-size: 15px; line-height: 1.85; }
.access-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 55px; }
.access-card {
  --access-accent: var(--cyan);
  --access-accent-soft: rgba(98,239,255,.12);
  min-width: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 30px;
  background: radial-gradient(circle at 94% 2%, var(--access-accent-soft), transparent 13rem), linear-gradient(150deg, #151f2a, #0b1118 75%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(.2,0,0,1);
}
.access-card::after { content: ""; position: absolute; right: -44px; bottom: -58px; width: 150px; height: 150px; border-radius: 50%; border: 26px solid var(--access-accent-soft); pointer-events: none; }
.access-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px rgba(255,255,255,.13), 0 32px 86px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.05); }
.access-card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.access-tag { min-height: 28px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 9px; color: #062129; background: var(--access-accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; font-weight: 950; letter-spacing: .08em; }
.access-card-top small { color: #627381; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; letter-spacing: .1em; }
.access-copy { position: relative; z-index: 1; margin-top: 20px; }
.access-copy h3 { color: #f3fbff; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; letter-spacing: -.025em; }
.access-copy p { min-height: 48px; margin-top: 10px; color: #91a0ac; font-size: 13px; font-weight: 600; line-height: 1.65; }
.bili-profile { min-height: 96px; position: relative; z-index: 1; display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: center; margin-top: 29px; padding: 14px; border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: 0 13px 35px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.15); }
.bili-avatar-crop { width: 62px; height: 62px; position: relative; overflow: hidden; border-radius: 50%; background: #ddf4ff; box-shadow: 0 0 0 3px #fff, 0 6px 16px rgba(0,120,170,.17); }
.bili-avatar-crop img { width: 575px; max-width: none; position: absolute; left: -41px; top: -15px; outline: none; }
.bili-profile-copy { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.bili-profile-copy strong { overflow: hidden; color: #20242a; font-size: 16px; line-height: 1.2; white-space: nowrap; text-overflow: ellipsis; }
.bili-profile-copy strong i { display: inline-flex; align-items: center; margin-left: 5px; padding: 2px 4px; border-radius: 3px; color: #fff; background: #ff3d3d; font-size: 8px; font-style: normal; vertical-align: 2px; }
.bili-profile-copy span { overflow: hidden; color: #737b86; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.access-actions { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: 22px; }
.access-primary, .access-secondary { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 12px; font-weight: 900; transition-property: scale, filter, background-color, color; transition-duration: 150ms; }
.access-primary { gap: 8px; padding: 0 17px 0 19px; border: 0; color: #061519; background: linear-gradient(110deg, #c9fbff, var(--access-accent)); box-shadow: 0 11px 25px rgba(45,210,234,.13), inset 0 0 0 1px rgba(255,255,255,.4); }
.access-primary span { font-size: 16px; transition-property: transform; transition-duration: 150ms; }
.access-primary:hover { filter: brightness(1.08); }
.access-primary:hover span { transform: translateX(2px); }
.access-primary:active, .access-secondary:active { scale: .96; }
.access-secondary { padding-inline: 15px; color: #b8c8d3; background: rgba(255,255,255,.055); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); }
.access-secondary:hover { color: #fff; background: rgba(255,255,255,.09); }
.access-hint { position: relative; z-index: 1; margin-top: 10px; color: #60717d; font-size: 9px; text-align: center; }
.access-card-group { --access-accent: #77f0df; --access-accent-soft: rgba(90,234,208,.11); }
.group-qr { width: min(226px, 82%); position: relative; z-index: 1; align-self: center; margin: 23px auto 0; padding: 10px 10px 12px; border-radius: 25px; background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.16); }
.group-qr img { width: 100%; aspect-ratio: 1; border-radius: 16px; outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }
.group-qr figcaption { display: flex; align-items: center; justify-content: center; gap: 7px; padding-top: 9px; color: #273139; font-size: 10px; font-weight: 850; }
.group-qr figcaption i { width: 6px; height: 6px; border-radius: 50%; background: #20c991; box-shadow: 0 0 10px rgba(32,201,145,.6); }
.qr-corners::before, .qr-corners::after { content: ""; position: absolute; z-index: 2; width: 28px; height: 28px; pointer-events: none; }
.qr-corners::before { left: -5px; top: -5px; border-left: 2px solid var(--access-accent); border-top: 2px solid var(--access-accent); border-radius: 8px 0 0; }
.qr-corners::after { right: -5px; bottom: -5px; border-right: 2px solid var(--access-accent); border-bottom: 2px solid var(--access-accent); border-radius: 0 0 8px; }
.access-card-course { --access-accent: #ff9b36; --access-accent-soft: rgba(255,139,38,.13); background: radial-gradient(circle at 94% 2%, var(--access-accent-soft), transparent 13rem), linear-gradient(150deg, #201b19, #101215 76%); }
.access-card-course .access-tag { color: #281302; background: linear-gradient(105deg, #ffd467, #ff8a2c); }
.course-thumbnails { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 25px; }
.course-thumbnails figure { min-width: 0; overflow: hidden; border-radius: 15px; background: rgba(255,255,255,.06); box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 11px 25px rgba(0,0,0,.2); }
.course-thumbnails img { width: 100%; height: 98px; object-fit: cover; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }
.course-thumbnails figure:first-child img { object-position: 50% 20%; }
.course-thumbnails figure:nth-child(2) img { object-position: 50% 23%; }
.course-thumbnails figure:nth-child(3) img { object-position: 50% 7%; }
.course-thumbnails figcaption { min-height: 34px; display: flex; align-items: center; justify-content: center; padding: 5px; color: #cbbeb3; font-size: 9px; font-weight: 850; text-align: center; }
.access-course-button { width: 100%; position: relative; z-index: 1; margin-top: auto; cursor: pointer; color: #291303; background: linear-gradient(105deg, #ffd467, #ff8128); box-shadow: 0 11px 25px rgba(255,112,22,.14), inset 0 0 0 1px rgba(255,255,255,.35); }
.free-route { padding-top: 95px; }
.lesson-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 44px; }
.lesson-card { min-height: 350px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 28px; border-radius: 26px; background: linear-gradient(145deg, rgba(24,34,46,.98), rgba(11,17,24,.99)); box-shadow: 0 0 0 1px rgba(132,226,255,.09), 0 25px 75px rgba(0,0,0,.18); transition-property: transform, box-shadow; transition-duration: 180ms; }
.lesson-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -120px; top: -120px; border-radius: 50%; background: var(--cyan); filter: blur(45px); opacity: .08; }
.lesson-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px rgba(132,226,255,.18), 0 35px 90px rgba(0,0,0,.3); }
.lesson-featured { background: linear-gradient(145deg, rgba(31,31,63,.98), rgba(12,18,27,.99)); }
.lesson-top { display: flex; align-items: center; justify-content: space-between; }
.lesson-top > span { color: var(--cyan); font-family: Impact, sans-serif; font-size: 40px; line-height: 1; }
.lesson-top small { padding: 5px 8px; border-radius: 7px; color: #9ef5ff; background: rgba(98,239,255,.07); box-shadow: inset 0 0 0 1px rgba(98,239,255,.15); font-family: monospace; font-size: 9px; letter-spacing: .08em; }
.lesson-icon { position: absolute; right: 29px; top: 66px; opacity: .22; font-size: 46px; filter: grayscale(.4); transform: rotate(7deg); }
.lesson-type { margin-top: 28px; color: #71808e; font-family: monospace; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.lesson-card h3 { max-width: 78%; margin-top: 7px; color: #f7fcff; font-size: 28px; letter-spacing: -.035em; }
.lesson-desc { max-width: 90%; margin-top: 9px; color: #8f9ba7; font-size: 13px; line-height: 1.65; }
.resource-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 18px; }
.resource-actions a, .resource-empty { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 11px; font-size: 12px; font-weight: 850; transition-property: scale, filter, background-color; transition-duration: 150ms; }
.resource-actions a:active, .bonus-link:active { scale: .96; }
.resource-primary { color: #061419; background: linear-gradient(105deg, #c9fbff, var(--cyan)); }
.resource-primary:hover { filter: brightness(1.08); }
.resource-download { color: #d6e3eb; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); }
.resource-download:hover { background: rgba(255,255,255,.1); }
.resource-empty { color: #6d7b87; background: rgba(255,255,255,.025); box-shadow: inset 0 0 0 1px rgba(255,255,255,.055); }
.bonus-link { min-height: 42px; display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 8px 12px; border-radius: 11px; color: #9fa9d8; background: rgba(124,115,255,.08); box-shadow: inset 0 0 0 1px rgba(124,115,255,.14); font-size: 10px; line-height: 1.45; transition-property: scale, background-color; transition-duration: 150ms; }
.bonus-link b { color: #c4c0ff; }
.bonus-link:hover { background: rgba(124,115,255,.13); }
.version-note { display: grid; grid-template-columns: 150px 1fr; gap: 25px; align-items: start; margin-top: 15px; padding: 25px 28px; border-radius: 22px; color: #9aa8b4; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px rgba(255,255,255,.065); font-size: 12px; line-height: 1.8; }
.version-note span { color: #f4faff; font-weight: 900; }
.free-course-bridge { width: min(1240px, calc(100% - 48px)); min-height: 650px; position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: 1.15fr .65fr; gap: 70px; align-items: center; margin: 30px auto 80px; padding: 80px; border-radius: 52px; background: radial-gradient(circle at 89% 15%, rgba(255,173,13,.24), transparent 25rem), linear-gradient(135deg, #16171b, #080b10); box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 35px 100px rgba(0,0,0,.3); }
.bridge-noise { position: absolute; inset: 0; z-index: -1; opacity: .15; background-image: radial-gradient(rgba(255,255,255,.28) .65px, transparent .65px); background-size: 8px 8px; mask-image: linear-gradient(90deg, transparent, black); }
.hot-pill { width: fit-content; display: flex; align-items: center; gap: 8px; margin-bottom: 25px; padding: 8px 11px; border-radius: 999px; color: #ffe0ae; background: rgba(255,104,12,.12); box-shadow: inset 0 0 0 1px rgba(255,135,58,.25); font-size: 11px; font-weight: 900; }
.hot-pill i { background: #ff760d; box-shadow: 0 0 13px #ff760d; }
.bridge-copy > p:not(.section-kicker) { max-width: 690px; margin-top: 23px; color: #a4a3a0; font-size: 15px; line-height: 1.9; }
.bridge-actions { display: flex; align-items: center; gap: 23px; margin-top: 30px; }
.bridge-actions button { border: 0; cursor: pointer; }
.bridge-actions > a { color: #bbb9b5; font-size: 12px; font-weight: 800; }
.bridge-card { min-height: 430px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 33px; border-radius: 32px; color: #241204; background: linear-gradient(145deg, #ffd23f, #ff6808); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 30px 80px rgba(255,90,0,.22); transform: rotate(2deg); }
.bridge-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -120px; border-radius: 50%; border: 45px solid rgba(255,255,255,.16); }
.bridge-card-label { font-family: monospace; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.bridge-card strong { margin-top: 28px; font-family: Impact, sans-serif; font-size: 83px; line-height: .92; letter-spacing: -.03em; }
.bridge-card > b { margin-top: 9px; font-size: 16px; }
.bridge-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; padding: 0; margin: 30px 0 0; }
.bridge-card li { padding: 8px; border-radius: 8px; background: rgba(255,247,223,.27); box-shadow: inset 0 0 0 1px rgba(255,255,255,.27); font-size: 9px; font-weight: 900; }
.bridge-card > a { min-height: 45px; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 0 14px; border-radius: 12px; color: #fff3d6; background: #281305; font-size: 11px; font-weight: 900; }

.hero {
  min-height: 940px;
  min-height: max(940px, calc(100svh - 50px));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 124px max(6vw, calc((100vw - 1240px)/2)) 245px;
  background:
    radial-gradient(circle at 19% 46%, rgba(255,111,0,.17), transparent 32rem),
    radial-gradient(circle at 74% 32%, rgba(255,172,15,.07), transparent 26rem),
    #030303;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 230px;
  background: linear-gradient(180deg, transparent, rgba(255,91,0,.15) 42%, #1a0803 70%, #050505 100%);
}
.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.05) 38%, rgba(0,0,0,.58) 58%, rgba(0,0,0,.94) 86%),
    linear-gradient(180deg, rgba(0,0,0,.16), transparent 64%, #050505 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; outline: none; filter: saturate(1.08) contrast(1.04); image-rendering: auto; transition-property: transform; transition-duration: 220ms; transition-timing-function: ease-out; }
.road-route { position: absolute; inset: 0; z-index: 1; }
.road-stop {
  position: absolute;
  z-index: var(--sequence);
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,232,174,.92);
  background: radial-gradient(circle, #fff8d9 0 16%, #ff9b22 18% 31%, rgba(255,126,0,.2) 34% 56%, transparent 58%);
  box-shadow: 0 0 12px rgba(255,142,28,.95), 0 0 30px rgba(255,103,0,.55);
  animation: routeNodePulse 4.9s ease-in-out infinite;
  animation-delay: calc((var(--sequence) - 1) * .38s);
}
.road-stop::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 2px;
  height: var(--stem);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255,249,221,.98), rgba(255,166,46,.9) 18%, rgba(255,116,0,.2) 82%, rgba(255,116,0,0));
  box-shadow: 0 0 8px rgba(255,144,34,.9);
  transform: translateX(-50%) rotate(var(--stem-tilt, 0deg));
  transform-origin: bottom center;
}
.road-sign {
  position: absolute;
  left: 50%;
  bottom: calc(var(--stem) + 7px);
  display: inline-flex;
  align-items: center;
  width: max-content;
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255,177,19,.94), rgba(255,75,0,.88));
  box-shadow: 0 0 22px rgba(255,116,0,.52), inset 0 0 0 1px rgba(255,255,255,.48);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(calc(-50% + var(--label-x, 0px))) rotate(var(--tilt));
  animation: signFloat 4s ease-in-out infinite;
  animation-delay: calc((var(--sequence) - 1) * .16s - 2s);
}
.stop-1 { --sequence: 1; --x: 13.6%; --y: 80.7%; --stem: 72px; --label-x: 0px; --tilt: 3deg; }
.stop-2 { --sequence: 2; --x: 30.2%; --y: 77.7%; --stem: 86px; --label-x: 0px; --tilt: -2deg; }
.stop-3 { --sequence: 3; --x: 10.9%; --y: 69.7%; --stem: 82px; --label-x: 0px; --tilt: -3deg; }
.stop-4 { --sequence: 4; --x: 33.1%; --y: 65.2%; --stem: 92px; --label-x: 0px; --tilt: 2deg; }
.stop-5 { --sequence: 5; --x: 19.1%; --y: 55.8%; --stem: 105px; --label-x: 0px; --tilt: -2deg; }
.stop-6 { --sequence: 6; --x: 29.2%; --y: 50.5%; --stem: 118px; --label-x: 0px; --tilt: 2deg; }
.stop-finish { --sequence: 7; --x: 25.5%; --y: 43.8%; --stem: 125px; --label-x: -18px; --tilt: -2deg; }
.road-sign-finish {
  height: 42px;
  padding-inline: 17px;
  color: #351a00;
  background: linear-gradient(120deg, #fff0a3 0%, #ffc43d 52%, #f59a0b 100%);
  box-shadow:
    0 0 20px rgba(255,195,61,.7),
    0 0 42px rgba(255,132,13,.42),
    inset 0 0 0 1px rgba(255,255,255,.78);
}
@keyframes signFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes routeNodePulse { 0%,55%,100% { filter: brightness(.82); scale: .9; } 12% { filter: brightness(1.45); scale: 1.18; } }

@media (max-width: 1450px) and (min-width: 761px) {
  .stop-1 { --x: 2.4%; --y: 80.2%; --stem: 72px; --label-x: 56px; --stem-tilt: 5deg; }
  .stop-2 { --x: 24.4%; --y: 76.9%; --stem: 84px; --label-x: 4px; }
  .stop-3 { --x: .9%; --y: 71.4%; --stem: 92px; --label-x: 57px; --stem-tilt: 5deg; }
  .stop-4 { --x: 28.2%; --y: 66.4%; --stem: 102px; --label-x: 7px; }
  .stop-5 { --x: 10.7%; --y: 68.8%; --stem: 205px; --label-x: 10px; }
  .stop-6 { --x: 23.7%; --y: 63.1%; --stem: 225px; --label-x: 13px; }
  .stop-finish { --x: 19.1%; --y: 52.6%; --stem: 190px; --label-x: -21px; }
}

.hero-copy { width: min(610px, 51%); margin-left: auto; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 36px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--amber)); box-shadow: 0 0 12px rgba(255,112,0,.7); }
.hero h1 {
  margin-top: 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "PingFang SC", sans-serif;
  font-size: clamp(72px, 7.1vw, 122px);
  line-height: .86;
  letter-spacing: -.055em;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
  text-wrap: balance;
}
.hero-title-lockup {
  width: min(720px, 100%);
  height: auto;
  position: relative;
  margin: 8px 0 -20px;
  isolation: isolate;
  font: inherit;
  line-height: 0;
}
.hero-title-lockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20% 4% 16% 2%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,111,0,.19), rgba(255,72,0,.07) 44%, transparent 72%);
  filter: blur(24px);
}
.hero-title-lockup img {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
  filter: drop-shadow(0 12px 30px rgba(255,82,0,.12));
}
.hero-small { display: block; font-size: .5em; letter-spacing: -.02em; color: #fff; margin-bottom: 8px; }
.hero-accent {
  display: inline-block;
  /* Impact's italic Chinese fallback overhangs its line box on the right and
     bottom. Extend the gradient canvas so those strokes stay fully painted. */
  padding: 0 .24em .2em 0;
  margin: 0 -.24em -.2em 0;
  color: transparent;
  background: linear-gradient(180deg, #ffc312 0%, #ff6405 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px rgba(255,142,17,.18);
  filter: drop-shadow(0 8px 26px rgba(255,91,0,.16));
}
.hero-slogan { margin-top: 30px; color: #fff; font-size: clamp(19px, 1.8vw, 27px); font-weight: 900; text-wrap: balance; }
.hero-chips { display: flex; gap: 9px; }
.hero-chips span { padding: 8px 12px; border-radius: 999px; color: #fff0d5; background: rgba(255,102,8,.13); box-shadow: 0 0 0 1px rgba(255,123,31,.3); font-size: 11px; font-weight: 900; }
.hero-description { max-width: 570px; margin-top: 20px; color: #c8c5c0; font-size: 16px; line-height: 1.8; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.button-ghost { color: #d6d0c8; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.button-ghost:hover { color: #fff; background: rgba(255,255,255,.07); }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px 0 25px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  transition-property: scale, filter, box-shadow, background-color;
  transition-duration: 150ms;
}
.button-primary {
  color: #1b1108;
  background: linear-gradient(110deg, #ffd338, var(--orange));
  box-shadow: 0 12px 35px rgba(255,92,0,.32), inset 0 0 0 1px rgba(255,255,255,.34);
}
.button-primary:hover { filter: brightness(1.1); box-shadow: 0 16px 48px rgba(255,92,0,.42), inset 0 0 0 1px rgba(255,255,255,.42); }
.button:active { scale: .96; }
.hero-support {
  width: 100%;
  position: static;
  margin-top: 30px;
}
.hero-support .hero-chips { margin-bottom: 14px; }
.countdown {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr 1.6fr;
  gap: 8px;
  padding: 8px;
  border-radius: 19px;
  color: #ddd8d1;
  background: rgba(5,5,5,.62);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 18px 46px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(13px) saturate(120%);
}
.countdown-head {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,166,27,.1), rgba(255,89,0,.025));
}
.countdown-kicker { display: flex; align-items: center; gap: 8px; color: #ffd778; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.countdown-kicker i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,101,8,.11), 0 0 14px rgba(255,101,8,.9); animation: countdownPulse 1.8s ease-in-out infinite; }
.countdown-label { color: #fff8e9; font-size: 13px; line-height: 1.35; font-weight: 850; letter-spacing: .01em; }
.countdown-units { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.countdown-unit {
  min-width: 0;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.022));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}
.countdown b { display: block; color: #fff; font-size: 23px; line-height: 1; letter-spacing: -.035em; font-weight: 900; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.countdown-unit small { color: #918b83; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
@keyframes countdownPulse { 50% { opacity: .5; transform: scale(.76); } }
.hero-proof {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 11px 16px;
  border-radius: 23px;
  background: rgba(20,21,22,.74);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 24px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(15px);
}
.hero-proof div { min-height: 62px; display: flex; align-content: center; align-items: baseline; justify-content: center; flex-wrap: wrap; row-gap: 1px; padding: 4px 24px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { color: #fff; font-size: clamp(28px, 2.6vw, 40px); font-family: Impact, sans-serif; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.hero-proof sup { color: var(--orange); font-size: 17px; font-weight: 900; }
.hero-proof span { width: 100%; color: #a7a39e; font-size: 12px; text-align: center; }

.signal-strip { width: 100%; overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); background: #101113; }
.course-page > .signal-strip { margin-top: clamp(72px, 8vh, 96px); }
.signal-track {
  width: max-content;
  display: flex;
  color: #fff4e3;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker-group {
  width: max-content;
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  padding: 13px 12.5px;
  white-space: nowrap;
}
.signal-track .ticker-group { padding-block: 14px; }
.signal-track i { color: var(--orange); font-style: normal; text-shadow: 0 0 12px rgba(255,95,0,.8); }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

.section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 138px 0; position: relative; }
.section-heading { max-width: 720px; }
.section-heading.compact { max-width: 650px; }
.section-heading h2, .project-copy h2, .ai-copy h2, .final-cta h2 {
  margin-top: 15px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 950;
}
.section-heading > p:last-child, .project-copy > p, .ai-copy > p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.visual-story {
  width: min(1320px, calc(100% - 48px));
  isolation: isolate;
  padding-top: 150px;
}
.visual-story::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 7% -7% 3%;
  border-radius: 72px;
  background:
    linear-gradient(180deg, rgba(5,5,5,.16), #090604 92%),
    url("assets/course-media/horizon-glow.webp") center bottom / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
}
.story-heading { max-width: 850px; position: relative; }
.story-heading::after {
  content: "";
  width: 238px;
  height: 16px;
  display: block;
  margin-top: 28px;
  background: url("assets/course-media/peach-stripe.webp") left center / auto 16px repeat-x;
  opacity: .7;
}
.story-heading h2 {
  margin-top: 15px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.story-heading > p:last-of-type { max-width: 720px; margin-top: 23px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.story-list { display: grid; gap: 18px; margin-top: 58px; }
.story-feature {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(370px, .78fr);
  gap: 0;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(31,25,20,.96), rgba(11,11,11,.98) 62%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 38px 100px rgba(0,0,0,.38);
}
.story-feature:nth-child(2) { background: linear-gradient(135deg, rgba(28,22,17,.98), rgba(9,9,9,.99) 64%); }
.story-media {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #050505;
}
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 63%, rgba(12,11,10,.24) 80%, #11100e 100%);
  box-shadow: inset -1px 0 rgba(255,255,255,.05);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; outline: none; transition-property: scale, filter; transition-duration: 600ms; transition-timing-function: cubic-bezier(.2,0,0,1); }
.story-skills img { object-position: center 43%; }
.story-road img { object-position: center 47%; }
.story-feature:hover .story-media img { scale: 1.025; filter: brightness(1.06); }
.story-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 54px 54px 48px;
}
.story-copy::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -105px;
  top: -112px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(70px);
  opacity: .13;
  pointer-events: none;
}
.story-index { color: var(--amber); font: 700 11px/1.2 monospace; letter-spacing: .14em; }
.story-copy h3 { margin-top: 22px; color: #fff; font-size: clamp(30px, 3.15vw, 47px); line-height: 1.14; letter-spacing: -.045em; }
.story-copy > p { margin-top: 23px; color: #aaa7a2; font-size: 14px; line-height: 1.85; }
.story-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin-top: 28px; list-style: none; }
.story-tags li { padding: 8px 11px; border-radius: 10px; color: #e9e4dc; background: rgba(255,255,255,.065); box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); font-size: 11px; font-weight: 800; }
.story-link { min-height: 40px; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: #fff2dd; font-size: 13px; font-weight: 850; }
.story-link span { color: var(--orange); font-size: 17px; transition-property: transform; transition-duration: 170ms; }
.story-link:hover span { transform: translateX(4px); }
.story-link:active { scale: .96; }

.pain-section { display: grid; grid-template-columns: .68fr 1.32fr; gap: 72px; align-items: start; }
.pain-intro { position: sticky; top: 120px; }
.pain-intro h2 {
  margin-top: 15px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.pain-intro > p:last-child { margin-top: 23px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.pain-map { border-top: 1px solid rgba(255,255,255,.12); }
.pain-map > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 7px 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.pain-map span { grid-row: 1 / span 2; color: var(--orange); font: 20px/1 Impact, sans-serif; letter-spacing: .08em; }
.pain-map p { color: #c3c0bb; font-size: 15px; line-height: 1.7; }
.pain-map b { color: var(--amber); font-size: 13px; font-weight: 800; }

.three-pillars { display: grid; grid-template-columns: 1.02fr 1.12fr .86fr; gap: 14px; margin-top: 62px; }
.pillar {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}
.pillar::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .5;
}
.pillar-career { background: linear-gradient(145deg, #292c31, #141619); }
.pillar-career::before { background: #ff5700; }
.pillar-project { background: linear-gradient(150deg, #fc6807, #ffad0d); color: #231207; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 30px 80px rgba(255,90,0,.18); }
.pillar-project::before { background: #fff2a6; opacity: .7; }
.pillar-community { background: linear-gradient(145deg, #24282e, #111315); }
.pillar-community::before { background: #ffad0d; }
.pillar-no { position: absolute; right: 32px; top: 25px; font-family: Impact, sans-serif; font-size: 68px; line-height: 1; color: rgba(255,255,255,.09); }
.pillar-project .pillar-no { color: rgba(60,21,0,.15); }
.pillar-en { color: var(--orange); font-family: monospace; font-size: 12px; letter-spacing: .17em; }
.pillar-project .pillar-en { color: rgba(48,22,7,.68); }
.pillar h3 { margin-top: 30px; font-size: 42px; line-height: 1.08; letter-spacing: -.04em; }
.pillar ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin-top: 50px; }
.pillar li { padding: 9px 12px; border-radius: 10px; background: rgba(255,255,255,.07); box-shadow: 0 0 0 1px rgba(255,255,255,.08); color: #ddd9d2; font-size: 13px; }
.pillar-project li { color: #321709; background: rgba(255,247,225,.44); box-shadow: 0 0 0 1px rgba(255,255,255,.38); font-weight: 700; }

.course-pack {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #202328, #111214);
  box-shadow: var(--shadow-dark);
}
.pack-lead { display: grid; grid-template-columns: 1fr 1.45fr .8fr; gap: 28px; align-items: end; padding: 36px 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.pack-lead h3 { font-size: 32px; line-height: 1.15; letter-spacing: -.04em; }
.pack-lead > p:last-child { color: #9d9a95; font-size: 13px; line-height: 1.7; }
.pack-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.pack-list article { min-height: 165px; padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.pack-list article:nth-child(3n) { border-right: 0; }
.pack-list article:nth-last-child(-n+3) { border-bottom: 0; }
.pack-list span { color: var(--orange); font-size: 11px; font-weight: 900; }
.pack-list b { display: block; margin-top: 20px; font-size: 19px; }
.pack-list p { margin-top: 8px; color: #96938e; font-size: 12px; line-height: 1.7; }
.lifetime-line { min-height: 72px; display: flex; align-items: center; gap: 18px; padding: 14px 22px 14px 28px; color: #261407; background: linear-gradient(100deg, #ffc62d, #ff6c08); }
.lifetime-line b { font-size: 17px; }
.lifetime-line span { font-size: 13px; font-weight: 700; }
.lifetime-line a { margin-left: auto; padding: 12px 14px; border-radius: 11px; background: rgba(43,21,6,.13); font-size: 12px; font-weight: 900; transition-property: background-color, scale; transition-duration: 150ms; }
.lifetime-line a:hover { background: rgba(43,21,6,.2); }
.lifetime-line a:active { scale: .96; }

.career-section::before {
  content: "";
  position: absolute;
  inset: 7% -15% auto;
  height: 70%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255,92,0,.13), transparent 68%);
}
.career-services-figure {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  gap: 10px;
  margin-top: 54px;
  padding: 10px;
  overflow: hidden;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 62%, rgba(255,99,8,.18), transparent 32%),
    linear-gradient(135deg, #18130f, #070706 68%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 35px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.05);
}
.career-services-panel {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 29px;
  background: #d2d6d8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.48), 12px 0 42px rgba(0,0,0,.2);
}
.career-services-panel img { width: 100%; height: 100%; max-height: 590px; object-fit: contain; outline: none; }
.career-vision {
  min-height: 570px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 29px;
  background: #090604;
  box-shadow: inset 0 0 0 1px rgba(255,185,92,.12);
}
.career-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4,3,2,.76) 0%, rgba(4,3,2,.12) 38%, rgba(4,3,2,.08) 58%, rgba(4,3,2,.92) 100%),
    linear-gradient(90deg, rgba(4,3,2,.18), transparent 55%);
  pointer-events: none;
}
.career-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(255,205,128,.34) .7px, transparent .7px);
  background-size: 9px 9px;
  opacity: .16;
  mask-image: linear-gradient(180deg, black, transparent 38%, black 100%);
  pointer-events: none;
}
.career-vision > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  outline: none;
  filter: saturate(.96) contrast(1.04);
  transition-property: scale, filter;
  transition-duration: 650ms;
  transition-timing-function: cubic-bezier(.2,0,0,1);
}
.career-services-figure:hover .career-vision > img { scale: 1.025; filter: saturate(1.04) contrast(1.06); }
.career-vision-copy { position: absolute; inset: 32px 32px auto; z-index: 3; }
.career-vision-copy > span { display: block; color: #ffb128; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.career-vision-copy h3 { margin-top: 15px; max-width: 440px; color: #fff9ef; font-size: clamp(27px, 2.65vw, 39px); font-weight: 900; line-height: 1.2; letter-spacing: -.045em; text-wrap: balance; }
.career-vision-copy p { margin-top: 13px; color: rgba(255,239,215,.64); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.career-destination {
  min-height: 40px;
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 12px;
  color: #2b1505;
  background: linear-gradient(110deg, #ffd45a, #ff780d);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 10px 30px rgba(255,91,0,.25);
  font-size: 11px;
  font-weight: 900;
}
.career-destination i { width: 7px; height: 7px; border-radius: 50%; background: #fff8d9; box-shadow: 0 0 12px rgba(255,255,255,.9); }
.career-route { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 66px; counter-reset: route; }
.route-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(40,43,48,.96), rgba(16,17,19,.98));
  box-shadow: var(--shadow-dark);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-dark-hover); }
.route-card::after { content: "→"; position: absolute; right: 18px; top: 17px; color: rgba(255,255,255,.16); font-size: 26px; }
.route-card:nth-child(4)::after { content: "↘"; }
.route-card:nth-child(5)::after, .route-final::after { content: "→"; }
.route-card > span { color: var(--orange); font-family: Impact, sans-serif; font-size: 18px; letter-spacing: .08em; }
.route-card > small { float: right; padding: 5px 8px; border-radius: 999px; color: #291409; background: linear-gradient(100deg, #ffd34b, #ff7a08); font-size: 9px; font-weight: 900; }
.route-card > b { display: block; margin-top: 30px; color: #fff; font-size: 25px; }
.route-card > p { margin-top: 12px; color: #a9a6a1; font-size: 14px; line-height: 1.75; }
.route-final { background: linear-gradient(145deg, #ffad0d, #ff5e05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 25px 65px rgba(255,84,0,.18); }
.route-final > span, .route-final > b, .route-final > p, .route-final::after { color: #29150a; }
.identity-deep-dive { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; margin-top: 16px; padding: 42px; border-radius: 28px; background: linear-gradient(135deg, #f3eee5, #d7cfc3); color: #272522; box-shadow: 0 24px 80px rgba(0,0,0,.2); }
.identity-deep-dive > div > span { color: var(--orange); font-size: 12px; font-weight: 900; }
.identity-deep-dive h3 { margin-top: 14px; font-size: 29px; line-height: 1.35; letter-spacing: -.03em; }
.identity-deep-dive ul { list-style: none; padding: 0; }
.identity-deep-dive li { padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.12); color: #5c5751; font-size: 13px; line-height: 1.65; }
.identity-deep-dive li:last-child { border-bottom: 0; }
.identity-deep-dive li b { display: inline-block; min-width: 84px; color: #272522; font-size: 15px; }

.project-section {
  width: min(1360px, calc(100% - 48px));
  padding-top: 124px;
  isolation: isolate;
}
.project-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 54px -5% 0;
  border-radius: 64px;
  background:
    radial-gradient(circle at 84% 6%, rgba(255,104,8,.18), transparent 25rem),
    linear-gradient(180deg, rgba(20,13,8,.82), rgba(7,7,7,.12) 38%, rgba(7,7,7,.5));
  box-shadow: inset 0 1px rgba(255,255,255,.055);
}
.project-hero { display: grid; grid-template-columns: 1.28fr .72fr; gap: 76px; align-items: end; }
.project-hero-copy { max-width: 880px; }
.project-hero h2 {
  max-width: 860px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(48px, 5.65vw, 78px);
  line-height: 1.06;
  letter-spacing: -.058em;
  font-weight: 950;
}
.project-hero-copy > p:last-child { max-width: 800px; margin-top: 28px; color: #bbb6af; font-size: 17px; line-height: 1.9; }
.project-proof-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 30px;
  color: #2a1407;
  background: linear-gradient(145deg, #ffd24f, #ff8d12 56%, #ff6508);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.44), 0 28px 80px rgba(255,85,0,.18);
}
.project-proof-card > span { grid-column: 1 / -1; align-self: end; padding: 34px 34px 7px; font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.project-proof-card > strong { grid-column: 1 / -1; padding: 0 34px 28px; font-size: clamp(28px, 2.6vw, 38px); line-height: 1.12; letter-spacing: -.04em; }
.project-proof-card > div { min-height: 95px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 17px 18px; border-top: 1px solid rgba(54,24,4,.13); border-right: 1px solid rgba(54,24,4,.13); }
.project-proof-card > div:last-child { border-right: 0; }
.project-proof-card b { font-family: Impact, sans-serif; font-size: 27px; font-weight: 500; }
.project-proof-card small { font-size: 10px; font-weight: 850; line-height: 1.4; }
.project-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; overflow: hidden; margin-top: 64px; border-radius: 24px; background: rgba(255,255,255,.1); box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.project-flow::-webkit-scrollbar { display: none; }
.project-flow a { min-height: 128px; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 24px 26px; background: rgba(15,15,15,.96); transition: background-color 170ms ease, transform 170ms ease; }
.project-flow a::after { content: "→"; position: absolute; right: 17px; top: 15px; color: rgba(255,255,255,.16); font-size: 20px; }
.project-flow a:last-child::after { content: "✓"; color: var(--orange); }
.project-flow a:hover { z-index: 1; background: #21160f; transform: translateY(-3px); }
.project-flow span { color: var(--orange); font: 13px/1 Impact, sans-serif; letter-spacing: .09em; }
.project-flow b { margin-top: 14px; color: #fff; font-size: 17px; }
.project-flow small { margin-top: 6px; color: #8f8a83; font-size: 11px; }
.project-chapters { display: grid; gap: 24px; margin-top: 24px; }
.project-chapter {
  height: 760px;
  min-height: 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  scroll-margin-top: 105px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(30,30,31,.98), rgba(12,12,13,.99));
  box-shadow: 0 0 0 1px rgba(255,255,255,.09), 0 34px 90px rgba(0,0,0,.28);
}
.project-chapter:nth-child(even) { grid-template-columns: 1.22fr .78fr; }
.project-chapter:nth-child(even) .chapter-copy { order: 2; }
.project-chapter:nth-child(even) .chapter-visual { order: 1; }
.chapter-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 64px 58px; }
.chapter-copy::before { content: ""; position: absolute; width: 240px; height: 240px; right: -130px; top: -130px; border-radius: 50%; background: var(--orange); filter: blur(82px); opacity: .12; }
.chapter-no { color: var(--orange); font: 800 11px/1.2 monospace; letter-spacing: .14em; }
.chapter-role { margin-top: 18px; color: #e2a45f; font-size: 12px; font-weight: 850; }
.chapter-copy h3 { max-width: 510px; margin-top: 17px; color: #fff; font-size: clamp(34px, 3.4vw, 50px); line-height: 1.12; letter-spacing: -.045em; }
.chapter-copy > p:not(.chapter-role) { max-width: 530px; margin-top: 24px; color: #aaa7a2; font-size: 15px; line-height: 1.9; }
.chapter-copy ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 30px 0 0; list-style: none; }
.chapter-copy li { padding: 9px 12px; border-radius: 10px; color: #e9e4dc; background: rgba(255,255,255,.065); box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); font-size: 11px; font-weight: 800; }
.chapter-copy .button { align-self: flex-start; margin-top: 30px; }
.chapter-visual { min-width: 0; position: relative; display: flex; flex-direction: column; margin: 0; padding: 18px; background: #0a0a0a; box-shadow: inset 1px 0 rgba(255,255,255,.055); }
.chapter-visual figcaption { min-height: 74px; display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; align-items: end; padding: 7px 10px 16px; }
.chapter-visual figcaption span { grid-column: 1 / -1; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.chapter-visual figcaption b { color: #fff; font-size: 18px; }
.chapter-visual figcaption small { color: #817e79; font-size: 10px; }
.chapter-visual > a { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 20px; background: #eef2f0; cursor: zoom-in; }
.chapter-visual img { width: 100%; height: 100%; object-fit: contain; outline: none; transition: transform 500ms cubic-bezier(.2,0,0,1), filter 500ms ease; }
.chapter-visual > a:hover img { transform: scale(1.012); filter: brightness(1.035); }
.chapter-visual > a:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.chapter-dashboard > a { background: #dbe7e8; }
.chapter-report > a, .chapter-sql > a, .chapter-excel > a { background: #f3f2ef; }
.chapter-certificate > a { background: radial-gradient(circle at 50%, #fff9e9, #d8d1c6 78%); }
.chapter-certificate img { padding: 28px; }
.project-chapter-final { height: 600px; background: linear-gradient(145deg, #25180f, #0d0d0d 66%); }

.curriculum-section { width: min(1320px, calc(100% - 48px)); }
.curriculum-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 58px; }
.curriculum-track article {
  min-height: 210px;
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #22252a, #121416);
  box-shadow: var(--shadow-dark);
}
.curriculum-track article:nth-child(6) { background: linear-gradient(145deg, #ffad0d, #ff6508); color: #2b1608; }
.curriculum-track span { color: var(--orange); font: 11px/1 monospace; letter-spacing: .12em; }
.curriculum-track article:nth-child(6) span { color: rgba(43,22,8,.7); }
.curriculum-track b { display: block; margin-top: 42px; font-size: 21px; }
.curriculum-track p { margin-top: 10px; color: #999690; font-size: 12px; line-height: 1.7; }
.curriculum-track article:nth-child(6) p { color: rgba(43,22,8,.72); }
.deliverables { display: grid; grid-template-columns: repeat(4, 1fr) 1.45fr; gap: 1px; overflow: hidden; margin-top: 12px; border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: var(--shadow-dark); }
.deliverables > * { background: #151719; }
.deliverable-number { min-height: 135px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 18px; text-align: center; }
.deliverable-number strong { color: #fff; font: 45px/1 Impact, sans-serif; }
.deliverable-number span { margin-top: 8px; color: #aaa7a1; font-size: 11px; }
.deliverables > p { display: flex; align-items: center; padding: 25px; color: #bbb7b1; font-size: 12px; line-height: 1.75; }

.community-section { width: min(1320px, calc(100% - 48px)); }
.community-figure { margin-top: 58px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-dark), 0 40px 100px rgba(0,0,0,.34); }
.community-figure img { width: 100%; }
.community-notes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
.community-notes span { min-height: 105px; padding: 21px; border-radius: 20px; background: #181a1e; box-shadow: var(--shadow-dark); color: #96938e; font-size: 12px; line-height: 1.6; }
.community-notes b { display: block; margin-bottom: 8px; color: #fff; font-size: 15px; }

.team-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 64px; }
.team-panel { padding: 26px; overflow: hidden; border-radius: 30px; background: linear-gradient(145deg, #202328, #121315); box-shadow: var(--shadow-dark); }
.team-core { grid-column: 1 / -1; }
.team-alumni { grid-column: 1 / -1; overflow-x: auto; }
.panel-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.panel-title span { padding: 7px 10px; border-radius: 8px; color: #28140a; background: linear-gradient(90deg, var(--amber), var(--orange)); font-size: 12px; font-weight: 900; }
.panel-title b { color: #fff; font-size: 20px; }
.team-panel img { width: 100%; outline: none; }
.team-core img { max-height: 360px; object-fit: contain; }
.alumni-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  min-width: 1000px;
}
.alumni-strip span {
  aspect-ratio: 441 / 323;
  background-image: url("assets/alumni-fields.png");
  background-repeat: no-repeat;
  background-size: 533.1% 218.9%;
  background-position: var(--sprite-x) var(--sprite-y);
}
.teacher-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.teacher-notes p { padding: 16px; border-radius: 16px; color: #aaa7a1; background: rgba(255,255,255,.035); font-size: 12px; line-height: 1.6; }
.teacher-notes b { display: block; margin-bottom: 5px; color: var(--orange); font-size: 14px; }

.proof-section { width: min(1320px, calc(100% - 48px)); }
.proof-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 46px; }
.proof-toolbar p { display: flex; align-items: baseline; gap: 9px; color: #eee9e1; font-size: 13px; font-weight: 800; }
.proof-toolbar strong { color: var(--orange); font: 34px/1 Impact, sans-serif; font-variant-numeric: tabular-nums; }
.proof-toolbar span { color: #777570; font-size: 11px; font-weight: 500; }
.proof-mode { display: flex; align-items: center; gap: 10px; color: #aaa7a1; font-size: 12px; font-weight: 800; }
.proof-mode b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: #251205; background: linear-gradient(135deg, var(--amber), var(--orange)); box-shadow: 0 10px 28px rgba(255,101,8,.22); font-size: 18px; }
.proof-lightbox-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  color: #f7f2e9;
  background: #1b1d20;
  box-shadow: var(--shadow-dark);
  transition-property: color, background-color, box-shadow, scale;
  transition-duration: 180ms;
}
.proof-lightbox-close:active { scale: .96; }
.proof-frame {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(29,31,34,.98), rgba(11,12,14,.99));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 28px 80px rgba(0,0,0,.28);
}
.proof-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 132px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(11,12,14,.94) 74%);
  transition-property: opacity;
  transition-duration: 180ms;
}
.proof-frame.is-at-end::after { opacity: 0; }
.proof-viewport {
  width: 100%;
  height: clamp(580px, 70vh, 760px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px 14px 96px 16px;
  border-radius: inherit;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) rgba(255,255,255,.07);
  scrollbar-width: thin;
}
.proof-viewport::-webkit-scrollbar { width: 10px; }
.proof-viewport::-webkit-scrollbar-track { margin-block: 16px; border-radius: 99px; background: rgba(255,255,255,.07); }
.proof-viewport::-webkit-scrollbar-thumb { min-height: 64px; border: 2px solid #17191c; border-radius: 99px; background: linear-gradient(var(--amber), var(--orange)); }
.proof-viewport:focus-visible { outline: 2px solid var(--orange); outline-offset: -4px; }
.proof-wall { width: 100%; column-count: 3; column-gap: 14px; }
.proof-stack { display: contents; }
.proof-card { break-inside: avoid; overflow: hidden; margin: 0 0 14px; border-radius: 23px; background: linear-gradient(145deg, #202327, #151719); box-shadow: var(--shadow-dark), 0 18px 45px rgba(0,0,0,.18); }
.proof-featured { box-shadow: var(--shadow-dark), 0 22px 55px rgba(0,0,0,.25); }
.proof-image-button { width: 100%; display: block; padding: 0; border: 0; cursor: zoom-in; background: #202224; }
.proof-card img { width: 100%; height: auto; max-height: none; object-fit: contain; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; transition-property: filter, opacity; transition-duration: 180ms; }
.proof-image-button:hover img { filter: brightness(1.06); }
.proof-image-button:active img { opacity: .84; }
.proof-card figcaption { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px 18px; }
.proof-card figcaption b { color: #fff; font-size: 14px; }
.proof-card figcaption span { color: #96938d; font-size: 11px; line-height: 1.55; }
.proof-card-compact figcaption { padding-block: 13px 15px; }
.proof-scroll-cue {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 7px 6px 18px;
  border: 0;
  border-radius: 17px;
  color: #f7f2e9;
  background: rgba(29,31,34,.94);
  box-shadow: 0 16px 44px rgba(0,0,0,.46), inset 0 0 0 1px rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateX(50%);
  transition-property: opacity, transform, box-shadow;
  transition-duration: 180ms;
}
.proof-scroll-cue b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #251205; background: linear-gradient(135deg, var(--amber), var(--orange)); font-size: 17px; }
.proof-scroll-cue:hover { box-shadow: 0 18px 52px rgba(0,0,0,.54), inset 0 0 0 1px rgba(255,255,255,.22); transform: translateX(50%) translateY(-2px); }
.proof-scroll-cue:active { transform: translateX(50%) scale(.96); }
.proof-frame.is-at-end .proof-scroll-cue { opacity: 0; pointer-events: none; transform: translateX(50%) translateY(10px); }
.proof-lightbox { width: min(1120px, calc(100% - 34px)); max-width: none; max-height: calc(100dvh - 34px); margin: auto; padding: 0; overflow: visible; border: 0; border-radius: 28px; color: #fff; background: #111315; box-shadow: 0 36px 120px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.14); }
.proof-lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(10px); }
.proof-lightbox figure { max-height: calc(100dvh - 34px); overflow: auto; border-radius: inherit; }
.proof-lightbox img { width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 96px); margin: 0 auto; object-fit: contain; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }
.proof-lightbox figcaption { padding: 17px 64px 18px 20px; color: #aaa7a1; font-size: 12px; line-height: 1.6; }
.proof-lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; color: #fff; background: rgba(5,5,5,.82); backdrop-filter: blur(10px); font-size: 27px; line-height: 1; }
.proof-lightbox-close:hover { background: var(--orange); }

.ai-section {
  width: min(1320px, calc(100% - 48px));
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 72px;
  align-items: center;
}
.ai-section::before {
  content: "";
  position: absolute;
  inset: 8% -6%;
  z-index: -1;
  border-radius: 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,173,13,.18), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(255,75,0,.15), transparent 30%),
    #111214;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.update-badge { display: inline-flex; margin-top: 24px; padding: 8px 11px; border-radius: 8px; color: #ffe7c2; background: rgba(255,91,0,.13); box-shadow: 0 0 0 1px rgba(255,115,31,.28); font-size: 12px; font-weight: 800; }
.ai-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 32px; }
.ai-steps span { min-height: 56px; display: flex; align-items: center; gap: 11px; padding: 10px 14px; border-radius: 14px; color: #d7d3cd; background: rgba(255,255,255,.045); box-shadow: 0 0 0 1px rgba(255,255,255,.06); font-size: 13px; }
.ai-steps b { color: var(--orange); font-family: monospace; }
.ai-guarantees { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.ai-guarantees span { padding: 7px 11px; border-radius: 999px; color: #241309; background: linear-gradient(110deg, #ffd052, #ff7a08); font-size: 12px; font-weight: 900; }
.resume-machine { overflow: hidden; border-radius: 32px; background: #0a0c0e; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 40px 100px rgba(0,0,0,.5); transform: perspective(1400px) rotateY(-3deg); }
.machine-toolbar { height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 18px; background: #25282d; box-shadow: inset 0 -1px rgba(255,255,255,.06); }
.machine-toolbar i { width: 8px; height: 8px; border-radius: 50%; background: #5a5d61; }
.machine-toolbar i:first-child { background: var(--orange); }
.machine-toolbar span { margin-left: auto; color: #888b90; font: 10px/1 monospace; letter-spacing: .14em; }
.machine-body { min-height: 500px; display: grid; grid-template-columns: .75fr 1.25fr; }
.resume-form { display: flex; flex-direction: column; gap: 15px; padding: 34px 25px; border-right: 1px solid rgba(255,255,255,.07); background: linear-gradient(160deg, #15181c, #0d0f11); }
.resume-form label { display: flex; flex-direction: column; gap: 8px; color: #777b80; font-size: 11px; }
.resume-form label span { min-height: 45px; display: flex; align-items: center; padding: 0 13px; border-radius: 11px; color: #e9e5df; background: #202329; box-shadow: 0 0 0 1px rgba(255,255,255,.07); font-size: 12px; }
.typing-line::after { content: ""; width: 1px; height: 14px; margin-left: 4px; background: var(--orange); animation: caret .8s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.resume-form button { min-height: 48px; margin-top: auto; border: 0; border-radius: 13px; color: #221309; background: linear-gradient(110deg, #ffd14d, #ff6508); font: 800 12px/1 inherit; }
.resume-form button b { margin-left: 12px; }
.resume-preview { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; background: radial-gradient(circle at 70% 20%, rgba(255,117,0,.18), transparent 32%); }
.resume-page { width: min(290px, 100%); aspect-ratio: .71; padding: 29px; border-radius: 5px; color: #242424; background: #f8f3e9; box-shadow: 0 35px 80px rgba(0,0,0,.45); transform: rotate(2deg); animation: pageHover 5s ease-in-out infinite; }
@keyframes pageHover { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -8px; rotate: -.4deg; } }
.resume-page header { position: static; display: flex; align-items: center; gap: 12px; height: auto; padding: 0 0 20px; background: transparent; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--orange), var(--amber)); font-weight: 900; }
.resume-page header b, .resume-page header small { display: block; }
.resume-page header b { font-size: 17px; }
.resume-page header small { margin-top: 3px; color: #888; font-size: 7px; letter-spacing: .15em; }
.resume-page h4 { margin: 23px 0 11px; font-size: 11px; }
.resume-rule { width: 58%; height: 4px; display: block; margin-top: 8px; border-radius: 4px; background: #d9d4ca; }
.resume-rule.wide { width: 100%; }
.resume-rule.medium { width: 78%; }
.skill-bars { display: flex; gap: 5px; margin-top: 24px; }
.skill-bars i { width: 32%; height: 32px; border-radius: 4px; background: linear-gradient(180deg, #ffb210, #ff6508); opacity: .85; }
.published { width: min(360px, 100%); display: flex; align-items: center; gap: 8px; margin-top: 23px; padding: 12px 14px; border-radius: 12px; color: #9b9b9b; background: rgba(0,0,0,.55); box-shadow: 0 0 0 1px rgba(255,255,255,.1); font-size: 10px; }
.published i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.published span { color: var(--green); }
.published b { margin-left: auto; color: #ddd; font-family: monospace; font-weight: 500; }
.growth-bonus { grid-column: 1 / -1; min-height: 190px; display: grid; grid-template-columns: 170px 1fr 1.2fr; gap: 30px; align-items: center; margin-top: 8px; padding: 28px 34px; overflow: hidden; border-radius: 28px; color: #2a1608; background: linear-gradient(110deg, #ffd14b, #ff6807); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 30px 80px rgba(255,91,0,.18); }
.growth-number { font: 94px/1 Impact, sans-serif; letter-spacing: -.03em; }
.growth-number small { font-size: 20px; }
.growth-bonus .section-kicker { color: rgba(42,22,8,.62); }
.growth-bonus h3 { margin-top: 7px; font-size: 27px; }
.growth-bonus p:not(.section-kicker) { margin-top: 8px; color: rgba(42,22,8,.72); font-size: 12px; line-height: 1.7; }
.growth-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; transform: rotate(-2deg); }
.growth-quotes span { min-height: 48px; display: flex; align-items: center; padding: 8px 12px; border-radius: 12px; color: #fff2df; background: rgba(42,20,6,.78); box-shadow: 0 8px 25px rgba(75,31,0,.15); font-size: 11px; font-weight: 800; }

.audience-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 16px; margin-top: 58px; }
.audience-source { width: 100%; border-radius: 28px; background: #23262b; box-shadow: var(--shadow-dark); }
.audience-extra { display: flex; flex-direction: column; gap: 10px; }
.audience-extra span { min-height: 72px; display: flex; align-items: center; padding: 0 23px; border-radius: 19px; color: #d8d4ce; background: linear-gradient(130deg, #22252a, #141517); box-shadow: var(--shadow-dark); font-size: 15px; font-weight: 800; }
.audience-extra span::before { content: "◆"; margin-right: 13px; color: var(--orange); font-size: 10px; text-shadow: 0 0 12px rgba(255,95,0,.8); }

.timing-section { width: min(1320px, calc(100% - 48px)); overflow: hidden; padding-inline: 54px; border-radius: 52px; background: radial-gradient(circle at 92% 5%, rgba(255,173,13,.26), transparent 28%), linear-gradient(145deg, #1c1e22, #0b0c0e); box-shadow: var(--shadow-dark); }
.timing-title { max-width: 820px; }
.timing-title h2 { margin-top: 15px; font-size: clamp(42px, 5vw, 72px); line-height: 1.08; letter-spacing: -.055em; }
.timing-reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 55px; overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.1); }
.timing-reasons article { min-height: 210px; padding: 27px; background: #151719; }
.timing-reasons span { color: var(--orange); font: 16px/1 Impact, sans-serif; }
.timing-reasons b { display: block; margin-top: 37px; font-size: 18px; }
.timing-reasons p { margin-top: 10px; color: #96938e; font-size: 12px; line-height: 1.7; }
.target-jobs { display: grid; grid-template-columns: 1.2fr .55fr auto; gap: 12px; align-items: center; margin-top: 12px; }
.target-jobs > div { min-height: 78px; display: flex; flex-direction: column; justify-content: center; padding: 15px 20px; border-radius: 18px; background: rgba(255,255,255,.055); box-shadow: 0 0 0 1px rgba(255,255,255,.07); }
.target-jobs span { color: #8e8b86; font-size: 10px; }
.target-jobs b { margin-top: 5px; color: #f2eee8; font-size: 14px; }

.compare-section { width: min(1320px, calc(100% - 48px)); }
.compare-scroller {
  margin-top: 52px;
  padding: 48px;
  overflow-x: auto;
  border-radius: 42px;
  background: #232421;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 34px 90px rgba(0,0,0,.3);
  scrollbar-color: rgba(255,190,91,.72) rgba(255,255,255,.06);
  scrollbar-width: thin;
}
.compare-scroller::-webkit-scrollbar { height: 8px; }
.compare-scroller::-webkit-scrollbar-track { border-radius: 999px; background: rgba(255,255,255,.06); }
.compare-scroller::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(255,190,91,.72); }
.compare-table {
  display: grid;
  grid-template-columns: .64fr 1fr 1.48fr 1.1fr;
  column-gap: 20px;
  min-width: 0;
}
.compare-row { display: contents; }
.compare-row > * {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  text-align: center;
  color: #8d8d8a;
  background: #090a09;
  box-shadow: inset 0 -1px rgba(255,255,255,.075);
  font-size: 13px;
  line-height: 1.65;
}
.compare-row > b { color: #f3f1eb; font-size: 15px; }
.compare-row .featured {
  color: #8c4009;
  background: linear-gradient(90deg, #ffedc2, #ffe5a4);
  box-shadow: inset 0 -1px rgba(111,61,7,.14);
  font-weight: 800;
}
.compare-head > * {
  min-height: 134px;
  color: #fff;
  box-shadow: inset 0 -1px rgba(255,255,255,.08);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
  text-wrap: balance;
}
.compare-head > *:first-child,
.compare-head > *:nth-child(2),
.compare-head > *:last-child { border-radius: 30px 30px 0 0; }
.compare-head .featured {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  color: #9e4403;
  background: linear-gradient(110deg, #fff0c9, #ffe8ad);
  box-shadow: inset 0 -1px rgba(111,61,7,.14), inset 0 0 0 1px rgba(139,85,10,.1);
  font-size: 21px;
}
.compare-head .featured::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 104px;
  height: 104px;
  rotate: 45deg;
  background: linear-gradient(135deg, #ffd36f, #ffc24f);
  box-shadow: 0 0 0 1px rgba(255,255,255,.35);
}
.compare-row:last-child > * { border-radius: 0 0 30px 30px; box-shadow: none; }
.compare-row:last-child .featured { box-shadow: inset 0 0 0 1px rgba(139,85,10,.1); }

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 8% -6%;
  z-index: -1;
  border-radius: 70px;
  background: linear-gradient(145deg, #151618, #090a0b);
  box-shadow: 0 0 0 1px rgba(255,255,255,.07);
}
.pricing-top { display: grid; grid-template-columns: 1.04fr .72fr; gap: 64px; align-items: center; }
.pricing-heading h2 { max-width: 780px; text-wrap: balance; }
.pricing-heading > p:last-of-type { max-width: 690px; text-wrap: pretty; }
.value-path { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.value-path span { min-height: 36px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px 7px 8px; border-radius: 999px; color: #d8d4cd; background: rgba(255,255,255,.055); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); font-size: 11px; font-weight: 800; }
.value-path i { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #2a1505; background: linear-gradient(145deg, #ffc32f, #ff6a07); font-size: 9px; font-style: normal; font-variant-numeric: tabular-nums; }
.price-summary { position: relative; overflow: hidden; padding: 34px; border-radius: 29px; background: radial-gradient(circle at 92% 5%, rgba(255,255,255,.38), transparent 26%), linear-gradient(145deg, #ffb511, #ff5d05); color: #2b1506; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), 0 32px 90px rgba(255,91,0,.3), 0 0 0 9px rgba(255,117,7,.035); }
.price-badge { width: fit-content; margin: 0 0 19px auto; padding: 7px 11px; border-radius: 999px; color: #fff5df; background: rgba(43,21,6,.82); box-shadow: 0 8px 24px rgba(74,30,0,.18); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.price-summary > span { display: flex; justify-content: space-between; padding-bottom: 11px; color: rgba(48,23,5,.66); font-size: 13px; font-weight: 700; }
.price-summary p { margin-top: 20px; font-size: 14px; font-weight: 900; }
.price-summary strong { display: block; margin-top: 3px; font-family: Impact, sans-serif; font-size: clamp(72px, 7vw, 108px); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.price-summary strong small { font-size: .35em; vertical-align: top; margin-right: 4px; }
.price-summary em { display: block; margin-top: 13px; color: rgba(38,19,5,.78); font-size: 12px; font-weight: 800; }
.price-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.price-includes span { min-height: 27px; display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; color: #3a1c07; background: rgba(255,255,255,.34); box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); font-size: 10px; font-weight: 900; }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 44px; }
.value-grid article { min-height: 164px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 18px; border-radius: 18px; background: radial-gradient(circle at 100% 0, rgba(255,157,19,.08), transparent 42%), #202328; box-shadow: inset 0 0 0 1px rgba(255,255,255,.055), var(--shadow-dark); transition-property: transform, box-shadow; transition-duration: 220ms; transition-timing-function: cubic-bezier(.2,0,0,1); }
.value-grid article:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(255,165,30,.22), 0 24px 50px rgba(0,0,0,.3); }
.value-grid article small { width: fit-content; padding: 4px 7px; border-radius: 6px; color: #ffad22; background: rgba(255,139,13,.1); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.value-grid span { display: block; margin-top: 13px; color: #f4f0e9; font-size: 14px; font-weight: 900; }
.value-grid em { display: block; margin-top: 7px; color: #8e8b86; font-size: 10px; font-style: normal; line-height: 1.55; text-wrap: pretty; }
.value-grid b { display: block; margin-top: auto; padding-top: 14px; color: #fff0d4; font-size: 20px; font-variant-numeric: tabular-nums; }
.value-grid .value-card-featured { background: radial-gradient(circle at 100% 0, rgba(255,230,166,.28), transparent 42%), linear-gradient(145deg, #ff9f0b, #f05a06); }
.value-grid .value-card-featured small { color: #321706; background: rgba(255,255,255,.35); }
.value-grid .value-card-featured span, .value-grid .value-card-featured b { color: #2c1405; }
.value-grid .value-card-featured em { color: rgba(44,20,5,.7); }
.total-value { min-height: 78px; display: flex; align-items: center; gap: 18px; margin-top: 10px; padding: 14px 22px; border-radius: 18px; background: linear-gradient(100deg, #f5f0e7, #d9d0c2); color: #272522; box-shadow: 0 16px 38px rgba(0,0,0,.2); }
.total-value span { font-size: 12px; font-weight: 700; }
.total-value s { font: 30px/1 Impact, sans-serif; color: #79746e; }
.total-value b { margin-left: auto; color: #d8420a; font-size: 17px; font-variant-numeric: tabular-nums; }
.risk-free { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: stretch; margin-top: 10px; }
.risk-free > div { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 17px; border-radius: 18px; background: #f0ece4; color: #292724; }
.risk-free > div > span { color: var(--orange); font-family: Impact, sans-serif; font-size: 29px; }
.risk-free p { font-size: 11px; line-height: 1.55; }
.risk-free p small { display: block; margin-bottom: 4px; color: #e3500d; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.risk-free p b { display: block; font-size: 13px; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.1); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: #fff; font-size: 18px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { transition-property: transform; transition-duration: 180ms; color: var(--orange); font-size: 24px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 660px; padding: 0 45px 24px 0; color: #9e9b96; font-size: 14px; line-height: 1.8; }

.final-cta { width: min(1240px, calc(100% - 48px)); min-height: 700px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 30px auto 80px; padding: 70px 28px; border-radius: 52px; text-align: center; background: #080604; box-shadow: var(--shadow-dark); }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .72; background: linear-gradient(180deg, rgba(4,4,4,.86), rgba(5,3,2,.24) 48%, rgba(0,0,0,.92)), url("assets/course-media/horizon-glow.webp") center / cover no-repeat; }
.final-cta::after { content: ""; position: absolute; right: -25px; bottom: 72px; width: 330px; height: 76px; opacity: .18; background: url("assets/course-media/chevrons.webp") center / contain no-repeat; transform: rotate(-3deg); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin-top: 16px; font-size: clamp(58px, 7vw, 100px); line-height: .95; }
.final-cta > p:not(.section-kicker) { margin: 22px 0 28px; color: #aaa7a1; }
.final-course-lockup { width: min(520px, 60vw); margin-bottom: 30px; outline: none; opacity: .92; }
.final-chevrons { position: absolute !important; left: -12px; top: 96px; width: 310px; opacity: .12; outline: none; transform: rotate(180deg); }
.final-ring { position: absolute; z-index: 0; width: 620px; height: 620px; border-radius: 50%; border: 1px solid rgba(255,133,0,.26); box-shadow: 0 0 90px rgba(255,95,0,.15), inset 0 0 90px rgba(255,95,0,.08); animation: ringPulse 5s ease-in-out infinite; }
@keyframes ringPulse { 50% { transform: scale(1.08); opacity: .65; } }

footer { width: min(1240px, calc(100% - 48px)); display: flex; align-items: center; justify-content: space-between; margin: 0 auto; padding: 28px 0 45px; border-top: 1px solid rgba(255,255,255,.08); color: #777; font-size: 12px; }
footer img { width: 105px; outline: none; opacity: .72; }
.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  animation: enter .65s cubic-bezier(.2,0,0,1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes enter { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.reveal-on-scroll { opacity: 0; transform: translateY(28px); filter: blur(5px); transition-property: opacity, transform, filter; transition-duration: 650ms; transition-timing-function: cubic-bezier(.2,0,0,1); }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.career-route .reveal-on-scroll:nth-child(2), .team-showcase .reveal-on-scroll:nth-child(2) { transition-delay: 70ms; }
.career-route .reveal-on-scroll:nth-child(3), .team-showcase .reveal-on-scroll:nth-child(3) { transition-delay: 140ms; }
.career-route .reveal-on-scroll:nth-child(4), .team-showcase .reveal-on-scroll:nth-child(4) { transition-delay: 210ms; }

@media (max-width: 1180px) {
  .site-header nav { display: none; }
  .view-switch { margin-right: auto; }
}

@media (max-width: 1050px) {
  .site-header nav { gap: 18px; }
  .notes-hero { grid-template-columns: 1fr .85fr; gap: 38px; }
  .notes-hero h1 { font-size: clamp(50px, 6.6vw, 70px); }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .access-card-course { grid-column: 1 / -1; }
  .access-card-course .course-thumbnails { grid-template-columns: repeat(3, 1fr); }
  .access-card-course .course-thumbnails img { height: 150px; }
  .free-course-bridge { grid-template-columns: 1fr .7fr; gap: 38px; padding: 58px; }
  .hero { min-height: 960px; }
  .hero-visual { inset: 0; width: 100%; border-radius: 0; }
  .hero-copy { width: 55%; }
  .hero-support { width: 100%; }
  .road-sign { display: inline-flex; }
  .visual-story { width: calc(100% - 36px); }
  .visual-story::before { inset-inline: -18px; }
  .story-feature { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); }
  .story-copy { padding: 42px 36px; }
  .pain-section { grid-template-columns: 1fr; }
  .pain-intro { position: static; }
  .three-pillars { grid-template-columns: 1fr 1fr; }
  .pillar-community { grid-column: 1 / -1; min-height: 360px; }
  .career-route { grid-template-columns: repeat(2, 1fr); }
  .career-services-figure { grid-template-columns: 1.08fr .92fr; gap: 10px; padding: 10px; }
  .career-vision { min-height: 500px; }
  .career-vision-copy { inset: 26px 24px auto; }
  .curriculum-track { grid-template-columns: repeat(2, 1fr); }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .deliverables > p { grid-column: 1 / -1; }
  .project-section { width: calc(100% - 36px); }
  .project-hero { grid-template-columns: 1fr; gap: 38px; }
  .project-proof-card { min-height: 290px; }
  .project-flow { grid-template-columns: repeat(5, minmax(160px, 1fr)); overflow-x: auto; scrollbar-width: none; }
  .project-chapter, .project-chapter:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
  .chapter-copy { padding: 48px 38px; }
  .proof-wall { column-count: 2; }
  .ai-section { grid-template-columns: 1fr; }
  .ai-section::before, .pricing-section::before { inset: 5% -2%; }
  .resume-machine { transform: none; }
  .growth-bonus { grid-template-columns: 150px 1fr; }
  .growth-quotes { grid-column: 1 / -1; }
  .audience-layout { grid-template-columns: 1fr; }
  .audience-extra { display: grid; grid-template-columns: 1fr 1fr; }
  .timing-reasons { grid-template-columns: repeat(2, 1fr); }
  .target-jobs { grid-template-columns: 1fr 1fr; }
  .target-jobs .button { grid-column: 1 / -1; }
  .compare-scroller { padding: 34px; border-radius: 34px; }
  .compare-table { min-width: 900px; }
  .pricing-top { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-free { grid-template-columns: 1fr 1fr; }
  .risk-free .button { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 60px; padding: 6px; border-radius: 18px; }
  .brand { display: none; }
  .site-header nav { display: none; }
  .view-switch { width: 100%; margin: 0; }
  .view-tab { justify-content: center; min-height: 46px; padding-inline: 8px; }
  .view-tab span { font-size: 12px; }
  .header-cta { display: none; }
  .course-nudge { top: calc(100% + 12px); left: 0; width: 100%; min-height: 70px; grid-template-columns: 44px 1fr auto; gap: 9px; padding: 9px; border-radius: 22px; }
  .course-nudge::before { left: 73%; top: -8px; }
  .nudge-copy b { font-size: 12px; }
  .nudge-go { min-height: 38px; padding-inline: 10px; font-size: 9px; }
  .notes-hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding: 164px 20px 85px; mask-image: none; }
  .notes-hero h1 { margin-top: 18px; font-size: clamp(32px, 10vw, 44px); white-space: nowrap; }
  .notes-subtitle { margin-top: 20px; font-size: 14px; line-height: 1.75; }
  .notes-meta { gap: 8px; margin-top: 24px; }
  .notes-meta span { min-height: 44px; gap: 6px; padding-inline: 13px; border-radius: 14px; }
  .notes-meta b { font-size: 19px; }
  .route-console { border-radius: 23px; transform: none; }
  .console-body { padding: 20px; }
  .console-body li { min-height: 53px; }
  .free-section { width: calc(100% - 32px); padding: 90px 0; }
  .free-heading h2, .free-course-bridge h2 { font-size: clamp(38px, 12vw, 54px); }
  .free-heading > p:last-child { font-size: 14px; line-height: 1.75; }
  .access-grid, .lesson-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .access-card-course { grid-column: auto; }
  .access-card { min-height: 500px; padding: 23px; border-radius: 27px; }
  .access-copy p { min-height: auto; }
  .bili-profile { margin-top: 25px; }
  .group-qr { width: min(240px, 84%); }
  .access-card-course .course-thumbnails img { height: 100px; }
  .free-route { padding-top: 60px; }
  .lesson-card { min-height: 350px; padding: 24px; border-radius: 24px; }
  .lesson-icon { right: 24px; top: 62px; }
  .lesson-card h3 { max-width: 84%; font-size: 27px; }
  .lesson-desc { max-width: 95%; }
  .resource-actions { flex-wrap: wrap; }
  .resource-actions a, .resource-empty { flex: 1 1 auto; }
  .version-note { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .free-course-bridge { width: calc(100% - 24px); min-height: auto; grid-template-columns: 1fr; gap: 48px; margin-bottom: 30px; padding: 55px 25px 34px; border-radius: 34px; }
  .bridge-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .bridge-actions .button { width: 100%; }
  .bridge-card { min-height: 410px; padding: 29px; transform: none; }
  .hero { min-height: 1100px; flex-direction: column; padding: 152px 22px 230px; align-items: flex-start; }
  .hero-visual { inset: 0; width: 100%; border-radius: 0; box-shadow: none; }
  .hero-visual::after { background: linear-gradient(180deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.44) 35%, rgba(0,0,0,.72) 66%, #050505 91%); }
  .hero-visual img { object-position: 31% 47%; opacity: .66; }
  .road-sign { display: none; }
  .hero-copy { width: 100%; margin: 0; }
  .hero h1 { max-width: 100%; margin-top: 18px; font-size: clamp(58px, 16.6vw, 66px); }
  .hero-title-lockup { width: 100%; margin: 2px 0 -8px; }
  .hero-title-lockup::before { inset: 18% 0 14%; filter: blur(18px); }
  .hero-slogan { margin-top: 24px; font-size: 17px; }
  .hero-description { margin-top: 18px; font-size: 14px; line-height: 1.72; }
  .button { min-height: 50px; padding-inline: 17px; font-size: 13px; }
  .hero-actions { flex-wrap: wrap; margin-top: 20px; }
  .hero-actions .button { flex: 1 1 150px; }
  .hero-support { width: 100%; position: static; margin-top: 22px; }
  .hero-support .hero-chips { flex-wrap: wrap; margin: 0 0 12px; }
  .countdown { width: 100%; grid-template-columns: 1fr; gap: 8px; margin-top: 0; padding: 8px; border-radius: 22px; }
  .countdown-head { min-height: auto; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; padding: 12px 13px; border-radius: 14px; }
  .countdown-kicker { font-size: 9px; white-space: nowrap; }
  .countdown-label { justify-self: end; font-size: 11px; text-align: right; }
  .countdown-unit { min-height: 72px; border-radius: 14px; }
  .countdown b { font-size: 24px; }
  .hero-proof { bottom: 28px; width: calc(100% - 28px); grid-template-columns: 1fr 1fr; padding: 9px; border-radius: 22px; }
  .hero-proof div { min-height: 72px; padding: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero-proof div:nth-child(2) { border-right: 0; }
  .hero-proof div:nth-child(3), .hero-proof div:nth-child(4) { border-bottom: 0; }
  .hero-proof strong { font-size: 30px; }
  .course-page > .signal-strip { margin-top: 56px; }
  .signal-track { font-size: 12px; }
  .signal-track .ticker-group { padding-block: 12px; }
  .section { width: calc(100% - 32px); padding: 92px 0; }
  .visual-story { width: calc(100% - 24px); padding-top: 104px; }
  .visual-story::before { inset: 4% 0 2%; border-radius: 38px; }
  .story-heading { padding-inline: 12px; }
  .story-heading h2 { font-size: clamp(38px, 12vw, 54px); }
  .story-heading > p:last-of-type { font-size: 14px; line-height: 1.75; }
  .story-list { gap: 12px; margin-top: 38px; }
  .story-feature { min-height: 0; grid-template-columns: 1fr; border-radius: 28px; }
  .story-media { min-height: 0; aspect-ratio: 1 / .82; }
  .story-media::after { background: linear-gradient(180deg, transparent 68%, #12100e 100%); }
  .story-copy { padding: 31px 25px 30px; }
  .story-copy h3 { margin-top: 17px; font-size: 30px; }
  .story-copy > p { margin-top: 17px; font-size: 13px; line-height: 1.75; }
  .story-tags { margin-top: 21px; }
  .story-link { margin-top: 20px; }
  .section-heading h2, .project-copy h2, .ai-copy h2 { font-size: clamp(38px, 12vw, 54px); }
  .section-heading > p:last-child, .project-copy > p, .ai-copy > p { margin-top: 18px; font-size: 14px; line-height: 1.75; }
  .project-copy > p { font-size: 16px; }
  .pain-section { gap: 38px; }
  .pain-intro h2 { font-size: clamp(38px, 12vw, 54px); }
  .pain-map > div { grid-template-columns: 36px 1fr; gap: 7px 10px; }
  .three-pillars { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
  .pillar, .pillar-community { grid-column: auto; min-height: 390px; padding: 30px; border-radius: 28px; }
  .pillar h3 { font-size: 36px; }
  .pillar ul { margin-top: 36px; }
  .course-pack { border-radius: 27px; }
  .pack-lead { grid-template-columns: 1fr; padding: 28px; }
  .pack-lead h3 { font-size: 29px; }
  .pack-list { grid-template-columns: 1fr; }
  .pack-list article, .pack-list article:nth-child(3n), .pack-list article:nth-last-child(-n+3) { min-height: 140px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .pack-list article:last-child { border-bottom: 0; }
  .lifetime-line { align-items: flex-start; flex-direction: column; gap: 5px; padding: 20px; }
  .lifetime-line a { margin: 8px 0 0; width: 100%; text-align: center; }
  .career-route { grid-template-columns: 1fr; margin-top: 44px; }
  .career-services-figure { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; padding: 10px; border-radius: 28px; }
  .career-services-panel, .career-vision { border-radius: 19px; }
  .career-services-panel img { max-height: none; }
  .career-vision { min-height: 500px; }
  .career-vision-copy { inset: 25px 22px auto; }
  .career-vision-copy h3 { font-size: 28px; }
  .career-destination { right: 18px; bottom: 18px; }
  .route-card { min-height: 180px; padding: 24px; }
  .route-card > b { margin-top: 20px; }
  .identity-deep-dive { grid-template-columns: 1fr; gap: 25px; padding: 27px; }
  .identity-deep-dive h3 { font-size: 24px; }
  .project-section { width: calc(100% - 24px); padding-top: 82px; }
  .project-section::before { inset: 24px 0 0; border-radius: 38px; }
  .project-hero { gap: 30px; padding: 0 12px; }
  .project-hero h2 { margin-top: 14px; font-size: clamp(38px, 11.7vw, 52px); line-height: 1.08; }
  .project-hero-copy > p:last-child { margin-top: 20px; font-size: 14px; line-height: 1.75; }
  .project-proof-card { min-height: 286px; border-radius: 26px; }
  .project-proof-card > span { padding: 28px 24px 7px; }
  .project-proof-card > strong { padding: 0 24px 24px; font-size: 29px; }
  .project-proof-card > div { min-height: 88px; padding: 14px 11px; }
  .project-proof-card b { font-size: 24px; }
  .project-proof-card small { font-size: 9px; }
  .project-flow { display: flex; gap: 1px; margin-top: 34px; border-radius: 20px; scroll-snap-type: x proximity; }
  .project-flow a { min-width: 178px; min-height: 112px; scroll-snap-align: start; padding: 20px; }
  .project-chapters { gap: 14px; margin-top: 14px; }
  .project-chapter, .project-chapter:nth-child(even) { height: auto; min-height: 0; grid-template-columns: 1fr; border-radius: 28px; }
  .project-chapter:nth-child(even) .chapter-copy, .project-chapter .chapter-copy { order: 1; }
  .project-chapter:nth-child(even) .chapter-visual, .project-chapter .chapter-visual { order: 2; }
  .chapter-copy { padding: 36px 25px 32px; }
  .chapter-role { margin-top: 15px; font-size: 11px; line-height: 1.55; }
  .chapter-copy h3 { margin-top: 14px; font-size: 32px; }
  .chapter-copy > p:not(.chapter-role) { margin-top: 18px; font-size: 13px; line-height: 1.78; }
  .chapter-copy ul { margin-top: 22px; }
  .chapter-visual { min-height: 590px; padding: 9px; box-shadow: inset 0 1px rgba(255,255,255,.055); }
  .chapter-visual figcaption { min-height: 70px; grid-template-columns: 1fr; gap: 4px; padding: 9px 11px 14px; }
  .chapter-visual figcaption b { font-size: 16px; }
  .chapter-visual figcaption small { display: none; }
  .chapter-visual > a { border-radius: 18px; }
  .chapter-certificate { min-height: 360px; }
  .chapter-certificate img { padding: 12px; }
  .project-chapter-final { height: auto; min-height: 0; }
  .curriculum-section { width: calc(100% - 32px); }
  .curriculum-track { grid-template-columns: 1fr; }
  .curriculum-track article { min-height: 175px; }
  .curriculum-track b { margin-top: 28px; }
  .deliverables { grid-template-columns: 1fr 1fr; }
  .deliverable-number { min-height: 118px; }
  .community-section { width: calc(100% - 24px); }
  .community-figure { margin-top: 38px; border-radius: 18px; overflow-x: auto; }
  .community-figure img { width: 920px; max-width: none; }
  .community-notes { grid-template-columns: 1fr 1fr; }
  .community-notes span:last-child { grid-column: 1 / -1; }
  .team-showcase { grid-template-columns: 1fr; }
  .team-core { grid-column: auto; }
  .team-panel { padding: 18px; border-radius: 23px; }
  .team-alumni { grid-column: auto; }
  .team-alumni .panel-title { position: sticky; left: 0; }
  .alumni-strip { min-width: 960px; }
  .team-core img { max-height: none; }
  .teacher-notes { grid-template-columns: 1fr; }
  .panel-title b { font-size: 16px; }
  .proof-section { width: calc(100% - 24px); }
  .proof-toolbar { align-items: flex-end; margin-top: 34px; }
  .proof-toolbar p { align-items: flex-start; flex-direction: column; gap: 4px; }
  .proof-toolbar strong { font-size: 30px; }
  .proof-mode span { display: none; }
  .proof-frame { margin-top: 14px; border-radius: 24px; }
  .proof-viewport { height: min(68vh, 620px); min-height: 480px; padding: 10px 9px 86px 10px; }
  .proof-wall { column-count: 1; column-gap: 10px; }
  .proof-card { border-radius: 20px; }
  .proof-card figcaption { padding: 14px 16px 16px; }
  .proof-scroll-cue { bottom: 14px; width: max-content; max-width: calc(100% - 28px); min-height: 46px; padding-left: 14px; font-size: 11px; }
  .proof-lightbox { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 20px; }
  .proof-lightbox figure { max-height: calc(100dvh - 20px); }
  .ai-section { width: calc(100% - 32px); gap: 45px; }
  .ai-section::before, .pricing-section::before { inset: 3% -10px; border-radius: 36px; }
  .ai-steps { grid-template-columns: 1fr; }
  .machine-body { min-height: 650px; grid-template-columns: 1fr; }
  .resume-form { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .resume-form button { margin-top: 10px; }
  .resume-preview { padding: 28px 22px; }
  .resume-page { width: 225px; }
  .growth-bonus { grid-template-columns: 1fr; gap: 20px; padding: 27px; }
  .growth-number { font-size: 78px; }
  .growth-quotes { grid-column: auto; grid-template-columns: 1fr; transform: none; }
  .audience-source { display: none; }
  .audience-extra { grid-template-columns: 1fr; }
  .audience-extra span { min-height: 66px; }
  .timing-section { width: calc(100% - 24px); padding: 78px 18px; border-radius: 34px; }
  .timing-title h2 { font-size: clamp(38px, 12vw, 54px); }
  .timing-reasons { grid-template-columns: 1fr; margin-top: 38px; }
  .timing-reasons article { min-height: 170px; }
  .target-jobs { grid-template-columns: 1fr; }
  .target-jobs .button { grid-column: auto; }
  .compare-section { width: calc(100% - 24px); }
  .compare-scroller { margin-top: 36px; padding: 18px; border-radius: 28px; }
  .compare-table { min-width: 820px; grid-template-columns: .68fr 1fr 1.45fr 1.08fr; column-gap: 12px; }
  .compare-row > * { min-height: 82px; padding: 14px 16px; font-size: 12px; }
  .compare-head > * { min-height: 112px; font-size: 16px; }
  .compare-head .featured { font-size: 18px; }
  .compare-head > *:first-child,
  .compare-head > *:nth-child(2),
  .compare-head > *:last-child,
  .compare-head .featured { border-radius: 22px 22px 0 0; }
  .compare-row:last-child > * { border-radius: 0 0 22px 22px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid article { min-height: 94px; }
  .value-grid b { font-size: 16px; }
  .risk-free { grid-template-columns: 1fr; }
  .risk-free .button { grid-column: auto; }
  .price-summary { padding: 26px; }
  .price-summary strong { font-size: 82px; }
  .total-value { align-items: flex-start; flex-direction: column; gap: 7px; }
  .total-value b { margin-left: 0; }
  .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .faq-list summary { min-height: 72px; font-size: 15px; }
  .final-cta { width: calc(100% - 24px); min-height: 650px; margin-bottom: 28px; border-radius: 34px; padding: 46px 24px; }
  .final-cta h2 { font-size: clamp(52px, 17vw, 76px); }
  .final-course-lockup { width: min(310px, 82vw); margin-bottom: 28px; }
  .final-chevrons { width: 210px; top: 74px; }
  footer { width: calc(100% - 32px); padding-bottom: 26px; }
  .mobile-cta { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: 10px; min-height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 8px 15px 8px 18px; border: 0; border-radius: 18px; cursor: pointer; color: #281407; background: linear-gradient(110deg, #ffd33d, #ff6408); box-shadow: 0 15px 50px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.35); transition-property: scale; transition-duration: 150ms; }
  body[data-view="notes"] .mobile-cta { color: #071114; background: linear-gradient(110deg, #c9fbff, #57e8ff); box-shadow: 0 15px 50px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.55); }
  .mobile-cta span { font-size: 11px; }
  .mobile-cta b { font-size: 14px; }
}

@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, .reveal-on-scroll { opacity: 1; transform: none; filter: none; }
}
