:root {
  --ink: #0a0a0b;
  --ink-soft: #111113;
  --paper: #f4f1e9;
  --white: #fffdf7;
  --muted: #aaa69d;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #f5bd2e;
  --gold-bright: #ffd45c;
  --black-on-gold: #181306;
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; -webkit-user-drag: none; -webkit-touch-callout: none; pointer-events: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
input, select, textarea { -webkit-user-select: text; user-select: text; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 128px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--gold); color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.scrolled { padding: 10px 0; background: rgba(10, 10, 11, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #d5d1c8; text-decoration: none; font-size: .88rem; font-weight: 700; transition: color .2s ease; }
.site-nav a:hover { color: var(--white); }
.site-nav a.nav-featured {
  position: relative;
  color: #d5d1c8;
}
.site-nav a.nav-featured::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: .08em;
  animation: nav-feature-dot 2.8s ease-in-out infinite;
}
.site-nav a.nav-featured:hover {
  color: var(--white);
}
@keyframes nav-feature-dot {
  0%, 100% { opacity: .46; box-shadow: 0 0 0 rgba(245, 189, 46, 0); }
  50% { opacity: 1; box-shadow: 0 0 11px rgba(245, 189, 46, .72); }
}
.site-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(245, 189, 46, .7);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.site-nav a.nav-featured[aria-current="page"] {
  text-decoration-color: rgba(245, 189, 46, .82);
}

/* Program-page arrival: no whole-page crossfade. The new page is present immediately,
   then the first-screen elements reveal in a soft Apple-like stagger. */
body.page-enter .hero-copy > *,
body.page-enter .hero-visual,
body.page-enter .facts > div,
body.page-enter .group-hero-copy > *,
body.page-enter .group-hero-visual,
body.page-enter .group-principles > span {
  opacity: 0;
  transform: translateY(22px);
}
body.page-enter .hero-visual,
body.page-enter .group-hero-visual {
  transform: translateY(18px) scale(.985);
}
body.page-transition-ready .hero-copy > *,
body.page-transition-ready .hero-visual,
body.page-transition-ready .facts > div,
body.page-transition-ready .group-hero-copy > *,
body.page-transition-ready .group-hero-visual,
body.page-transition-ready .group-principles > span {
  transition: opacity .82s cubic-bezier(.22, 1, .36, 1), transform .92s cubic-bezier(.22, 1, .36, 1);
}

/* Pronunciation 2.0 hero stagger */
body.page-transition-ready .hero-copy > .eyebrow { transition-delay: .08s; }
body.page-transition-ready .hero-copy > h1 { transition-delay: .17s; }
body.page-transition-ready .hero-copy > .hero-lead { transition-delay: .28s; }
body.page-transition-ready .hero-copy > .hero-actions { transition-delay: .39s; }
body.page-transition-ready .hero-copy > .micro-note { transition-delay: .48s; }
body.page-transition-ready .hero-visual { transition-delay: .24s; }
body.page-transition-ready .facts > div:nth-child(1) { transition-delay: .50s; }
body.page-transition-ready .facts > div:nth-child(2) { transition-delay: .58s; }
body.page-transition-ready .facts > div:nth-child(3) { transition-delay: .66s; }
body.page-transition-ready .facts > div:nth-child(4) { transition-delay: .74s; }

/* Grup Dersleri hero stagger */
body.page-transition-ready .group-hero-copy > .eyebrow { transition-delay: .08s; }
body.page-transition-ready .group-hero-copy > h1 { transition-delay: .17s; }
body.page-transition-ready .group-hero-copy > p:not(.eyebrow) { transition-delay: .28s; }
body.page-transition-ready .group-hero-copy > .hero-actions { transition-delay: .39s; }
body.page-transition-ready .group-hero-visual { transition-delay: .24s; }
body.page-transition-ready .group-principles > span:nth-child(1) { transition-delay: .50s; }
body.page-transition-ready .group-principles > span:nth-child(2) { transition-delay: .58s; }
body.page-transition-ready .group-principles > span:nth-child(3) { transition-delay: .66s; }
body.page-transition-ready .group-principles > span:nth-child(4) { transition-delay: .74s; }
.site-nav .nav-cta { padding: 10px 17px; color: var(--black-on-gold); background: var(--gold); border-radius: 999px; }
.menu-button { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 11px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 7px 0; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; overflow: hidden; padding: 156px 0 0; min-height: 100vh; background: radial-gradient(circle at 80% 18%, rgba(245, 189, 46, .16), transparent 34%), var(--ink); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--line); }
.hero-glow { position: absolute; width: 390px; height: 390px; right: -125px; top: 24%; border-radius: 50%; background: var(--gold); opacity: .05; filter: blur(68px); will-change: transform; -webkit-animation: hero-glow-float 9s ease-in-out infinite; animation: hero-glow-float 9s ease-in-out infinite; pointer-events: none; }
@-webkit-keyframes hero-glow-float {
  0%, 100% { -webkit-transform: translate3d(0, -18px, 0) scale(.98); transform: translate3d(0, -18px, 0) scale(.98); }
  25% { -webkit-transform: translate3d(-58px, 10px, 0) scale(1.03); transform: translate3d(-58px, 10px, 0) scale(1.03); }
  50% { -webkit-transform: translate3d(-28px, 62px, 0) scale(1); transform: translate3d(-28px, 62px, 0) scale(1); }
  75% { -webkit-transform: translate3d(24px, 22px, 0) scale(1.04); transform: translate3d(24px, 22px, 0) scale(1.04); }
}
@keyframes hero-glow-float {
  0%, 100% { transform: translate3d(0, -18px, 0) scale(.98); }
  25% { transform: translate3d(-58px, 10px, 0) scale(1.03); }
  50% { transform: translate3d(-28px, 62px, 0) scale(1); }
  75% { transform: translate3d(24px, 22px, 0) scale(1.04); }
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); align-items: center; gap: 76px; }
.hero-copy { padding: 62px 0 72px; position: relative; z-index: 2; }
.eyebrow, .section-index { margin: 0 0 24px; color: var(--gold); font-size: .77rem; line-height: 1.2; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 26px; height: 1px; background: var(--gold); }
.hero h1, h2 { margin: 0; font-weight: 800; letter-spacing: -.065em; line-height: .95; }
.hero h1 { font-size: clamp(4.2rem, 6.5vw, 7.6rem); }
.hero h1 em { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 665px; margin: 34px 0 0; color: #c0bcb3; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.65; }
.hero-lead strong { color: var(--white); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 54px; padding: 14px 22px; border: 0; border-radius: 999px; text-decoration: none; font-weight: 850; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--black-on-gold); box-shadow: 0 12px 42px rgba(245, 189, 46, .12); }
.button-primary:hover { background: var(--gold-bright); box-shadow: 0 16px 50px rgba(245, 189, 46, .2); }
.text-link { font-weight: 750; color: #d9d5cc; text-underline-offset: 5px; }
.micro-note { margin: 18px 0 0; color: #7f7b73; font-size: .82rem; }
.hero-visual { position: relative; align-self: stretch; display: flex; align-items: flex-end; padding-top: 20px; }
.portrait-frame { position: relative; overflow: hidden; height: min(680px, 72vh); width: 100%; border-radius: 220px 220px 20px 20px; border: 1px solid rgba(245, 189, 46, .35); background: #17130c; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,11,.8), transparent 38%); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.85) contrast(1.04); }
.portrait-label { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.34); font-size: .84rem; font-weight: 750; }
.sound-mark { position: absolute; left: -44px; top: 30%; display: flex; align-items: center; gap: 7px; height: 80px; padding: 12px; border-radius: 14px; background: var(--gold); box-shadow: 0 18px 60px rgba(0,0,0,.4); }
.sound-mark i { display: block; width: 4px; height: 24px; border-radius: 4px; background: #1a1405; transform-origin: center; will-change: transform; -webkit-animation: wave-mobile 1.05s ease-in-out infinite; animation: wave-mobile 1.05s ease-in-out infinite; }
.sound-mark i:nth-child(2), .sound-mark i:nth-child(6) { height: 42px; animation-delay: -.4s; }
.sound-mark i:nth-child(3), .sound-mark i:nth-child(5) { height: 58px; animation-delay: -.7s; }
.sound-mark i:nth-child(4) { height: 30px; animation-delay: -.2s; }
@-webkit-keyframes wave-mobile {
  0%, 100% { -webkit-transform: scaleY(.38); transform: scaleY(.38); }
  50% { -webkit-transform: scaleY(1); transform: scaleY(1); }
}
@keyframes wave-mobile {
  0%, 100% { transform: scaleY(.38); }
  50% { transform: scaleY(1); }
}
.facts { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.facts > div { padding: 28px 30px 34px 0; border-right: 1px solid var(--line); }
.facts > div:not(:first-child) { padding-left: 30px; }
.facts > div:last-child { border-right: 0; }
.facts strong { display: block; color: var(--gold); font-size: 2.1rem; line-height: 1; letter-spacing: -.05em; }
.facts span { display: block; margin-top: 7px; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.problem { color: #161513; background: var(--paper); }
.split-heading { display: grid; grid-template-columns: .31fr 1fr; gap: 48px; }
.problem .section-index { color: #8c6a17; }
h2 { font-size: clamp(3.1rem, 5.8vw, 6.6rem); }
h2 span { color: #716e67; }
.split-heading > div > p { max-width: 790px; margin: 36px 0 0; color: #57544e; font-size: 1.14rem; }
.contrast-line { display: grid; grid-template-columns: 1fr 80px 1.25fr; align-items: center; gap: 36px; margin-top: 90px; padding: 34px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.contrast-line p { margin: 10px 0 0; font-size: 1.25rem; font-weight: 700; line-height: 1.35; }
.contrast-label { color: #8f8b82; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contrast-label.gold { color: var(--gold); }
.contrast-arrow { color: var(--gold); font-size: 2.6rem; text-align: center; }

.section-head { display: grid; grid-template-columns: .3fr 1fr; align-items: end; column-gap: 50px; }
.section-head .section-index { align-self: start; }
.section-head h2 { grid-column: 2; }
.section-head > p:last-child { grid-column: 2; max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 1.1rem; }
.program { background: var(--ink-soft); }
.timeline { margin-top: 82px; border-top: 1px solid var(--line); }
.week { display: grid; grid-template-columns: .3fr 1fr; column-gap: 50px; padding: 56px 0; border-bottom: 1px solid var(--line); }
.week-number { color: #44413b; font-size: clamp(5rem, 11vw, 10rem); font-weight: 850; line-height: .8; letter-spacing: -.08em; transition: color .25s ease; }
.week:hover .week-number, .week.is-active .week-number { color: var(--gold); }
.week-copy { display: grid; grid-template-columns: 1fr .95fr; column-gap: 50px; }
.week-label { grid-column: 1 / -1; margin: 0 0 24px; color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.week h3 { margin: 0; font-size: clamp(2rem, 3vw, 3.4rem); line-height: 1.02; letter-spacing: -.055em; }
.week-copy > p:not(.week-label) { margin: 0; color: #aaa69d; }
.week ul { grid-column: 2; margin: 24px 0 0; padding: 0; list-style: none; color: #d3cfc6; }
.week li { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .9rem; }

.method { background: var(--gold); color: var(--black-on-gold); }
.method-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.method .section-index { color: #6a5010; }
.method h2 span { color: rgba(24,19,6,.48); }
.method-intro > p:last-child { max-width: 480px; margin: 30px 0 0; font-size: 1.1rem; }
.method-steps { border-top: 1px solid rgba(24,19,6,.3); }
.method-step { display: grid; grid-template-columns: 70px 180px 1fr; gap: 24px; align-items: center; padding: 35px 0; border-bottom: 1px solid rgba(24,19,6,.3); }
.method-step > span { font-weight: 900; align-self: start; }
.method-copy h3 { margin: 0 0 9px; font-size: 1.55rem; letter-spacing: -.035em; }
.method-copy p { margin: 0; color: rgba(24,19,6,.72); }
.p-method-visual { position: relative; min-height: 118px; border: 1px solid rgba(24,19,6,.12); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.18)); overflow: hidden; }
.p-method-visual::after { content:""; position:absolute; inset:auto 14px 12px; height:1px; background:rgba(24,19,6,.08); }


.skills { background: var(--ink); }
.skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.skill { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.skill:hover { background: #151410; }
.skill > span { color: var(--gold); font-size: .75rem; font-weight: 850; }
.skill h3 { margin: 76px 0 10px; font-size: 1.6rem; letter-spacing: -.04em; }
.skill p { margin: 0; color: var(--muted); font-size: .93rem; }

.fit { color: #171613; background: var(--paper); }
.fit-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.fit .section-index { color: #8c6a17; }
.fit-main h2 span { color: #8c6a17; }
.fit-main > p:last-child { margin: 30px 0 0; color: #5a574f; font-size: 1.06rem; }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card { padding: 30px; border-radius: 18px; }
.fit-yes { color: var(--white); background: var(--ink); }
.fit-no { background: #e5e0d5; }
.fit-label { margin: 0 0 26px; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.fit-yes .fit-label { color: var(--gold); }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 13px 0 13px 27px; border-bottom: 1px solid rgba(127,121,108,.25); font-size: .92rem; }
.fit-card li::before { position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.fit-yes li::before { content: "✓"; }
.fit-no li::before { content: "—"; color: #777269; }

.cohort { background: #131311; }
.cohort-grid { display: grid; grid-template-columns: .6fr 1.4fr; align-items: center; gap: 80px; }
.cohort-number { color: var(--gold); font-size: clamp(11rem, 25vw, 26rem); font-weight: 900; line-height: .74; letter-spacing: -.12em; }
.cohort-copy h2 span { color: #7f7b73; }
.cohort-copy > p:not(.section-index) { max-width: 680px; margin: 32px 0; color: #aaa69d; font-size: 1.1rem; }
.cohort-points { display: flex; flex-wrap: wrap; gap: 9px; }
.cohort-points span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #d8d4cb; font-size: .8rem; font-weight: 750; }

.about { background: var(--ink); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.about-image { position: relative; }
.about-image::before { content: ""; position: absolute; inset: 20px 1% -20px 11%; z-index: 0; border: 1px solid rgba(245,189,46,.5); border-radius: 18px; }
.about-image img { position: relative; z-index: 1; width: 88%; height: auto; margin-inline: auto; aspect-ratio: auto; object-fit: contain; object-position: center; border-radius: 18px; filter: saturate(.78); }
.about-image span { position: absolute; z-index: 2; right: 3%; bottom: 28px; padding: 10px 14px; background: var(--gold); color: var(--black-on-gold); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
.about-copy > p:not(.section-index) { max-width: 640px; margin: 28px 0 0; color: #aaa69d; font-size: 1.05rem; }
.about-copy strong { color: var(--white); }

.faq { color: #171613; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 90px; }
.faq .section-index { color: #8c6a17; }
.faq h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.accordion { border-top: 1px solid #c9c3b7; }
.accordion details { border-bottom: 1px solid #c9c3b7; }
.accordion summary { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 26px 0; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: #8c6a17; font-size: 1.6rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 710px; margin: -4px 0 28px; color: #5a574f; }

.application { position: relative; overflow: hidden; background: var(--gold); color: var(--black-on-gold); }
.application::after { content: "EW"; position: absolute; right: -30px; bottom: -115px; color: rgba(24,19,6,.055); font-size: 26rem; font-weight: 900; line-height: 1; letter-spacing: -.15em; pointer-events: none; }
.application-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.application .section-index { color: #62490c; }
.application h2 { font-size: clamp(3.3rem, 5.3vw, 6rem); }
.application h2 span { color: rgba(24,19,6,.53); }
.application-copy > p:not(.section-index) { max-width: 570px; margin: 28px 0 0; }
.application-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.application-meta span { padding: 8px 12px; border: 1px solid rgba(24,19,6,.28); border-radius: 999px; font-size: .76rem; font-weight: 850; }
.application-form { padding: 34px; border-radius: 20px; background: var(--ink); color: var(--white); box-shadow: 0 30px 80px rgba(39,27,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.application-form label { display: block; margin-bottom: 18px; color: #d9d5cc; font-size: .8rem; font-weight: 800; }
.application-form input:not([type="checkbox"]), .application-form select, .application-form textarea { width: 100%; margin-top: 8px; padding: 14px 15px; color: var(--white); background: #161618; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.application-form select { color-scheme: dark; }
.application-form textarea { resize: vertical; min-height: 118px; }
.application-form input:focus, .application-form select:focus, .application-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,189,46,.13); }
.application-form .consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 11px; color: #a9a59c; font-weight: 500; line-height: 1.45; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); }
.submit-button { width: 100%; margin-top: 5px; }
.form-note { margin: 12px 0 0; color: #77736c; font-size: .75rem; text-align: center; }
.form-error { min-height: 24px; margin: -3px 0 7px; color: #ff9e8f; font-size: .8rem; }

.site-footer { padding: 52px 0; background: var(--ink); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 1rem; }
.footer-brand span { color: #79766f; font-size: .78rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #aaa69d; font-size: .82rem; font-weight: 750; }
.site-footer > .container > p { grid-column: 1 / -1; margin: 18px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: #625f59; font-size: .75rem; }

/* Grup dersleri */
.group-hero { min-height: 100vh; overflow: hidden; padding: 150px 0 0; background: radial-gradient(circle at 18% 15%, rgba(245,189,46,.12), transparent 30%), var(--ink); }
.group-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 78px; }
.group-hero-copy { padding: 64px 0 78px; }
.group-hero h1 { margin: 0; font-size: clamp(4.4rem, 7.3vw, 8.4rem); font-weight: 850; letter-spacing: -.072em; line-height: .85; }
.group-hero h1 em { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.group-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 34px 0 0; color: #b8b4ab; font-size: 1.15rem; }
.group-hero-visual { position: relative; align-self: end; }
.group-photo { overflow: hidden; width: 100%; aspect-ratio: 3 / 2; min-height: 0; border-radius: 24px 24px 0 0; border: 1px solid rgba(255,255,255,.15); background: #17130c; }
.group-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.group-stamp { position: absolute; right: -18px; bottom: 16px; left: auto; display: grid; place-items: center; width: 132px; height: 132px; color: var(--black-on-gold); background: var(--gold); border-radius: 50%; transform: rotate(-9deg); -webkit-animation: group-stamp-float 4.2s ease-in-out infinite; animation: group-stamp-float 4.2s ease-in-out infinite; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.group-stamp strong, .group-stamp span { display: block; line-height: 1; }
.group-stamp strong { font-size: 1.28rem; }
.group-stamp span { font-size: .83rem; font-weight: 750; }
.group-principles { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.group-principles span { padding: 26px 18px; color: #969289; border-right: 1px solid var(--line); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.group-principles span:last-child { border-right: 0; }

.group-levels { color: #171613; background: var(--paper); }
.group-levels .section-index { color: #8c6a17; }
.level-list { margin-top: 76px; border-top: 1px solid #c8c2b6; }
.level-row { display: grid; grid-template-columns: .35fr 1.1fr .45fr; align-items: center; gap: 40px; padding: 38px 0; border-bottom: 1px solid #c8c2b6; }
.level-code { color: #8c6a17; font-size: 1.02rem; font-weight: 900; letter-spacing: .04em; }
.level-row h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; letter-spacing: -.05em; }
.level-row p { max-width: 670px; margin: 14px 0 0; color: #656159; }
.level-focus { justify-self: end; padding: 8px 12px; border: 1px solid #c0b9aa; border-radius: 999px; color: #5f5b53; font-size: .73rem; font-weight: 800; white-space: nowrap; }

.group-method { background: var(--ink-soft); }
.group-method-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.group-method-heading h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.group-method-cards { border-top: 1px solid var(--line); }
.group-method-card { display: grid; grid-template-columns: 65px 180px 1fr; gap: 28px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.group-method-card > span { color: var(--gold); font-weight: 900; align-self:start; }
.group-method-copy h3 { margin: 0 0 8px; font-size: 1.32rem; letter-spacing: -.035em; }
.group-method-copy p { margin: 0; color: #9f9b92; }
.group-method-visual { position: relative; min-height: 112px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); overflow: hidden; }
.group-method-visual::after { content:""; position:absolute; inset:auto 14px 12px; height:1px; background:rgba(255,255,255,.05); }


.group-difference { background: var(--ink); }
.difference-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 95px; align-items: center; }
.difference-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; aspect-ratio: 1; padding: 34px; border: 1px solid rgba(245,189,46,.5); border-radius: 50%; background: radial-gradient(circle, rgba(245,189,46,.08), transparent 68%); text-align: center; }
.big-word { color: var(--gold); font-size: clamp(4.4rem, 8vw, 7.5rem); font-weight: 900; line-height: .85; letter-spacing: -.055em; }
.difference-visual p { max-width: 190px; margin: 0; color: #b0aba1; font-size: .82rem; font-weight: 800; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.difference-copy h2 { font-size: clamp(3rem, 5.1vw, 5.8rem); }
.difference-copy ul { margin: 44px 0 0; padding: 0; list-style: none; }
.difference-copy li { display: grid; grid-template-columns: .7fr 1fr; gap: 32px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.difference-copy li strong { color: var(--white); }
.difference-copy li span { color: #969289; }

.group-bridge { color: var(--black-on-gold); background: var(--gold); }
.group-bridge-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 64px; }
.group-bridge .section-index { color: #6a5010; }
.group-bridge h2 { font-size: clamp(3rem, 5.5vw, 6rem); }
.group-bridge p:not(.section-index) { max-width: 680px; margin: 24px 0 0; }
.button-dark { color: var(--white); background: var(--ink); white-space: nowrap; }
.button-dark:hover { background: #24200f; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }



/* Short teaching-video proof section */
.reels { background: #0d0d0f; overflow: hidden; }
.reels .section-head > p:last-child { max-width: 610px; }
.reels-shell { margin-top: 70px; }
.reels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.reel-card { appearance: none; width: 100%; padding: 0; color: var(--white); background: transparent; border: 0; text-align: left; cursor: pointer; }
.reel-media { position: relative; display: block; overflow: hidden; aspect-ratio: 9 / 16; border-radius: 22px; background: #151517; border: 1px solid rgba(255,255,255,.10); }
.reel-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 38%); pointer-events: none; }
.reel-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.002); transition: transform .55s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.reel-card:hover .reel-media img { transform: scale(1.035); filter: brightness(.91); }
.reel-play { position: absolute; left: 50%; top: 50%; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; transform: translate(-50%, -50%); color: #111; background: rgba(255,253,247,.92); box-shadow: 0 12px 32px rgba(0,0,0,.22); transition: transform .25s ease, background .25s ease; }
.reel-card:hover .reel-play { transform: translate(-50%, -50%) scale(1.07); background: var(--gold); }
.reel-play span { width: 0; height: 0; margin-left: 4px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.reel-duration { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 5px 8px; border-radius: 999px; color: #fff; background: rgba(0,0,0,.62); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 800; }
.reel-meta { display: grid; gap: 5px; padding: 16px 4px 0; }
.reel-meta > span { color: var(--gold); font-size: .71rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.reel-meta strong { font-size: 1.12rem; letter-spacing: -.025em; }
.reels-swipe { display: none; }

.video-modal[hidden] { display: none; }
body.video-modal-open { overflow: hidden; }
.video-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 22px; }
.video-modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(16px); cursor: pointer; opacity: 0; transition: opacity .3s ease; }
.video-modal-panel { position: relative; z-index: 1; width: min(430px, 92vw); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: #0a0a0b; box-shadow: 0 26px 90px rgba(0,0,0,.55); opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .34s cubic-bezier(.22,1,.36,1), transform .38s cubic-bezier(.22,1,.36,1); }
.video-modal.is-open .video-modal-backdrop { opacity: 1; }
.video-modal.is-open .video-modal-panel { opacity: 1; transform: none; }
.video-modal-top { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 12px 10px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.video-modal-top p { margin: 0; color: #d8d4ca; font-size: .86rem; font-weight: 750; }
.video-modal-close { position: relative; width: 38px; height: 38px; flex: 0 0 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.07); cursor: pointer; }
.video-modal-close span { position: absolute; left: 11px; top: 18px; width: 16px; height: 1.5px; background: #fff; }
.video-modal-close span:first-child { transform: rotate(45deg); }
.video-modal-close span:last-child { transform: rotate(-45deg); }
.video-modal video { display: block; width: 100%; max-height: calc(100dvh - 115px); aspect-ratio: 9 / 16; background: #000; object-fit: contain; }

@media (max-width: 980px) {
  .section { padding: 96px 0; }

  /* Mobile header has one visual state: top, scrolled and menu-open all look identical. */
  .site-header,
  .site-header.scrolled,
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    padding: 12px 0;
    background: #0a0a0b;
    border-color: rgba(255,255,255,.10);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 103;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .menu-button span:not(.sr-only) {
    position: absolute;
    left: 11px;
    top: 50%;
    width: 22px;
    height: 1.5px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: 50% 50%;
    transition: transform .46s cubic-bezier(.22,1,.36,1), opacity .28s ease;
  }
  .menu-button span:nth-of-type(2) { transform: translateY(-4px); }
  .menu-button span:nth-of-type(3) { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(0) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(0) rotate(-45deg); }

  /* Apple-like mobile menu: reveal the panel from the top, behind the fixed header. */
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    padding: max(108px, calc(env(safe-area-inset-top) + 92px)) 32px max(42px, calc(env(safe-area-inset-bottom) + 28px));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #0a0a0b;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    transform: translateY(-18px);
    visibility: hidden;
    pointer-events: none;
    transition:
      clip-path .52s cubic-bezier(.22,1,.36,1),
      -webkit-clip-path .52s cubic-bezier(.22,1,.36,1),
      transform .52s cubic-bezier(.22,1,.36,1),
      visibility 0s linear .52s;
  }
  .site-nav.open {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      clip-path .52s cubic-bezier(.22,1,.36,1),
      -webkit-clip-path .52s cubic-bezier(.22,1,.36,1),
      transform .52s cubic-bezier(.22,1,.36,1),
      visibility 0s linear 0s;
  }
  .site-nav a {
    font-size: 1.65rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: color .2s ease, opacity .34s ease, transform .46s cubic-bezier(.22,1,.36,1);
  }
  .site-nav.open a { opacity: 1; transform: translateY(0); }
  .site-nav.open a:nth-child(1) { transition-delay: .08s; }
  .site-nav.open a:nth-child(2) { transition-delay: .11s; }
  .site-nav.open a:nth-child(3) { transition-delay: .14s; }
  .site-nav.open a:nth-child(4) { transition-delay: .17s; }
  .site-nav.open a:nth-child(5) { transition-delay: .20s; }

  /* On mobile, Pronunciation 2.0 aligns exactly like the other menu items.
     The featured indicator moves to the right so it does not indent the label. */
  .site-nav a.nav-featured {
    display: inline-flex;
    align-items: center;
    width: auto;
    font-size: 1.65rem;
  }
  .site-nav a.nav-featured::before {
    content: none;
  }
  .site-nav a.nav-featured::after {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    margin-left: 9px;
    border-radius: 50%;
    background: var(--gold);
    animation: nav-feature-dot 2.8s ease-in-out infinite;
  }
  .site-nav .nav-cta { font-size: 1rem; margin-top: 12px; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { padding-bottom: 10px; }
  .hero-visual { max-width: 680px; margin: 0 auto; }
  .portrait-frame { height: 650px; }
  .sound-mark { left: 18px; top: 22%; }
  .split-heading, .section-head, .week, .method-grid, .fit-grid, .cohort-grid, .about-grid, .faq-grid, .application-grid { grid-template-columns: 1fr; }
  .split-heading, .method-grid, .fit-grid, .cohort-grid, .about-grid, .faq-grid, .application-grid { gap: 52px; }
  .group-hero-grid, .group-method-grid, .difference-grid { grid-template-columns: 1fr; }
  .group-hero-copy { padding-bottom: 20px; }
  .group-hero-visual { width: min(680px, 100%); margin-inline: auto; }
  .group-photo { min-height: 0; height: auto; }
  .group-photo img { min-height: 0; height: 100%; }
  .group-stamp { left: 18px; }
  .group-method-grid, .difference-grid { gap: 58px; }
  .difference-visual { max-width: 520px; }
  .section-head h2, .section-head > p:last-child { grid-column: 1; }
  .week { row-gap: 28px; }
  .week-copy { grid-template-columns: 1fr 1fr; }
  .week-number { font-size: 6rem; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .cohort-number { font-size: 15rem; }
  .cohort-grid { grid-template-columns: .65fr 1.35fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, var(--max)); }
  .section { padding: 78px 0; }
  .brand span { font-size: .92rem; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-copy { padding-top: 34px; }
  .hero h1 { font-size: clamp(3.3rem, 15.3vw, 5.2rem); }
  .hero-lead { margin-top: 25px; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .portrait-frame { height: 475px; border-radius: 150px 150px 16px 16px; }
  .portrait-frame img { object-position: 53% center; }
  .sound-mark { left: -4px; top: 24%; transform: scale(.85); -webkit-transform: scale(.85); }
  .sound-mark i { -webkit-animation-play-state: running !important; animation-play-state: running !important; }
  .facts { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .facts > div, .facts > div:not(:first-child) { padding: 22px 16px 25px 0; }
  .facts > div:nth-child(even) { padding-left: 18px; border-right: 0; }
  .facts > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  h2 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .contrast-line { display: flex !important; grid-template-columns: none; flex-direction: column; align-items: stretch; gap: 0; margin-top: 55px; padding: 28px 25px; }
  .contrast-line > div:not(.contrast-arrow) { width: 100%; }
  .contrast-line > div:first-child { padding-bottom: 26px; }
  .contrast-arrow { position: static !important; display: flex; align-items: center; justify-content: center; align-self: flex-start; width: 48px; height: 48px; margin: 0 0 26px; border: 1px solid rgba(245,189,46,.42); border-radius: 50%; font-size: 0; transform: none !important; }
  .contrast-arrow::after { content: "↓"; color: var(--gold); font-size: 1.8rem; line-height: 1; }
  .week { padding: 42px 0; }
  .week-copy { grid-template-columns: 1fr; }
  .week-copy > p:not(.week-label), .week ul { grid-column: 1; }
  .week-copy > p:not(.week-label) { margin-top: 18px; }
  .method-step { grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
  .p-method-visual { grid-column: 2; min-height: 98px; max-width: 250px; }
  .method-copy { grid-column: 2; }
  .skill-grid { grid-template-columns: 1fr; }
  .skill { min-height: 220px; }
  .skill h3 { margin-top: 55px; }
  .fit-columns { grid-template-columns: 1fr; }
  .cohort-grid { grid-template-columns: 1fr; gap: 38px; }
  .cohort-number { font-size: 12rem; }
  .about-image { width: calc(100% - 20px); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .application-form { padding: 24px 18px; }
  .application::after { font-size: 14rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .group-hero { min-height: auto; padding-top: 112px; }
  .group-hero h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .group-hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .group-photo { min-height: 0; height: auto; }
  .group-photo img { min-height: 0; height: 100%; }
  .group-stamp { left: 10px; bottom: 28px; width: 108px; height: 108px; }
  .group-principles { grid-template-columns: 1fr 1fr; }
  .group-principles span:nth-child(2) { border-right: 0; }
  .group-principles span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .level-row { grid-template-columns: 1fr; gap: 12px; padding: 30px 0; }
  .level-focus { justify-self: start; margin-top: 8px; }
  .group-method-card { grid-template-columns: 42px 1fr; gap: 18px; align-items:start; }
  .group-method-visual { grid-column: 2; min-height: 96px; max-width: 240px; }
  .group-method-copy { grid-column: 2; }

  .difference-visual { width: min(100%, 360px); margin-inline: auto; padding: 28px; }
  .big-word { font-size: clamp(4.2rem, 23vw, 6rem); }
  .difference-copy li { grid-template-columns: 1fr; gap: 6px; }
  .group-bridge-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.page-enter .hero-copy > *, body.page-enter .hero-visual, body.page-enter .facts > div,
  body.page-enter .group-hero-copy > *, body.page-enter .group-hero-visual, body.page-enter .group-principles > span { opacity: 1; transform: none; }
  body.page-transition-ready .hero-copy > *, body.page-transition-ready .hero-visual, body.page-transition-ready .facts > div,
  body.page-transition-ready .group-hero-copy > *, body.page-transition-ready .group-hero-visual, body.page-transition-ready .group-principles > span { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .sound-mark i { -webkit-animation: wave-gentle 1.5s ease-in-out infinite !important; animation: wave-gentle 1.5s ease-in-out infinite !important; }
}

@-webkit-keyframes wave-gentle {
  0%, 100% { -webkit-transform: scaleY(.72); transform: scaleY(.72); }
  50% { -webkit-transform: scaleY(1); transform: scaleY(1); }
}
@keyframes wave-gentle {
  0%, 100% { transform: scaleY(.72); }
  50% { transform: scaleY(1); }
}


@media (max-width: 700px) {
  .reels-shell { width: 100%; margin-top: 48px; }
  .reels-grid { display: flex; gap: 14px; overflow-x: auto; padding: 0 16px 12px; scroll-snap-type: x mandatory; scroll-padding-left: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel-card { flex: 0 0 min(78vw, 315px); scroll-snap-align: start; }
  .reel-media { border-radius: 20px; }
  .reel-play { width: 54px; height: 54px; }
  .reel-meta { padding-inline: 2px; }
  .reels-swipe { display: flex; align-items: center; justify-content: flex-end; gap: 8px; width: calc(100% - 32px); margin: 4px auto 0; color: #77736b; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .reels-swipe span { color: var(--gold); font-size: 1rem; }
  .video-modal { padding: 0; align-items: stretch; }
  .video-modal-panel { width: 100%; height: 100dvh; border: 0; border-radius: 0; display: flex; flex-direction: column; }
  .video-modal-top { padding-top: max(10px, env(safe-area-inset-top)); }
  .video-modal video { flex: 1; max-height: none; width: 100%; height: 100%; aspect-ratio: auto; }
}

/* ─────────────────────────────────────────────────────────────
   Pronunciation 2.0 Easter egg · v16
   The marker is intentionally tiny; the 28px hit-area keeps it usable.
   ───────────────────────────────────────────────────────────── */
.egg-host {
  position: relative;
  z-index: 3;
  min-height: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.egg-trigger {
  position: relative;
  width: 30px;
  height: 30px;
  margin: -8px 8px -22px 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.egg-trigger.is-visible { opacity: 1; transform: scale(1); }
.egg-trigger::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245,189,46,.18);
  animation: egg-breathe 2.7s ease-in-out infinite;
}
.egg-trigger:hover::before,
.egg-trigger:focus-visible::before {
  box-shadow: 0 0 0 8px rgba(245,189,46,.09), 0 0 20px rgba(245,189,46,.35);
}
.egg-trigger:focus-visible { outline: 1px solid rgba(245,189,46,.6); outline-offset: 2px; }
@keyframes egg-breathe {
  0%, 100% { opacity: .22; transform: scale(.72); box-shadow: 0 0 0 0 rgba(245,189,46,0); }
  50% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 6px rgba(245,189,46,.07); }
}

.egg-modal[hidden] { display: none; }
.egg-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.egg-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.egg-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4,4,5,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.egg-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  overflow: hidden;
  padding: 48px 42px 38px;
  border: 1px solid rgba(245,189,46,.25);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 8%, rgba(245,189,46,.12), transparent 34%),
    #111113;
  box-shadow: 0 28px 100px rgba(0,0,0,.58);
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .48s cubic-bezier(.22,1,.36,1);
}
.egg-modal.is-open .egg-modal-panel { transform: translateY(0) scale(1); }
.egg-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
}
.egg-modal-close span {
  position: absolute;
  left: 11px;
  top: 18px;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}
.egg-modal-close span:first-child { transform: rotate(45deg); }
.egg-modal-close span:last-child { transform: rotate(-45deg); }
.egg-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.egg-modal h2 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 4.4rem);
  letter-spacing: -.065em;
}
.egg-modal h2 span { color: inherit; font-family: inherit; }
.egg-copy {
  max-width: 390px;
  margin: 20px auto 0;
  color: #b5b0a7;
  line-height: 1.65;
}
.egg-code {
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px dashed rgba(245,189,46,.52);
  border-radius: 14px;
  background: rgba(245,189,46,.055);
  color: var(--gold);
  font-size: clamp(1.28rem, 5vw, 1.72rem);
  font-weight: 900;
  letter-spacing: .08em;
}
.egg-expiry {
  min-height: 1.25em;
  margin: 12px 0 0;
  color: #858077;
  font-size: .8rem;
}
.egg-whatsapp { width: 100%; margin-top: 22px; }
.egg-limit-note {
  margin: 18px 0 0;
  color: #68645e;
  font-size: .72rem;
  line-height: 1.5;
}
body.egg-modal-open { overflow: hidden; }

.egg-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.egg-confetti-piece {
  position: absolute;
  top: -18px;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  border-radius: 2px;
  background: var(--c);
  opacity: 0;
  transform: translate3d(0,0,0) rotate(0deg);
  animation: egg-confetti-fall var(--d) cubic-bezier(.2,.65,.3,1) var(--delay) forwards;
}
@keyframes egg-confetti-fall {
  0% { opacity: 0; transform: translate3d(0,-10px,0) rotate(0deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--drift), 570px, 0) rotate(var(--rot)); }
}

@media (max-width: 700px) {
  .egg-host { width: calc(100% - 32px); }
  .egg-trigger { margin-right: 0; }
  .egg-modal { padding: 16px; }
  .egg-modal-panel { padding: 46px 24px 30px; border-radius: 22px; }
  .egg-modal h2 { font-size: clamp(2.65rem, 14vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .egg-trigger::before { animation: none; opacity: .75; transform: none; }
  .egg-modal-panel, .egg-trigger { transition: none; }
  .egg-confetti-piece { animation: none; display: none; }
}


/* v24 · pronunciation method motion */
.p-method-listen { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 16px; }
.p-listen-ear { position: relative; width: 52px; height: 52px; border-radius: 50%; background: rgba(245,189,46,.12); border: 1px solid rgba(245,189,46,.35); }
.p-listen-ear::before { content:""; position:absolute; left: 20px; top: 10px; width: 14px; height: 28px; border: 3px solid #2c2410; border-left: 0; border-radius: 0 18px 18px 0; transform: rotate(8deg); }
.p-listen-ear::after { content:""; position:absolute; left: 24px; top: 18px; width: 6px; height: 12px; border-right: 2px solid #2c2410; border-radius: 0 8px 8px 0; }
.p-listen-waves { display:flex; gap: 8px; align-items:flex-end; height: 50px; padding-right: 18px; }
.p-listen-waves i { display:block; width: 12px; height: 18px; border-radius: 999px; background: rgba(24,19,6,.18); -webkit-animation: p-listen-wave 1.8s ease-in-out infinite; animation: p-listen-wave 1.8s ease-in-out infinite; }
.p-listen-waves i:nth-child(2){ animation-delay: .2s; }
.p-listen-waves i:nth-child(3){ animation-delay: .4s; }
.p-listen-scan { position:absolute; left: 72px; right: 18px; top: 18px; height: 2px; background: linear-gradient(90deg, rgba(245,189,46,0), rgba(245,189,46,.8), rgba(245,189,46,0)); }
.p-listen-scan::after { content:""; position:absolute; top:50%; left:0; width: 34%; height: 6px; border-radius:999px; background: var(--gold); box-shadow: 0 0 16px rgba(245,189,46,.35); transform: translateY(-50%); -webkit-animation: p-listen-scan 2.8s ease-in-out infinite; animation: p-listen-scan 2.8s ease-in-out infinite; }
@keyframes p-listen-wave { 0%,100%{ height:18px; background:rgba(24,19,6,.15);} 50%{ height:42px; background:rgba(245,189,46,.65);} }
@keyframes p-listen-scan { 0%,100%{ left:0; opacity:.3; } 50%{ left:64%; opacity:1; } }
.p-method-build { padding: 16px; display:grid; gap: 10px; }
.p-build-track { position:relative; height: 14px; border-radius: 999px; background: rgba(24,19,6,.08); overflow:hidden; }
.p-build-track b { display:block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, rgba(245,189,46,.3), rgba(245,189,46,.95)); -webkit-animation: p-build-fill 4.2s ease-in-out infinite; animation: p-build-fill 4.2s ease-in-out infinite; }
.p-build-track:nth-child(2) b { animation-delay: .35s; }
.p-build-track:nth-child(3) b { animation-delay: .7s; }
.p-build-tags { display:flex; gap: 7px; flex-wrap: wrap; padding-top: 4px; }
.p-build-tags em { font-style: normal; font-size: .76rem; font-weight: 800; padding: 6px 9px; border-radius: 999px; color: #3b2a00; background: rgba(245,189,46,.22); border: 1px solid rgba(245,189,46,.35); -webkit-animation: p-build-tag 4.2s ease-in-out infinite; animation: p-build-tag 4.2s ease-in-out infinite; }
.p-build-tags em:nth-child(2){ animation-delay: .35s; }
.p-build-tags em:nth-child(3){ animation-delay: .7s; }
@keyframes p-build-fill { 0%,100%{ width: 18%; opacity: .35; } 32%,72%{ width: 100%; opacity: 1; } }
@keyframes p-build-tag { 0%,100%{ transform: translateY(0); } 38%,58%{ transform: translateY(-2px); box-shadow: 0 8px 14px rgba(245,189,46,.16); } }
.p-method-fix { display:flex; align-items:center; justify-content:center; gap: 12px; padding: 16px; }
.p-fix-bubble { position: relative; width: 56px; height: 42px; border-radius: 14px; border: 1px solid rgba(24,19,6,.1); background: rgba(255,255,255,.32); }
.p-fix-bubble::before { content:""; position:absolute; left: 12px; right: 12px; top: 13px; height: 5px; border-radius: 999px; background: rgba(24,19,6,.18); box-shadow: 0 10px 0 rgba(24,19,6,.12); }
.p-fix-bubble::after { content:""; position:absolute; left: 13px; bottom: -6px; width: 12px; height: 12px; transform: rotate(45deg); background: inherit; border-right: 1px solid rgba(24,19,6,.1); border-bottom: 1px solid rgba(24,19,6,.1); }
.p-fix-wrong { -webkit-animation: p-fix-wrong 4.2s ease-in-out infinite; animation: p-fix-wrong 4.2s ease-in-out infinite; }
.p-fix-right { background: rgba(245,189,46,.18); border-color: rgba(245,189,46,.36); -webkit-animation: p-fix-right 4.2s ease-in-out infinite; animation: p-fix-right 4.2s ease-in-out infinite; }
.p-fix-right::before { background: rgba(245,189,46,.82); box-shadow: 0 10px 0 rgba(245,189,46,.34); }
.p-fix-arrow { position: relative; width: 26px; height: 2px; background: linear-gradient(90deg, rgba(245,189,46,.2), rgba(245,189,46,.95)); }
.p-fix-arrow::after { content:""; position:absolute; right:-1px; top:50%; width:8px; height:8px; border-top: 2px solid var(--gold); border-right:2px solid var(--gold); transform: translateY(-50%) rotate(45deg); }
@keyframes p-fix-wrong { 0%,18%,100%{ transform: translateX(0); opacity:.42; } 24%,36%{ transform: translateX(-4px); opacity:1; } }
@keyframes p-fix-right { 0%,40%,100%{ transform: translateY(3px); opacity:.35; box-shadow:none; } 52%,78%{ transform: translateY(0); opacity:1; box-shadow:0 0 18px rgba(245,189,46,.2);} }
@media(max-width:700px){ .p-method-listen { grid-template-columns: 46px 1fr; gap: 12px; padding: 14px; } .p-listen-ear { width: 44px; height: 44px; } .p-listen-ear::before { left:17px; top:8px; width:12px; height:24px; } .p-listen-ear::after { left:21px; top:15px; } .p-listen-waves { gap: 7px; height: 42px; padding-right: 12px; } .p-listen-waves i { width: 10px; } }


/* v22 · group class motion */
.group-class-signal { position: relative; z-index: 2; width: min(380px, calc(100% - 36px)); margin: 0 auto 18px; padding: 12px 14px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(13,13,14,.7); backdrop-filter: blur(10px); }
.group-class-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #a29d94; margin-bottom: 10px; }
.group-class-strip { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; overflow: hidden; border-radius: 16px; }
.signal-tile { position: relative; z-index: 2; height: 56px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); background: rgba(14,14,16,.72); overflow: hidden; display: grid; place-items: center; color: #8e887f; font-weight: 900; }
.signal-tile b { position: relative; z-index: 3; font-size: .82rem; }
.signal-tile span { position: absolute; z-index: 3; inset: auto 12px 12px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.12); }
.signal-tile::before { content:""; position: absolute; z-index: 1; inset: 0; opacity: 0; background: radial-gradient(circle at 50% 78%, rgba(245,189,46,.10), rgba(245,189,46,0) 58%); -webkit-animation: group-signal-active 8s ease-in-out infinite; animation: group-signal-active 8s ease-in-out infinite; }
.signal-tile::after { content:""; position:absolute; z-index: 2; inset:auto 12px 12px; height:5px; width:34%; border-radius:999px; background: var(--gold); opacity:0; -webkit-animation: group-signal-bar 8s ease-in-out infinite; animation: group-signal-bar 8s ease-in-out infinite; }
.signal-tile:nth-child(2)::before,.signal-tile:nth-child(2)::after { animation-delay: 2s; }
.signal-tile:nth-child(3)::before,.signal-tile:nth-child(3)::after { animation-delay: 4s; }
.signal-tile:nth-child(4)::before,.signal-tile:nth-child(4)::after { animation-delay: 6s; }
.signal-track { position: absolute; z-index: 0; left: 14%; right: 14%; top: 72%; height: 2px; transform: translateY(-50%); background: linear-gradient(90deg, rgba(245,189,46,0), rgba(245,189,46,.18), rgba(245,189,46,0)); pointer-events: none; opacity: .55; }
.signal-track::after { content:""; position:absolute; top:50%; left:0; width: 18%; height:4px; border-radius:999px; background: var(--gold); box-shadow: 0 0 6px rgba(245,189,46,.14); transform: translate(-8%, -50%); -webkit-animation: group-track-run 8s ease-in-out infinite; animation: group-track-run 8s ease-in-out infinite; }

@keyframes group-stamp-float { 0%,100% { transform: rotate(-9deg) translateY(0); } 50% { transform: rotate(-9deg) translateY(-5px); } }
@keyframes group-signal-active { 0%,18%,100% { opacity:0; } 4%,14% { opacity:1; } }
@keyframes group-signal-bar { 0%,18%,100% { opacity:0; transform:scaleX(.35); transform-origin:left center; } 6%,14% { opacity:1; transform:scaleX(1); } }
@keyframes group-track-run { 0%,10% { left: 0; opacity: .15; } 14% { left: 0; opacity: .95; } 24% { left: 24%; opacity: .2; } 38% { left: 24%; opacity: .95; } 48% { left: 49%; opacity: .2; } 62% { left: 49%; opacity: .95; } 72% { left: 74%; opacity: .2; } 86% { left: 74%; opacity: .95; } 100% { left: 74%; opacity: .15; } }
.method-know { display:grid; grid-template-columns: 46px 1fr; gap: 12px; align-items:center; padding: 16px; }
.method-avatar { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(245,189,46,.3), rgba(245,189,46,.07) 55%, transparent 56%), #1a191b; border:1px solid rgba(245,189,46,.25); position:relative; }
.method-avatar::before { content:""; position:absolute; left:50%; top:11px; width:16px; height:16px; border-radius:50%; background:rgba(245,189,46,.76); transform:translateX(-50%); }
.method-avatar::after { content:""; position:absolute; left:50%; bottom:8px; width:24px; height:12px; border-radius:14px 14px 10px 10px; background:rgba(245,189,46,.45); transform:translateX(-50%); }
.method-lines { display:grid; gap: 8px; }
.method-lines i { display:block; height:8px; border-radius:999px; background:rgba(255,255,255,.1); overflow:hidden; }
.method-lines i::after { content:""; display:block; width:0; height:100%; border-radius:inherit; background: linear-gradient(90deg, rgba(245,189,46,.35), rgba(245,189,46,.95)); -webkit-animation: method-fill 3.8s ease-in-out infinite; animation: method-fill 3.8s ease-in-out infinite; }
.method-lines i:nth-child(2)::after { animation-delay: .4s; }
.method-lines i:nth-child(3)::after { animation-delay: .8s; }
.method-badges { position:absolute; right: 16px; bottom: 16px; display:flex; gap:8px; }
.method-badges em { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); position:relative; -webkit-animation: method-pop 3.8s ease-in-out infinite; animation: method-pop 3.8s ease-in-out infinite; }
.method-badges em::before { content:""; position:absolute; inset: 5px 4px 6px 4px; border-right:2px solid var(--gold); border-bottom:2px solid var(--gold); transform: rotate(35deg); opacity:0; }
.method-badges em:nth-child(2){ animation-delay: .55s; }
.method-badges em:nth-child(1)::before, .method-badges em:nth-child(2)::before { -webkit-animation: method-check 3.8s ease-in-out infinite; animation: method-check 3.8s ease-in-out infinite; }
.method-badges em:nth-child(2)::before { animation-delay: .55s; }
@keyframes method-fill { 0%,100%{ width:0; opacity:.2;} 22%,72%{ width:100%; opacity:1;} }
@keyframes method-pop { 0%,100%{ transform:scale(.88); background:rgba(255,255,255,.06);} 25%,70%{ transform:scale(1); background:rgba(245,189,46,.16);} }
@keyframes method-check { 0%,20%,100%{ opacity:0;} 28%,72%{ opacity:1;} }
.method-place { position:relative; padding: 16px; }
.place-person { position:absolute; left: 18px; top: 50%; width: 34px; height: 34px; border-radius: 50%; background: rgba(245,189,46,.8); transform: translateY(-50%); box-shadow: 0 0 14px rgba(245,189,46,.25); -webkit-animation: place-person-move 6s ease-in-out infinite; animation: place-person-move 6s ease-in-out infinite; }
.place-person::after { content:""; position:absolute; left:50%; bottom:-14px; width: 28px; height: 16px; border-radius: 14px 14px 8px 8px; background: rgba(245,189,46,.38); transform: translateX(-50%); }
.place-path { position:absolute; left: 58px; right: 92px; top: 50%; height: 2px; background: linear-gradient(90deg, rgba(245,189,46,.5), rgba(245,189,46,.08)); transform: translateY(-50%); }
.place-groups { position:absolute; right: 14px; top: 50%; width: 72px; transform: translateY(-50%); display:grid; gap:8px; }
.place-groups b { display:block; height: 22px; border-radius: 999px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); -webkit-animation: place-groups 6s ease-in-out infinite; animation: place-groups 6s ease-in-out infinite; }
.place-groups b:nth-child(2) { animation-delay: .35s; }
.place-groups b:nth-child(3) { animation-delay: .7s; }
@keyframes place-person-move { 0%,12%{ left:18px; opacity:1;} 44%,62%{ left:112px; opacity:1;} 100%{ left:112px; opacity:1;} }
@keyframes place-groups { 0%,30%,100%{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.08);} 42%,72%{ background:rgba(245,189,46,.18); border-color:rgba(245,189,46,.36);} }
.method-correct { display:flex; align-items:center; justify-content:center; gap: 10px; padding: 16px; }
.speech { position: relative; width: 54px; height: 40px; border-radius: 14px; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); }
.speech::before { content:""; position:absolute; left: 12px; right: 12px; top: 13px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.18); box-shadow: 0 10px 0 rgba(255,255,255,.12); }
.speech::after { content:""; position:absolute; left: 12px; bottom: -6px; width: 12px; height: 12px; transform: rotate(45deg); background: inherit; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.speech-wrong { -webkit-animation: wrong-bubble 4.6s ease-in-out infinite; animation: wrong-bubble 4.6s ease-in-out infinite; }
.speech-right { background: rgba(245,189,46,.1); border-color: rgba(245,189,46,.35); -webkit-animation: right-bubble 4.6s ease-in-out infinite; animation: right-bubble 4.6s ease-in-out infinite; }
.speech-right::before { background: rgba(245,189,46,.7); box-shadow: 0 10px 0 rgba(245,189,46,.32); }
.speech-arrow { width: 24px; height: 2px; background: linear-gradient(90deg, rgba(245,189,46,.25), rgba(245,189,46,.95)); position: relative; }
.speech-arrow::after { content:""; position:absolute; right:-1px; top:50%; width:8px; height:8px; border-top:2px solid var(--gold); border-right:2px solid var(--gold); transform: translateY(-50%) rotate(45deg); }
@keyframes wrong-bubble { 0%,18%,100%{ transform: translateX(0); opacity:.45; } 24%,36%{ transform: translateX(-4px); opacity:1; } }
@keyframes right-bubble { 0%,38%,100%{ transform: translateY(3px); opacity:.35; box-shadow:none; } 48%,80%{ transform: translateY(0); opacity:1; box-shadow:0 0 18px rgba(245,189,46,.18);} }
@media(max-width:700px){
  .group-class-signal { width: calc(100% - 20px); margin-bottom: 14px; padding: 10px 12px 12px; }
  .group-class-strip { gap: 8px; }
  .signal-tile { height: 48px; border-radius: 14px; }
  .signal-tile b { font-size: .75rem; }
  .signal-track { left: 16%; right: 16%; top: 74%; }
  .signal-track::after { width: 14%; box-shadow: 0 0 5px rgba(245,189,46,.12); }
  .group-stamp{left:auto!important;right:8px!important;top:auto!important;bottom:10px!important;width:92px!important;height:92px!important;}
}


/* v27 · optional English level + Pronunciation 2.0 eligibility tests */
.test-prompt { padding: 0 0 26px; background: var(--ink); }
.test-prompt-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 42px; align-items: center; padding: 28px 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: linear-gradient(135deg, rgba(245,189,46,.09), rgba(255,255,255,.025) 44%, rgba(255,255,255,.015)); }
.test-prompt-kicker { margin: 0 0 8px; color: var(--gold); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.test-prompt h2, .eligibility-prompt h3 { margin: 0; letter-spacing: -.045em; line-height: 1; }
.test-prompt h2 { font-size: clamp(2.2rem, 4.7vw, 4.6rem); }
.test-prompt h2 span, .eligibility-prompt h3 span { color: #8b877f; }
.test-prompt-inner > div > p:not(.test-prompt-kicker) { max-width: 720px; margin: 14px 0 0; color: #aaa69d; }
.test-prompt-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.test-prompt-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #aaa69d; font-size: .72rem; font-weight: 800; }
.test-launch { white-space: nowrap; min-width: 180px; }

.eligibility-prompt { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 36px; align-items: center; margin-top: 34px; padding: 26px 28px; border: 1px solid rgba(24,19,6,.2); border-radius: 22px; background: rgba(255,255,255,.23); }
.eligibility-prompt h3 { font-size: clamp(2rem, 4vw, 3.8rem); color: #171613; }
.eligibility-prompt > div > p:not(.test-prompt-kicker) { max-width: 720px; margin: 12px 0 0; color: rgba(24,19,6,.72); }
.eligibility-prompt .test-prompt-kicker { color: #73550d; }
.eligibility-prompt .test-prompt-meta span { border-color: rgba(24,19,6,.2); color: rgba(24,19,6,.66); }

.form-level-field { min-width: 0; }
.form-level-field label { margin-bottom: 0; }
.form-test-link { display: inline-flex; margin-top: 8px; padding: 0; border: 0; background: transparent; color: #d9a91f; font: inherit; font-size: .75rem; font-weight: 850; cursor: pointer; text-align: left; }
.form-test-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.level-test-modal[hidden] { display: none; }
.level-test-modal { position: fixed; inset: 0; z-index: 10050; display: grid; place-items: center; padding: 18px; }
.level-test-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(8px); cursor: pointer; }
.level-test-panel { position: relative; z-index: 1; width: min(760px, 100%); max-height: min(90vh, 860px); overflow: auto; border: 1px solid #39352e; border-radius: 26px; background: #0f0f11; color: #f4f1e8; box-shadow: 0 30px 100px rgba(0,0,0,.55); transform: translateY(14px) scale(.985); opacity: 0; transition: opacity .22s ease, transform .28s cubic-bezier(.2,.7,.2,1); }
.level-test-modal.is-open .level-test-panel { transform: none; opacity: 1; }
.level-test-close { position: sticky; z-index: 5; top: 14px; float: right; width: 42px; height: 42px; margin: 14px 14px 0 0; border: 1px solid #3a3630; border-radius: 50%; background: #171719; color: #fff; font-size: 1.2rem; cursor: pointer; }
.level-test-shell { padding: 34px 34px 36px; clear: both; }
.level-test-kicker { margin: 0 0 8px; color: var(--gold); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.level-test-shell h2 { margin: 0; font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -.055em; line-height: .96; }
.level-test-shell h2 span { color: #7f7a72; }
.level-test-lead { max-width: 650px; margin: 18px 0 0; color: #aaa59c; line-height: 1.65; }
.level-test-notes { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 26px; }
.level-test-notes span { padding: 7px 10px; border: 1px solid #34302b; border-radius: 999px; color: #a9a49b; font-size: .72rem; font-weight: 800; }
.level-test-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.level-test-progress-wrap { margin: 2px 0 30px; }
.level-test-progress-meta { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 9px; color: #8f8a82; font-size: .75rem; font-weight: 800; }
.level-test-progress { height: 5px; border-radius: 999px; overflow: hidden; background: #29272a; }
.level-test-progress span { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--gold); transition: width .25s ease; }
.level-test-stage { min-height: 350px; }
.test-question-type { margin: 0 0 10px; color: var(--gold); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.test-question { margin: 0 0 24px; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.25; letter-spacing: -.025em; }
.test-stimulus { margin: 0 0 22px; padding: 18px 20px; border: 1px solid #312e2a; border-radius: 16px; background: #151517; color: #c8c3bb; line-height: 1.7; }
.test-audio-box { display: flex; gap: 12px; align-items: center; margin: 0 0 22px; padding: 15px; border: 1px solid #363129; border-radius: 16px; background: linear-gradient(135deg, rgba(245,189,46,.08), rgba(255,255,255,.02)); }
.test-audio-button { flex: 0 0 auto; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--gold); color: #17130a; font-size: 1.05rem; font-weight: 900; cursor: pointer; }
.test-audio-meta strong, .test-audio-meta span { display: block; }
.test-audio-meta strong { font-size: .9rem; }
.test-audio-meta span { margin-top: 3px; color: #8d887f; font-size: .75rem; }
.test-options { display: grid; gap: 10px; }
.test-option { width: 100%; padding: 15px 16px; border: 1px solid #38342f; border-radius: 14px; background: #171719; color: #f3efe7; text-align: left; font: inherit; line-height: 1.4; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.test-option:hover { border-color: #6a592b; background: #1b1a19; transform: translateY(-1px); }
.test-option:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.test-eligibility-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.test-eligibility-options .test-option { text-align: center; font-weight: 850; }
.test-skip { margin-top: 14px; padding: 0; border: 0; background: transparent; color: #8e8980; font: inherit; font-size: .78rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.test-result-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; height: 110px; margin: 10px 0 20px; padding: 12px; border: 1px solid rgba(245,189,46,.42); border-radius: 50%; background: rgba(245,189,46,.09); color: var(--gold); font-size: 2rem; font-weight: 950; letter-spacing: -.05em; }
.test-result-title { margin: 0; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.045em; }
.test-result-copy { max-width: 650px; margin: 14px 0 0; color: #aaa59c; line-height: 1.65; }
.test-result-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 24px; }
.test-result-skill { padding: 14px; border: 1px solid #302d29; border-radius: 14px; background: #151517; }
.test-result-skill span, .test-result-skill strong { display: block; }
.test-result-skill span { color: #8f8a82; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.test-result-skill strong { margin-top: 6px; font-size: 1.08rem; }
.test-result-note { margin-top: 18px; padding: 14px 16px; border-left: 2px solid var(--gold); background: rgba(245,189,46,.055); color: #a9a49b; font-size: .82rem; line-height: 1.6; }
.test-result-routing { margin-top: 22px; padding: 18px; border: 1px solid #34302b; border-radius: 16px; background: #141416; }
.test-result-routing strong { display: block; margin-bottom: 5px; }
.test-result-routing p { margin: 0; color: #969188; line-height: 1.55; }
.test-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.level-test-modal-open { overflow: hidden; }

@media(max-width: 760px) {
  .test-prompt-inner, .eligibility-prompt { grid-template-columns: 1fr; gap: 22px; padding: 23px 20px; }
  .test-launch { justify-self: start; width: 100%; }
  .level-test-modal { padding: 0; align-items: end; }
  .level-test-panel { width: 100%; max-height: 94dvh; border-radius: 24px 24px 0 0; }
  .level-test-shell { padding: 25px 18px 30px; }
  .level-test-close { top: 10px; margin: 10px 10px 0 0; }
  .level-test-stage { min-height: 330px; }
  .test-result-grid { grid-template-columns: 1fr 1fr; }
  .test-eligibility-options { grid-template-columns: 1fr; }
  .test-audio-box { align-items: flex-start; }
}
.level-test-panel .button-ghost { color: #eee9df; background: #19191b; border: 1px solid #3a3630; }
.level-test-panel .button-ghost:hover { background: #222124; }
.form-test-link.is-emphasized { padding: 7px 10px; border-radius: 10px; background: rgba(245,189,46,.1); color: var(--gold); text-decoration: none; }
