﻿:root {
  --ink: #f4f2ec;
  --muted: #a3a9b4;
  --muted-2: #737b89;
  --bg: #070910;
  --bg-soft: #0b0e17;
  --panel: #101522;
  --panel-2: #151c2c;
  --line: rgba(205, 213, 229, .12);
  --line-bright: rgba(205, 213, 229, .24);
  --accent: #5279ff;
  --accent-2: #a68bff;
  --warm: #9ab0ff;
  --radius: 18px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #06100d; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 126px 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px; transform: translateY(-180%); border-radius: 8px; background: var(--accent); color: var(--bg); }
.skip-link:focus { transform: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 1px; background: currentColor; content: ""; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(82, 121, 255, .1); animation: live-pulse 2s infinite; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.05em; line-height: 1.04; }
h1 { max-width: 740px; margin: 24px 0 26px; font-size: clamp(3.35rem, 5.7vw, 6rem); font-weight: 500; }
h2 { margin: 18px 0 24px; font-size: clamp(2.45rem, 4vw, 4.35rem); font-weight: 500; }
h1 em, h2 em { color: var(--accent); font-family: inherit; font-style: normal; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 22px; border: 1px solid transparent; border-radius: 8px; font-size: .82rem; font-weight: 700; letter-spacing: .02em; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button svg { width: 18px; height: 18px; margin-left: 24px; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button-primary { background: var(--accent); color: #06100d; box-shadow: 0 16px 40px rgba(82, 121, 255, .15); }
.button-primary:hover { background: #8aefd0; }
.button-ghost { border-color: var(--line-bright); background: rgba(255,255,255,.02); }
.button-ghost:hover { border-color: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line-bright); padding-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 700; }
.text-link svg { width: 17px; height: 17px; color: var(--accent); }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease; }
.site-header.scrolled { border-bottom: 1px solid var(--line); background: rgba(6, 16, 13, .82); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: .82rem; font-weight: 600; letter-spacing: .13em; white-space: nowrap; }
.brand b { color: var(--accent); font-weight: 700; }
.brand-mark { position: relative; display: grid; width: 28px; height: 26px; grid-template-columns: repeat(3, 5px); align-items: end; gap: 3px; transform: skew(-9deg); }
.brand-mark span { display: block; background: var(--accent); }
.brand-mark span:nth-child(1) { height: 11px; }
.brand-mark span:nth-child(2) { height: 18px; }
.brand-mark span:nth-child(3) { height: 25px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.nav-link { position: relative; padding: 12px 0; color: #9cafaa; font-size: .78rem; font-weight: 600; transition: color .25s ease; }
.nav-link::after { position: absolute; bottom: 4px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0; transform: translateX(-50%) scale(0); transition: .25s ease; content: ""; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after { opacity: 1; transform: translateX(-50%) scale(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; padding: 11px 15px 11px 18px; border: 1px solid var(--line-bright); border-radius: 7px; font-size: .73rem; font-weight: 700; }
.nav-cta svg { width: 16px; height: 16px; color: var(--accent); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: transparent; }
.menu-toggle span { display: block; width: 19px; height: 1px; margin: 6px auto; background: currentColor; transition: .25s ease; }
.mobile-menu { display: none; }

.hero { position: relative; display: flex; min-height: 790px; padding: 150px 0 80px; overflow: hidden; align-items: center; }
.hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 78% 35%, rgba(44, 120, 100, .22), transparent 32%), linear-gradient(90deg, var(--bg) 0%, rgba(6,16,13,.98) 33%, rgba(6,16,13,.3) 66%, rgba(6,16,13,.8)); content: ""; }
.hero-grid-lines, .cta-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.market-line { position: absolute; z-index: 0; opacity: .28; overflow: visible; }
.market-line path { fill: none; stroke: var(--accent); stroke-width: 1; stroke-dasharray: 8 10; vector-effect: non-scaling-stroke; animation: market-dash 22s linear infinite; }
.market-line-one { top: 21%; left: -6%; width: 58%; height: 240px; }
.market-line-two { right: -10%; bottom: 13%; width: 46%; height: 210px; opacity: .14; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .9fr) minmax(530px, 1.1fr); gap: 10px; align-items: center; }
.hero-copy { position: relative; z-index: 4; padding: 30px 0; }
.hero-copy .eyebrow::before { display: none; }
.hero-copy > p { max-width: 610px; margin-bottom: 34px; color: #a8bbb5; font-size: clamp(1rem, 1.4vw, 1.13rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; align-items: center; gap: 17px; margin-top: 46px; }
.avatar-stack { display: flex; }
.avatar-stack img { width: 37px; height: 37px; margin-left: -9px; border: 2px solid var(--bg); border-radius: 50%; object-fit: cover; filter: saturate(.75); }
.avatar-stack img:first-child { margin-left: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: .76rem; letter-spacing: .01em; }
.trust-row span { margin-top: 1px; color: var(--muted-2); font-size: .67rem; }
.trust-row span b { color: var(--accent-2); }
.hero-visual { position: relative; height: 590px; margin-right: -80px; }
.visual-frame { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(191, 223, 212, .16); border-radius: 4px 4px 90px 4px; box-shadow: 0 35px 120px rgba(0,0,0,.42); }
.visual-frame::before { position: absolute; z-index: 3; inset: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 2px 2px 74px 2px; pointer-events: none; content: ""; }
.visual-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,13,.85), transparent 35%), linear-gradient(0deg, rgba(6,16,13,.75), transparent 40%); }
.market-status { position: absolute; z-index: 5; top: 34px; right: 32px; display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 8px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; background: rgba(4,13,11,.62); backdrop-filter: blur(12px); font-family: "IBM Plex Mono", monospace; }
.market-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.market-status b { font-size: .58rem; letter-spacing: .12em; }
.market-status small { grid-column: 2; color: var(--accent); font-size: .48rem; letter-spacing: .1em; }
.floating-ticker { position: absolute; z-index: 6; min-width: 148px; padding: 13px 15px; border: 1px solid rgba(164, 212, 196, .2); border-radius: 7px; background: rgba(6, 17, 14, .8); box-shadow: 0 16px 45px rgba(0,0,0,.26); backdrop-filter: blur(13px); animation: float 5s ease-in-out infinite; }
.floating-ticker small, .floating-ticker b, .floating-ticker span { display: block; font-family: "IBM Plex Mono", monospace; }
.floating-ticker small { color: var(--muted); font-size: .54rem; letter-spacing: .13em; }
.floating-ticker b { margin: 3px 0; font-size: .95rem; }
.floating-ticker span { color: var(--accent); font-size: .57rem; }
.ticker-one { top: 27%; left: 18px; }
.ticker-two { right: 34px; bottom: 20%; animation-delay: -2.5s; }
.chart-hud { position: absolute; z-index: 5; bottom: 30px; left: 30px; width: 230px; height: 72px; padding: 9px; border-left: 1px solid var(--accent); background: rgba(5, 16, 13, .68); }
.chart-hud svg { width: 100%; height: 100%; overflow: visible; }
.hud-fill { fill: url(#chart-fill); stroke: none; }
.hud-line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw-chart 3.4s ease-out 1s forwards; }
.hero-watermark { position: absolute; right: -20px; bottom: -73px; color: transparent; font-size: 8.5rem; font-weight: 800; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(161,216,198,.13); }
.hero-scroll { position: absolute; z-index: 4; bottom: 34px; left: 50%; display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll i { width: 42px; height: 1px; background: var(--line-bright); }

.stats { position: relative; z-index: 4; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #08130f; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card { position: relative; min-height: 175px; padding: 31px 30px; border-left: 1px solid var(--line); overflow: hidden; }
.stat-card:last-child { border-right: 1px solid var(--line); }
.stat-card strong { display: block; margin-top: 10px; font-family: "IBM Plex Mono", monospace; font-size: clamp(2.1rem, 3vw, 3.3rem); font-weight: 400; letter-spacing: -.06em; }
.stat-card sup { color: var(--accent); font-size: 1.1rem; }
.stat-card p { margin: 2px 0 0; color: var(--muted); font-size: .72rem; }
.stat-index { color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .55rem; }
.stat-card i { position: absolute; top: 0; right: 0; width: 36px; height: 36px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); opacity: .28; }

.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 7vw, 100px); align-items: center; }
.about-media { position: relative; min-height: 600px; }
.about-media > img { width: 92%; height: 570px; object-fit: cover; object-position: 51% center; border-radius: 3px 70px 3px 3px; filter: saturate(.82) contrast(1.04); }
.about-media::after { position: absolute; z-index: -1; right: 0; bottom: -24px; width: 82%; height: 85%; border: 1px solid var(--line-bright); border-radius: 3px 70px 3px 3px; content: ""; }
.image-caption { position: absolute; right: 0; bottom: 42px; min-width: 250px; padding: 17px 20px; border-left: 2px solid var(--accent); background: rgba(8,20,16,.9); backdrop-filter: blur(12px); }
.image-caption span, .image-caption b { display: block; }
.image-caption span { color: var(--muted); font-size: .62rem; }
.image-caption b { margin-top: 2px; font-family: "IBM Plex Mono", monospace; font-size: .68rem; font-weight: 500; letter-spacing: .04em; }
.corner-mark { position: absolute; top: -18px; left: -18px; width: 52px; height: 52px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.about-copy .lead { color: #a7b9b3; font-size: 1.04rem; line-height: 1.75; }
.about-points { margin: 38px 0 32px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 45px 155px 1fr; gap: 12px; padding: 19px 0; border-bottom: 1px solid var(--line); align-items: start; }
.about-points span { color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: .6rem; }
.about-points h3 { margin: 0; font-size: .85rem; font-weight: 700; }
.about-points p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.6; }

.programs { background: #07120f; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; margin-bottom: 52px; align-items: end; }
.section-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.program-card { position: relative; display: flex; min-height: 440px; padding: 27px; border: 1px solid var(--line); border-radius: 3px 3px 28px 3px; background: linear-gradient(145deg, rgba(17,34,29,.78), rgba(8,20,16,.88)); overflow: hidden; flex-direction: column; transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.program-card::before { position: absolute; top: -60px; right: -60px; width: 150px; height: 150px; border-radius: 50%; background: var(--accent); opacity: 0; filter: blur(70px); transition: opacity .35s ease; content: ""; }
.program-card:hover { z-index: 2; border-color: rgba(82, 121, 255, .42); background: linear-gradient(145deg, rgba(18,40,33,.92), rgba(8,20,16,.95)); transform: translateY(-8px); }
.program-card:hover::before { opacity: .16; }
.program-card.featured { border-color: rgba(82, 121, 255, .3); background: linear-gradient(145deg, rgba(20,50,40,.88), rgba(8,20,16,.9)); }
.program-top { display: flex; align-items: center; justify-content: space-between; }
.program-number { color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .6rem; }
.program-badge { padding: 5px 8px; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: .51rem; text-transform: uppercase; }
.program-icon { display: grid; width: 47px; height: 47px; margin: 35px 0 25px; border: 1px solid var(--line-bright); border-radius: 7px; background: rgba(82,121,255,.04); place-items: center; }
.program-icon svg { width: 23px; height: 23px; color: var(--accent); }
.program-card h3 { margin-bottom: 13px; font-size: 1.35rem; line-height: 1.3; letter-spacing: -.025em; }
.program-card > p { color: var(--muted); font-size: .76rem; line-height: 1.7; }
.program-meta { display: flex; margin-top: auto; padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); justify-content: space-between; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: .55rem; text-transform: uppercase; }
.program-meta span { display: flex; align-items: center; gap: 6px; }
.program-meta svg { width: 13px; height: 13px; }
.program-card > a { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; font-size: .69rem; font-weight: 700; }
.program-card > a svg { width: 17px; height: 17px; color: var(--accent); transition: transform .25s; }
.program-card > a:hover svg { transform: translateX(4px); }

.why { border-top: 1px solid var(--line); background: #091612; }
.why-header { position: relative; margin-bottom: 57px; }
.why-header h2 { margin-bottom: 0; }
.why-header > span { position: absolute; right: 0; bottom: 12px; color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-card { display: grid; min-height: 210px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); grid-template-columns: 46px 1fr; gap: 18px; transition: background .3s ease; }
.why-card:hover { background: rgba(82,121,255,.035); }
.why-card > svg { width: 30px; height: 30px; color: var(--accent); }
.why-card span { color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .55rem; }
.why-card h3 { margin: 19px 0 9px; font-size: .95rem; }
.why-card p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.65; }

.journey { position: relative; background: linear-gradient(180deg, #07120f, #0b1a15); }
.journey::before { position: absolute; top: 0; left: 50%; width: 1px; height: 74px; background: linear-gradient(var(--accent), transparent); content: ""; }
.section-heading.centered { display: block; max-width: 780px; margin: 0 auto 80px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered .eyebrow::after { width: 24px; height: 1px; background: currentColor; content: ""; }
.section-heading.centered > p { max-width: 560px; margin: 0 auto; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); }
.journey-track::before { position: absolute; top: 61px; left: 10%; width: 80%; height: 1px; background: var(--line-bright); content: ""; }
.journey-progress { position: absolute; top: 61px; left: 10%; width: 0; height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 2s cubic-bezier(.2,.8,.2,1); }
.journey-track.is-visible .journey-progress { width: 80%; }
.journey-track article { position: relative; text-align: center; }
.journey-track article > span { color: var(--muted-2); font-family: "IBM Plex Mono", monospace; font-size: .55rem; }
.journey-node { position: relative; z-index: 2; display: grid; width: 34px; height: 34px; margin: 25px auto; border: 1px solid var(--line-bright); border-radius: 50%; background: #0a1813; place-items: center; }
.journey-node i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(82,121,255,.08); }
.journey-track h3 { margin-bottom: 7px; font-size: 1rem; }
.journey-track p { color: var(--muted); font-size: .7rem; }

.platforms { padding: 78px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #06100d; overflow: hidden; }
.platform-label { display: flex; margin-bottom: 32px; justify-content: space-between; }
.platform-label span { color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.platform-label p { margin: 0; color: var(--muted-2); font-size: .68rem; }
.marquee-shell { display: flex; gap: 10px; flex-direction: column; mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent); }
.marquee-row { display: flex; width: max-content; animation: marquee-left 34s linear infinite; }
.marquee-row.reverse { animation-name: marquee-right; animation-duration: 39s; transform: translateX(-50%); }
.marquee-row:hover { animation-play-state: paused; }
.marquee-group { display: flex; gap: 10px; padding-right: 10px; }
.marquee-group a { display: flex; min-width: 210px; height: 66px; border: 1px solid var(--line); border-radius: 5px; background: rgba(255,255,255,.015); align-items: center; justify-content: center; gap: 13px; color: #82948e; font-size: .85rem; font-weight: 700; filter: grayscale(1); transition: .3s ease; }
.marquee-group a:hover { border-color: rgba(82,121,255,.35); background: rgba(82,121,255,.04); color: var(--ink); filter: none; }
.marquee-group i { display: grid; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 7px; place-items: center; font-family: "IBM Plex Mono", monospace; font-size: .55rem; font-style: normal; }

.success { background: #0a1713; }
.success-intro { display: flex; margin-bottom: 55px; justify-content: space-between; align-items: flex-end; }
.success-intro h2 { margin-bottom: 0; }
.success-big { display: flex; align-items: flex-end; gap: 18px; padding-bottom: 12px; }
.success-big strong { font-family: "IBM Plex Mono", monospace; font-size: 3rem; font-weight: 400; letter-spacing: -.06em; line-height: 1; }
.success-big sup { color: var(--accent); font-size: 1.2rem; }
.success-big span { color: var(--muted); font-size: .68rem; line-height: 1.5; }
.student-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.student-card { border: 1px solid var(--line); border-radius: 3px 3px 28px 3px; background: #0d1c18; overflow: hidden; transition: transform .35s ease, border-color .35s ease; }
.student-card:hover { border-color: rgba(82,121,255,.32); transform: translateY(-6px); }
.student-photo { position: relative; height: 285px; overflow: hidden; }
.student-photo::after { position: absolute; inset: 0; background: linear-gradient(0deg, #0d1c18, transparent 55%); content: ""; }
.student-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .5s ease; }
.student-card:hover .student-photo img { transform: scale(1.03); }
.student-photo > span { position: absolute; z-index: 2; bottom: 12px; left: 17px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(5,15,12,.6); font-family: "IBM Plex Mono", monospace; font-size: .5rem; text-transform: uppercase; backdrop-filter: blur(8px); }
.student-copy { padding: 4px 24px 25px; }
.rating { color: var(--accent-2); font-size: .72rem; letter-spacing: .09em; }
.rating span { margin-left: 6px; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: .55rem; }
.student-copy blockquote { min-height: 80px; margin: 18px 0 24px; font-family: Georgia, serif; font-size: 1rem; line-height: 1.55; }
.student-copy b, .student-copy small { display: block; }
.student-copy b { font-size: .76rem; }
.student-copy small { color: var(--muted-2); font-size: .63rem; }

.community { background: #07120f; }
.community-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.community-copy > p { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.community-list { display: grid; margin: 33px 0; gap: 16px; }
.community-list > div { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .74rem; }
.community-list svg { width: 17px; height: 17px; padding: 3px; border: 1px solid rgba(82,121,255,.35); border-radius: 50%; color: var(--accent); }
.community-list b { color: var(--ink); }
.community-visual { position: relative; }
.community-visual > img { width: 100%; height: 520px; object-fit: cover; border-radius: 50px 3px 3px 3px; filter: saturate(.78); }
.community-visual::before { position: absolute; z-index: -1; inset: -18px 18px 18px -18px; border: 1px solid var(--line-bright); border-radius: 58px 3px 3px 3px; content: ""; }
.community-panel { position: absolute; right: 20px; bottom: 20px; width: 245px; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(5,15,12,.8); backdrop-filter: blur(12px); }
.community-panel > div:first-child { display: flex; align-items: center; gap: 9px; }
.community-panel b { font-size: .69rem; }
.community-panel > small { display: block; margin: 4px 0 13px 16px; color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: .52rem; }
.mini-avatars { display: flex; align-items: center; }
.mini-avatars img { width: 27px; height: 27px; margin-left: -6px; border: 2px solid #081611; border-radius: 50%; object-fit: cover; }
.mini-avatars img:first-child { margin-left: 0; }
.mini-avatars span { margin-left: 8px; color: var(--muted); font-size: .55rem; }

.testimonials { border-top: 1px solid var(--line); background: #091713; }
.testimonial-shell { display: grid; min-height: 470px; border: 1px solid var(--line); border-radius: 3px 3px 42px 3px; background: linear-gradient(120deg, rgba(16,36,29,.8), rgba(7,18,15,.8)); overflow: hidden; grid-template-columns: .75fr 1.25fr; }
.testimonial-aside { padding: 56px; border-right: 1px solid var(--line); }
.testimonial-aside h2 { font-size: clamp(2.2rem, 3.3vw, 3.5rem); }
.slider-controls { display: flex; margin-top: 65px; align-items: center; gap: 15px; }
.slider-controls button { width: 38px; height: 38px; border: 1px solid var(--line-bright); border-radius: 50%; background: transparent; cursor: pointer; transition: .25s ease; }
.slider-controls button:hover { border-color: var(--accent); color: var(--accent); }
.slider-controls > span { width: 70px; height: 1px; background: var(--line); }
.slider-controls > span i { display: block; width: 33%; height: 100%; background: var(--accent); transition: transform .45s ease; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; height: 100%; transition: transform .65s cubic-bezier(.65,0,.35,1); }
.testimonial-slide { position: relative; min-width: 100%; padding: 70px 70px 55px; }
.quote-mark { position: absolute; top: 18px; right: 45px; color: rgba(82,121,255,.1); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.testimonial-slide blockquote { position: relative; max-width: 680px; margin: 26px 0 55px; font-family: Georgia, serif; font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.5; }
.testimonial-person { display: flex; align-items: center; gap: 15px; }
.testimonial-person img { width: 48px; height: 48px; border: 1px solid var(--line-bright); border-radius: 50%; object-fit: cover; filter: saturate(.75); }
.testimonial-person b, .testimonial-person span { display: block; }
.testimonial-person b { font-size: .75rem; }
.testimonial-person span { margin-top: 2px; color: var(--muted); font-size: .61rem; }

.final-cta { position: relative; padding: 135px 0; background: #62d9b5; color: #07120f; overflow: hidden; text-align: center; }
.final-cta::before { position: absolute; top: -55%; left: 50%; width: 700px; height: 700px; border: 1px solid rgba(6,16,13,.15); border-radius: 50%; box-shadow: 0 0 0 120px rgba(6,16,13,.035), 0 0 0 240px rgba(6,16,13,.025); transform: translateX(-50%); content: ""; }
.final-cta .cta-grid { opacity: .17; background-image: linear-gradient(rgba(6,16,13,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(6,16,13,.18) 1px, transparent 1px); mask-image: radial-gradient(circle, black, transparent 67%); }
.final-cta .container { position: relative; z-index: 2; max-width: 880px; }
.final-cta .eyebrow { justify-content: center; color: #183329; }
.final-cta .eyebrow::after { width: 24px; height: 1px; background: currentColor; content: ""; }
.final-cta h2 { margin: 24px 0; font-size: clamp(3rem, 5.6vw, 6rem); }
.final-cta h2 em { color: #07120f; }
.final-cta p { max-width: 620px; margin: 0 auto 37px; color: #294c40; font-size: .9rem; }
.cta-actions { display: flex; justify-content: center; gap: 12px; }
.button-light { background: #07120f; color: var(--ink); }
.button-outline-light { border-color: rgba(6,16,13,.38); }
.button-outline-light:hover { border-color: #07120f; }

.site-footer { padding-top: 78px; background: #050c0a; }
.footer-grid { display: grid; padding-bottom: 65px; grid-template-columns: 2fr 1fr 1.35fr 1.45fr; gap: 55px; }
.footer-brand p { max-width: 320px; margin: 24px 0; color: var(--muted); font-size: .72rem; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); place-items: center; font-family: "IBM Plex Mono", monospace; font-size: .57rem; text-transform: uppercase; transition: .25s ease; }
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h3 { margin-bottom: 10px; color: var(--ink); font-family: "IBM Plex Mono", monospace; font-size: .59rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a, .footer-col span { color: var(--muted); font-size: .68rem; transition: color .25s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact a:first-of-type { word-break: break-word; }
.footer-bottom { display: flex; padding: 25px 0 35px; border-top: 1px solid var(--line); justify-content: space-between; gap: 40px; color: #63756f; font-size: .57rem; }
.footer-bottom p { max-width: 720px; margin: 0; }
.footer-bottom div { display: flex; gap: 18px; white-space: nowrap; }

.whatsapp { position: fixed; z-index: 900; right: 23px; bottom: 23px; display: flex; height: 47px; padding: 0 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 25px; background: #1fbd70; box-shadow: 0 12px 35px rgba(0,0,0,.32); align-items: center; gap: 8px; color: white; transition: transform .25s ease; }
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 22px; height: 22px; fill: none; stroke: currentColor; }
.whatsapp span { font-size: .69rem; font-weight: 700; }
.back-top { position: fixed; z-index: 890; right: 27px; bottom: 82px; width: 40px; height: 40px; border: 1px solid var(--line-bright); border-radius: 50%; background: rgba(6,16,13,.85); opacity: 0; backdrop-filter: blur(8px); cursor: pointer; pointer-events: none; transform: translateY(10px); transition: .3s ease; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes live-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(82,121,255,.08); } 50% { box-shadow: 0 0 0 8px rgba(82,121,255,0); } }
@keyframes market-dash { to { stroke-dashoffset: -360; } }
@keyframes draw-chart { to { stroke-dashoffset: 0; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { to { transform: translateX(0); } }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: .93fr 1.07fr; }
  .hero-visual { height: 530px; margin-right: -110px; }
  .about-grid { gap: 55px; }
  .about-points > div { grid-template-columns: 38px 125px 1fr; }
  .community-grid { gap: 50px; }
  .testimonial-aside, .testimonial-slide { padding: 48px; }
}

@media (max-width: 900px) {
  .section { padding: 100px 0; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; flex: 0 0 44px; margin-left: auto; }
  .site-header.menu-active { background: rgba(6,16,13,.96); backdrop-filter: blur(18px); }
  .site-header.menu-active .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-active .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; top: 84px; left: 0; display: flex; width: 100%; height: calc(100vh - 84px); padding: 25px 24px 45px; background: rgba(6,16,13,.98); opacity: 0; flex-direction: column; pointer-events: none; transform: translateY(-12px); transition: .3s ease; }
  .site-header.menu-active .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 1.25rem; }
  .mobile-menu a:last-child { margin-top: 20px; border: 1px solid var(--accent); border-radius: 8px; color: var(--accent); text-align: center; }
  .hero { min-height: auto; padding: 135px 0 80px; }
  .hero-inner { min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .hero-inner > * { min-width: 0; }
  .hero-copy { width: 100%; max-width: 720px; }
  .hero-visual { width: calc(100% + 40px); height: 520px; margin: 20px -40px 0 0; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 1px solid var(--line); }
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; }
  .about-copy { order: 1; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { gap: 8px; }
  .success-intro { align-items: flex-start; flex-direction: column; gap: 25px; }
  .student-grid { grid-template-columns: 1fr; }
  .student-card { display: grid; grid-template-columns: .85fr 1.15fr; }
  .student-photo { height: 100%; min-height: 275px; }
  .student-copy { display: flex; padding: 30px; flex-direction: column; justify-content: center; }
  .community-grid { grid-template-columns: 1fr; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .testimonial-aside { border-right: 0; border-bottom: 1px solid var(--line); }
  .slider-controls { margin-top: 25px; }
  .testimonial-viewport { min-height: 400px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); max-width: 100%; }
  .section { padding: 82px 0; }
  .nav-wrap { height: 72px; }
  .mobile-menu { top: 72px; height: calc(100vh - 72px); }
  h1 { margin-top: 20px; font-size: clamp(2.85rem, 13.5vw, 4.1rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero { padding: 115px 0 52px; }
  .hero-copy > p { font-size: .92rem; }
  .hero-copy p, .trust-row { max-width: 100%; overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { margin-top: 31px; }
  .hero-visual { width: 100%; height: 390px; margin: 30px 0 0; }
  .visual-frame { border-radius: 3px 3px 48px 3px; }
  .visual-frame > img { object-position: 65% center; }
  .visual-frame::before { inset: 10px; border-radius: 2px 2px 38px 2px; }
  .ticker-one { top: 20px; left: 17px; }
  .ticker-two, .chart-hud { display: none; }
  .market-status { top: auto; right: 18px; bottom: 20px; }
  .hero-watermark { display: none; }
  .stats-grid { width: 100%; }
  .stat-card { min-height: 148px; padding: 24px 20px; }
  .stat-card strong { font-size: 2.2rem; }
  .about-media { min-height: 450px; }
  .about-media > img { width: 100%; height: 430px; border-radius: 3px 42px 3px 3px; }
  .about-media::after { display: none; }
  .image-caption { right: 12px; bottom: 15px; min-width: 220px; }
  .corner-mark { display: none; }
  .about-points > div { grid-template-columns: 32px 1fr; }
  .about-points p { grid-column: 2; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 420px; }
  .why-header > span { position: static; display: block; margin-top: 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 175px; padding: 25px; }
  .section-heading.centered { margin-bottom: 48px; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .section-heading.centered .eyebrow::after { display: none; }
  .section-heading.centered > p { margin-left: 0; }
  .journey-track { display: block; padding-left: 50px; }
  .journey-track::before, .journey-progress { top: 0; left: 16px; width: 1px; height: 100%; }
  .journey-track .journey-progress { height: 0; transition: height 2s ease; }
  .journey-track.is-visible .journey-progress { width: 1px; height: 100%; }
  .journey-track article { position: relative; min-height: 120px; text-align: left; }
  .journey-node { position: absolute; top: 21px; left: -50px; margin: 0; }
  .journey-track article > span { display: block; }
  .journey-track h3 { margin: 10px 0 3px; }
  .platform-label { align-items: flex-start; flex-direction: column; gap: 7px; }
  .marquee-group a { min-width: 175px; height: 60px; }
  .success-big strong { font-size: 2.5rem; }
  .student-card { display: block; }
  .student-photo { height: 300px; }
  .student-copy blockquote { min-height: auto; }
  .community-visual > img { height: 400px; border-radius: 36px 3px 3px 3px; }
  .community-panel { right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .testimonial-shell { border-radius: 3px 3px 28px 3px; }
  .testimonial-aside { padding: 32px 25px; }
  .testimonial-aside h2 { font-size: 2.4rem; }
  .testimonial-slide { padding: 43px 25px; }
  .testimonial-slide blockquote { margin-bottom: 35px; font-size: 1.34rem; }
  .testimonial-viewport { min-height: 430px; }
  .quote-mark { right: 16px; }
  .final-cta { padding: 105px 0; }
  .final-cta h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .whatsapp { right: 14px; bottom: 14px; width: 48px; padding: 0; justify-content: center; }
  .whatsapp span { display: none; }
  .back-top { right: 18px; bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Institutional terminal theme — v2 */
body {
  background:
    radial-gradient(circle at 14% 2%, rgba(44, 71, 132, .18), transparent 26%),
    var(--bg);
}

::selection { background: var(--accent); color: #090b11; }
.site-header.scrolled { background: rgba(7, 9, 16, .86); }
.brand-mark span { background: var(--accent); }
.nav-link { color: #9ca3b0; }
.nav-cta { border-color: rgba(82, 121, 255, .35); }
.button-primary { background: var(--accent); color: #0a0b10; box-shadow: 0 16px 45px rgba(82, 121, 255, .2); }
.button-primary:hover { background: #7595ff; }

.hero {
  min-height: 820px;
  background: linear-gradient(118deg, #070910 0%, #090d17 52%, #10182a 100%);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(7,9,16,.98) 0%, rgba(7,9,16,.9) 34%, rgba(7,9,16,.12) 67%, rgba(7,9,16,.72)),
    radial-gradient(circle at 75% 28%, rgba(65, 95, 166, .25), transparent 33%);
}
.hero-grid-lines {
  opacity: .22;
  background-image: radial-gradient(rgba(161, 177, 210, .23) .7px, transparent .7px);
  background-size: 24px 24px;
}
.hero-copy { padding-top: 50px; }
.hero-copy h1 { max-width: 760px; font-weight: 650; letter-spacing: -.065em; }
.hero-copy h1 em { position: relative; color: #7192ff; }
.hero-copy h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -8px;
  left: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
}
.hero-copy > p { color: #afb5c1; }
.trust-row span b { color: #9bb6ff; }
.visual-frame {
  border-color: rgba(184, 198, 226, .24);
  border-radius: 14px;
  box-shadow: 0 45px 130px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.visual-frame::before { border-radius: 8px; border-color: rgba(255,255,255,.13); }
.visual-frame > img { object-position: 62% center; }
.visual-overlay { background: linear-gradient(90deg, rgba(7,9,16,.86), transparent 38%), linear-gradient(0deg, rgba(7,9,16,.72), transparent 42%); }
.market-status, .floating-ticker, .chart-hud {
  border-color: rgba(113, 146, 255, .26);
  background: rgba(8, 11, 18, .82);
}
.market-status span { box-shadow: 0 0 12px var(--accent); }
.hero-watermark { -webkit-text-stroke-color: rgba(145, 165, 212, .15); }

.stats { border-color: rgba(202,211,230,.13); background: #0c101a; }
.stat-card { border-color: rgba(202,211,230,.13); }
.stat-card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .45s ease;
  content: "";
}
.stat-card:hover::after { width: 100%; }

.about { background: #eeece6; color: #12151d; }
.about .eyebrow, .about .text-link svg { color: #3153c2; }
.about h2 em { color: #365ed0; }
.about-copy .lead { color: #4f5662; }
.about-points { border-color: rgba(18,21,29,.14); }
.about-points > div { border-color: rgba(18,21,29,.14); }
.about-points span { color: #3153c2; }
.about-points p { color: #68707b; }
.about .text-link { border-color: rgba(18,21,29,.28); color: #12151d; }
.about-media { min-height: 570px; }
.about-media > img {
  width: 100%;
  height: 550px;
  border-radius: 16px;
  filter: saturate(.86) contrast(1.03);
}
.about-media::after {
  right: -16px;
  bottom: -16px;
  width: 92%;
  border-color: rgba(18,21,29,.18);
  border-radius: 16px;
}
.image-caption { right: 18px; bottom: 18px; border-left-color: var(--accent); background: rgba(9,12,19,.9); color: var(--ink); }
.corner-mark { border-color: #365ed0; }

.programs { background: #080b12; }
.program-card {
  min-height: 455px;
  border-color: rgba(207,215,232,.13);
  border-radius: 14px;
  background: linear-gradient(150deg, #111725, #0b0f18);
}
.program-card.featured { border-color: rgba(82,121,255,.42); background: linear-gradient(150deg, #141a2c, #0c1019 74%); }
.program-card:hover { border-color: rgba(82,121,255,.5); background: linear-gradient(150deg, #171d2b, #0c1019); }
.program-icon { border-color: rgba(82,121,255,.28); background: rgba(82,121,255,.065); }
.program-badge { color: #b1b8c5; }

.why { border-color: rgba(16,20,29,.15); background: #dfe2e8; color: #12151d; }
.why .eyebrow { color: #3153c2; }
.why h2 em { color: #3153c2; }
.why-header > span, .why-card span { color: #6f7681; }
.why-grid { border-color: rgba(16,20,29,.15); }
.why-card { border-color: rgba(16,20,29,.15); }
.why-card > svg { color: #3153c2; }
.why-card p { color: #606873; }
.why-card:hover { background: rgba(255,255,255,.38); }

.journey { background: linear-gradient(160deg, #0b101d, #101a2e); }
.journey-node { background: #111827; }
.journey-track p { color: #99a3b4; }
.journey-progress { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.platforms { padding: 86px 0; background: #05070c; }
.platform-label p { color: #747d8c; }
.marquee-shell { gap: 0; }
.marquee-group a {
  min-width: 240px;
  height: 78px;
  border-color: rgba(206,214,230,.13);
  border-radius: 10px;
  background: #0c1019;
  color: #c5cad3;
  filter: none;
}
.marquee-group a:hover { border-color: rgba(82,121,255,.48); background: #121722; color: white; }
.marquee-group img {
  display: block;
  max-width: 118px;
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .66;
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.marquee-group a:hover img { opacity: 1; filter: none; transform: scale(1.03); }
.marquee-group img[src*="tradingview"], .marquee-group img[src*="zerodha"] { width: 29px; height: 29px; }
.marquee-group img[src*="ninjatrader"] + span,
.marquee-group img[src*="metatrader"] + span,
.marquee-group img[src*="dhan"] + span,
.marquee-group img[src*="interactive-brokers"] + span { display: none; }
.marquee-group i { display: none; }

.success { background: #eeece6; color: #12151d; }
.success .eyebrow { color: #3153c2; }
.success h2 em { color: #3153c2; }
.success-big span { color: #606873; }
.student-card { border-color: rgba(18,21,29,.15); border-radius: 14px; background: #f8f7f3; box-shadow: 0 18px 55px rgba(34,39,51,.07); }
.student-card:hover { border-color: rgba(49,83,194,.42); }
.student-photo::after { background: linear-gradient(0deg, rgba(12,15,22,.82), transparent 55%); }
.student-photo > span {
  z-index: 4;
  bottom: 16px;
  left: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.38);
  background: #5279ff;
  box-shadow: 0 7px 22px rgba(5,8,16,.28);
  color: #fff;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 1;
  backdrop-filter: none;
}
.student-copy .rating { color: #3558c7; }
.student-copy .rating span, .student-copy small { color: #707782; }

.community { background: #090d17; }
.community-visual > img { border-radius: 16px; }
.community-visual::before { border-color: rgba(82,121,255,.3); border-radius: 16px; }
.community-panel { background: rgba(8,11,18,.88); }

.testimonials { border-color: rgba(16,20,29,.14); background: #dce4f2; color: #11151e; }
.testimonial-shell { border-color: rgba(16,20,29,.16); border-radius: 16px; background: rgba(247,248,250,.72); box-shadow: 0 22px 65px rgba(25,35,56,.08); }
.testimonial-aside { border-color: rgba(16,20,29,.14); }
.testimonial-aside .eyebrow { color: #2d4fb9; }
.testimonial-aside h2 em { color: #2d4fb9; }
.quote-mark { color: rgba(49,83,194,.11); }
.testimonial-slide .rating { color: #3153c2; }
.testimonial-person span { color: #67707e; }
.slider-controls button { border-color: rgba(16,20,29,.23); }
.slider-controls > span { background: rgba(16,20,29,.14); }

.final-cta { background: #5279ff; color: #0a0c11; }
.final-cta .eyebrow { color: #090d1d; }
.final-cta h2 em { color: #0a0c11; }
.final-cta p { color: #090d1d; }
.button-light { background: #090b11; }
.risk-disclosure {
  padding: 74px 0;
  border-top: 1px solid rgba(205,213,229,.13);
  border-bottom: 1px solid rgba(205,213,229,.13);
  background: #0b101d;
}
.risk-disclosure-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}
.risk-label {
  color: #7192ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.risk-disclosure h2 {
  max-width: 450px;
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.12;
}
.risk-copy p {
  margin-bottom: 15px;
  color: #aab2c1;
  font-size: .76rem;
  line-height: 1.8;
}
.risk-copy > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.risk-copy a {
  padding: 9px 12px;
  border: 1px solid rgba(113,146,255,.3);
  border-radius: 6px;
  color: #bdcaff;
  font-size: .64rem;
  font-weight: 700;
  transition: border-color .25s ease, background .25s ease;
}
.risk-copy a:hover { border-color: #7192ff; background: rgba(82,121,255,.07); }
.site-footer { background: #05070c; }

@media (max-width: 900px) {
  .site-header.menu-active { background: rgba(7,9,16,.98); }
  .mobile-menu { background: rgba(7,9,16,.99); }
  .about-media > img { height: 520px; }
  .risk-disclosure-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero-copy { padding-top: 20px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 12.8vw, 4rem); }
  .visual-frame, .visual-frame::before { border-radius: 12px; }
  .visual-frame > img { object-position: 63% center; }
  .about-media { min-height: 440px; }
  .about-media > img { height: 425px; border-radius: 12px; }
  .program-card, .student-card, .testimonial-shell { border-radius: 12px; }
  .community-visual > img { border-radius: 12px; }
  .marquee-group a { min-width: 205px; height: 70px; }
  .risk-disclosure { padding: 58px 0; }
}


