: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 1fr; gap: 24px; padding: 35px 0; border-bottom: 1px solid rgba(24,19,6,.3); }
.method-step > span { font-weight: 900; }
.method-step h3 { margin: 0 0 9px; font-size: 1.55rem; letter-spacing: -.035em; }
.method-step p { margin: 0; color: rgba(24,19,6,.72); }

.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; left: -48px; bottom: 68px; display: grid; place-items: center; width: 132px; height: 132px; color: var(--black-on-gold); background: var(--gold); border-radius: 50%; transform: rotate(-9deg); }
.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 .75fr 1fr; gap: 28px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.group-method-card > span { color: var(--gold); font-weight: 900; }
.group-method-card h3 { margin: 0; font-size: 1.32rem; letter-spacing: -.035em; }
.group-method-card p { margin: 0; color: #9f9b92; }

.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; }
  .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: 20px; }
  .group-method-card p { 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; }
}

/* v21 · group-class turn-taking animation */
.group-photo-wrap { position: relative; }

.group-turns {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  margin: 0 0 14px auto;
  padding: 14px 16px 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(17,16,14,.72);
}
.group-turns-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
  color: #8f8b82;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.group-turns-meta strong {
  color: var(--gold);
  font-size: inherit;
  letter-spacing: .11em;
}
.group-turns-meta span { white-space: nowrap; }
.group-turns-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  isolation: isolate;
}
.group-turns-track::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.10);
}
.group-participant {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 43px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #77736c;
  background: #141310;
  -webkit-animation: group-speaker-card 6.4s ease-in-out var(--turn-delay) infinite;
  animation: group-speaker-card 6.4s ease-in-out var(--turn-delay) infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.group-participant b {
  font-size: .69rem;
  letter-spacing: .04em;
}
.group-participant i {
  position: relative;
  display: block;
  height: 12px;
  opacity: .55;
  background:
    linear-gradient(currentColor,currentColor) 0 50%/2px 4px no-repeat,
    linear-gradient(currentColor,currentColor) 5px 50%/2px 8px no-repeat,
    linear-gradient(currentColor,currentColor) 10px 50%/2px 5px no-repeat,
    linear-gradient(currentColor,currentColor) 15px 50%/2px 10px no-repeat;
  transform-origin: left center;
  -webkit-animation: group-speaker-wave 6.4s ease-in-out var(--turn-delay) infinite;
  animation: group-speaker-wave 6.4s ease-in-out var(--turn-delay) infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.group-talk-pulse {
  position: absolute;
  z-index: -1;
  left: 7%;
  top: 50%;
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,189,46,.95), transparent);
  box-shadow: 0 0 10px rgba(245,189,46,.25);
  -webkit-animation: group-talk-travel 6.4s linear infinite;
  animation: group-talk-travel 6.4s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
@-webkit-keyframes group-speaker-card {
  0%, 18% { color: var(--gold); border-color: rgba(245,189,46,.55); background: rgba(245,189,46,.08); box-shadow: inset 0 0 0 1px rgba(245,189,46,.04); }
  24%, 100% { color: #77736c; border-color: rgba(255,255,255,.12); background: #141310; box-shadow: none; }
}
@keyframes group-speaker-card {
  0%, 18% { color: var(--gold); border-color: rgba(245,189,46,.55); background: rgba(245,189,46,.08); box-shadow: inset 0 0 0 1px rgba(245,189,46,.04); }
  24%, 100% { color: #77736c; border-color: rgba(255,255,255,.12); background: #141310; box-shadow: none; }
}
@-webkit-keyframes group-speaker-wave {
  0%, 18% { opacity: 1; -webkit-transform: scaleY(1.18); transform: scaleY(1.18); }
  24%, 100% { opacity: .48; -webkit-transform: scaleY(.72); transform: scaleY(.72); }
}
@keyframes group-speaker-wave {
  0%, 18% { opacity: 1; transform: scaleY(1.18); }
  24%, 100% { opacity: .48; transform: scaleY(.72); }
}
@-webkit-keyframes group-talk-travel {
  0% { -webkit-transform: translateX(0); transform: translateX(0); opacity: 0; }
  8% { opacity: .9; }
  92% { opacity: .9; }
  100% { -webkit-transform: translateX(310%); transform: translateX(310%); opacity: 0; }
}
@keyframes group-talk-travel {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: .9; }
  92% { opacity: .9; }
  100% { transform: translateX(310%); opacity: 0; }
}
@media (max-width: 700px) {
  .group-stamp { left:auto!important; right:10px!important; top:14px!important; bottom:auto!important; width:98px!important; height:98px!important; }
  .group-turns {
    width: 100%;
    margin: 4px 0 12px;
    padding: 12px 12px 13px;
    border-radius: 12px;
  }
  .group-turns-meta { margin-bottom: 9px; font-size: .62rem; }
  .group-turns-track { gap: 6px; }
  .group-participant { height: 39px; padding: 0 7px; gap: 5px; }
  .group-participant b { font-size: .62rem; }
  .group-participant i {
    height: 11px;
    background:
      linear-gradient(currentColor,currentColor) 0 50%/2px 4px no-repeat,
      linear-gradient(currentColor,currentColor) 4px 50%/2px 7px no-repeat,
      linear-gradient(currentColor,currentColor) 8px 50%/2px 5px no-repeat,
      linear-gradient(currentColor,currentColor) 12px 50%/2px 9px no-repeat;
  }
}
@media (prefers-reduced-motion: reduce) {
  .group-participant,
  .group-participant i { -webkit-animation-duration: 9s !important; animation-duration: 9s !important; }
  .group-talk-pulse { -webkit-animation-duration: 9s !important; animation-duration: 9s !important; }
}
