@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("assets/fonts/Unbounded-Variable.ttf") format("truetype");
}

:root {
  --ink: #0b0b0b;
  --ink-soft: #151515;
  --paper: #f1eee6;
  --paper-bright: #faf8f2;
  --orange: #ff5b35;
  --orange-dark: #a52f18;
  --acid: #d7ff43;
  --violet: #8f6cff;
  --line-light: rgba(11, 11, 11, .16);
  --line-dark: rgba(255, 255, 255, .16);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(82px + env(safe-area-inset-top, 0px)); scrollbar-width: thin; scrollbar-color: var(--orange) var(--ink); }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open, body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: #fff; }
.skip-link { position: fixed; z-index: 3000; top: calc(12px + env(safe-area-inset-top, 0px)); left: max(12px, env(safe-area-inset-left, 0px)); padding: 11px 15px; background: var(--acid); color: var(--ink); font-size: 12px; font-weight: 700; transform: translateY(-200%); transition: transform .2s; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }
.light-section :focus-visible, .lead-form :focus-visible { outline-color: var(--orange-dark); }
[id] { scroll-margin-top: calc(82px + env(safe-area-inset-top, 0px)); }
.shell { width: min(100%, 1600px); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

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

.page-loader { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; background: var(--ink); transition: transform .9s cubic-bezier(.8, 0, .2, 1), visibility .9s; }
.page-loader.is-done { transform: translateY(-101%); visibility: hidden; }
.loader-mark { font: 500 clamp(50px, 9vw, 110px)/1 var(--display); color: var(--paper); animation: loaderPulse .9s ease-in-out infinite alternate; }
.loader-line { position: absolute; bottom: 11vh; left: 10vw; right: 10vw; height: 1px; background: rgba(255,255,255,.14); overflow: hidden; }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--orange); transform: translateX(-100%); animation: loaderLine 1.4s cubic-bezier(.7,0,.2,1) forwards; }
@keyframes loaderLine { to { transform: translateX(0); } }
@keyframes loaderPulse { to { color: var(--orange); transform: scale(.95); } }

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 1500; pointer-events: none; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 6px; height: 6px; background: var(--orange); margin: -3px 0 0 -3px; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,91,53,.8); margin: -17px 0 0 -17px; transition: width .25s, height .25s, margin .25s, background .25s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor select { cursor: none; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(255,91,53,.14); }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: calc(92px + env(safe-area-inset-top, 0px)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: env(safe-area-inset-top, 0px) max(var(--pad), env(safe-area-inset-right, 0px)) 0 max(var(--pad), env(safe-area-inset-left, 0px)); color: var(--paper); transition: height .35s, color .35s, background .35s, backdrop-filter .35s; }
.site-header.is-scrolled { height: calc(70px + env(safe-area-inset-top, 0px)); background: rgba(9,9,9,.72); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header[data-theme="light"]:not(.is-scrolled) { color: var(--ink); }
.brand { display: inline-flex; justify-self: start; align-items: center; gap: 12px; font-family: var(--display); letter-spacing: .06em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; background: var(--orange); border-radius: 50%; color: white; font-size: 18px; }
.brand-name { font-size: 13px; }
.desktop-nav { display: flex; gap: clamp(24px, 3vw, 54px); font-size: 12px; font-weight: 600; }
.desktop-nav a { position: relative; opacity: .72; transition: opacity .2s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; }
.header-cta i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-style: normal; transition: color .25s, background .25s; }
.header-cta:hover i { background: var(--orange); color: white; border-color: var(--orange); }
.menu-button { display: none; justify-self: end; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 26px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .35s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 900; display: flex; visibility: hidden; flex-direction: column; justify-content: center; padding: calc(100px + env(safe-area-inset-top, 0px)) max(var(--pad), env(safe-area-inset-right, 0px)) max(40px, env(safe-area-inset-bottom, 0px)) max(var(--pad), env(safe-area-inset-left, 0px)); background: var(--orange); clip-path: circle(0 at calc(100% - 40px) 40px); transition: clip-path .65s cubic-bezier(.8,0,.2,1), visibility .65s; }
.mobile-menu.is-open { visibility: visible; clip-path: circle(150% at calc(100% - 40px) 40px); }
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a { display: flex; align-items: baseline; gap: 20px; padding: 14px 0; font: 500 clamp(32px, 8vw, 64px)/1.1 var(--display); border-bottom: 1px solid rgba(255,255,255,.25); }
.mobile-menu-links span { font: 500 11px/1 var(--body); }
.mobile-menu > p { margin-top: auto; font-size: 12px; }

.eyebrow { margin: 0; font-size: 11px; font-weight: 700; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; }
.section-head { display: flex; justify-content: space-between; padding-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.section-head--dark { border-color: var(--line-dark); }
.section-note { margin: 0; font-size: 12px; line-height: 1.45; opacity: .6; }
.section-title { margin: 0; font: 500 clamp(38px, 5.3vw, 82px)/1.08 var(--display); letter-spacing: -.045em; }
.section-title em, .courses-heading em, .contact-title em { color: var(--orange); font-style: normal; }
.reveal-up { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-up.in-view { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.reveal-scale.in-view { opacity: 1; transform: none; }
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line > span { display: block; transform: translateY(110%); transition: transform 1s cubic-bezier(.22,1,.36,1); }
.split-lines.in-view .line > span { transform: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; background: #080808; }
.hero::before { position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.8) 24%, rgba(8,8,8,.48) 48%, rgba(8,8,8,.12) 68%, transparent 80%); content: ""; pointer-events: none; }
#hero-canvas { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.hero-aurora { position: absolute; z-index: -1; top: -20%; right: -8%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(143,108,255,.13), transparent 62%); filter: blur(20px); }
.hero-object-hint { position: absolute; z-index: 1; top: 24%; right: 14%; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.66); pointer-events: none; }
.hero-object-symbol { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; background: rgba(8,8,8,.35); color: var(--acid); font: 500 15px/1 var(--display); backdrop-filter: blur(10px); }
.hero-object-hint > span:last-child { display: flex; flex-direction: column; gap: 3px; padding: 6px 9px; border-radius: 8px; background: rgba(8,8,8,.42); text-shadow: 0 1px 8px rgba(0,0,0,.9); backdrop-filter: blur(8px); }
.hero-object-hint strong { color: var(--paper); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.hero-object-hint small { font-size: 9px; letter-spacing: .05em; }
.hero-content { position: relative; z-index: 1; display: flex; min-height: 100svh; flex-direction: column; justify-content: center; padding-top: 120px; padding-bottom: 78px; }
.hero-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: clamp(25px, 4vh, 48px); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 6px rgba(215,255,67,.1); animation: status 1.6s ease-in-out infinite; }
@keyframes status { 50% { box-shadow: 0 0 0 10px rgba(215,255,67,0); } }
.hero-title { width: min(1180px, 86vw); margin: 0; font: 500 clamp(51px, 8.5vw, 136px)/.91 var(--display); letter-spacing: -.065em; text-transform: uppercase; }
.title-line { display: block; overflow: hidden; }
.title-line > span { display: block; transform: translateY(115%); transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.hero-title .title-line > span { text-shadow: 0 3px 28px rgba(0,0,0,.72), 0 1px 3px rgba(0,0,0,.72); }
body.is-ready .title-line > span { transform: none; }
.title-line:nth-child(2) > span { transition-delay: .08s; }
.title-line:nth-child(3) > span { transition-delay: .16s; }
.title-line--accent { padding-left: 10.5vw; color: var(--orange); }
.title-line--accent > span { paint-order: stroke fill; -webkit-text-stroke: .7px rgba(5,5,5,.4); }
.title-line--last { font-size: .66em; text-align: right; color: rgba(241,238,230,.96); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; width: min(1030px, 78vw); margin-top: clamp(30px, 5vh, 65px); margin-left: auto; transition-delay: .65s; }
.hero-bottom > p { max-width: 430px; margin: 0; color: rgba(241,238,230,.66); font-size: clamp(14px, 1.3vw, 19px); }
.hero-bottom strong { color: var(--paper); font-weight: 600; }
.hero-course-button { display: flex; width: 205px; height: 54px; flex: 0 0 auto; align-items: center; justify-content: space-between; padding: 0 8px 0 20px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: rgba(8,8,8,.32); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); transition: background .3s, border-color .3s; }
.hero-course-button i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--orange); color: var(--ink); font-size: 16px; font-style: normal; }
.hero-course-button:hover { border-color: var(--orange); background: rgba(255,91,53,.12); }
@keyframes slowRotate { to { transform: rotate(360deg); } }
.hero-index { position: absolute; right: var(--pad); top: 50%; font-size: 10px; letter-spacing: .15em; opacity: .4; transform: rotate(90deg); }
.scroll-cue { position: absolute; z-index: 1; right: var(--pad); bottom: 23px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue i { width: 50px; height: 1px; background: rgba(255,255,255,.25); overflow: hidden; }
.scroll-cue i::after { content: ""; display: block; width: 50%; height: 100%; background: var(--orange); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { from { transform: translateX(-100%); } to { transform: translateX(200%); } }

.light-section { color: var(--ink); background: var(--paper); }
.dark-section { color: var(--paper); background: var(--ink); }
.manifesto { padding: clamp(110px, 15vw, 240px) 0 clamp(90px, 12vw, 190px); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 4fr; gap: 5vw; }
.manifesto-text { max-width: 1180px; margin: 0; font: 500 clamp(38px, 5.8vw, 92px)/1.09 var(--display); letter-spacing: -.05em; }
.manifesto-foot { grid-column: 2; display: flex; align-items: center; gap: 18px; margin-top: 48px; color: rgba(11,11,11,.58); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.manifesto-foot i { color: var(--orange); font-style: normal; }

.about { padding: 0 0 clamp(120px, 15vw, 240px); }
.about-layout { display: grid; grid-template-columns: minmax(320px, .9fr) 1.65fr; gap: clamp(60px, 9vw, 150px); padding-top: clamp(70px, 9vw, 140px); }
.about-portrait { position: relative; aspect-ratio: 1; align-self: start; border-radius: 50%; background: #ded9ce; }
.portrait-core { position: absolute; inset: 7%; overflow: hidden; border-radius: 48% 48% 44% 24%; background: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.2); }
.portrait-core::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(11,11,11,.16)); pointer-events: none; }
.portrait-core img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 46%; }
.protected-portrait { pointer-events: none; user-select: none; -webkit-user-select: none; -webkit-user-drag: none; touch-action: manipulation; }
.portrait-orbit { position: absolute; inset: 8%; border: 1px solid rgba(11,11,11,.27); border-radius: 50%; }
.orbit-two { inset: -5%; border-style: dashed; animation: slowRotate 30s linear infinite reverse; }
.orbit-tag { position: absolute; padding: 9px 13px; border-radius: 999px; background: var(--paper-bright); box-shadow: 0 12px 30px rgba(0,0,0,.08); font-size: 10px; font-weight: 700; }
.tag-one { top: 4%; right: 0; }
.tag-two { bottom: 10%; left: -4%; }
.tag-three { right: 3%; bottom: 17%; background: var(--acid); }
.about-copy .section-title { font-size: clamp(36px, 4.55vw, 72px); }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; margin-top: 58px; }
.about-columns p { margin: 0; color: rgba(11,11,11,.68); font-size: clamp(14px, 1.2vw, 18px); }
.principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 80px; border-top: 1px solid var(--line-light); }
.principles > div { padding: 22px 18px 0 0; border-right: 1px solid var(--line-light); }
.principles > div:not(:first-child) { padding-left: 18px; }
.principles > div:last-child { border-right: 0; }
.principles span { color: var(--orange); font-size: 10px; font-weight: 700; }
.principles p { margin: 34px 0 0; font: 600 12px/1.45 var(--body); }

.courses { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 160px) 0 clamp(120px, 12vw, 190px); }
.course-glow { position: absolute; top: 15%; left: -20vw; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(255,91,53,.14), transparent 62%); pointer-events: none; }
.courses-heading { max-width: 1100px; margin: clamp(70px, 9vw, 140px) 0; font: 500 clamp(43px, 6.3vw, 100px)/1.03 var(--display); letter-spacing: -.05em; }
.course-list { border-top: 1px solid var(--line-dark); }
.course-card { border-bottom: 1px solid var(--line-dark); transition: background .45s; }
.course-card-top { display: flex; justify-content: space-between; padding: 18px 0 0; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-card-main { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 3vw; padding: 24px 0 36px; }
.course-type { margin: 0 0 9px; color: rgba(255,255,255,.47); font-size: 11px; }
.course-card h3 { margin: 0; font: 500 clamp(32px, 5vw, 76px)/1.08 var(--display); letter-spacing: -.045em; }
.course-card-main > div:nth-child(2), .course-detail-copy { min-width: 0; }
.course-icon { position: relative; display: flex; width: 120px; height: 90px; align-items: center; justify-content: center; color: var(--orange); }
.code-icon span { font: 400 31px/1 var(--display); }
.code-icon i { width: 24px; height: 2px; background: currentColor; transform: rotate(-62deg); }
.math-icon span { font: 500 60px/1 var(--display); }
.math-icon i { position: absolute; top: 12px; right: 17px; color: var(--acid); font: 400 20px/1 var(--display); }
.course-toggle { width: 58px; height: 58px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: white; font-size: 27px; font-weight: 300; cursor: pointer; transition: background .3s, border-color .3s, transform .45s; }
.course-card:hover .course-toggle, .course-card.is-open .course-toggle { background: var(--orange); border-color: var(--orange); }
.course-card.is-open .course-toggle { transform: rotate(45deg); }
.course-details { display: grid; grid-template-columns: 150px 1fr auto; max-height: 0; gap: 3vw; overflow: hidden; transition: max-height .7s cubic-bezier(.22,1,.36,1), padding .5s; }
.course-card.is-open .course-details { max-height: 350px; padding: 0 0 46px; }
.course-detail-copy { grid-column: 2; max-width: 750px; }
.course-detail-copy > p { margin: 0; color: rgba(255,255,255,.66); font-size: 16px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.skill-tags span { padding: 7px 12px; border: 1px solid var(--line-dark); border-radius: 999px; color: rgba(255,255,255,.65); font-size: 10px; text-transform: uppercase; }
.text-link { align-self: end; display: inline-flex; width: fit-content; min-height: 44px; align-items: center; gap: 24px; padding-top: 8px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.text-link i { color: var(--orange); font-size: 16px; font-style: normal; transition: transform .25s; }
.text-link:hover i { transform: translate(3px,-3px); }

.program-explorer { margin-top: clamp(100px, 11vw, 170px); padding-top: 48px; border-top: 1px solid var(--line-dark); }
.program-explorer-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-bottom: 48px; }
.program-explorer-head h3 { margin: 16px 0 0; font: 500 clamp(32px, 4vw, 62px)/1.05 var(--display); letter-spacing: -.045em; }
.program-explorer-head > p { max-width: 410px; margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }
.program-mobile-guide { display: none; }
.program-browser { display: grid; grid-template-columns: 270px minmax(0,1fr); min-height: 720px; border: 1px solid var(--line-dark); background: #101010; }
.program-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.program-tab { position: relative; display: grid; grid-template-columns: 34px 1fr; min-height: 92px; align-items: center; gap: 13px; padding: 0 22px; border: 0; border-bottom: 1px solid var(--line-dark); background: transparent; color: rgba(255,255,255,.45); text-align: left; cursor: pointer; transition: color .3s, background .3s, padding .3s; }
.program-tab span { color: var(--orange); font-size: 9px; font-weight: 700; }
.program-tab::after { content: "→"; position: absolute; right: 18px; opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; }
.program-tab.is-active { padding-left: 28px; background: var(--orange); color: var(--ink); }
.program-tab.is-active span { color: var(--ink); }
.program-tab.is-active::after { opacity: 1; transform: none; }
.program-tab:hover:not(.is-active) { color: white; background: rgba(255,255,255,.04); }
.program-panel { min-width: 0; padding: clamp(34px, 4vw, 64px); background: var(--paper-bright); color: var(--ink); }
.program-meta { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line-light); color: rgba(11,11,11,.48); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.program-title-row { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 40px; padding: 48px 0; }
.program-kicker { margin: 0 0 10px; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.program-title-row h3 { margin: 0; font: 500 clamp(45px, 6vw, 92px)/.95 var(--display); letter-spacing: -.065em; }
.program-description { max-width: 650px; margin: 23px 0 0; color: rgba(11,11,11,.62); font-size: clamp(13px, 1.2vw, 17px); }
.program-symbol { display: grid; width: 132px; height: 132px; place-items: center; border-radius: 36% 64% 58% 42%; background: var(--orange); color: var(--ink); font: 500 54px/1 var(--display); transform: rotate(7deg); transition: border-radius .5s, transform .5s; }
.program-panel.is-changing .program-symbol { border-radius: 50%; transform: rotate(-7deg) scale(.9); }
.program-modules { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.program-modules > div { min-width: 0; padding: 25px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.program-modules span { color: var(--orange-dark); font-size: 9px; font-weight: 700; }
.program-modules strong { display: block; margin-top: 25px; font: 500 clamp(15px, 1.35vw, 20px)/1.2 var(--display); letter-spacing: -.025em; }
.program-modules p { margin: 9px 0 0; color: rgba(11,11,11,.55); font-size: 11px; }
.program-result { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 45px; padding-top: 38px; }
.program-result > div > span { color: var(--orange-dark); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.program-result p { max-width: 690px; margin: 10px 0 0; font: 500 clamp(15px, 1.5vw, 22px)/1.35 var(--display); letter-spacing: -.02em; }
.program-cta { display: flex; min-width: 230px; min-height: 56px; align-items: center; justify-content: space-between; gap: 22px; padding: 0 9px 0 20px; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.program-cta i { display: grid; width: 38px; height: 38px; place-items: center; background: var(--orange); color: var(--ink); border-radius: 50%; font-size: 16px; font-style: normal; }

.method { padding: clamp(100px, 12vw, 190px) 0; }
.method-intro { max-width: 1250px; margin: clamp(70px, 9vw, 130px) 0; }
.method-board { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 650px; border: 1px solid var(--line-light); background: var(--paper-bright); }
.method-visual { position: relative; display: grid; min-height: 600px; place-items: center; overflow: hidden; background: var(--orange); }
.method-orbit { position: absolute; width: 26%; aspect-ratio: 1; border: 1px solid rgba(0,0,0,.35); border-radius: 50%; transition: width .7s cubic-bezier(.22,1,.36,1), transform .7s; }
.method-orbit.orbit-b { width: 50%; }
.method-orbit.orbit-c { width: 76%; border-style: dashed; }
.method-visual[data-active="1"] .method-orbit { transform: rotate(45deg); }
.method-visual[data-active="2"] .method-orbit { transform: rotate(115deg) scale(.88); }
.method-visual[data-active="3"] .method-orbit { transform: rotate(180deg) scale(1.1); }
.method-center { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 8px; }
.method-center span { font: 500 clamp(70px, 9vw, 140px)/.8 var(--display); letter-spacing: -.08em; }
.method-center small { padding-bottom: 5px; font-size: 9px; line-height: 1.25; letter-spacing: .1em; text-transform: uppercase; }
.method-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); transition: .7s cubic-bezier(.22,1,.36,1); }
.dot-a { top: 25%; left: 48%; }.dot-b { right: 15%; bottom: 33%; }.dot-c { bottom: 14%; left: 28%; background: var(--acid); }
.method-visual[data-active="1"] .dot-a { top: 17%; left: 23%; }.method-visual[data-active="1"] .dot-b { right: 44%; bottom: 12%; }
.method-visual[data-active="2"] .dot-a { top: 55%; left: 12%; }.method-visual[data-active="2"] .dot-c { bottom: 68%; left: 75%; }
.method-visual[data-active="3"] .dot-b { right: 75%; bottom: 63%; }.method-visual[data-active="3"] .dot-c { bottom: 11%; left: 67%; }
.method-steps { display: flex; flex-direction: column; justify-content: center; padding: 6%; }
.method-step { display: grid; grid-template-columns: 42px 1fr auto; align-items: start; gap: 16px; width: 100%; padding: 27px 0; border: 0; border-bottom: 1px solid var(--line-light); background: transparent; color: rgba(11,11,11,.58); text-align: left; cursor: pointer; transition: color .35s, padding .35s; }
.method-step.is-active { color: var(--ink); padding-left: 13px; }
.method-step > span { color: var(--orange); font-size: 10px; font-weight: 700; }
.method-step strong { font: 500 clamp(18px, 1.8vw, 28px)/1.1 var(--display); letter-spacing: -.03em; }
.method-step p { margin: 7px 0 0; font-size: 12px; }
.method-step > i { font-size: 9px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.reviews { padding: clamp(90px, 11vw, 170px) 0 0; overflow: hidden; }
.reviews-intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr); align-items: end; gap: clamp(40px, 8vw, 130px); margin-top: clamp(60px, 8vw, 120px); }
.reviews-intro .section-title { max-width: 1100px; }
.reviews-lead { max-width: 430px; margin: 0 0 7px; color: rgba(11,11,11,.56); font-size: clamp(13px, 1.15vw, 17px); }
.reviews-stage { position: relative; display: grid; grid-template-columns: minmax(250px, .42fr) minmax(0, 1.58fr); min-height: 590px; margin-top: clamp(50px, 6vw, 90px); overflow: hidden; border-radius: 42px; background: #101010; color: var(--paper); box-shadow: 0 34px 90px rgba(11,11,11,.17); }
.reviews-stage::after { position: absolute; z-index: 4; inset: 0; border: 1px solid rgba(255,255,255,.1); border-radius: inherit; content: ""; pointer-events: none; }
.reviews-summary { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px, 3.6vw, 58px); background: var(--orange); color: var(--ink); }
.reviews-summary__label { display: block; margin-bottom: 22px; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.reviews-summary strong { display: block; margin-left: -7px; font: 500 clamp(76px, 8vw, 126px)/.83 var(--display); letter-spacing: -.08em; }
.reviews-stars { margin-top: 24px; font-size: 19px; letter-spacing: .15em; }
.reviews-summary p { margin: 8px 0 0; font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.review-controls { display: grid; grid-template-columns: 50px 1fr 50px; align-items: center; gap: 12px; }
.review-controls button { display: grid; width: 50px; height: 50px; padding: 0; place-items: center; border: 1px solid rgba(11,11,11,.35); border-radius: 50%; background: transparent; color: var(--ink); font-size: 19px; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.review-controls button:hover { background: var(--ink); color: var(--paper); transform: scale(1.06); }
.review-controls span { min-width: 54px; text-align: center; font: 600 9px/1 var(--body); letter-spacing: .11em; }
.reviews-viewport { position: relative; min-width: 0; overflow: hidden; border-left: 1px solid rgba(255,255,255,.12); outline: none; touch-action: pan-y; cursor: grab; }
.reviews-viewport:active { cursor: grabbing; }
.reviews-viewport:focus-visible { outline: 2px solid var(--acid); outline-offset: -6px; }
.reviews-track { display: flex; height: 100%; will-change: transform; transition: transform .72s cubic-bezier(.22,1,.36,1); }
.review-card { position: relative; display: flex; min-width: 100%; flex: 0 0 100%; flex-direction: column; justify-content: space-between; padding: clamp(34px, 4.6vw, 72px); overflow: hidden; background: linear-gradient(135deg, #111 0%, #171717 100%); }
.review-card::before { position: absolute; inset: 0; background: radial-gradient(560px circle at var(--review-x, 70%) var(--review-y, 25%), rgba(143,108,255,.22), transparent 56%); content: ""; pointer-events: none; transition: opacity .4s; }
.review-card::after { position: absolute; top: -52px; right: clamp(20px, 4vw, 68px); color: rgba(255,255,255,.045); content: "“"; font: 500 clamp(170px, 18vw, 290px)/1 var(--display); pointer-events: none; }
.review-card > * { position: relative; z-index: 1; transition: opacity .48s ease .12s, transform .65s cubic-bezier(.22,1,.36,1) .08s; }
.review-card:not(.is-active) > * { opacity: .12; transform: translateY(24px); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.review-course { padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--acid); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.review-card time { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .1em; }
.review-card blockquote { max-width: 1050px; margin: clamp(45px, 6vw, 90px) 0; font: 500 clamp(26px, 3.35vw, 52px)/1.17 var(--display); letter-spacing: -.045em; }
.review-card footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.review-avatar { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--orange); color: var(--ink); font: 500 17px/1 var(--display); }
.review-avatar--violet { background: var(--violet); color: white; }
.review-avatar--acid { background: var(--acid); }
.review-avatar--blue { background: #68b7ff; }
.review-avatar--coral { background: #ff8c72; }
.review-avatar--pink { background: #ff82c3; }
.review-card footer div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.review-card footer strong { overflow-wrap: anywhere; font: 500 14px/1.2 var(--display); letter-spacing: -.02em; }
.review-card footer small { color: rgba(255,255,255,.46); font-size: 10px; }
.review-card footer i { color: rgba(255,255,255,.12); font: 500 clamp(34px, 4vw, 62px)/1 var(--display); font-style: normal; letter-spacing: -.07em; }
.reviews-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; }
.reviews-footer > p { max-width: 560px; margin: 0; color: rgba(11,11,11,.48); font-size: 10px; text-align: right; }
.review-dots { display: flex; flex: 1; gap: 8px; }
.review-dots button { position: relative; width: min(56px, 8vw); height: 20px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.review-dots button::before { position: absolute; top: 9px; right: 0; left: 0; height: 2px; background: rgba(11,11,11,.18); content: ""; transition: background .25s, transform .35s; transform-origin: left; }
.review-dots button.is-active::before { background: var(--orange-dark); transform: scaleY(2); }
.ticker { width: 100%; margin-top: clamp(100px, 12vw, 180px); padding: 26px 0; overflow: hidden; background: var(--acid); color: var(--ink); transform: rotate(-2deg) scale(1.03); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 34px; font: 500 clamp(25px, 3vw, 46px)/1 var(--display); letter-spacing: -.03em; text-transform: uppercase; animation: marquee 25s linear infinite; }
.ticker-track i { color: var(--orange); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.faq { padding: clamp(130px, 15vw, 230px) 0 clamp(100px, 12vw, 180px); }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; }
.faq-title-wrap { position: sticky; top: 110px; align-self: start; }
.faq-title-wrap .section-title { margin: 55px 0 60px; font-size: clamp(36px, 4vw, 64px); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { font: 500 clamp(16px, 1.55vw, 23px)/1.3 var(--display); letter-spacing: -.025em; }
.faq-item button i { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; font-size: 18px; font-style: normal; transition: transform .35s, background .35s; }
.faq-item.is-open button i { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.22,1,.36,1); }
.faq-answer p { max-width: 610px; margin: 0; padding: 0 50px 32px 0; color: rgba(255,255,255,.56); font-size: 14px; }
.faq-item.is-open .faq-answer { max-height: 250px; }

.contact { position: relative; overflow: hidden; padding: clamp(100px, 12vw, 190px) 0; border-top: 1px solid var(--line-dark); }
.contact-glow { position: absolute; right: -10vw; bottom: -25vw; width: 65vw; height: 65vw; border-radius: 50%; background: radial-gradient(circle, rgba(143,108,255,.15), transparent 62%); pointer-events: none; }
.contact-layout { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: 10vw; }
.contact-title { max-width: 850px; margin: 55px 0 40px; font: 500 clamp(43px, 6.2vw, 96px)/1.02 var(--display); letter-spacing: -.055em; }
.contact-lead { max-width: 570px; color: rgba(255,255,255,.55); font-size: clamp(14px, 1.2vw, 18px); }
.contact-meta { display: flex; gap: 70px; margin-top: 70px; }
.contact-meta div { display: flex; flex-direction: column; gap: 6px; }
.contact-meta span { color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-meta strong { font-size: 12px; font-weight: 600; }
.lead-form { align-self: end; padding: clamp(27px, 4vw, 58px); background: var(--paper-bright); color: var(--ink); transition-delay: .15s; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { position: relative; display: block; margin-bottom: 22px; padding-top: 8px; }
.field input, .field select { width: 100%; height: 54px; padding: 16px 0 4px; border: 0; border-bottom: 1px solid rgba(11,11,11,.25); outline: none; border-radius: 0; background: transparent; color: var(--ink); font-size: 14px; transition: border-color .25s; }
.field select { appearance: none; cursor: pointer; }
.field--select::after { content: "↓"; position: absolute; right: 0; top: 27px; font-size: 12px; pointer-events: none; }
.field > span { position: absolute; left: 0; top: 27px; color: rgba(11,11,11,.48); font-size: 12px; pointer-events: none; transition: top .2s, font-size .2s, color .2s; }
.field input:focus, .field select:focus { border-color: var(--orange-dark); }
.field input:focus + span, .field input:not(:placeholder-shown) + span, .field select:focus + span, .field select:valid + span { top: 8px; color: var(--orange-dark); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.field-error { display: none; position: absolute; left: 0; bottom: -17px; color: #c93625; font-size: 9px; }
.field.has-error input, .field.has-error select { border-color: #c93625; }
.field.has-error .field-error { display: block; }
.check-field { position: relative; display: flex; align-items: flex-start; gap: 10px; margin: 3px 0 13px; color: rgba(11,11,11,.58); font-size: 10px; cursor: pointer; }
.check-field a { color: var(--orange-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.check-field a:hover { color: var(--ink); }
.check-field input { position: absolute; opacity: 0; }
.check-field i { display: grid; width: 18px; height: 18px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(11,11,11,.3); }
.check-field svg { width: 11px; fill: none; stroke: var(--ink); stroke-width: 2; opacity: 0; }
.check-field input:checked + i { background: var(--orange); border-color: var(--orange); }
.check-field input:checked + i svg { opacity: 1; }
.check-field.has-error { color: #c93625; }
.check-field input:focus-visible + i { outline: 2px solid var(--orange-dark); outline-offset: 3px; }
.consent-error { display: none; margin: -8px 0 0 28px; color: #c93625; font-size: 9px; }
.check-field.has-error + .consent-error { display: block; }
.check-policy-link { margin: -6px 0 15px 28px; color: rgba(11,11,11,.48); font-size: 9px; }
.check-policy-link a { color: var(--orange-dark); border-bottom: 1px solid currentColor; }
.submit-button { position: relative; display: flex; width: 100%; height: 68px; align-items: center; justify-content: space-between; margin-top: 31px; padding: 0 24px; overflow: hidden; border: 0; background: var(--orange); color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-align: left; transition: color .3s; }
.submit-button::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .4s cubic-bezier(.22,1,.36,1); }
.submit-button:hover::before { transform: none; }
.submit-button:hover { color: var(--paper); }
.submit-button:disabled { cursor: wait; opacity: .72; }
.submit-button > span { position: relative; z-index: 1; }
.submit-arrow { font-size: 22px; }
.submit-loader { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.lead-form.is-sending .submit-label, .lead-form.is-sending .submit-arrow { opacity: 0; }
.lead-form.is-sending .submit-loader { position: absolute; z-index: 2; display: block; left: calc(50% - 10px); }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { min-height: 15px; margin: 10px 0 -18px; color: #c93625; font-size: 10px; }
.no-script-form { display: none; align-self: end; margin: 0; padding: 24px; background: var(--paper-bright); color: var(--ink); font-size: 13px; }

.site-footer { padding: 70px 0 max(25px, env(safe-area-inset-bottom, 0px)); background: #050505; color: var(--paper); border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 80px; }
.brand--footer { font-size: 14px; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-links { display: flex; justify-self: end; gap: 30px; font-size: 11px; text-transform: uppercase; }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.56); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a { border-bottom: 1px solid rgba(255,255,255,.3); transition: color .2s, border-color .2s; }
.footer-bottom a:hover { color: var(--paper); border-color: var(--orange); }

.privacy-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.privacy-page .noise { opacity: .022; }
.privacy-topbar { position: sticky; z-index: 100; top: 0; display: flex; height: calc(76px + env(safe-area-inset-top, 0px)); align-items: center; justify-content: space-between; padding: env(safe-area-inset-top, 0px) max(var(--pad), env(safe-area-inset-right, 0px)) 0 max(var(--pad), env(safe-area-inset-left, 0px)); border-bottom: 1px solid var(--line-light); background: rgba(241,238,230,.88); backdrop-filter: blur(18px); }
.privacy-back { display: inline-flex; min-height: 44px; align-items: center; gap: 11px; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.privacy-back span { color: var(--orange-dark); font-size: 16px; transition: transform .2s; }
.privacy-back:hover span { transform: translateX(-4px); }
.privacy-main { padding: clamp(70px, 8vw, 130px) 0 clamp(90px, 10vw, 160px); }
.privacy-shell { width: min(calc(100% - (var(--pad) * 2)), 1280px); margin: 0 auto; }
.privacy-hero { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: end; gap: clamp(50px, 8vw, 130px); padding-bottom: clamp(48px, 6vw, 90px); border-bottom: 1px solid var(--line-light); }
.privacy-hero h1 { max-width: 980px; margin: 28px 0 0; font: 500 clamp(42px, 6.4vw, 94px)/1.02 var(--display); letter-spacing: -.06em; }
.privacy-hero h1 em { color: var(--orange-dark); font-style: normal; }
.privacy-hero dl { margin: 0; border-top: 1px solid var(--line-light); }
.privacy-hero dl div { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.privacy-hero dt { color: rgba(11,11,11,.58); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.privacy-hero dd { margin: 0; font-size: 11px; font-weight: 600; }
.privacy-intro { max-width: 1000px; margin: clamp(48px, 6vw, 82px) 0; font: 500 clamp(18px, 2.1vw, 30px)/1.42 var(--display); letter-spacing: -.03em; }
.privacy-policy { border-top: 1px solid var(--line-light); }
.privacy-section { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); padding: clamp(36px, 4.5vw, 66px) 0; border-bottom: 1px solid var(--line-light); }
.privacy-section > span { padding-top: 6px; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.privacy-section > div { max-width: 900px; }
.privacy-section h2 { margin: 0 0 24px; font: 500 clamp(22px, 2.4vw, 34px)/1.2 var(--display); letter-spacing: -.035em; }
.privacy-section p, .privacy-section li { color: rgba(11,11,11,.68); font-size: clamp(13px, 1.1vw, 15px); line-height: 1.75; }
.privacy-section p { margin: 14px 0 0; }
.privacy-section p:first-of-type { margin-top: 0; }
.privacy-section ul { margin: 0; padding-left: 20px; }
.privacy-section li + li { margin-top: 6px; }
.privacy-section a { color: var(--orange-dark); border-bottom: 1px solid currentColor; }
.privacy-callout { display: grid; grid-template-columns: 180px minmax(0, 1fr) auto; align-items: center; gap: clamp(25px, 5vw, 70px); margin-top: clamp(60px, 8vw, 110px); padding: clamp(28px, 4vw, 55px); background: var(--orange); }
.privacy-callout > span { font: 500 12px/1.3 var(--display); text-transform: uppercase; }
.privacy-callout p { max-width: 620px; margin: 0; font-size: 13px; }
.privacy-callout a { display: inline-flex; min-width: 170px; min-height: 50px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 17px; background: var(--ink); color: var(--paper); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.privacy-callout i { color: var(--orange); font-size: 16px; font-style: normal; }
.privacy-footer { padding: 28px 0 max(28px, env(safe-area-inset-bottom, 0px)); background: var(--ink); color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.privacy-footer .privacy-shell { display: flex; justify-content: space-between; gap: 24px; }
.privacy-footer a { color: var(--paper); }

.toast { position: fixed; z-index: 1700; right: max(24px, env(safe-area-inset-right, 0px)); bottom: max(24px, env(safe-area-inset-bottom, 0px)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-width: 360px; padding: 17px; background: var(--acid); color: var(--ink); box-shadow: 0 18px 60px rgba(0,0,0,.3); transform: translateY(calc(100% + 40px)); visibility: hidden; transition: transform .55s cubic-bezier(.22,1,.36,1), visibility .55s; }
.toast.is-visible { visibility: visible; transform: none; }
.toast-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--acid); }
.toast strong { font-size: 12px; }.toast p { margin: 2px 0 0; font-size: 9px; opacity: .6; }
.toast button { display: grid; width: 44px; height: 44px; place-items: center; border: 0; background: transparent; cursor: pointer; font-size: 20px; }

.cookie-panel[hidden] { display: none; }
.cookie-panel { position: fixed; z-index: 1800; right: max(24px, env(safe-area-inset-right, 0px)); bottom: max(24px, env(safe-area-inset-bottom, 0px)); left: max(24px, env(safe-area-inset-left, 0px)); display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 36px; width: min(1040px, calc(100% - 48px)); margin-inline: auto; padding: 24px; border: 1px solid rgba(255,255,255,.14); background: rgba(7,7,7,.96); color: var(--paper); box-shadow: 0 24px 90px rgba(0,0,0,.45); backdrop-filter: blur(22px); }
.cookie-panel__copy { max-width: 680px; }
.cookie-panel__eyebrow { display: block; margin-bottom: 10px; color: var(--acid); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cookie-panel strong { display: block; font-family: var(--display); font-size: clamp(18px,2vw,28px); line-height: 1.05; }
.cookie-panel p { margin: 10px 0 8px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.55; }
.cookie-panel a { color: var(--paper); font-size: 10px; border-bottom: 1px solid rgba(255,255,255,.35); }
.cookie-panel__actions { display: flex; gap: 9px; }
.cookie-button { min-height: 48px; padding: 0 17px; border: 1px solid rgba(255,255,255,.24); background: transparent; color: var(--paper); cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: background .25s,color .25s,border-color .25s,transform .25s; }
.cookie-button:hover { transform: translateY(-2px); border-color: var(--paper); }
.cookie-button--primary { border-color: var(--orange); background: var(--orange); color: var(--ink); }

@media (min-width: 901px) {
  :root { --pad: clamp(22px, 2.6vw, 42px); }
  html { scroll-padding-top: 74px; }
  [id] { scroll-margin-top: 74px; }
  body { font-size: 15px; }
  .shell { width: min(100%, 1280px); }
  .site-header { height: calc(72px + env(safe-area-inset-top, 0px)); }
  .site-header.is-scrolled { height: calc(58px + env(safe-area-inset-top, 0px)); }
  .brand-mark { width: 32px; height: 32px; font-size: 15px; }
  .brand-name, .desktop-nav, .header-cta { font-size: 10px; }
  .desktop-nav { gap: clamp(20px, 2.1vw, 34px); }
  .header-cta i { width: 32px; height: 32px; }
  .hero-content { padding-top: 90px; padding-bottom: 48px; }
  .hero-kicker { margin-bottom: clamp(18px, 2.4vh, 28px); font-size: 9px; }
  .hero-title { width: min(940px, 78vw); font-size: clamp(44px, 6vw, 98px); }
  .hero-bottom { width: min(840px, 70vw); margin-top: clamp(20px, 3vh, 38px); }
  .hero-bottom > p { max-width: 360px; font-size: clamp(12px, .95vw, 15px); }
  .hero-course-button { width: 178px; height: 46px; font-size: 9px; }
  .hero-course-button i { width: 32px; height: 32px; }
  .section-head { padding-bottom: 28px; }
  .section-title { font-size: clamp(30px, 3.55vw, 56px); }
  .manifesto { padding: clamp(70px, 8vw, 125px) 0 clamp(64px, 7vw, 110px); }
  .manifesto-text { max-width: 950px; font-size: clamp(30px, 3.9vw, 62px); }
  .manifesto-foot { margin-top: 32px; }
  .about { padding-bottom: clamp(75px, 8vw, 130px); }
  .about-layout { grid-template-columns: minmax(240px, .72fr) 1.65fr; gap: clamp(42px, 5.5vw, 86px); padding-top: clamp(46px, 5vw, 78px); }
  .about-copy .section-title { font-size: clamp(29px, 3.15vw, 50px); }
  .about-columns { gap: 2.7vw; margin-top: 34px; }
  .about-columns p { font-size: clamp(12px, .95vw, 14px); }
  .principles { margin-top: 46px; }
  .principles p { margin-top: 20px; }
  .courses { padding: clamp(64px, 7vw, 110px) 0 clamp(78px, 8vw, 125px); }
  .courses-heading { max-width: 820px; margin: clamp(44px, 5vw, 78px) 0; font-size: clamp(32px, 4.25vw, 68px); }
  .course-card-main, .course-details { grid-template-columns: 105px minmax(0, 1fr) auto; gap: 2vw; }
  .course-card-main { padding: 16px 0 23px; }
  .course-icon { width: 86px; height: 64px; }
  .course-card h3 { font-size: clamp(25px, 3.35vw, 52px); }
  .course-toggle { width: 44px; height: 44px; font-size: 21px; }
  .course-card.is-open .course-details { padding-bottom: 30px; }
  .course-detail-copy > p { font-size: 13px; }
  .skill-tags { margin-top: 16px; }

  .program-explorer { margin-top: clamp(58px, 6vw, 96px); padding-top: 34px; }
  .program-explorer-head { gap: 38px; padding-bottom: 34px; }
  .program-explorer-head h3 { margin-top: 12px; font-size: clamp(28px, 3.1vw, 48px); }
  .program-explorer-head > p { max-width: 360px; font-size: 12px; }
  .program-browser { grid-template-columns: 195px minmax(0,1fr); min-height: 0; }
  .program-tabs { align-self: start; background: #101010; }
  .program-tab { grid-template-columns: 28px 1fr; min-height: 58px; flex: 0 0 58px; gap: 10px; padding: 0 17px; font-size: 13px; }
  .program-tab.is-active { padding-left: 21px; }
  .program-panel { padding: clamp(23px, 2.5vw, 38px); }
  .program-meta { padding-bottom: 14px; }
  .program-title-row { gap: 26px; padding: 24px 0; }
  .program-title-row h3 { font-size: clamp(34px, 4vw, 60px); }
  .program-description { max-width: 580px; margin-top: 14px; font-size: clamp(12px, 1vw, 14px); }
  .program-symbol { width: 84px; height: 84px; font-size: 35px; }
  .program-modules { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .program-modules > div { padding: 15px; }
  .program-modules strong { margin-top: 12px; font-size: clamp(13px, 1.15vw, 17px); }
  .program-modules p { margin-top: 6px; font-size: 10px; }
  .program-result { gap: 28px; padding-top: 21px; }
  .program-result p { font-size: clamp(13px, 1.15vw, 17px); }
  .program-cta { min-width: 190px; min-height: 48px; }
  .program-cta i { width: 32px; height: 32px; }

  .method { padding: clamp(66px, 7vw, 115px) 0; }
  .method-intro { max-width: 1080px; margin: clamp(40px, 4.8vw, 72px) 0; }
  .method-board { grid-template-columns: .9fr 1.2fr; min-height: 430px; }
  .method-visual { min-height: 410px; }
  .method-center span { font-size: clamp(58px, 6.2vw, 96px); }
  .method-steps { padding: 3.5% 5%; }
  .method-step { grid-template-columns: 32px 1fr auto; gap: 12px; padding: 15px 0; }
  .method-step.is-active { padding-left: 8px; }
  .method-step strong { font-size: clamp(15px, 1.3vw, 20px); }
  .method-step p { margin-top: 5px; font-size: 11px; }

  .reviews { padding-top: clamp(62px, 7vw, 105px); }
  .reviews-intro { gap: clamp(34px, 5vw, 78px); margin-top: clamp(38px, 4.5vw, 68px); }
  .reviews-stage { grid-template-columns: 220px minmax(0, 1fr); min-height: 420px; margin-top: clamp(34px, 4vw, 56px); border-radius: 28px; }
  .reviews-summary { justify-content: flex-start; padding: clamp(23px, 2.4vw, 34px); }
  .reviews-summary__label { margin-bottom: 14px; }
  .reviews-summary strong { font-size: clamp(58px, 5vw, 78px); }
  .reviews-stars { margin-top: 16px; font-size: 15px; }
  .review-controls { grid-template-columns: 42px 1fr 42px; gap: 8px; margin-top: 26px; }
  .review-controls button { width: 42px; height: 42px; font-size: 16px; }
  .review-controls span { min-width: 42px; }
  .review-card { min-height: 420px; padding: clamp(25px, 2.7vw, 40px); }
  .review-card blockquote { max-width: 900px; margin: clamp(26px, 2.8vw, 40px) 0; font-size: clamp(19px, 1.9vw, 30px); line-height: 1.22; }
  .review-card footer { padding-top: 18px; }
  .review-avatar { width: 44px; height: 44px; font-size: 14px; }
  .review-card footer i { font-size: clamp(30px, 3vw, 46px); }
  .reviews-footer { margin-top: 18px; }
  .ticker { margin-top: clamp(62px, 7vw, 108px); padding: 18px 0; }

  .faq { padding: clamp(80px, 8vw, 125px) 0 clamp(70px, 7vw, 110px); }
  .faq-layout { gap: 7vw; }
  .faq-title-wrap { top: 74px; }
  .faq-title-wrap .section-title { margin: 34px 0 38px; font-size: clamp(30px, 3vw, 48px); }
  .faq-item button { padding: 20px 0; }
  .faq-item button span { font-size: clamp(15px, 1.25vw, 19px); }
  .faq-answer p { padding-bottom: 25px; font-size: 12px; }
  .contact { padding: clamp(75px, 8vw, 120px) 0; }
  .contact-layout { gap: 6.5vw; }
  .contact-title { margin: 34px 0 28px; font-size: clamp(34px, 4.2vw, 66px); }
  .contact-lead { font-size: clamp(13px, 1vw, 15px); }
  .contact-meta { gap: 46px; margin-top: 42px; }
  .lead-form { padding: clamp(22px, 2.6vw, 38px); }
  .site-footer { padding-top: 48px; }
  .footer-top { padding-bottom: 52px; }
}

@media (min-width: 901px) and (max-width: 1099px) {
  .program-browser { grid-template-columns: 1fr; }
  .program-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); scrollbar-width: none; }
  .program-tabs::-webkit-scrollbar { display: none; }
  .program-tab { min-width: 150px; flex: 0 0 150px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .program-tab::after { display: none; }
  .program-modules { grid-template-columns: 1fr 1fr; }
  .program-result { grid-template-columns: 1fr; }
  .program-cta { width: fit-content; }
  .method-board { grid-template-columns: .78fr 1.22fr; }
  .reviews-stage { grid-template-columns: 205px minmax(0, 1fr); }
}

@media (min-width: 901px) and (max-height: 900px) {
  .section-title { font-size: clamp(30px, 3.25vw, 52px); }
  .program-explorer { margin-top: 52px; padding-top: 28px; }
  .program-explorer-head { padding-bottom: 28px; }
  .program-tab { min-height: 54px; flex-basis: 54px; }
  .method { padding: 64px 0; }
  .method-intro { margin: 38px 0; }
  .method-board { min-height: 400px; }
  .method-visual { min-height: 390px; }
  .method-center span { font-size: clamp(56px, 5.6vw, 86px); }
  .method-step { padding: 13px 0; }
  .reviews { padding-top: 64px; }
  .reviews-intro { margin-top: 36px; }
  .reviews-stage { min-height: 400px; margin-top: 32px; }
  .review-card { min-height: 400px; padding: 28px 36px; }
  .review-card blockquote { margin: 24px 0; font-size: clamp(19px, 1.7vw, 28px); }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; height: calc(72px + env(safe-area-inset-top, 0px)); }
  .menu-button { display: block; }
  .hero-title { width: 100%; font-size: clamp(47px, 11.5vw, 88px); }
  .title-line--accent { padding-left: 7vw; }
  .hero-bottom { width: 100%; }
  .hero-object-hint { top: 16%; right: 5%; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-text, .manifesto-foot { grid-column: 1; }
  .manifesto-text { margin-top: 35px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait { width: min(80vw, 520px); justify-self: center; }
  .course-card-main, .course-details { grid-template-columns: 110px 1fr auto; }
  .course-icon { width: 90px; }
  .program-mobile-guide { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 10px; padding: 11px 12px 11px 16px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
  .program-mobile-guide > span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
  .program-mobile-guide > span i { color: var(--orange); font-size: 15px; font-style: normal; animation: swipeHint 1.5s ease-in-out infinite; }
  .program-mobile-guide > div { display: flex; gap: 7px; }
  .program-mobile-guide button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; color: white; cursor: pointer; transition: background .2s, border-color .2s, opacity .2s; }
  .program-mobile-guide button:active { background: var(--orange); border-color: var(--orange); color: var(--ink); }
  .program-mobile-guide button:disabled { opacity: .25; cursor: default; }
  @keyframes swipeHint { 50% { transform: translateX(5px); } }
  .program-browser { grid-template-columns: 1fr; min-height: 0; }
  .program-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); scroll-padding-inline: 12px; scroll-snap-type: x proximity; overscroll-behavior-inline: contain; scrollbar-width: none; -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%); }
  .program-tabs.is-at-start { -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%); }
  .program-tabs.is-at-end { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 100%); mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 100%); }
  .program-tabs:not(.is-at-start):not(.is-at-end) { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%); }
  .program-tabs::-webkit-scrollbar { display: none; }
  .program-tab { min-width: 175px; min-height: 72px; border-right: 1px solid var(--line-dark); border-bottom: 0; scroll-snap-align: start; }
  .program-tab::after { display: none; }
  .program-panel { padding: clamp(28px, 6vw, 54px); }
  .program-title-row { grid-template-columns: minmax(0, 1fr) 72px; gap: 16px; padding: 32px 0; }
  .program-title-row h3 { min-width: 0; overflow-wrap: anywhere; font-size: clamp(34px, 6vw, 48px); }
  .program-symbol { width: 72px; height: 72px; border-radius: 25px; font-size: 29px; }
  .method-board { grid-template-columns: 1fr; }
  .method-visual { min-height: 480px; }
  .reviews-intro { grid-template-columns: 1fr; }
  .reviews-lead { max-width: 610px; }
  .reviews-stage { grid-template-columns: 1fr; }
  .reviews-summary { min-height: 190px; flex-direction: row; align-items: flex-end; gap: 40px; }
  .reviews-summary strong { font-size: 88px; }
  .review-controls { width: min(260px, 45%); }
  .reviews-viewport { min-height: 500px; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .review-card blockquote { font-size: clamp(27px, 4.8vw, 43px); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-title-wrap { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .lead-form { width: min(680px, 100%); }
  .privacy-main { padding-top: 65px; }
  .privacy-hero { grid-template-columns: 1fr; align-items: start; gap: 45px; }
  .privacy-hero dl { width: min(100%, 480px); }
  .privacy-policy { margin-top: 0; }
  .privacy-section { grid-template-columns: 58px minmax(0, 1fr); gap: 28px; }
  .privacy-callout { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .privacy-callout p { max-width: 680px; }
  .privacy-callout a { width: fit-content; }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  .site-header.is-scrolled { height: calc(62px + env(safe-area-inset-top, 0px)); }
  .brand-mark { width: 34px; height: 34px; }
  .hero-content { justify-content: flex-start; padding-top: 22vh; padding-bottom: 70px; }
  .hero-kicker { font-size: 9px; }
  .hero-title { font-size: clamp(39px, 13.2vw, 68px); line-height: .96; }
  .title-line--last { margin-top: 6px; font-size: .61em; text-align: left; }
  .hero-bottom { align-items: center; margin-top: auto; }
  .hero-bottom > p { max-width: 220px; font-size: 12px; }
  .hero-course-button { width: 150px; height: 46px; padding-left: 15px; font-size: 8px; }
  .hero-course-button i { width: 32px; height: 32px; }
  .hero-object-hint > span:last-child { display: none; }
  .hero-object-symbol { width: 42px; height: 42px; font-size: 12px; }
  .hero-index, .scroll-cue { display: none; }
  .section-head { padding-bottom: 25px; }
  .section-note { font-size: 10px; text-align: right; }
  .manifesto { padding: 100px 0; }
  .manifesto-text { font-size: 34px; }
  .manifesto-foot { flex-wrap: wrap; gap: 10px; margin-top: 35px; font-size: 9px; }
  .about { padding-bottom: 110px; }
  .about-layout { padding-top: 65px; gap: 65px; }
  .about-portrait { width: 86vw; }
  .about-copy .section-title { font-size: 32px; }
  .about-columns { grid-template-columns: 1fr; gap: 20px; margin-top: 35px; }
  .principles { grid-template-columns: 1fr; margin-top: 55px; }
  .principles > div, .principles > div:not(:first-child) { display: grid; grid-template-columns: 42px 1fr; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .principles p { margin: 0; }
  .courses { padding: 90px 0 110px; }
  .courses-heading { margin: 70px 0; font-size: 37px; }
  .course-card-main { grid-template-columns: 58px 1fr auto; gap: 10px; padding: 20px 0 26px; }
  .course-icon { width: 50px; height: 60px; }
  .code-icon span { font-size: 16px; }.code-icon i { width: 11px; }
  .math-icon span { font-size: 37px; }.math-icon i { right: 0; }
  .course-type { font-size: 9px; }
  .course-card h3 { min-width: 0; overflow-wrap: anywhere; font-size: clamp(19px, 5.7vw, 29px); hyphens: auto; }
  .course-toggle { width: 44px; height: 44px; font-size: 20px; }
  .course-details { grid-template-columns: 58px 1fr; }
  .course-detail-copy { grid-column: 2; }
  .course-detail-copy > p { font-size: 12px; }
  .course-details .text-link { grid-column: 2; margin-top: 20px; }
  .course-card.is-open .course-details { max-height: 480px; }
  .program-explorer { margin-top: 90px; padding-top: 35px; }
  .program-explorer-head { display: block; padding-bottom: 30px; }
  .program-explorer-head h3 { font-size: 31px; }
  .program-explorer-head > p { margin-top: 20px; font-size: 11px; }
  .program-mobile-guide { padding-left: 13px; }
  .program-mobile-guide > span { max-width: 145px; font-size: 8px; line-height: 1.25; }
  .program-mobile-guide button { width: 44px; height: 44px; }
  .program-title-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .program-title-row h3 { font-size: clamp(30px, 8.8vw, 38px); line-height: 1; overflow-wrap: normal; }
  .program-symbol { width: 56px; height: 56px; justify-self: end; margin-top: -2px; border-radius: 19px; font-size: 22px; }
  .program-description { margin-top: 17px; font-size: 12px; }
  .program-modules { grid-template-columns: 1fr; }
  .program-modules > div { padding: 20px; }
  .program-modules strong { margin-top: 15px; font-size: 15px; }
  .program-result { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .program-result p { font-size: 15px; }
  .program-cta { width: 100%; min-width: 0; }
  .method { padding: 100px 0; }
  .method-intro { margin: 65px 0; }
  .method-board { min-height: 0; }
  .method-visual { min-height: 340px; }
  .method-center span { font-size: 80px; }
  .method-steps { padding: 18px; }
  .method-step { grid-template-columns: 30px 1fr; }
  .method-step > i { display: none; }
  .method-step strong { font-size: 17px; }
  .reviews { padding-top: 90px; }
  .reviews-intro { gap: 24px; margin-top: 55px; }
  .reviews-intro .section-title { font-size: 35px; }
  .reviews-lead { font-size: 12px; }
  .reviews-stage { margin-top: 45px; border-radius: 24px; }
  .reviews-summary { min-height: 170px; gap: 8px; padding: 24px; }
  .reviews-summary__label { margin-bottom: 12px; font-size: 8px; }
  .reviews-summary strong { margin-left: -4px; font-size: 66px; }
  .reviews-stars { margin-top: 12px; font-size: 13px; }
  .reviews-summary p { font-size: 8px; }
  .review-controls { width: auto; grid-template-columns: 36px auto 36px; gap: 5px; }
  .review-controls button { width: 36px; height: 36px; }
  .review-controls span { min-width: 38px; }
  .reviews-viewport { min-height: 590px; }
  .review-card { padding: 25px 22px; }
  .review-course { padding: 7px 9px; font-size: 7px; }
  .review-card time { font-size: 8px; }
  .review-card blockquote { margin: 38px 0; font-size: clamp(20px, 5.8vw, 25px); line-height: 1.28; }
  .review-card footer { grid-template-columns: auto 1fr; padding-top: 19px; }
  .review-avatar { width: 43px; height: 43px; font-size: 14px; }
  .review-card footer strong { font-size: 11px; }
  .review-card footer small { font-size: 8px; }
  .review-card footer i { display: none; }
  .reviews-footer { display: block; margin-top: 18px; }
  .review-dots { justify-content: space-between; }
  .review-dots button { width: 14%; }
  .reviews-footer > p { margin-top: 15px; font-size: 8px; text-align: left; }
  .ticker { margin-top: 100px; }
  .faq { padding: 120px 0 100px; }
  .faq-title-wrap .section-title { margin: 45px 0; }
  .faq-item button { padding: 23px 0; }
  .contact { padding: 100px 0; }
  .contact-title { margin-top: 45px; font-size: 41px; }
  .contact-meta { gap: 35px; margin: 45px 0 60px; }
  .lead-form { padding: 25px 20px 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .submit-button { height: 62px; padding: 0 18px; font-size: 10px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 45px; padding-bottom: 55px; }
  .footer-top > p { grid-column: 1; grid-row: 2; }
  .footer-links { grid-column: 2; grid-row: 2; flex-direction: column; gap: 10px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .toast { right: max(12px, env(safe-area-inset-right, 0px)); bottom: max(12px, env(safe-area-inset-bottom, 0px)); left: max(12px, env(safe-area-inset-left, 0px)); min-width: 0; }
  .cookie-panel { right: max(12px, env(safe-area-inset-right, 0px)); bottom: max(12px, env(safe-area-inset-bottom, 0px)); left: max(12px, env(safe-area-inset-left, 0px)); grid-template-columns: 1fr; gap: 20px; width: auto; padding: 20px; }
  .cookie-panel__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-button { width: 100%; }
  .privacy-topbar { height: calc(66px + env(safe-area-inset-top, 0px)); }
  .privacy-back { font-size: 8px; }
  .privacy-main { padding: 52px 0 80px; }
  .privacy-shell { width: auto; margin-right: max(20px, env(safe-area-inset-right, 0px)); margin-left: max(20px, env(safe-area-inset-left, 0px)); }
  .privacy-hero { gap: 34px; padding-bottom: 45px; }
  .privacy-hero h1 { margin-top: 20px; font-size: clamp(34px, 10.5vw, 48px); }
  .privacy-intro { margin: 48px 0; font-size: 20px; }
  .privacy-section { grid-template-columns: 1fr; gap: 15px; padding: 36px 0; }
  .privacy-section > span { padding-top: 0; }
  .privacy-section h2 { margin-bottom: 18px; font-size: 22px; }
  .privacy-section p, .privacy-section li { font-size: 15px; line-height: 1.65; }
  .privacy-callout { margin-top: 55px; padding: 25px 20px; }
  .privacy-callout a { width: 100%; }
  .privacy-footer .privacy-shell { flex-wrap: wrap; }
}

@media (hover: none) {
  .course-card:not(.is-open):hover .course-toggle { background: transparent; border-color: var(--line-dark); }
  .submit-button:hover { color: var(--ink); }
  .submit-button:hover::before { transform: translateY(101%); }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor select { cursor: auto; }
}
@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-up, .reveal-scale { opacity: 1; transform: none; }
  .split-lines .line > span, .title-line > span { transform: none; }
}
