:root {
  --background: #171717;
  --background-soft: #1d1d1d;
  --foreground: #f7f7f3;
  --muted: #b7b7b0;
  --card: #202020;
  --card-2: #242424;
  --secondary: #292929;
  --border: rgba(255,255,255,.13);
  --border-strong: rgba(255,255,255,.22);
  --lime: #d7ff49;
  --yellow: #ffe65c;
  --ink: #171717;
  --gradient-hype: linear-gradient(100deg, var(--lime), var(--yellow));
  --shadow: 0 28px 70px rgba(0,0,0,.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }
.container { width: min(100% - 40px, 1180px); margin-inline: auto; }
.section { padding: 110px 20px; }
.section-sm { padding: 72px 20px; }
.section-tinted { background: var(--background-soft); }
.section-lime { background: var(--lime); color: var(--ink); }
.section-yellow { background: var(--yellow); color: var(--ink); }
.section-border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-border-bottom { border-bottom: 1px solid var(--border); }
.text-hype { background: var(--gradient-hype); background-clip: text; -webkit-background-clip: text; color: transparent; }
.kicker, .eyebrow { margin: 0 0 20px; color: var(--lime); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow-dark { color: rgba(23,23,23,.62); }
.hero-title, .page-title, .section-title, .card-title, .mega-number, .footer-tagline, .price, .error-code { margin: 0; font-weight: 900; text-transform: uppercase; letter-spacing: -.055em; line-height: .9; }
.section-title { font-size: clamp(44px, 6vw, 76px); }
.section-title.small { font-size: clamp(38px, 4.4vw, 58px); }
.section-lead { max-width: 760px; margin: 26px 0 0; color: rgba(247,247,243,.72); font-size: clamp(18px, 1.7vw, 21px); line-height: 1.7; }
.section-lime .section-lead, .section-yellow .section-lead { color: rgba(23,23,23,.75); }
.prose { color: rgba(247,247,243,.73); line-height: 1.8; font-size: 17px; }
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--foreground); }

.header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(23,23,23,.91); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 50px; height: 38px; background: var(--lime); color: var(--ink); font-size: 16px; font-weight: 900; letter-spacing: -.05em; }
.brand-copy { display: grid; line-height: 1; text-transform: uppercase; }
.brand-copy strong { font-size: 14px; font-weight: 900; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: rgba(247,247,243,.57); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.desktop-nav { display: flex; align-items: center; gap: 23px; }
.desktop-nav > a:not(.button), .nav-dropdown-toggle { position: relative; padding: 28px 0; border: 0; background: transparent; color: rgba(247,247,243,.73); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; transition: color .2s ease; }
.desktop-nav > a:not(.button):hover, .desktop-nav > a.is-active, .nav-dropdown-toggle:hover, .nav-dropdown-toggle.is-active { color: var(--lime); }
.desktop-nav > a:not(.button)::after, .nav-dropdown-toggle::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav > a.is-active::after, .nav-dropdown-toggle.is-active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle span { margin-left: 4px; color: var(--lime); }
.nav-dropdown-menu { position: absolute; top: calc(100% - 2px); left: 50%; width: 300px; padding: 10px; background: #202020; border: 1px solid var(--border); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s ease; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: grid; gap: 5px; padding: 14px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.nav-dropdown-menu a:hover { background: var(--secondary); color: var(--lime); }
.nav-dropdown-menu small { color: rgba(247,247,243,.43); font-size: 9px; letter-spacing: .17em; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--lime); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.mobile-nav { border-top: 1px solid var(--border); background: var(--background); max-height: calc(100vh - 76px); overflow: auto; }
.mobile-nav .container { padding: 8px 0 18px; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 800; text-transform: uppercase; }
.mobile-label { display: block; margin-top: 10px; padding: 10px 0 4px; color: rgba(247,247,243,.38); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.mobile-nav .mobile-sub { padding-left: 14px; color: rgba(247,247,243,.72); font-size: 13px; border-left: 2px solid var(--lime); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 26px; border: 0; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: -.015em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-yellow { background: var(--yellow); color: var(--ink); }
.button-outline { border: 1px solid var(--border-strong); background: transparent; color: var(--foreground); }
.button-outline:hover { color: var(--lime); border-color: var(--lime); }
.button-dark { background: var(--ink); color: var(--foreground); }
.nav-cta { min-height: 42px; padding: 11px 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.home-hero, .page-hero { position: relative; overflow: hidden; }
.home-hero { min-height: 760px; padding: 168px 20px 92px; display: flex; align-items: center; }
.page-hero { padding: 168px 20px 90px; border-bottom: 1px solid var(--border); }
.hero-glow { pointer-events: none; position: absolute; width: 570px; height: 570px; right: -160px; top: -180px; border-radius: 50%; background: rgba(215,255,73,.14); filter: blur(70px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 64px; align-items: end; }
.hero-badge { display: inline-block; margin: 0 0 26px; padding: 7px 12px; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
.hero-title { max-width: 850px; font-size: clamp(64px, 8.6vw, 124px); }
.page-title { max-width: 980px; font-size: clamp(58px, 8vw, 108px); }
.hero-side { border-top: 4px solid var(--lime); padding-top: 24px; }
.hero-side p { margin: 0; color: rgba(247,247,243,.76); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.65; font-weight: 600; }
.hero-side .mini-note { margin-top: 22px; color: rgba(247,247,243,.44); font-size: 12px; line-height: 1.6; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.page-hero-copy { max-width: 520px; color: rgba(247,247,243,.72); font-size: 18px; line-height: 1.75; }
.page-code { display: inline-block; margin-bottom: 20px; color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }

.marquee { overflow: hidden; border-block: 4px solid var(--ink); background: var(--lime); padding: 16px 0; }
.marquee-track { display: flex; width: max-content; gap: 38px; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee span { color: var(--ink); font-size: 21px; font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; }
.marquee b { opacity: .35; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { padding-top: 20px; border-top: 4px solid var(--lime); }
.stat strong { display: block; font-size: clamp(42px, 5vw, 62px); line-height: .9; letter-spacing: -.055em; }
.stat span { display: block; margin-top: 13px; color: rgba(247,247,243,.62); font-size: 13px; font-weight: 700; line-height: 1.45; }
.section-head-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.section-head-split .section-lead { margin: 0; }

.discipline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.discipline-card { position: relative; min-height: 390px; padding: 30px; overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.discipline-card:hover { transform: translateY(-7px); border-color: var(--lime); background: #242424; }
.discipline-card::after { content: attr(data-number); position: absolute; right: -5px; bottom: -28px; color: rgba(255,255,255,.035); font-size: 150px; font-weight: 900; letter-spacing: -.08em; }
.discipline-code { display: inline-block; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.discipline-card h3 { position: relative; z-index: 1; margin: 70px 0 0; font-size: clamp(28px, 2.5vw, 36px); line-height: .95; text-transform: uppercase; letter-spacing: -.045em; }
.discipline-card p { position: relative; z-index: 1; margin: 18px 0 0; color: rgba(247,247,243,.65); font-size: 15px; line-height: 1.7; }
.card-arrow { position: absolute; z-index: 2; left: 30px; bottom: 28px; color: var(--lime); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.service-card { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 34px; border: 1px solid var(--border); background: var(--card); transition: border-color .2s ease; }
.service-card:hover { border-color: var(--lime); }
.service-number { color: var(--lime); font-size: 28px; font-weight: 900; line-height: 1; }
.service-card h3 { margin: 0; font-size: 24px; line-height: 1.02; text-transform: uppercase; letter-spacing: -.035em; }
.service-card p { margin: 14px 0 0; color: rgba(247,247,243,.64); font-size: 15px; line-height: 1.7; }
.service-link { display: inline-block; margin-top: 20px; color: var(--lime); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 58px; }
.process-card { padding-top: 22px; border-top: 3px solid rgba(23,23,23,.26); }
.process-card strong { font-size: 26px; font-weight: 900; }
.process-card h3 { margin: 14px 0 0; font-size: 17px; text-transform: uppercase; line-height: 1.05; letter-spacing: -.025em; }
.process-card p { margin: 12px 0 0; font-size: 13px; line-height: 1.65; color: rgba(23,23,23,.72); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 20px 0 20px 34px; border-bottom: 1px solid var(--border); color: rgba(247,247,243,.78); line-height: 1.6; font-size: 16px; }
.feature-list li::before { content: "✦"; position: absolute; left: 0; top: 20px; color: var(--lime); }
.section-lime .feature-list li { color: rgba(23,23,23,.78); border-color: rgba(23,23,23,.17); }
.section-lime .feature-list li::before { color: var(--ink); }

.mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.mentor-card { min-height: 320px; padding: 24px; background: var(--card); border: 1px solid var(--border); display: flex; flex-direction: column; }
.avatar { width: 84px; height: 84px; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-size: 24px; font-weight: 900; letter-spacing: -.06em; }
.mentor-card h3 { margin: auto 0 0; padding-top: 44px; font-size: 20px; text-transform: uppercase; line-height: 1.03; letter-spacing: -.035em; }
.mentor-role { margin: 10px 0 0; color: rgba(247,247,243,.48); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.mentor-metric { margin: 10px 0 0; color: var(--lime); font-size: 13px; font-weight: 800; }
.mentor-link { display: inline-flex; margin-top: 15px; color: var(--yellow); font-size: 11px; font-weight: 900; text-transform: uppercase; }

.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.spotlight-panel { padding: 38px; border: 1px solid rgba(23,23,23,.22); background: rgba(255,255,255,.18); }
.price { font-size: clamp(46px, 5vw, 72px); color: var(--ink); }
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(23,23,23,.18); font-size: 14px; font-weight: 800; }
.price-row:first-of-type { margin-top: 24px; }
.price-note { margin: 20px 0 0; font-size: 13px; line-height: 1.65; color: rgba(23,23,23,.7); }

.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.story-index { position: sticky; top: 120px; }
.story-index .mega-number { font-size: clamp(100px, 16vw, 210px); color: var(--lime); opacity: .11; }
.story-items { display: grid; gap: 0; }
.story-item { padding: 30px 0; border-bottom: 1px solid var(--border); }
.story-item:first-child { padding-top: 0; }
.story-item h3 { margin: 0; font-size: 25px; text-transform: uppercase; letter-spacing: -.035em; }
.story-item p { margin: 12px 0 0; color: rgba(247,247,243,.66); font-size: 16px; line-height: 1.7; }

.content-grid { display: grid; grid-template-columns: 310px 1fr; gap: 70px; align-items: start; }
.sticky-aside { position: sticky; top: 120px; }
.sticky-aside-card { padding: 26px; background: var(--card); border: 1px solid var(--border); }
.sticky-aside-card small { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.sticky-aside-card h3 { margin: 12px 0 0; font-size: 25px; text-transform: uppercase; letter-spacing: -.04em; }
.sticky-aside-card p { margin: 14px 0 0; color: rgba(247,247,243,.6); font-size: 13px; line-height: 1.65; }
.content-stack { display: grid; gap: 18px; }
.detail-card { padding: 32px; background: var(--card); border: 1px solid var(--border); }
.detail-card-header { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.detail-card-number { color: var(--lime); font-size: 18px; font-weight: 900; }
.detail-card h2, .detail-card h3 { margin: 0; text-transform: uppercase; letter-spacing: -.04em; }
.detail-card h2 { font-size: clamp(25px, 3vw, 34px); }
.detail-card h3 { font-size: 22px; }
.detail-card p { margin: 16px 0 0; color: rgba(247,247,243,.66); font-size: 15px; line-height: 1.75; }
.detail-card ul { margin: 18px 0 0; padding: 0 0 0 20px; color: rgba(247,247,243,.7); line-height: 1.75; }
.detail-card li + li { margin-top: 6px; }
.sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.sub-card { padding: 22px; background: var(--secondary); border-left: 3px solid var(--yellow); }
.sub-card h4 { margin: 0; font-size: 15px; text-transform: uppercase; line-height: 1.15; }
.sub-card p { margin-top: 10px; font-size: 13px; line-height: 1.65; }

.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.exam-pill { padding: 22px; background: var(--secondary); border: 1px solid var(--border); }
.exam-pill strong { display: block; font-size: 18px; text-transform: uppercase; letter-spacing: -.03em; }
.exam-pill span { display: block; margin-top: 8px; color: rgba(247,247,243,.5); font-size: 12px; line-height: 1.5; }

.founder-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; align-items: stretch; }
.founder-visual { min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; background: var(--lime); color: var(--ink); overflow: hidden; position: relative; }
.founder-visual::after { content: "MRC"; position: absolute; right: -18px; bottom: -38px; font-size: 170px; font-weight: 900; letter-spacing: -.09em; opacity: .12; }
.founder-visual .avatar { background: var(--ink); color: var(--lime); width: 110px; height: 110px; font-size: 30px; }
.founder-visual h2 { position: relative; z-index: 1; margin: 30px 0 0; font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; line-height: .92; letter-spacing: -.05em; }
.founder-copy { padding: 48px; background: var(--card); border: 1px solid var(--border); }
.founder-copy p { margin: 0; color: rgba(247,247,243,.68); font-size: 17px; line-height: 1.75; }
.founder-copy .metric-line { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.metric-chip { padding: 10px 13px; background: var(--secondary); color: var(--lime); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.members-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.member-card { padding: 26px; background: var(--card); border: 1px solid var(--border); min-height: 290px; display: flex; flex-direction: column; }
.member-card .avatar { width: 66px; height: 66px; font-size: 19px; }
.member-card h3 { margin: 34px 0 0; font-size: 18px; text-transform: uppercase; line-height: 1.05; letter-spacing: -.035em; }
.member-card p { margin: 9px 0 0; color: rgba(247,247,243,.58); font-size: 12px; line-height: 1.55; }
.member-card .member-meta { margin-top: auto; padding-top: 22px; color: rgba(247,247,243,.39); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.member-card .mentor-link { margin-top: 10px; }
.bio-panel { margin-top: 24px; padding: 30px; border-left: 4px solid var(--lime); background: var(--card); }
.bio-panel h3 { margin: 0; font-size: 20px; text-transform: uppercase; letter-spacing: -.035em; }
.bio-panel p { margin: 14px 0 0; color: rgba(247,247,243,.66); font-size: 14px; line-height: 1.7; }
.bio-panel ul { margin: 14px 0 0; padding-left: 18px; color: rgba(247,247,243,.65); font-size: 14px; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 66px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 26px; background: var(--card); border: 1px solid var(--border); }
.contact-card small { color: rgba(247,247,243,.4); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.contact-card strong { display: block; margin-top: 10px; font-size: 20px; line-height: 1.25; }
.contact-card a { color: var(--lime); }
.form-card { padding: 36px; background: var(--card); border: 1px solid var(--border); }
.form-card h2 { margin: 0 0 25px; font-size: 28px; text-transform: uppercase; letter-spacing: -.04em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1px solid var(--border); border-radius: 0; outline: 0; background: var(--background); color: var(--foreground); padding: 16px; font-size: 14px; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--lime); }
.form-card textarea { resize: vertical; min-height: 150px; }
.form-card select { appearance: none; }
.form-card .field { margin-bottom: 12px; }
.form-card .button { width: 100%; margin-top: 2px; }
.form-note { margin: 14px 0 0; color: rgba(247,247,243,.42); font-size: 11px; line-height: 1.6; }

.notice { padding: 22px 24px; border: 1px solid rgba(255,230,92,.4); background: rgba(255,230,92,.08); color: rgba(247,247,243,.72); font-size: 13px; line-height: 1.7; }
.notice strong { color: var(--yellow); }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.cta-band h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); text-transform: uppercase; line-height: .92; letter-spacing: -.05em; }

.error-wrap { min-height: 100vh; padding: 150px 20px 80px; display: grid; place-items: center; }
.error-card { width: min(100%, 820px); padding: 56px; background: var(--card); border: 1px solid var(--border); }
.error-code { font-size: clamp(92px, 18vw, 180px); color: var(--lime); }
.error-card h1 { margin: 16px 0 0; font-size: clamp(34px, 5vw, 60px); text-transform: uppercase; letter-spacing: -.05em; }
.error-card p { margin: 18px 0 0; max-width: 600px; color: rgba(247,247,243,.62); line-height: 1.7; }

.footer { border-top: 1px solid var(--border); padding: 74px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr .8fr; gap: 48px; }
.footer-brand { margin-bottom: 28px; }
.footer-tagline { margin-top: 0; font-size: clamp(30px, 3vw, 42px); }
.footer-note { max-width: 410px; margin: 22px 0 0; color: rgba(247,247,243,.52); font-size: 13px; line-height: 1.7; }
.footer-col h4 { margin: 0 0 20px; color: rgba(247,247,243,.38); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin: 0 0 12px; color: rgba(247,247,243,.67); font-size: 13px; line-height: 1.5; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 62px; padding-top: 22px; border-top: 1px solid var(--border); color: rgba(247,247,243,.36); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .page-hero-grid, .section-head-split, .feature-grid, .spotlight, .story-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .hero-side { max-width: 680px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { min-height: 310px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sticky-aside { position: static; }
  .members-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
  .story-index { position: static; display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 14px; }
  .section-sm { padding: 54px 14px; }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 44px; height: 34px; font-size: 14px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { font-size: 8px; }
  .home-hero { padding: 132px 14px 70px; }
  .page-hero { padding: 132px 14px 68px; }
  .hero-title { font-size: clamp(52px, 18vw, 82px); }
  .page-title { font-size: clamp(48px, 16vw, 78px); }
  .hero-grid, .page-hero-grid { gap: 40px; }
  .stats-grid, .mentor-grid, .members-grid, .sub-grid, .exam-grid, .form-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { padding-bottom: 18px; }
  .section-head-split { gap: 24px; }
  .service-card { grid-template-columns: 1fr; }
  .discipline-card { min-height: 330px; }
  .spotlight-panel, .founder-copy, .form-card, .detail-card { padding: 26px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .error-card { padding: 32px 24px; }
}
