:root {
  --ink: #111217;
  --muted: #62646d;
  --line: #e1e2e7;
  --soft: #f5f5f7;
  --blue: #202124;
  --blue-dark: #000;
  --purple: #55565b;
  --orange: #77787d;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(24, 28, 40, 0.12);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.section-pad { padding: 112px 0; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(225, 226, 231, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.brand strong, .brand small { display: block; line-height: 1.08; }
.brand strong { font-size: 14px; letter-spacing: -0.01em; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a, .site-footer nav a { color: #3e4048; font-size: 14px; font-weight: 600; }
.desktop-nav a:hover, .site-footer nav a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { border-color: var(--blue-dark); background: var(--blue-dark); transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.button-secondary { border-color: #d7d8de; background: #fff; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light { color: #93b8ff; }

.hero {
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 84% 22%, rgba(114, 160, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  min-height: 688px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
}

.hero h1, .section-heading h2, .intro h2, .program h2, .faq h2, .contact h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-stats { display: flex; gap: 42px; margin: 54px 0 0; }
.hero-stats div { display: flex; align-items: baseline; gap: 8px; }
.hero-stats dt { font-size: 27px; font-weight: 800; letter-spacing: -0.04em; }
.hero-stats dd { margin: 0; color: var(--muted); font-size: 12px; }

.hero-art { position: relative; min-height: 590px; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { top: 55px; right: 40px; width: 430px; height: 430px; background: linear-gradient(145deg, #b8ccff, #725bdf); }
.orb-two { right: -45px; bottom: 10px; width: 260px; height: 260px; background: linear-gradient(145deg, #ffcf96, #ff7189); opacity: 0.8; }

.device {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 50%;
  width: 285px;
  min-height: 515px;
  padding: 18px 20px 22px;
  border: 8px solid #1b1c22;
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 40px 80px rgba(24, 28, 40, 0.3);
  transform: translateX(-50%) rotate(4deg);
}

.device-bar { display: flex; justify-content: center; gap: 4px; }
.device-bar span { width: 4px; height: 4px; border-radius: 50%; background: #c6c7cc; }
.app-icon { display: grid; width: 76px; height: 76px; margin: 40px auto 28px; place-items: center; border-radius: 22px; background: linear-gradient(140deg, #1769ff, #8459e8); color: #fff; font-size: 34px; font-weight: 800; }
.device-line { width: 55%; height: 10px; margin: 10px auto; border-radius: 5px; background: #e8e9ee; }
.line-wide { width: 78%; background: #252730; }
.device-cards { display: grid; margin-top: 35px; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.device-cards span { height: 106px; border-radius: 14px; background: linear-gradient(180deg, #dbe6ff, #f0f3fb); }
.device-cards span:nth-child(2) { background: linear-gradient(180deg, #e9ddff, #f7f2ff); }
.device-cards span:nth-child(3) { background: linear-gradient(180deg, #ffe4ce, #fff5ed); }
.device-button { width: 75%; height: 38px; margin: 28px auto 0; border-radius: 20px; background: var(--blue); }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 125px;
  height: 86px;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-card b { color: var(--blue); font-size: 20px; }
.floating-card span { font-size: 13px; font-weight: 750; }
.card-code { top: 150px; left: 0; transform: rotate(-7deg); }
.card-design { right: 0; bottom: 100px; transform: rotate(7deg); }
.card-design b { color: var(--purple); }

.intro { background: var(--soft); }
.intro h2, .section-heading h2, .faq h2 { font-size: clamp(40px, 5vw, 66px); }
.section-lead { margin: 26px auto 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.pillar-grid { display: grid; margin-top: 58px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card { position: relative; overflow: hidden; min-height: 355px; padding: 32px; border-radius: var(--radius); background: #fff; }
.pillar-card::after { position: absolute; right: -40px; bottom: -70px; width: 190px; height: 190px; border-radius: 50%; content: ""; opacity: 0.12; }
.pillar-blue::after { background: var(--blue); }
.pillar-purple::after { background: var(--purple); }
.pillar-orange::after { background: var(--orange); }
.pillar-number { color: #9698a1; font-size: 11px; font-weight: 700; }
.pillar-icon { display: grid; width: 65px; height: 65px; margin: 68px 0 30px; place-items: center; border-radius: 19px; color: #fff; font-size: 24px; font-weight: 800; }
.pillar-blue .pillar-icon { background: var(--blue); }
.pillar-purple .pillar-icon { background: var(--purple); }
.pillar-orange .pillar-icon { background: var(--orange); }
.pillar-card h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -0.03em; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.section-heading { margin-bottom: 50px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.split-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--muted); line-height: 1.7; }
.section-heading.center > p:last-child { max-width: 650px; margin: 22px auto 0; color: var(--muted); }

.location-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.location-card { overflow: hidden; grid-column: span 2; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform 180ms ease, box-shadow 180ms ease; }
.location-card:nth-child(4) { grid-column: 2 / span 2; }
.location-card:hover { box-shadow: 0 18px 45px rgba(23, 27, 39, 0.1); transform: translateY(-5px); }
.location-photo { position: relative; display: flex; height: 210px; align-items: end; padding: 22px; overflow: hidden; }
.location-photo::before, .location-photo::after { position: absolute; border-radius: 50%; content: ""; }
.location-photo::before { top: -50px; right: -20px; width: 190px; height: 190px; background: rgba(255,255,255,.22); }
.location-photo::after { right: 80px; bottom: -70px; width: 170px; height: 170px; background: rgba(255,255,255,.16); }
.location-tangerang .location-photo { background: linear-gradient(135deg, #386eff, #64c4ff); }
.location-bali .location-photo { background: linear-gradient(135deg, #0aa892, #71dcae); }
.location-surabaya .location-photo { background: linear-gradient(135deg, #8155df, #ca8cff); }
.location-jakarta .location-photo { background: linear-gradient(135deg, #ee674c, #ffb04f); }
.location-batam .location-photo { background: linear-gradient(135deg, #116d91, #42c9d2); }
.city-code { position: relative; z-index: 1; color: rgba(255,255,255,.95); font-size: 55px; font-weight: 900; letter-spacing: -0.07em; }
.location-body { padding: 25px; }
.partner, .tag { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.location-body h3 { margin: 8px 0 10px; font-size: 24px; letter-spacing: -0.035em; }
.location-body p { min-height: 68px; margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.location-body a { color: var(--blue); font-size: 13px; font-weight: 750; }

.program { color: #fff; background: #121b35; }
.program-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.program h2 { font-size: clamp(42px, 5vw, 68px); }
.program-copy > p:not(.eyebrow) { margin: 26px 0; color: #bac3da; line-height: 1.75; }
.text-link-light { color: #9fc0ff; font-weight: 700; }
.program-list { margin: 0; padding: 0; list-style: none; }
.program-list li { display: grid; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.14); grid-template-columns: 65px 1fr; }
.program-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.program-list li > span { color: #7695d6; font-size: 11px; font-weight: 750; }
.program-list h3 { margin: 0 0 6px; font-size: 22px; }
.program-list p { margin: 0; color: #aeb8cf; font-size: 14px; }

.timeline { position: relative; display: grid; margin-top: 58px; grid-template-columns: repeat(5, 1fr); gap: 24px; list-style: none; padding: 0; }
.timeline::before { position: absolute; top: 21px; right: 9%; left: 9%; height: 1px; background: var(--line); content: ""; }
.timeline li { position: relative; text-align: center; }
.timeline li > span { position: relative; z-index: 1; display: grid; width: 44px; height: 44px; margin: 0 auto 22px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue); font-size: 12px; font-weight: 800; }
.timeline h3 { margin: 0 0 8px; font-size: 18px; }
.timeline p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.application-action, .section-action { display: flex; margin-top: 42px; justify-content: center; }
.application-note { display: flex; margin-top: 58px; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 25px; border-radius: 18px; background: var(--soft); }
.application-note > div { display: flex; align-items: center; gap: 14px; }
.application-note strong, .application-note small { display: block; }
.application-note strong { font-size: 14px; }
.application-note small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #ff9e2c; box-shadow: 0 0 0 6px rgba(255, 158, 44, .13); }
.button-muted { border-color: #dfe0e4; background: #fff; color: var(--ink); }
.button-muted:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.events { background: var(--soft); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card { display: grid; min-height: 320px; padding: 28px; border-radius: var(--radius); background: #fff; grid-template-rows: auto 1fr auto; }
.event-featured { color: #fff; background: var(--blue); }
.event-date { display: flex; align-items: center; justify-content: space-between; }
.event-date span { font-size: 14px; font-weight: 800; }
.event-date small { color: var(--muted); font-size: 11px; }
.event-featured .event-date small, .event-featured p { color: rgba(255,255,255,.72); }
.event-featured .tag { color: #c9dcff; }
.event-card > div:nth-child(2) { align-self: end; }
.event-card h3 { margin: 12px 0 10px; font-size: 24px; line-height: 1.15; letter-spacing: -0.035em; }
.event-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.event-card > a { justify-self: end; margin-top: 25px; font-size: 22px; }

.events-hero { padding: 120px 0 95px; border-bottom: 1px solid var(--line); background: #fff; }
.events-hero h1 { margin: 0; font-size: clamp(48px, 7vw, 88px); line-height: .98; letter-spacing: -.055em; }
.event-location-links { display: flex; margin-top: 38px; justify-content: center; flex-wrap: wrap; gap: 10px; }
.event-location-links a { min-width: 62px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; }
.event-location-links a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.events-index-section { scroll-margin-top: 80px; }
.events-index-section + .events-index-section { border-top: 1px solid #d9dade; }
.events-index-section:nth-of-type(even) { background: #fff; }
.event-group-heading { display: flex; margin-bottom: 44px; align-items: end; justify-content: space-between; gap: 32px; }
.event-group-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.05em; }
.event-group-heading > p, .event-group-heading > a { color: var(--muted); font-size: 13px; font-weight: 650; }
.events-index-section:first-of-type .event-grid { grid-template-columns: minmax(280px, 1fr) 2fr; }
.compact-contact { padding-block: 90px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading p:last-child { max-width: 390px; margin-top: 24px; color: var(--muted); line-height: 1.7; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; padding: 27px 0; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 17px; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--blue); font-size: 24px; font-weight: 400; transition: transform 160ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 640px; margin: -7px 0 27px; color: var(--muted); line-height: 1.7; }

.contact { padding: 110px 0; color: #fff; background: linear-gradient(135deg, #1769ff 0%, #684fd6 100%); text-align: center; }
.contact h2 { font-size: clamp(48px, 7vw, 88px); }
.contact-inner > p:not(.eyebrow) { max-width: 600px; margin: 25px auto 0; color: rgba(255,255,255,.78); font-size: 17px; }
.center-buttons { justify-content: center; }
.button-white { border-color: #fff; background: #fff; color: var(--blue); }
.button-white:hover { border-color: #fff; background: #edf3ff; color: var(--blue-dark); }
.button-outline-light { border-color: rgba(255,255,255,.6); background: transparent; }
.button-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.prototype-note { display: block; margin-top: 35px; color: rgba(255,255,255,.58); }

.site-footer { padding: 35px 0; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner > p { color: var(--muted); font-size: 11px; }
.site-footer nav { display: flex; gap: 24px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 90px 0 60px; text-align: center; }
  .hero-copy { position: relative; z-index: 4; }
  .hero-lead { margin-inline: auto; }
  .button-row, .hero-stats { justify-content: center; }
  .hero-art { min-height: 570px; }
  .pillar-grid, .event-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 285px; }
  .pillar-icon { margin-top: 40px; }
  .location-card { grid-column: span 3; }
  .location-card:nth-child(4) { grid-column: span 3; }
  .location-card:last-child { grid-column: 2 / span 4; }
  .program-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-heading { position: static; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 30px, 1180px); }
  .section-pad { padding: 78px 0; }
  .header-inner { min-height: 64px; padding: 10px 0; flex-wrap: wrap; gap: 10px 16px; }
  .desktop-nav { display: flex; width: 100%; order: 3; overflow-x: auto; justify-content: flex-start; gap: 24px; padding: 4px 0 7px; scrollbar-width: none; }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .desktop-nav a { flex: 0 0 auto; }
  .brand strong { font-size: 12px; }
  .hero-grid { min-height: auto; padding-top: 72px; gap: 20px; }
  .hero { min-height: 0; }
  .hero h1 { font-size: 54px; }
  .hero-lead { font-size: 16px; }
  .hero-stats { gap: 18px; }
  .hero-stats div { display: block; }
  .hero-stats dd { margin-top: 2px; }
  .hero-art { min-height: 500px; transform: scale(.82); transform-origin: top center; margin-bottom: -80px; }
  .device { left: 50%; }
  .card-code { left: -20px; }
  .card-design { right: -20px; }
  .pillar-grid { margin-top: 38px; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 24px; }
  .location-grid { display: block; }
  .location-card { display: block; margin-bottom: 18px; }
  .location-body p { min-height: 0; }
  .program-grid { gap: 45px; }
  .program-list li { grid-template-columns: 45px 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline li { display: grid; text-align: left; grid-template-columns: 52px 1fr; column-gap: 12px; }
  .timeline li > span { margin: 0; grid-row: 1 / span 2; }
  .application-note { align-items: stretch; flex-direction: column; }
  .faq-grid { gap: 35px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner > p { order: 3; }
  .event-group-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .events-index-section:first-of-type .event-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Academy detail pages */
.academy-page,
.academy-tangerang,
.academy-bali,
.academy-surabaya,
.academy-jakarta,
.academy-batam { --academy-accent: #202124; --academy-accent-two: #a7a8ac; }

.academy-page .eyebrow { color: var(--academy-accent); }
.academy-page .eyebrow-light { color: rgba(255, 255, 255, .72); }
.academy-page .button { border-color: var(--academy-accent); background: var(--academy-accent); }
.academy-page .button:hover { border-color: var(--ink); background: var(--ink); }
.academy-page .button-secondary { border-color: #d7d8de; background: #fff; color: var(--ink); }
.academy-page .button-secondary:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.academy-page .button-white { border-color: #fff; background: #fff; color: var(--academy-accent); }
.academy-page .button-white:hover { border-color: #fff; background: #f2f4f8; color: var(--ink); }
.academy-page .brand-mark { background: var(--academy-accent); }

.location-switcher {
  position: sticky;
  z-index: 19;
  top: 72px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #fff;
  scrollbar-width: none;
}
.location-switcher::-webkit-scrollbar { display: none; }
.location-switcher .shell { display: flex; min-width: max-content; align-items: center; justify-content: center; }
.academy-subnav-title { margin-right: 20px; padding-right: 28px; border-right: 1px solid var(--line); font-size: 12px; letter-spacing: .03em; }
.location-switcher a { position: relative; padding: 14px 22px; color: var(--muted); font-size: 12px; font-weight: 700; }
.location-switcher a:hover { color: var(--academy-accent); }
.location-switcher a[aria-current="page"] { color: var(--academy-accent); }
.location-switcher a[aria-current="page"]::after { position: absolute; right: 20px; bottom: -1px; left: 20px; height: 2px; background: var(--academy-accent); content: ""; }

.academy-hero { overflow: hidden; padding: 84px 0 90px; background: linear-gradient(180deg, #fafbff 0%, #fff 100%); }
.academy-hero-grid { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 76px; }
.back-link { display: inline-block; margin-bottom: 54px; color: var(--muted); font-size: 12px; font-weight: 650; }
.back-link:hover { color: var(--academy-accent); }
.academy-hero h1 { margin: 0; font-size: clamp(68px, 9vw, 116px); line-height: .86; letter-spacing: -.075em; }
.academy-lead { max-width: 620px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.academy-visual { position: relative; display: flex; overflow: hidden; min-height: 520px; align-items: end; padding: 42px; border-radius: 36px; background: linear-gradient(145deg, var(--academy-accent), var(--academy-accent-two)); box-shadow: 0 30px 80px color-mix(in srgb, var(--academy-accent) 25%, transparent); }
.academy-visual::before, .academy-visual::after { position: absolute; border-radius: 50%; background: rgba(255,255,255,.15); content: ""; }
.academy-visual::before { top: -80px; right: -70px; width: 330px; height: 330px; }
.academy-visual::after { right: 100px; bottom: -180px; width: 380px; height: 380px; }
.visual-code { position: relative; z-index: 1; color: #fff; font-size: clamp(70px, 9vw, 118px); font-weight: 900; letter-spacing: -.09em; }
.academy-visual small { position: absolute; z-index: 1; right: 35px; top: 35px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; color: #fff; font-size: 10px; font-weight: 750; text-transform: uppercase; }

.partner-strip { border-block: 1px solid var(--line); background: var(--soft); }
.partner-strip-inner { display: flex; min-height: 112px; align-items: center; gap: 42px; }
.partner-logo { min-width: 120px; color: var(--academy-accent); font-size: 25px; font-weight: 900; letter-spacing: -.04em; }
.partner-logo-wide { font-size: 15px; letter-spacing: -.02em; }
.partner-strip p { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.detail-heading h2, .feature-split h2, .local-context h2, .studio-section h2, .academy-contact h2 { margin: 0; font-size: clamp(40px, 5vw, 65px); line-height: 1.02; letter-spacing: -.05em; }
.detail-copy p { margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.proof-grid { display: grid; margin-top: 70px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-grid article { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.proof-grid article > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--academy-accent) 12%, white); color: var(--academy-accent); font-size: 11px; font-weight: 800; }
.proof-grid h3 { margin: 78px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.proof-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.outcome-section { background: var(--soft); }
.academy-page .section-heading h2 { font-size: clamp(40px, 5vw, 65px); }
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.app-tile { min-height: 315px; padding: 25px; border-radius: 22px; background: #fff; }
.app-badge { display: grid; width: 70px; height: 70px; margin-bottom: 68px; place-items: center; border-radius: 19px; background: linear-gradient(140deg, var(--academy-accent), var(--academy-accent-two)); color: #fff; font-size: 28px; font-weight: 900; box-shadow: 0 12px 24px color-mix(in srgb, var(--academy-accent) 22%, transparent); }
.app-tile > span, .week-grid article > span { color: var(--academy-accent); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.app-tile h3 { margin: 8px 0; font-size: 22px; }
.app-tile p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.feature-split { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 85px; }
.feature-split.reverse .feature-art { order: 2; }
.feature-split > div > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.feature-art { display: flex; min-height: 460px; align-items: center; justify-content: center; flex-direction: column; border-radius: 30px; background: linear-gradient(145deg, var(--academy-accent), var(--academy-accent-two)); color: #fff; text-align: center; }
.feature-art strong { font-size: 88px; line-height: 1; letter-spacing: -.08em; }
.feature-art span { margin-top: 15px; font-size: 18px; font-weight: 750; }
.feature-art small { margin-top: 10px; color: rgba(255,255,255,.7); font-size: 10px; text-transform: uppercase; }
.clean-list { margin: 25px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); color: #41434b; font-size: 14px; }
.clean-list li:last-child { border-bottom: 1px solid var(--line); }
.clean-list li::before { position: absolute; left: 2px; color: var(--academy-accent); content: "✓"; font-weight: 900; }

.application-section { color: #fff; background: color-mix(in srgb, var(--academy-accent) 76%, #101628); }
.application-grid { display: grid; align-items: start; grid-template-columns: 1fr 1fr; gap: 90px; }
.application-grid > div:first-child h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1; letter-spacing: -.05em; }
.application-grid > div:first-child > p:not(.eyebrow) { max-width: 490px; color: rgba(255,255,255,.7); line-height: 1.7; }
.application-panel { padding: 33px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.08); }
.application-panel h3 { margin: 25px 0 15px; font-size: 23px; }
.application-panel ol { margin: 0 0 28px; padding-left: 20px; }
.application-panel li { padding: 7px 0; color: rgba(255,255,255,.78); font-size: 13px; }

.local-faq .faq-heading p:last-child { color: var(--muted); }
.academy-page .accordion summary span { color: var(--academy-accent); }
.academy-contact { padding: 80px 0; color: #fff; background: var(--ink); }
.academy-contact .shell { display: grid; align-items: end; grid-template-columns: 1fr 1fr; gap: 80px; }
.academy-contact p:not(.eyebrow) { margin: 0 0 24px; color: #aeb0ba; line-height: 1.7; }

.info-grid, .week-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.info-grid article, .week-grid article { min-height: 285px; padding: 27px; border-radius: 22px; background: #fff; }
.info-grid article > span { color: var(--academy-accent); font-size: 11px; font-weight: 800; }
.info-grid h3, .week-grid h3 { margin: 95px 0 9px; font-size: 20px; }
.info-grid p, .week-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.info-grid small { display: block; margin-top: 14px; color: #9a9ca4; font-size: 9px; text-transform: uppercase; }
.week-grid h3 { margin-top: 95px; }

.pathway-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0; list-style: none; }
.pathway-list li { display: grid; min-height: 180px; padding: 28px; border-radius: 22px; background: #fff; grid-template-columns: 45px 1fr; }
.pathway-list li > span { color: var(--academy-accent); font-size: 11px; font-weight: 800; }
.pathway-list h3 { margin: 0 0 10px; font-size: 20px; }
.pathway-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.local-context { padding: 75px 0; background: #eee9fb; }
.local-context-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.local-context p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.verification-label { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(117,80,213,.1); color: var(--academy-accent); font-size: 9px; font-weight: 800; text-transform: uppercase; }

.people-section { background: #eef8fa; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.people-grid article { padding: 22px; border-radius: 22px; background: #fff; text-align: center; }
.person-avatar { display: grid; aspect-ratio: 1; place-items: center; border-radius: 18px; background: linear-gradient(145deg, var(--academy-accent), var(--academy-accent-two)); color: #fff; font-size: 36px; font-weight: 850; }
.people-grid h3 { margin: 19px 0 4px; font-size: 17px; }
.people-grid p { margin: 0; color: var(--muted); font-size: 11px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-grid article { min-height: 320px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.story-year { color: var(--academy-accent); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.story-grid blockquote { margin: 55px 0 28px; font-size: 20px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em; }
.story-grid h3 { margin: 0 0 4px; }
.story-grid p { margin: 0; color: var(--muted); font-size: 11px; }
.studio-section { padding: 90px 0; color: #fff; background: #113342; }
.studio-grid { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 85px; }
.studio-art { display: flex; min-height: 350px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: radial-gradient(circle at 50% 35%, rgba(66,201,210,.35), transparent 38%); }
.studio-art span { font-size: 12px; letter-spacing: .25em; }
.studio-art strong { margin-top: 5px; font-size: 35px; letter-spacing: -.04em; }
.studio-section p:not(.eyebrow) { color: #b5c7ce; line-height: 1.75; }

@media (max-width: 960px) {
  .academy-hero-grid, .detail-grid, .feature-split, .application-grid, .academy-contact .shell, .studio-grid { grid-template-columns: 1fr; gap: 50px; }
  .academy-hero { padding-top: 65px; }
  .back-link { margin-bottom: 40px; }
  .academy-visual { min-height: 430px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 210px; }
  .proof-grid h3 { margin-top: 50px; }
  .app-grid, .info-grid, .week-grid, .people-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split.reverse .feature-art { order: 0; }
  .local-context-grid { grid-template-columns: 1fr; gap: 35px; }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .location-switcher { top: 117px; }
  .location-switcher .shell { justify-content: flex-start; }
  .location-switcher a { padding-inline: 15px; }
  .academy-subnav-title { margin-right: 7px; padding-right: 18px; }
  .academy-hero h1 { font-size: 70px; }
  .academy-hero { padding-bottom: 65px; }
  .academy-visual { min-height: 340px; padding: 26px; border-radius: 26px; }
  .academy-visual small { top: 22px; right: 22px; }
  .partner-strip-inner { align-items: flex-start; flex-direction: column; gap: 10px; padding-block: 25px; }
  .proof-grid { margin-top: 45px; }
  .app-grid, .info-grid, .week-grid, .people-grid, .pathway-list { grid-template-columns: 1fr; }
  .app-tile, .info-grid article, .week-grid article { min-height: 250px; }
  .app-badge { margin-bottom: 40px; }
  .info-grid h3, .week-grid h3 { margin-top: 55px; }
  .feature-art { min-height: 350px; }
  .feature-art strong { font-size: 68px; }
  .application-panel { padding: 25px; }
  .academy-contact { padding: 65px 0; }
  .studio-art { min-height: 280px; }
}

/* The prototype is intentionally rendered in grayscale, including legacy color values. */
html { filter: grayscale(1); }
