@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@1,9..144,600&display=swap");

:root {
  --surface-light: #faf6ef;
  --surface-dark: #342044;
  --brand-orange: #f59a32;
  --brand-orange-strong: #ed7f18;
  --brand-orange-soft: #ffd7a4;
  --brand-purple: #44265b;
  --brand-purple-deep: var(--surface-dark);
  --brand-purple-soft: #ede3f2;
  --brand-teal: #0c928c;
  --brand-ink: #14231c;
  --brand-paper: var(--surface-light);
  --brand-cream: var(--surface-light);
  --brand-white: #ffffff;
  --brand-muted: #647069;
  --brand-line: #ddd7ce;
  --shadow-soft: 0 22px 60px rgba(41, 26, 49, .12);
  --shadow-card: 0 14px 34px rgba(41, 26, 49, .1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1160px;
  --font-display: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: hidden; color: var(--brand-ink); background: var(--surface-light); font-family: var(--font-body); font-size: 16px; line-height: 1.62; }
body.menu-open { overflow: hidden; }
main, header, footer, section { width: 100%; max-width: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { margin-bottom: 18px; font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -.04em; }
h1 { font-size: clamp(2.65rem, 12vw, 5.3rem); }
h2 { font-size: clamp(2rem, 9vw, 4rem); }
h3 { font-size: clamp(1.18rem, 4.6vw, 1.55rem); }
h1 em, h2 em { color: var(--brand-orange); font-family: var(--font-accent); font-weight: 600; }
p { margin-bottom: 18px; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section-paper { background: var(--surface-light); }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 15px; color: #fff; background: #000; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--brand-muted); }
.split-heading { display: grid; gap: 18px; max-width: none; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin: 0; align-self: end; color: var(--brand-muted); }
.section-tag, .eyebrow { margin-bottom: 14px; color: var(--brand-orange-strong); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-tag::before, .eyebrow::before { content: ""; display: inline-block; width: 24px; height: 2px; margin-right: 10px; border-radius: 99px; background: currentColor; vertical-align: middle; }
.section-tag.light { color: #ffc884; }
.light-heading { color: #fff; }
.light-heading > p:last-child { color: rgba(255, 255, 255, .68); }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 14px 23px; border: 2px solid var(--brand-orange); border-radius: 999px; color: var(--brand-purple-deep); background: var(--brand-orange); font-size: .9rem; font-weight: 700; text-align: center; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { background: #ffae50; box-shadow: 0 12px 28px rgba(245, 154, 50, .24); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .78rem; }
.button-dark { color: #fff; border-color: var(--brand-purple); background: var(--brand-purple); }
.button-dark:hover { background: var(--brand-purple-deep); }
.text-link { display: inline-flex; padding: 6px 0; border-bottom: 1px solid currentColor; font-size: .86rem; font-weight: 700; }
.light-link { color: #fff; }

/* Header */
.site-header { position: absolute; z-index: 50; top: 0; left: 0; height: 78px; color: #fff; }
.header-inner { height: 78px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: 10px; }
.brand > img { flex: 0 0 39px; width: 39px; height: 39px; }
.brand > span { display: flex; min-width: 0; flex-direction: column; line-height: 1; }
.brand strong { color: #fff; font: 700 .94rem/1 var(--font-display); white-space: nowrap; }
.brand small { margin-top: 5px; color: rgba(255, 255, 255, .64); font-size: .54rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.main-nav { position: fixed; z-index: 60; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 25px; padding: 92px 28px 50px; background: rgba(47, 23, 63, .98); transform: translateX(100%); transition: transform .25s ease; }
.menu-open .main-nav { transform: none; }
.main-nav a { color: #fff; font: 600 1.75rem/1.15 var(--font-display); }
.header-cta { display: none; }
.menu-toggle { position: relative; z-index: 61; width: 44px; height: 44px; display: block; margin-left: auto; padding: 11px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; background: rgba(255, 255, 255, .08); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 110px 0 0; color: #fff; background: var(--surface-dark); }
.hero::before { content: ""; position: absolute; width: 360px; height: 360px; right: -210px; top: 60px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.hero::after { content: "ENGLISH • ENGLISH • ENGLISH •"; position: absolute; right: -35px; bottom: 110px; color: rgba(255, 255, 255, .045); font-size: 3.1rem; font-weight: 700; letter-spacing: .06em; white-space: nowrap; transform: rotate(-90deg); transform-origin: right bottom; }
.hero-spark { position: absolute; z-index: 1; color: var(--brand-orange); line-height: 1; }
.hero-spark-one { top: 115px; right: 8%; font-size: 2.4rem; transform: rotate(12deg); }
.hero-spark-two { top: 54%; left: -4px; font-size: 1.7rem; }
.hero-grid { position: relative; z-index: 2; display: grid; min-width: 0; gap: 36px; }
.hero-copy, .hero-visual { min-width: 0; }
.hero h1 { max-width: 760px; margin-bottom: 22px; }
.hero h1 em { display: inline; }
.hero-lead { max-width: 650px; margin-bottom: 27px; color: rgba(255, 255, 255, .76); font-size: 1.03rem; }
.hero-actions { display: grid; gap: 0; transition: gap .45s ease; }
.hero-actions.cta-ready { gap: 12px; }
.hero-actions .button { width: 100%; }
.hero-actions .text-link { width: max-content; }
.hero-delayed-cta { max-width: 0; max-height: 0; min-height: 0; padding: 0; border-width: 0; opacity: 0; overflow: hidden; pointer-events: none; visibility: hidden; white-space: nowrap; transform: translateY(10px); transition: max-width .45s ease, max-height .45s ease, min-height .45s ease, padding .45s ease, border-width .45s ease, opacity .3s ease .12s, transform .45s ease, visibility 0s linear .45s; }
.hero-delayed-cta.is-visible { max-width: 340px; max-height: 70px; min-height: 54px; padding: 14px 23px; border-width: 2px; opacity: 1; pointer-events: auto; visibility: visible; transform: none; transition-delay: 0s; }
.hero-note { display: flex; align-items: flex-start; gap: 8px; margin: 20px 0 0; color: rgba(255, 255, 255, .58); font-size: .72rem; }
.hero-note span { color: var(--brand-orange); }
.hero-visual { position: relative; width: min(100%, 410px); min-height: 330px; margin-inline: auto; }
.hero-orange-shape { position: absolute; inset: 9% 3% 7%; border-radius: 46% 54% 49% 51% / 52% 43% 57% 48%; background: var(--brand-orange); transform: rotate(-5deg); }
.hero-photo { position: relative; z-index: 2; overflow: hidden; border: 2px solid rgba(255, 255, 255, .62); border-radius: 46% 54% 44% 56% / 54% 42% 58% 46%; box-shadow: 0 25px 55px rgba(20, 7, 29, .28); transform: rotate(2deg); }
.hero-photo img { width: 100%; height: auto; }
.hero-stamp { position: absolute; z-index: 3; right: -3px; bottom: 17%; display: grid; width: 105px; height: 105px; place-content: center; border-radius: 50%; color: var(--brand-purple); background: var(--brand-paper); box-shadow: var(--shadow-card); text-align: center; transform: rotate(8deg); }
.hero-stamp::before { content: "✦"; color: var(--brand-orange); font-size: .9rem; }
.hero-stamp strong { font: 600 1.1rem/1 var(--font-accent); }
.hero-stamp span { margin-top: 3px; font-size: .56rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-topic { position: absolute; z-index: 4; left: 4px; bottom: 5%; padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; background: rgba(47, 23, 63, .86); font-size: .61rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.proof-ribbon { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 38px; border-radius: 22px 22px 0 0; overflow: hidden; background: rgba(68, 38, 91, .18); }
.proof-ribbon div { min-width: 0; padding: 18px 8px; color: var(--brand-purple-deep); background: var(--brand-orange); text-align: center; }
.proof-ribbon strong, .proof-ribbon span { display: block; overflow-wrap: anywhere; }
.proof-ribbon strong { font-size: .88rem; line-height: 1.15; }
.proof-ribbon span { margin-top: 5px; font-size: .58rem; line-height: 1.25; }

/* Story and authority */
.story { padding: 78px 0 0; }
.story-grid { display: grid; gap: 44px; }
.story-copy > p:not(.section-tag) { color: var(--brand-muted); }
.story-lead { color: var(--brand-ink) !important; font-size: 1.06rem; font-weight: 500; }
.story-copy blockquote { position: relative; margin-top: 30px; padding: 20px 20px 20px 24px; border-left: 4px solid var(--brand-orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--brand-purple); background: var(--brand-purple-soft); font-family: var(--font-accent); font-size: 1.12rem; line-height: 1.45; }
.family-card { position: relative; width: min(100%, 470px); margin-inline: auto; padding: 12px 12px 0; background: #fff; box-shadow: var(--shadow-soft); transform: rotate(1.5deg); }
.family-card img { width: 100%; height: auto; }
.family-card figcaption { padding: 13px 7px 17px; color: var(--brand-muted); font-size: .72rem; line-height: 1.4; }
.photo-tape { position: absolute; z-index: 2; top: -15px; left: 50%; width: 88px; height: 30px; background: rgba(255, 210, 142, .82); transform: translateX(-50%) rotate(-3deg); }
.experience-wall { position: relative; isolation: isolate; display: grid; gap: 22px; margin-top: 70px; padding-top: 70px; padding-bottom: 88px; }
.experience-wall::before { content: ""; position: absolute; z-index: -1; inset-block: 0; left: 50%; width: 100vw; border-top: 1px solid rgba(255, 255, 255, .07); background: var(--surface-dark); transform: translateX(-50%); }
.experience-card { position: relative; overflow: hidden; border: 1px solid var(--brand-line); background: #fff; box-shadow: var(--shadow-card); outline: none; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.experience-card:nth-child(1) { transform: rotate(-1deg); }
.experience-card:nth-child(2) { transform: rotate(1deg); }
.experience-card:nth-child(3) { transform: rotate(-.7deg); }
.experience-card::before { content: ""; position: absolute; z-index: 2; top: 11px; right: 11px; width: 15px; height: 15px; border-radius: 50%; background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255, 255, 255, .8); }
.experience-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.experience-card.toeic-card > img { padding: 18px; object-fit: contain; background: #fff; }
.experience-card > div { padding: 20px; }
.experience-card span { display: block; margin-bottom: 7px; color: var(--brand-orange-strong); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.experience-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.experience-card p { margin: 0; color: var(--brand-muted); font-size: .82rem; }
.experience-card:not(.active) { display: grid; grid-template-columns: 112px minmax(0, 1fr); }
.experience-card:not(.active) > img { width: 112px; height: 100%; aspect-ratio: auto; }
.experience-card:not(.active) > div { padding: 17px; }
.experience-card:not(.active) h3 { font-size: 1rem; }
.experience-card:not(.active) p { font-size: .74rem; }

/* English challenge */
.english-challenge { position: relative; overflow: hidden; padding: 82px 0; color: var(--brand-purple-deep); background: var(--surface-light); }
.challenge-orbit { position: absolute; border: 1px solid rgba(68, 38, 91, .12); border-radius: 50%; pointer-events: none; }
.challenge-orbit-one { top: -145px; right: -155px; width: 330px; height: 330px; }
.challenge-orbit-two { bottom: -130px; left: -150px; width: 290px; height: 290px; border-color: rgba(68, 38, 91, .16); }
.challenge-grid { position: relative; z-index: 1; display: grid; gap: 44px; }
.english-challenge .section-tag { color: var(--brand-purple); }
.challenge-copy h2 { max-width: 680px; margin-bottom: 24px; }
.challenge-copy h2 em { color: var(--brand-purple); }
.challenge-copy > p:not(.section-tag) { max-width: 600px; color: rgba(47, 23, 63, .7); }
.challenge-bridge { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px; max-width: 620px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(68, 38, 91, .18); }
.challenge-bridge > span { color: var(--brand-purple); font-size: 1.45rem; line-height: 1; }
.challenge-bridge p { margin: 0; color: rgba(47, 23, 63, .82); font-size: .9rem; }
.challenge-stats { display: grid; min-width: 0; gap: 14px; }
.challenge-stat { position: relative; display: flex; min-width: 0; min-height: 290px; flex-direction: column; padding: 25px; border-radius: var(--radius-md); overflow: hidden; }
.challenge-stat::after { content: ""; position: absolute; top: -44px; right: -44px; width: 118px; height: 118px; border: 1px solid currentColor; border-radius: 50%; opacity: .1; }
.challenge-stat-orange { color: #fff; background: var(--brand-purple); }
.challenge-stat-paper { color: var(--brand-ink); border: 1px solid var(--brand-line); background: var(--brand-white); }
.challenge-stat-top { display: flex; min-width: 0; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 30px; }
.challenge-stat-top > span { padding-top: 5px; font-size: .61rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.challenge-stat-top small { flex: 0 0 auto; padding: 6px 9px; border-radius: 999px; font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.challenge-stat-orange .challenge-stat-top small { background: rgba(255, 255, 255, .12); }
.challenge-stat-paper .challenge-stat-top small { color: var(--brand-purple); background: var(--brand-purple-soft); }
.challenge-stat > strong, .challenge-rank strong { display: block; margin-bottom: 12px; font: 700 clamp(3.5rem, 18vw, 5.4rem)/.82 var(--font-display); letter-spacing: -.085em; }
.challenge-rank { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 13px; }
.challenge-rank strong { margin: 0; color: var(--brand-purple); }
.challenge-rank > span { margin-bottom: 3px; color: var(--brand-orange-strong); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.challenge-stat > p { margin: 0 0 24px; font-size: .86rem; line-height: 1.55; }
.challenge-stat-orange > p { color: rgba(255, 255, 255, .72); }
.challenge-stat-paper > p { color: var(--brand-muted); }
.challenge-stat > a { width: max-content; max-width: 100%; margin-top: auto; padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: .65rem; font-weight: 700; }
.challenge-source-note { margin: 3px 2px 0; color: rgba(47, 23, 63, .5); font-size: .64rem; }

/* Opportunities */
.opportunities { padding: 82px 0; background: var(--surface-light); }
.opportunity-grid { display: grid; gap: 14px; }
.opportunity-card { position: relative; min-width: 0; min-height: 245px; padding: 25px; border-radius: var(--radius-md); overflow: hidden; }
.opportunity-card-top { display: flex; min-width: 0; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 30px; }
.opportunity-card-top > span { display: block; min-width: 0; padding-top: 6px; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.opportunity-icon { display: grid; flex: 0 0 64px; width: 64px; height: 64px; place-items: center; border-radius: 20px; color: var(--brand-purple); background: rgba(255, 255, 255, .5); transform: rotate(3deg); }
.opportunity-icon svg { width: 39px; height: 39px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.opportunity-icon .icon-accent { color: var(--brand-orange-strong); stroke: currentColor; }
.opportunity-card h3 { max-width: 540px; margin-bottom: 14px; }
.opportunity-card p { max-width: 520px; margin-bottom: 0; font-size: .88rem; }
.opportunity-main { color: var(--brand-purple-deep); background: var(--brand-orange); }
.opportunity-main .opportunity-icon { flex-basis: 76px; width: 76px; height: 76px; border-radius: 24px; background: rgba(255, 250, 242, .6); }
.opportunity-main .opportunity-icon svg { width: 47px; height: 47px; }
.opportunity-main > strong { display: block; margin-top: 30px; font: 600 1.45rem/1 var(--font-accent); }
.opportunity-purple { color: #fff; background: var(--brand-purple); }
.opportunity-purple p { color: rgba(255, 255, 255, .72); }
.opportunity-purple .opportunity-icon { color: var(--brand-orange); background: rgba(255, 255, 255, .09); }
.opportunity-light { border: 1px solid var(--brand-line); background: var(--brand-paper); }
.opportunity-light p { color: var(--brand-muted); }
.opportunity-light .opportunity-icon { color: var(--brand-purple); background: var(--brand-purple-soft); }

/* Method */
.method { position: relative; overflow: hidden; padding: 82px 0; color: #fff; background: var(--surface-dark); }
.method::before { content: ""; position: absolute; top: 110px; left: -170px; width: 330px; height: 330px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 50%; }
.method-intro { position: relative; z-index: 1; display: grid; gap: 42px; }
.method-copy > p { color: rgba(255, 255, 255, .68); }
.method-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 8px 13px 8px 8px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(255, 255, 255, .06); }
.method-badge img { width: 30px; height: 30px; border-radius: 8px; object-fit: contain; }
.method-badge span { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.method-result { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .13); }
.method-result > span { color: var(--brand-orange); font-size: 1.5rem; line-height: 1; }
.method-result p { margin: 0; color: rgba(255, 255, 255, .78); font-size: .88rem; }
.device-stage { position: relative; min-width: 0; min-height: 505px; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-lg); background: radial-gradient(circle at 60% 30%, rgba(245, 154, 50, .25), transparent 44%), rgba(255, 255, 255, .045); }
.device-orbit { position: absolute; width: 270px; height: 270px; top: 20px; left: 50%; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; transform: translateX(-50%); }
.phone { position: absolute; z-index: 2; filter: drop-shadow(0 20px 25px rgba(0, 0, 0, .3)); }
.phone img { width: 100%; height: auto; }
.phone-one { top: 36px; left: 8px; width: 138px; transform: rotate(-7deg); }
.phone-two { top: 73px; right: 8px; width: 128px; transform: rotate(7deg); }
.data-note { position: absolute; z-index: 3; right: 16px; bottom: 18px; left: 16px; display: grid; padding: 18px; border-radius: 18px; color: var(--brand-ink); background: var(--brand-paper); box-shadow: var(--shadow-card); }
.data-note small { color: var(--brand-orange-strong); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.data-note strong { margin: 2px 0 11px; font-size: 1rem; }
.data-note span { font-size: .72rem; }
.learning-path { position: relative; z-index: 1; margin-top: 68px; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, .13); }
.path-cycle-intro { display: grid; gap: 12px; margin-bottom: 38px; }
.path-cycle-intro > div > strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1.18rem; }
.path-cycle-intro > div > p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .64); font-size: .84rem; }
.path-label { margin: 0; color: var(--brand-orange); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.path-steps { position: relative; display: grid; gap: 30px; }
.path-flow-lines { display: none; }
.path-steps article { position: relative; z-index: 1; display: grid; grid-template-columns: 43px minmax(0, 1fr); gap: 14px; padding: 20px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; background: rgba(255, 255, 255, .045); }
.path-steps article > * { position: relative; z-index: 1; }
.path-steps article:not(:last-of-type)::after { content: ""; position: absolute; top: 61px; bottom: -31px; left: 40px; width: 2px; background: rgba(245, 154, 50, .56); }
.path-steps article:not(:last-of-type)::before { content: ""; position: absolute; z-index: 2; bottom: -27px; left: 36px; width: 8px; height: 8px; border-right: 2px solid var(--brand-orange); border-bottom: 2px solid var(--brand-orange); transform: rotate(45deg); }
.path-steps article > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; color: var(--brand-purple-deep); background: var(--brand-orange); font-size: .7rem; font-weight: 700; }
.path-steps small { color: #d8afd5; font-size: .63rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.path-steps h3 { margin: 4px 0 8px; color: #fff; font-size: 1.08rem; letter-spacing: -.02em; }
.path-steps p { margin: 0; color: rgba(255, 255, 255, .6); font-size: .8rem; }
.path-loop-mobile { display: grid; grid-template-columns: 43px minmax(0, 1fr); align-items: center; gap: 14px; padding: 17px 20px; border: 1px dashed rgba(245, 154, 50, .58); border-radius: 20px; background: rgba(245, 154, 50, .08); }
.path-loop-mobile > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--brand-orange); background: rgba(255, 255, 255, .07); font-size: 1.35rem; }
.path-loop-mobile p { color: rgba(255, 255, 255, .68); }
.path-loop-mobile strong { color: #fff; }

/* Toolkit */
.toolkit { padding: 82px 0; }
.toolkit-grid { display: grid; gap: 14px; }
.toolkit-card { position: relative; min-width: 0; min-height: 210px; padding: 24px; border: 1px solid var(--brand-line); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.toolkit-card > span { display: block; margin-bottom: 36px; color: var(--brand-orange-strong); font-size: .63rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.toolkit-card h3 { margin-bottom: 10px; }
.toolkit-card p { margin: 0; color: var(--brand-muted); font-size: .84rem; }
.toolkit-live { min-height: 280px; color: var(--brand-purple-deep); border-color: var(--brand-orange); background: var(--brand-orange); }
.toolkit-live::after { content: "LIVE"; position: absolute; right: -6px; bottom: -23px; color: rgba(255, 255, 255, .3); font-size: 4.5rem; font-weight: 700; letter-spacing: -.08em; }
.toolkit-live > span { color: var(--brand-purple-deep); }
.toolkit-live p { color: rgba(47, 23, 63, .76); }
.toolkit-live > strong { display: block; margin-top: 24px; font: 600 1.2rem/1 var(--font-accent); }
.toolkit-practice { color: #fff; border-color: var(--brand-purple); background: var(--brand-purple); }
.toolkit-practice p { color: rgba(255, 255, 255, .66); }
.toolkit-practice::after { content: "↗"; position: absolute; right: 18px; top: -12px; color: rgba(255, 255, 255, .07); font: 600 6.5rem/1 var(--font-display); }
.toolkit-community { background: var(--brand-purple-soft); }

/* Plans */
.plans { padding: 84px 0; color: #fff; background: var(--surface-dark); }
.pricing-grid { display: grid; gap: 28px; max-width: 950px; margin: 66px auto 0; }
.price-card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 34px 23px 26px; border-radius: 30px; color: var(--brand-ink); background: var(--brand-paper); }
.price-card::after { content: ""; position: absolute; top: 0; right: 0; width: 48px; height: 48px; background: var(--surface-dark); clip-path: polygon(0 0, 100% 100%, 100% 0); }
.price-vip { color: var(--brand-purple-deep); background: var(--brand-orange); }
.plan-tab { position: absolute; top: -20px; left: 20px; max-width: calc(100% - 56px); padding: 9px 13px; border: 3px solid var(--brand-purple); border-radius: 999px; color: var(--brand-purple-deep); background: var(--brand-orange-soft); font-size: .65rem; font-weight: 700; }
.price-vip .plan-tab { background: #fff; }
.plan-kicker { margin: 0 0 5px; color: var(--brand-muted); font-size: .69rem; }
.price-vip .plan-kicker { color: rgba(47, 23, 63, .65); }
.price-card h3 { margin-bottom: 23px; font-size: 2.25rem; }
.price-old { margin-bottom: 2px; color: var(--brand-muted); font-size: .75rem; text-decoration: line-through; }
.price-vip .price-old { color: rgba(47, 23, 63, .6); }
.price { margin-bottom: 6px; font: 700 3.15rem/1 var(--font-display); letter-spacing: -.06em; }
.price small { font: 600 .72rem/1 var(--font-body); letter-spacing: 0; }
.price span { font-size: 1.25rem; }
.price-note { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--brand-line); color: var(--brand-muted); font-size: .67rem; }
.price-vip .price-note { color: rgba(47, 23, 63, .64); border-color: rgba(47, 23, 63, .18); }
.price-card ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.price-card li { font-size: .83rem; }
.price-card li::before { content: "✓"; margin-right: 9px; color: var(--brand-orange-strong); font-weight: 700; }
.price-vip li::before { color: var(--brand-purple); }
.price-card .button { width: 100%; margin-top: auto; }
.price-vip .button { color: #fff; border-color: var(--brand-purple); background: var(--brand-purple); }
.payment-note { display: flex; max-width: 700px; flex-direction: column; gap: 4px; margin: 28px auto 0; padding: 15px 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .07); font-size: .75rem; text-align: center; }
.payment-note strong { color: var(--brand-orange); font-size: .9rem; }
.pricing-disclaimer { max-width: 740px; margin: 15px auto 0; color: rgba(255, 255, 255, .48); font-size: .68rem; text-align: center; }

/* Guarantee */
.guarantee { padding: 56px 0; background: var(--surface-light); }
.guarantee-card { position: relative; display: grid; gap: 24px; padding: 30px 23px; border: 2px solid var(--brand-purple-deep); border-radius: var(--radius-lg); background: var(--brand-white); overflow: hidden; }
.guarantee-seal { display: flex; width: 122px; height: 122px; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--brand-purple); border-radius: 50%; color: var(--brand-purple); background: var(--brand-paper); transform: rotate(-6deg); }
.guarantee-seal strong { font-size: 4rem; line-height: .8; letter-spacing: -.08em; }
.guarantee-seal span { margin-top: 10px; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guarantee-copy { position: relative; z-index: 2; }
.guarantee-copy h2 { max-width: 800px; font-size: clamp(1.9rem, 8vw, 3.45rem); }
.guarantee-copy p:last-child { max-width: 760px; margin-bottom: 0; color: #59645e; }
.guarantee-star { position: absolute; right: 4px; bottom: -35px; color: rgba(68, 38, 91, .1); font-size: 9rem; line-height: 1; }

/* Testimonials */
.testimonials { position: relative; overflow: hidden; padding: 84px 0; color: #fff; background: var(--surface-dark); }
.testimonials::before { content: ""; position: absolute; top: -220px; left: -180px; width: 430px; height: 430px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; }
.testimonial-heading, .testimonial-player { position: relative; z-index: 1; }
.testimonial-heading { display: grid; gap: 30px; margin-bottom: 46px; }
.testimonial-heading h2 { margin-bottom: 0; color: #fff; }
.testimonial-heading blockquote { position: relative; padding: 25px 22px 22px; border: 1px solid rgba(255, 255, 255, .11); border-radius: var(--radius-md); color: #fff; background: rgba(47, 23, 63, .74); font-size: .92rem; }
.testimonial-heading blockquote > span { position: absolute; top: -18px; left: 16px; color: var(--brand-orange); font: 600 4.5rem/1 var(--font-accent); }
.testimonial-heading blockquote small { display: block; margin-top: 15px; color: rgba(255, 255, 255, .58); font-size: .65rem; font-style: normal; }
.testimonial-player { display: grid; gap: 24px; }
.featured-testimonial { overflow: hidden; border-radius: 28px; background: var(--brand-purple-deep); box-shadow: var(--shadow-soft); }
.featured-testimonial video { width: 100%; aspect-ratio: 9 / 16; background: #110a16; object-fit: contain; }
.featured-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; color: #fff; }
.featured-meta > div { display: flex; min-width: 0; flex-direction: column; }
.featured-meta span { color: var(--brand-orange); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.featured-meta strong { margin-top: 2px; }
.featured-meta small { color: rgba(255, 255, 255, .55); }
.testimonial-selector { display: grid; gap: 10px; }
.student-card { width: 100%; display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 13px; padding: 8px; border: 1px solid var(--brand-line); border-radius: 16px; color: var(--brand-ink); background: #fff; text-align: left; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.student-card:hover { transform: translateY(-2px); }
.student-card.active { border-color: var(--brand-orange); background: #fff1dc; }
.student-card img { width: 64px; height: 72px; border-radius: 10px; object-fit: cover; object-position: top; }
.student-card > span { display: flex; min-width: 0; flex-direction: column; }
.student-card strong { font-size: .82rem; }
.student-card small { margin-top: 3px; color: var(--brand-muted); font-size: .65rem; }

/* Final CTA */
.final-cta { padding: 76px 0; color: #fff; background: var(--surface-dark); }
.final-cta-grid { display: grid; gap: 42px; }
.final-cta-copy { position: relative; }
.cta-mark { position: absolute; z-index: 0; top: -15px; right: 0; width: 100px; height: 100px; opacity: .09; }
.final-cta-copy > *:not(.cta-mark) { position: relative; z-index: 1; }
.final-cta-copy h2 { max-width: 670px; }
.final-cta-copy > p:not(.section-tag) { max-width: 620px; color: rgba(255, 255, 255, .7); }
.final-cta-copy .button { width: 100%; margin-top: 6px; }
.final-cta-photo { overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 64px 20px 20px 20px; background: var(--brand-orange); box-shadow: 0 24px 55px rgba(20, 7, 29, .24); }
.final-cta-photo img { width: 100%; height: auto; }

/* FAQ */
.faq { padding: 82px 0; }
.faq-grid { display: grid; gap: 40px; }
.faq-heading > p:not(.section-tag) { color: var(--brand-muted); }
.faq-list { min-width: 0; border-top: 1px solid var(--brand-line); }
.faq-item { border-bottom: 1px solid var(--brand-line); }
.faq-item button { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) 26px; align-items: center; gap: 14px; padding: 21px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { min-width: 0; font-weight: 600; }
.faq-item i { position: relative; width: 26px; height: 26px; border: 1px solid var(--brand-line); border-radius: 50%; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; top: 12px; left: 7px; right: 7px; height: 1px; background: var(--brand-orange-strong); transition: transform .2s ease; }
.faq-item i::after { transform: rotate(90deg); }
.faq-item.open i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { min-height: 0; margin: 0; overflow: hidden; color: var(--brand-muted); font-size: .88rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 21px; }

/* Footer */
.site-footer { padding: 58px 0 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #fff; background: var(--surface-dark); }
.footer-main { display: grid; gap: 32px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: rgba(255, 255, 255, .58); font-size: .8rem; }
.footer-main h3 { margin-bottom: 15px; color: var(--brand-orange); font: 700 .67rem/1 var(--font-body); letter-spacing: .11em; text-transform: uppercase; }
.footer-main > div > a:not(.brand) { display: block; margin-bottom: 9px; color: rgba(255, 255, 255, .68); font-size: .78rem; overflow-wrap: anywhere; }
.footer-main > div > a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 10px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .43); font-size: .68rem; }

@media (max-width: 899px) {
  .experience-card { cursor: pointer; }
  .experience-card:focus-visible { border-color: var(--brand-orange); outline: 3px solid rgba(245, 154, 50, .35); outline-offset: 4px; box-shadow: 0 20px 48px rgba(41, 26, 49, .16); }
}

@media (max-width: 519px) {
  .hero-actions .text-link { margin-inline: auto; }
  .hero-delayed-cta.is-visible { max-width: 100%; }
}

@media (min-width: 520px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .hero-actions { display: flex; align-items: center; }
  .hero-actions .button { width: auto; }
  .hero-visual { min-height: 430px; }
  .testimonial-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunity-grid, .toolkit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunity-main, .toolkit-live { grid-column: 1 / -1; }
  .phone-one { left: 13%; width: 165px; }
  .phone-two { right: 13%; width: 150px; }
  .data-note { right: 40px; left: 40px; }
  .payment-note { flex-direction: row; justify-content: center; align-items: center; gap: 10px; }
  .final-cta-copy .button { width: auto; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .site-header, .header-inner { height: 86px; }
  .brand > img { width: 43px; height: 43px; }
  .menu-toggle { display: none; }
  .main-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: 29px; margin-left: auto; padding: 0; background: transparent; transform: none; }
  .main-nav a { color: rgba(255, 255, 255, .74); font: 600 .77rem/1 var(--font-body); }
  .main-nav a:hover { color: #fff; }
  .header-cta { display: inline-flex; }

  .split-heading { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); gap: 80px; align-items: end; }

  .hero { min-height: 790px; padding-top: 150px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .82fr); align-items: center; gap: 74px; }
  .hero-visual { width: 100%; min-height: 510px; }
  .hero-copy { padding-bottom: 40px; }
  .hero-stamp { right: -22px; bottom: 19%; width: 126px; height: 126px; }
  .proof-ribbon { margin-top: 28px; }
  .proof-ribbon div { padding: 21px; }
  .proof-ribbon strong { font-size: 1rem; }
  .proof-ribbon span { font-size: .67rem; }

  .story, .english-challenge, .opportunities, .method, .toolkit, .plans, .testimonials, .faq { padding-top: 112px; padding-bottom: 112px; }
  .story { padding-bottom: 0; }
  .story-grid { grid-template-columns: minmax(0, 1.08fr) minmax(350px, .72fr); align-items: center; gap: 90px; }
  .family-card { transform: rotate(2.5deg); }
  .experience-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 90px; padding-top: 82px; padding-bottom: 112px; }
  .experience-card, .experience-card:not(.active), .experience-card.active { display: block; min-width: 0; min-height: 0; border-color: var(--brand-line); }
  .experience-card:nth-child(1) { transform: rotate(-1deg); }
  .experience-card:nth-child(2) { transform: translateY(25px) rotate(1deg); }
  .experience-card:nth-child(3) { transform: rotate(-.7deg); }
  .experience-card > img, .experience-card:not(.active) > img { width: 100%; height: auto; aspect-ratio: 4 / 3; filter: none; }
  .experience-card > div, .experience-card:not(.active) > div { display: block; padding: 20px; }
  .experience-card h3, .experience-card:not(.active) h3, .experience-card.active h3 { font-size: 1.18rem; }
  .experience-card p, .experience-card:not(.active) p, .experience-card.active p { max-height: none; margin: 0; opacity: 1; overflow: visible; font-size: .82rem; }

  .challenge-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .challenge-stat { min-height: 350px; padding: 30px; }
  .challenge-source-note { grid-column: 1 / -1; }

  .opportunity-grid { grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); grid-template-rows: repeat(2, minmax(225px, auto)); }
  .opportunity-main { grid-column: 1; grid-row: 1 / span 2; min-height: 470px; padding: 42px; }
  .opportunity-main h3 { font-size: 2.45rem; }
  .opportunity-purple, .opportunity-light { grid-column: 2; min-height: 0; padding: 30px; }
  .opportunity-main .opportunity-card-top { margin-bottom: 54px; }
  .opportunity-purple .opportunity-card-top, .opportunity-light .opportunity-card-top { margin-bottom: 22px; }
  .opportunity-purple .opportunity-icon, .opportunity-light .opportunity-icon { flex-basis: 52px; width: 52px; height: 52px; border-radius: 16px; }
  .opportunity-purple .opportunity-icon svg, .opportunity-light .opportunity-icon svg { width: 32px; height: 32px; }

  .method-intro { grid-template-columns: minmax(0, .92fr) minmax(410px, .78fr); align-items: center; gap: 86px; }
  .device-stage { min-height: 610px; }
  .device-orbit { width: 370px; height: 370px; }
  .phone-one { left: 8%; width: 190px; }
  .phone-two { right: 8%; width: 175px; }
  .data-note { right: 50px; left: 50px; bottom: 30px; padding: 23px; }
  .path-cycle-intro { grid-template-columns: minmax(0, .7fr) minmax(430px, 1.3fr); align-items: end; gap: 70px; margin-bottom: 46px; }
  .path-cycle-intro > div { justify-self: end; }
  .path-steps { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(2, 210px); column-gap: 22px; row-gap: 110px; padding-top: 40px; }
  .path-flow-lines { position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%; overflow: visible; color: var(--brand-orange); pointer-events: none; }
  .path-flow-lines > path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; marker-end: url(#path-arrow); vector-effect: non-scaling-stroke; }
  .path-flow-lines marker path { fill: var(--brand-orange); }
  .path-return-line { stroke-dasharray: 7 7; }
  .path-steps article { display: block; min-width: 0; min-height: 210px; padding: 44px 24px 24px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 24px; background: rgba(255, 255, 255, .055); text-align: center; }
  .path-steps article::before, .path-steps article::after { display: none; }
  .path-steps article:nth-of-type(1) { grid-column: 1 / span 2; grid-row: 1; }
  .path-steps article:nth-of-type(2) { grid-column: 3 / span 2; grid-row: 1; }
  .path-steps article:nth-of-type(3) { grid-column: 5 / span 2; grid-row: 1; }
  .path-steps article:nth-of-type(4) { grid-column: 2 / span 2; grid-row: 2; }
  .path-steps article:nth-of-type(5) { grid-column: 4 / span 2; grid-row: 2; }
  .path-steps article > span { position: absolute; top: -22px; left: 50%; width: 46px; height: 46px; margin: 0; border: 2px solid var(--brand-purple-deep); transform: translateX(-50%); }
  .path-steps h3 { margin-top: 8px; }
  .path-loop-mobile { display: none; }

  .toolkit-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .toolkit-live { grid-column: 1 / span 7; grid-row: 1 / span 2; min-height: 438px; padding: 38px; }
  .toolkit-live h3 { max-width: 460px; font-size: 2.35rem; }
  .toolkit-practice { grid-column: 8 / -1; grid-row: 1; min-height: 212px; }
  .toolkit-card:nth-child(3) { grid-column: 8 / -1; grid-row: 2; }
  .toolkit-card:nth-child(4) { grid-column: 1 / span 4; grid-row: 3; }
  .toolkit-card:nth-child(5) { grid-column: 5 / span 4; grid-row: 3; }
  .toolkit-community { grid-column: 9 / -1; grid-row: 3; }

  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .price-card { min-height: 590px; padding: 44px 38px 36px; }
  .price-vip { transform: translateY(-18px); }
  .plan-tab { left: 34px; }

  .guarantee { padding: 78px 0; }
  .guarantee-card { grid-template-columns: 180px minmax(0, 1fr); align-items: center; gap: 50px; padding: 46px; }
  .guarantee-seal { width: 160px; height: 160px; }
  .guarantee-seal strong { font-size: 5.4rem; }

  .testimonial-heading { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .65fr); align-items: end; gap: 70px; }
  .testimonial-player { grid-template-columns: minmax(340px, .72fr) minmax(0, 1fr); align-items: start; gap: 32px; }
  .featured-testimonial video { max-height: 610px; }
  .testimonial-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .student-card:first-child { grid-column: 1 / -1; }

  .final-cta { padding-top: 98px; padding-bottom: 98px; }
  .final-cta-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, .78fr); align-items: center; gap: 80px; }
  .final-cta-copy { padding-block: 12px; }
  .final-cta-photo { align-self: center; }
  .faq-grid { grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr); align-items: start; gap: 90px; }
  .faq-heading { position: sticky; top: 28px; }
  .footer-main { grid-template-columns: 1.25fr .65fr 1fr .65fr; gap: 48px; }
  .footer-brand { grid-column: auto; }
}

@media (min-width: 1100px) {
  .challenge-grid { grid-template-columns: minmax(330px, .8fr) minmax(560px, 1.2fr); align-items: center; gap: 60px; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 5.3rem; }
  .hero::before { width: 520px; height: 520px; right: -270px; }
  .testimonial-player { grid-template-columns: 420px minmax(0, 1fr); }
  .student-card { grid-template-columns: 76px minmax(0, 1fr); padding: 10px; }
  .student-card img { width: 76px; height: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
