/* ============================================================
   M-IT Academy — Dark editorial design system
   Brand palette: neon yellow · cyan · violet · deep dark
   ============================================================ */

:root {
    --bg: #070912;
    --bg-soft: #0a0d18;
    --panel: #0d101d;
    --panel-2: #121624;
    --ink: #eef0fa;
    --body: #b2b8cb;
    --muted: #8f96b2;
    --brand: #ecff16;
    --brand-2: #d9ec00;
    --brand-ink: #0a0c16;
    --cyan: #27e3d2;
    --violet: #8b7bff;
    --green: #34d399;
    --line: rgba(255, 255, 255, .09);
    --edge: rgba(255, 255, 255, .14);
    --glass: rgba(255, 255, 255, .045);
    --glass-2: rgba(255, 255, 255, .075);
    --shadow: 0 28px 80px -46px rgba(0, 0, 0, .9);
    --shadow-lg: 0 48px 120px -62px rgba(0, 0, 0, .95);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 38px;
    --container: 1240px;
    --f-head: 'Space Grotesk', system-ui, sans-serif;
    --f-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(900px 580px at 92% -8%, rgba(236, 255, 22, .1), transparent 65%),
        radial-gradient(760px 540px at -8% 28%, rgba(139, 123, 255, .09), transparent 67%),
        var(--bg);
    color: var(--body);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 70%);
    mask-image: linear-gradient(to bottom, #000 0, transparent 70%);
}

h1, h2, h3, h4, h5 {
    color: #fff;
    font-family: var(--f-head);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.035em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea { font: inherit; }

::selection {
    background: var(--brand);
    color: var(--brand-ink);
}

:focus-visible {
    outline: 3px solid rgba(236, 255, 22, .78);
    outline-offset: 3px;
}

[hidden] { display: none !important; }

.wrap {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding: 120px 0; }
.mono {
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--brand-ink);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform .2s;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid rgba(236, 255, 22, .24);
    border-radius: 999px;
    background: rgba(236, 255, 22, .07);
    color: var(--brand);
    font-family: var(--f-mono);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.grad {
    background: linear-gradient(100deg, var(--brand), var(--cyan) 62%, var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mark {
    display: inline;
    padding-inline: .12em;
    border-radius: 8px;
    background: var(--brand);
    color: var(--brand-ink);
    box-decoration-break: clone;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: var(--f-head);
    font-size: .94rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .22s var(--ease), background .22s, border-color .22s, color .22s;
}

.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 56px; padding: 15px 26px; font-size: 1rem; }

.btn-neon {
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: 0 18px 44px -22px rgba(236, 255, 22, .9);
}

.btn-neon:hover { background: #f4ff6f; }

.btn-glass {
    border-color: var(--edge);
    background: var(--glass);
    color: #fff;
}

.btn-glass:hover {
    border-color: rgba(236, 255, 22, .45);
    color: var(--brand);
}

/* ---------- Navigation ---------- */

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    background: rgba(7, 9, 18, .76);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: background .25s, box-shadow .25s;
}

.nav.scrolled {
    background: rgba(7, 9, 18, .94);
    box-shadow: 0 16px 44px -32px rgba(0, 0, 0, .9);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    height: 76px;
    margin-inline: auto;
    padding-inline: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--f-head);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.1;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--brand);
    color: var(--brand-ink);
    font-size: .74rem;
    font-weight: 800;
}

.logo small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .52rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-links a {
    padding: 9px 13px;
    border-radius: 11px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 500;
    transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn { min-height: 44px; padding: 11px 18px; }
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--edge);
    border-radius: 13px;
    background: var(--glass);
    color: #fff;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 1px solid var(--edge);
    border-radius: 18px;
    background: rgba(10, 12, 22, .97);
    box-shadow: var(--shadow-lg);
}

.mobile-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 11px 13px;
    border-radius: 11px;
    color: var(--body);
}

.mobile-menu a:hover { background: var(--glass-2); color: #fff; }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

/* ---------- Home hero ---------- */

.home-hero { padding: 104px 0 28px; }

.home-hero-stage {
    position: relative;
    min-height: clamp(650px, calc(100svh - 128px), 760px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-hero-stage::after {
    content: "M–IT";
    position: absolute;
    right: -18px;
    bottom: -88px;
    z-index: 1;
    color: rgba(255, 255, 255, .035);
    font-family: var(--f-head);
    font-size: clamp(10rem, 20vw, 18rem);
    font-weight: 700;
    letter-spacing: -.1em;
    line-height: 1;
    pointer-events: none;
}

.home-hero-media {
    position: absolute;
    inset: -30px -4vw -30px 36%;
    width: 68%;
    height: calc(100% + 60px);
    object-fit: cover;
    object-position: 54% center;
    filter: saturate(.72) contrast(1.03) brightness(.78);
    -webkit-mask-image: radial-gradient(ellipse 78% 70% at 66% 50%, #000 0%, #000 52%, rgba(0, 0, 0, .75) 68%, transparent 100%);
    mask-image: radial-gradient(ellipse 78% 70% at 66% 50%, #000 0%, #000 52%, rgba(0, 0, 0, .75) 68%, transparent 100%);
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(7, 9, 18, .98) 36%, rgba(7, 9, 18, .48) 63%, transparent 92%),
        linear-gradient(0deg, rgba(7, 9, 18, .74), transparent 52%);
}

.home-hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    left: 28%;
    top: -180px;
    z-index: 1;
    border-radius: 50%;
    background: rgba(236, 255, 22, .11);
    filter: blur(70px);
}

.home-hero-copy {
    position: relative;
    z-index: 3;
    width: min(62%, 720px);
    padding: clamp(66px, 7vw, 90px);
}

.home-hero-copy h1 {
    margin-top: 24px;
    font-size: clamp(3.45rem, 6.4vw, 6rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.home-hero-copy h1 span { color: var(--brand); }

.home-hero-copy > p {
    max-width: 590px;
    margin-top: 25px;
    color: #b6bdd0;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: var(--f-head);
    font-size: .92rem;
    font-weight: 600;
    transition: color .2s;
}

.hero-text-link:hover { color: var(--brand); }

.home-hero-proof {
    position: absolute;
    left: clamp(48px, 7vw, 90px);
    right: clamp(48px, 7vw, 90px);
    bottom: 34px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 170px));
    gap: 0;
    width: fit-content;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.home-hero-proof > div {
    min-width: 150px;
    padding: 4px 22px;
    border-right: 1px solid var(--line);
}

.home-hero-proof > div:last-child { border-right: 0; }
.home-hero-proof strong {
    display: block;
    color: #fff;
    font-family: var(--f-head);
    font-size: 1.35rem;
    line-height: 1;
}

.home-hero-proof span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .56rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ---------- Section headings ---------- */

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }
.section-head h2 {
    margin-top: 20px;
    font-size: clamp(2.3rem, 4.7vw, 4.2rem);
    letter-spacing: -.055em;
}

.section-head p {
    max-width: 620px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 1.02rem;
}

/* ---------- Programs ---------- */

.programs-section { position: relative; }
.programs-layout {
    display: grid;
    grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
    gap: clamp(48px, 7vw, 90px);
    align-items: start;
}

.programs-intro {
    position: sticky;
    top: 118px;
}

.programs-intro h2 {
    margin-top: 22px;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    letter-spacing: -.06em;
}

.programs-intro p {
    max-width: 400px;
    margin: 20px 0 30px;
    color: var(--muted);
}

.program-list { border-top: 1px solid var(--line); }

.program-row {
    display: grid;
    grid-template-columns: 48px 50px minmax(190px, 1fr) minmax(125px, .65fr) 72px 46px;
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: padding .26s var(--ease), background .26s, border-color .26s;
}

.program-row:hover {
    padding-inline: 18px;
    border-bottom-color: rgba(236, 255, 22, .32);
    background: rgba(255, 255, 255, .032);
}

.program-number {
    color: transparent;
    font-family: var(--f-mono);
    font-size: .9rem;
    -webkit-text-stroke: 1px var(--muted);
}

.program-symbol {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--brand);
}

.program-info strong {
    display: block;
    color: #fff;
    font-family: var(--f-head);
    font-size: 1.18rem;
}

.program-info small,
.program-result small {
    display: block;
    color: var(--muted);
    font-size: .72rem;
}

.program-info small { margin-top: 5px; }
.program-result {
    color: var(--body);
    font-size: .8rem;
}

.program-result small {
    margin-bottom: 3px;
    font-family: var(--f-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.program-time {
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .7rem;
}

.program-go {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--edge);
    border-radius: 50%;
    color: var(--muted);
    transition: transform .25s var(--ease), background .25s, color .25s;
}

.program-row:hover .program-go {
    background: var(--brand);
    color: var(--brand-ink);
    transform: rotate(-45deg);
}

/* ---------- Journey ---------- */

.journey-section {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, .055);
    background: rgba(255, 255, 255, .015);
}

.journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    max-width: 1040px;
    margin-inline: auto;
    padding-top: 18px;
}

.journey-track::before {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    top: 57px;
    height: 1px;
    background: linear-gradient(90deg, var(--brand), var(--cyan), var(--violet));
    opacity: .55;
}

.journey-step { position: relative; z-index: 1; text-align: center; }
.journey-index {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .65rem;
    letter-spacing: .12em;
}

.journey-dot {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    margin: 0 auto 23px;
    border: 10px solid var(--bg-soft);
    border-radius: 50%;
    color: var(--brand-ink);
    font-size: 1.25rem;
}

.dot-brand { background: var(--brand); }
.dot-cyan { background: var(--cyan); }
.dot-violet { background: var(--violet); color: #fff; }
.journey-step h3 { font-size: 1.35rem; }
.journey-step p {
    max-width: 300px;
    margin: 11px auto 0;
    color: var(--muted);
    font-size: .9rem;
}

/* ---------- Practice proof ---------- */

.practice-stage {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(48px, 7vw, 88px);
    align-items: center;
}

.practice-media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow-lg);
}

.practice-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 9, 18, .55), transparent 52%);
}

.practice-media > img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    filter: saturate(.78) contrast(1.03);
}

.practice-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 16px 20px;
    border: 1px solid var(--edge);
    border-radius: 16px;
    background: rgba(7, 9, 18, .76);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.practice-badge strong {
    color: var(--brand);
    font-family: var(--f-head);
    font-size: 2rem;
    line-height: 1;
}

.practice-badge small { color: #fff; font-weight: 600; }

.practice-copy h2 {
    margin-top: 22px;
    font-size: clamp(2.5rem, 4.8vw, 4.4rem);
    letter-spacing: -.06em;
}

.practice-copy h2 span { color: var(--brand); }
.practice-copy > p {
    max-width: 530px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.03rem;
}

.practice-copy ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
}

.practice-copy li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: .92rem;
}

.practice-copy li i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(236, 255, 22, .1);
    color: var(--brand);
    font-size: .72rem;
}

/* ---------- Study modes ---------- */

.modes-section {
    border-block: 1px solid rgba(255, 255, 255, .055);
    background: rgba(255, 255, 255, .015);
}

.mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mode-panel {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border: 1px solid var(--edge);
    border-radius: 32px;
    background: var(--panel);
}

.mode-panel::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -150px;
    bottom: -170px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .08;
}

.mode-online::after { background: var(--violet); opacity: .16; }

.mode-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-family: var(--f-mono);
    font-size: .67rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mode-online .mode-label { color: var(--cyan); }
.mode-panel h3 { margin-top: 28px; font-size: clamp(2rem, 3.7vw, 3.2rem); }
.mode-panel > p {
    max-width: 480px;
    margin-top: 18px;
    color: var(--muted);
}

.mode-panel ul {
    display: grid;
    gap: 11px;
    margin: 28px 0 34px;
}

.mode-panel li {
    position: relative;
    padding-left: 20px;
    color: var(--ink);
    font-size: .9rem;
}

.mode-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.mode-online li::before { background: var(--cyan); }

/* ---------- Enrollment CTA ---------- */

.enroll-section { padding-top: 40px; }

.enroll-panel {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
    padding: clamp(44px, 7vw, 82px);
    border-radius: 36px;
    background: linear-gradient(125deg, var(--brand), #ddec00 64%, #b8df4e);
    color: var(--brand-ink);
    box-shadow: 0 42px 100px -58px rgba(236, 255, 22, .78);
}

.enroll-kicker {
    display: block;
    color: rgba(10, 12, 22, .68);
    font-family: var(--f-mono);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.enroll-panel h2 {
    margin-top: 14px;
    color: var(--brand-ink);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    letter-spacing: -.06em;
}

.enroll-content > p {
    max-width: 500px;
    color: rgba(10, 12, 22, .7);
    font-weight: 500;
}

.enroll-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.enroll-btn { background: var(--brand-ink); color: #fff; }
.enroll-btn:hover { background: #1b2030; }
.enroll-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-ink);
    font-family: var(--f-head);
    font-size: .9rem;
    font-weight: 700;
}

/* ---------- Secondary pages ---------- */

.page-top {
    padding: 160px 0 54px;
}

.page-top h1 {
    margin-top: 22px;
    font-size: clamp(2.7rem, 5.7vw, 5rem);
    letter-spacing: -.06em;
}

.page-top p {
    max-width: 680px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.04rem;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    gap: 18px;
}

.cell,
.card,
.stat,
.info-line,
.cta {
    border: 1px solid var(--edge);
    background: var(--glass);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055);
}

.cell {
    padding: 26px;
    overflow: hidden;
    border-radius: var(--radius);
}

.cell.tall { grid-row: span 2; }
.cell.wide { grid-column: span 2; }
.cell.neon { border-color: transparent; background: var(--brand); }
.cell .ic {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 13px;
    background: rgba(236, 255, 22, .09);
    color: var(--brand);
}

.cell.neon .ic { background: rgba(10, 12, 22, .12); color: var(--brand-ink); }
.cell h3 { margin-bottom: 8px; font-size: 1.2rem; }
.cell p { color: var(--muted); font-size: .9rem; }
.cell.neon h3, .cell.neon .huge { color: var(--brand-ink); }
.cell.neon p { color: rgba(10, 12, 22, .7); }
.cell .huge { font-family: var(--f-head); font-size: 3rem; font-weight: 700; line-height: 1; }

/* Biz haqimizda — qadriyatlar grid'i */
.about-values {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.about-value {
    position: relative;
    grid-column: span 4;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    isolation: isolate;
    transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.about-value::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -58px;
    bottom: -72px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 255, 22, .1), transparent 68%);
    pointer-events: none;
}

.about-value:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 255, 22, .32);
    background: rgba(255, 255, 255, .055);
}

.about-value-primary {
    grid-column: span 7;
    color: var(--brand-ink);
    border-color: transparent;
    background: linear-gradient(135deg, #efff24 0%, var(--brand) 68%, #d8ed00 100%);
    box-shadow: 0 24px 70px -44px rgba(236, 255, 22, .9);
}

.about-value-primary::after {
    width: 260px;
    height: 260px;
    right: -55px;
    bottom: -125px;
    background: radial-gradient(circle, rgba(10, 12, 22, .13), transparent 68%);
}

.about-value-primary:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #f3ff54 0%, #eaff08 68%, #d8ed00 100%);
}

.about-value-secondary { grid-column: span 5; }
.about-value-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.about-value .ic { margin: 0; }
.about-value-index {
    color: rgba(255, 255, 255, .28);
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .12em;
}
.about-value-primary .about-value-index { color: rgba(10, 12, 22, .42); }
.about-value h3 { margin: 0 0 9px; font-size: 1.3rem; letter-spacing: -.025em; }
.about-value p { max-width: 520px; margin: 0; line-height: 1.65; }
.about-value-primary h3 { color: var(--brand-ink); }
.about-value-primary p { color: rgba(10, 12, 22, .7); }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat { padding: 28px 22px; border-radius: var(--radius); }
.stat .n {
    color: transparent;
    font-family: var(--f-head);
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 1.4px var(--brand);
}

.stat .l {
    margin-top: 10px;
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rows { border-top: 1px solid var(--line); }
.row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 28px 8px;
    border-bottom: 1px solid var(--line);
    transition: padding .25s, background .25s;
}

.row:hover { padding-inline: 20px; background: var(--glass); }
.row .idx { color: var(--brand); font-family: var(--f-mono); font-size: 1rem; }
.row h3 { font-size: 1.4rem; }
.row p { margin-top: 5px; color: var(--muted); font-size: .88rem; }
.row .go {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--edge);
    border-radius: 50%;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card { padding: 28px; border-radius: var(--radius); }
.card.tc { text-align: center; }
.card.tc img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    margin: 0 auto 16px;
    border-radius: 50%;
}

.card.tc h3 { font-size: 1.1rem; }
.card .role { margin-top: 5px; color: var(--brand); font-family: var(--f-mono); font-size: .7rem; }
.socials { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--glass-2);
    color: var(--muted);
}

.quote .stars { margin-bottom: 12px; color: var(--brand); }
.quote p { color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 11px; margin-top: 18px; text-align: left; }
.quote .who img { width: 44px; height: 44px; border-radius: 50%; }
.quote .who b { display: block; color: #fff; font-family: var(--f-head); }
.quote .who span { color: var(--muted); font-size: .78rem; }

.cta {
    padding: 72px 40px;
    border-radius: 32px;
    text-align: center;
}

.cta h2 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); }
.cta p { max-width: 560px; margin: 18px auto 28px; color: var(--muted); }

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.field { margin-bottom: 16px; }
.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-family: var(--f-mono);
    font-size: .66rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    border: 1px solid var(--edge);
    border-radius: 13px;
    outline: 0;
    background: var(--glass);
    color: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(236, 255, 22, .08);
}

.info-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding: 17px;
    border-radius: 16px;
}

.info-line .ic {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--brand);
    color: var(--brand-ink);
}

.info-line .l { color: var(--muted); font-family: var(--f-mono); font-size: .65rem; }
.info-line .v { color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */

.footer {
    margin-top: 80px;
    padding: 70px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 38px;
}

.footer p { max-width: 320px; margin-top: 15px; color: var(--muted); font-size: .88rem; }
.footer h5 { margin-bottom: 16px; color: #fff; font-size: .92rem; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--muted); font-size: .87rem; }
.footer-links a:hover { color: var(--brand); }
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .87rem;
}

.footer-contact i { margin-top: 5px; color: var(--brand); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social:empty { display: none; }
.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--glass-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .8rem;
}

/* ---------- Reveal ---------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--d, 0ms);
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .nav-links { display: none; }
    .nav-toggle { display: grid; place-items: center; }

    .home-hero-media { inset-inline-start: 32%; width: 68%; }
    .home-hero-shade {
        background:
            linear-gradient(90deg, var(--bg) 0%, rgba(7, 9, 18, .97) 42%, rgba(7, 9, 18, .48) 75%, transparent),
            linear-gradient(0deg, rgba(7, 9, 18, .7), transparent 52%);
    }
    .home-hero-copy { width: 70%; }
    .programs-layout { grid-template-columns: 1fr; gap: 44px; }
    .programs-intro { position: static; }
    .programs-intro p { max-width: 600px; }
    .practice-stage { grid-template-columns: 1fr; }
    .practice-media { min-height: 500px; }
    .practice-media > img { min-height: 500px; }
    .bento, .stats, .cards { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-value, .about-value-primary, .about-value-secondary { grid-column: span 1; }
    .about-value-primary, .about-value:last-child { grid-column: span 2; }
    .two { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 820px) {
    .section { padding: 88px 0; }
    .home-hero-stage { min-height: 720px; }
    .home-hero-media { inset: 0; width: 100%; height: 100%; object-position: 62% center; }
    .home-hero-shade {
        background:
            linear-gradient(90deg, var(--bg) 0%, rgba(7, 9, 18, .9) 55%, rgba(7, 9, 18, .36) 100%),
            linear-gradient(0deg, rgba(7, 9, 18, .78), transparent 55%);
    }
    .home-hero-copy { width: 78%; padding: 64px 48px; }
    .home-hero-copy h1 { font-size: clamp(3.15rem, 9vw, 4.8rem); }
    .home-hero-proof { left: 48px; right: 48px; }
    .program-row {
        grid-template-columns: 40px 46px minmax(180px, 1fr) 70px 44px;
    }
    .program-result { display: none; }
    .journey-track { gap: 18px; }
    .mode-grid { grid-template-columns: 1fr; }
    .mode-panel { min-height: auto; }
    .enroll-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .wrap, .nav-inner { padding-inline: 16px; }
    .nav-inner { height: 70px; }
    .nav-actions .btn-glass { display: none; }
    .nav-actions .btn-neon { min-width: 0; padding-inline: 15px; }
    .mobile-menu { top: 78px; }

    .section { padding: 72px 0; }
    .home-hero { padding: 86px 0 20px; }
    .home-hero-stage { min-height: 780px; }
    .home-hero-media {
        top: auto;
        bottom: 0;
        height: 52%;
        object-position: 53% center;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
    }
    .home-hero-shade {
        background:
            linear-gradient(180deg, var(--bg) 0%, var(--bg) 42%, rgba(7, 9, 18, .82) 62%, rgba(7, 9, 18, .24) 100%),
            linear-gradient(0deg, rgba(7, 9, 18, .72), transparent 50%);
    }
    .home-hero-copy {
        width: 100%;
        padding: 34px 24px;
        text-align: left;
    }
    .home-hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
    .home-hero-copy > p { font-size: .95rem; }
    .home-hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
    .home-hero-actions .btn { width: 100%; }
    .home-hero-proof {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        grid-template-columns: repeat(3, 1fr);
    }
    .home-hero-proof > div { min-width: 0; padding-inline: 10px; text-align: center; }
    .home-hero-proof strong { font-size: 1.15rem; }
    .home-hero-proof span { font-size: .46rem; letter-spacing: .06em; }

    .section-head.center { text-align: left; }
    .section-head.center .eyebrow { margin-inline: 0; }
    .section-head h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }

    .program-row {
        grid-template-columns: 34px 42px 1fr 40px;
        min-height: 104px;
        gap: 11px;
    }
    .program-time { display: none; }
    .program-symbol { width: 40px; height: 40px; }
    .program-info strong { font-size: 1rem; }
    .program-info small { font-size: .66rem; }

    .journey-track {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    .journey-track::before {
        left: 39px;
        right: auto;
        top: 45px;
        bottom: 45px;
        width: 1px;
        height: auto;
        background: linear-gradient(var(--brand), var(--cyan), var(--violet));
    }
    .journey-step {
        display: grid;
        grid-template-columns: 80px 1fr;
        text-align: left;
    }
    .journey-index { display: none; }
    .journey-dot { grid-row: span 2; margin: 0; }
    .journey-step h3 { align-self: end; }
    .journey-step p { margin: 8px 0 0; }

    .practice-media { min-height: 390px; border-radius: 26px; }
    .practice-media > img { min-height: 390px; }
    .practice-copy h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }

    .mode-panel { padding: 30px 24px; border-radius: 24px; }
    .mode-panel h3 { font-size: 2.2rem; }

    .enroll-section { padding-top: 16px; }
    .enroll-panel { padding: 36px 24px; border-radius: 26px; }
    .enroll-panel h2 { font-size: 2.75rem; }
    .enroll-actions { align-items: flex-start; flex-direction: column; }
    .enroll-actions .btn { width: 100%; }

    .bento, .stats, .cards, .footer-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .about-value, .about-value-primary, .about-value-secondary, .about-value:last-child { grid-column: auto; }
    .about-value { min-height: 190px; }
    .cell.tall, .cell.wide { grid-row: auto; grid-column: auto; }
    .row { grid-template-columns: 48px 1fr; }
    .row .go { display: none; }
    .footer-grid > div:nth-child(3) { display: block; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 400px) {
    .logo > span:last-child { font-size: .9rem; }
    .logo small { display: none; }
    .nav-actions .btn-neon { display: none; }
    .home-hero-copy { padding-inline: 20px; }
    .home-hero-copy h1 { font-size: 2.65rem; }
    .home-hero-proof > div { padding-inline: 7px; }
}

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

.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .88rem;
}
.form-alert.success {
    color: #d8fff0;
    background: rgba(52, 211, 153, .1);
    border: 1px solid rgba(52, 211, 153, .28);
}
.form-alert.error, .field-error { color: #ffdada; }
.form-alert.error {
    background: rgba(248, 113, 113, .1);
    border: 1px solid rgba(248, 113, 113, .28);
}
.field-error { display: block; margin-top: 6px; font-size: .76rem; }
