/* ═══════════════════════════════════════════
   ReachOut for Change — site.css
   Palette: Vibrant deep purple / gold / violet
═══════════════════════════════════════════ */
:root {
    --bg: #16043a;
    --bg2: #1f0850;
    --bg3: #2b0d6b;
    --bg4: #360f80;
    --accent: #9333ea;
    --accent2: #a855f7;
    --accent3: #c084fc;
    --gold: #f59e0b;
    --gold2: #fbbf24;
    --pink: #e879f9;
    --blue: #818cf8;
    --cream: #faf5ff;
    --text: #ede9fe;
    --muted: #c4b5fd;
    --subtle: #a78bfa;
    --border: rgba(167,139,250,0.22);
    --border2: rgba(192,132,252,0.4);
    --white: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

p {
    font-weight: 300;
}

/* ── UTILITY ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent3);
    margin-bottom: 18px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--accent3);
    }

.divider-line {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #d97706);
    color: #1a0040;
    padding: 13px 30px;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

    .btn-primary:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

.btn-secondary {
    display: inline-block;
    background: rgba(147,51,234,0.25);
    color: var(--cream);
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(192,132,252,0.55);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

    .btn-secondary:hover {
        background: rgba(147,51,234,0.4);
        border-color: var(--accent3);
        transform: translateY(-1px);
    }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--cream);
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(250,245,255,0.45);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

    .btn-outline:hover {
        background: rgba(250,245,255,0.08);
        border-color: var(--cream);
    }

/* ── FORMS ── */
.form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--cream);
    transition: border-color 0.2s;
    outline: none;
}

    .form-input:focus {
        border-color: var(--accent3);
        background: rgba(255,255,255,0.07);
    }

    .form-input::placeholder {
        color: rgba(167,139,250,0.4);
    }

select.form-input option {
    background: var(--bg2);
    color: var(--cream);
}

/* ══════════════ NAV ══════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(167,139,250,0.2);
    box-shadow: 0 1px 24px rgba(0,0,0,0.18);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 900;
    color: #16043a;
    line-height: 1;
}

    .logo-main span {
        color: var(--gold);
    }

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3px;
}

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

    .nav-links a {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: #4a3570;
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--accent);
        }

.nav-cta {
    padding: 9px 20px !important;
    font-size: 12px !important;
}

/* ══════════════ HERO ══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.orb1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 65%);
}

.orb2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 65%);
}

.orb3 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 38%;
    background: radial-gradient(circle, rgba(232,121,249,0.12), transparent 65%);
}

.cta-orb1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(168,85,247,0.28), transparent 70%);
}

.cta-orb2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -50px;
    background: radial-gradient(circle, rgba(232,121,249,0.2), transparent 70%);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(192,132,252,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(192,132,252,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold2);
    animation: throb 2s infinite;
}

@keyframes throb {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6)
    }
}

.hero-title {
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.04;
    color: #fff;
}

    .hero-title .accent {
        color: var(--gold2);
        display: block;
    }

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    margin: 24px 0 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── CARDS ── */
.glass-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
    }

.card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent3);
    margin-bottom: 12px;
}

.mission-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.65;
}

/* ── CITY TILES ── */
.city-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.city-tile {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

    .city-tile:hover {
        background: rgba(147,51,234,0.2);
        border-color: var(--border2);
    }

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold2);
    margin-bottom: 10px;
    position: relative;
}

    .pulse-dot::after {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 1.5px solid rgba(251,191,36,0.35);
        animation: pulse 2.4s infinite;
    }

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 0.7
    }

    50% {
        transform: scale(1.8);
        opacity: 0
    }
}

.city-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.city-desc {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
}

.city-chip {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold2);
    background: rgba(245,158,11,0.12);
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid rgba(245,158,11,0.25);
}

/* ── STATS ── */
.stats-glass {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 22px;
}

.stats-hdr {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(192,132,252,0.5);
    margin-bottom: 14px;
}

.stats-row {
    display: flex;
}

.stat-cell {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgba(192,132,252,0.12);
}

    .stat-cell:last-child {
        border-right: none;
    }

.stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}

    .stat-n sup {
        font-size: 13px;
    }

.stat-l {
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
    line-height: 1.3;
}

/* ══════════════ QUOTE BAND ══════════════ */
.quote-band {
    background: linear-gradient(135deg, var(--bg3) 0%, #3d1285 50%, var(--bg3) 100%);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .quote-band::before {
        content: '\201C';
        font-family: 'Playfair Display', serif;
        font-size: 260px;
        font-weight: 900;
        color: rgba(147,51,234,0.1);
        position: absolute;
        top: -50px;
        left: 20px;
        line-height: 1;
        pointer-events: none;
    }

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px,2.8vw,32px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

    .quote-text strong {
        font-style: normal;
        color: var(--gold2);
        font-weight: 700;
    }

.quote-attr {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent3);
    position: relative;
    z-index: 1;
}

/* ══════════════ SECTION WRAPPERS ══════════════ */
.section-wrap {
    padding: 90px 48px;
}

    .section-wrap.alt {
        background: rgba(255,255,255,0.025);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.section-head {
    font-size: clamp(26px,3vw,42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.65;
}

/* ══════════════ PROBLEM / SOLUTION ══════════════ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.prose-head {
    font-size: clamp(26px,3vw,38px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.18;
}

.prose-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 14px;
}

.solution-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(8px);
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--gold));
    }

    .solution-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 22px;
    }

.sol-point {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.sol-icon {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    flex-shrink: 0;
    background: rgba(147,51,234,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sol-icon svg {
        width: 16px;
        height: 16px;
    }

.sol-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 3px;
}

.sol-body {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.55;
}

/* ══════════════ MODEL ══════════════ */
.model-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.model-card {
    background: var(--bg2);
    padding: 32px 26px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
}

    .model-card:hover {
        background: rgba(147,51,234,0.18);
    }

.mc-num {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 900;
    color: rgba(147,51,234,0.18);
    position: absolute;
    top: 14px;
    right: 16px;
    line-height: 1;
}

.mc-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(147,51,234,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .mc-icon svg {
        width: 20px;
        height: 20px;
    }

.mc-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.mc-body {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
}

/* ══════════════ JOURNEY ══════════════ */
.journey-row {
    display: flex;
    gap: 0;
    position: relative;
}

    .journey-row::before {
        content: '';
        position: absolute;
        top: 27px;
        left: 27px;
        right: 27px;
        height: 1px;
        background: linear-gradient(90deg, var(--accent), var(--gold), var(--pink), var(--accent));
        opacity: 0.35;
    }

.j-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.j-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(192,132,252,0.35);
    box-shadow: 0 0 20px rgba(147,51,234,0.4);
}

.j-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 6px;
}

.j-body {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

.j-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold2);
    background: rgba(245,158,11,0.12);
    padding: 2px 8px;
    border-radius: 2px;
}

/* ══════════════ ORG DIAGRAM ══════════════ */
.org-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-top-box {
    background: linear-gradient(135deg, rgba(147,51,234,0.35), rgba(99,102,241,0.25));
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    padding: 22px 48px;
    text-align: center;
    position: relative;
    min-width: 340px;
    box-shadow: 0 0 40px rgba(147,51,234,0.25);
}

    .org-top-box::after {
        content: '';
        position: absolute;
        bottom: -32px;
        left: 50%;
        width: 1px;
        height: 32px;
        background: var(--border2);
    }

.org-top-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.org-top-sub {
    font-size: 12px;
    color: var(--accent3);
    margin-top: 5px;
    font-weight: 500;
}

.org-arms {
    display: flex;
    width: 520px;
    justify-content: space-between;
    position: relative;
}

    .org-arms::before {
        content: '';
        position: absolute;
        top: 0;
        left: 15%;
        right: 15%;
        height: 1px;
        background: var(--border2);
    }

.org-arm {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .org-arm::before {
        content: '';
        display: block;
        width: 1px;
        height: 32px;
        background: var(--border2);
    }

.org-arm-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 20px;
    text-align: center;
    width: 100%;
}

.org-arm-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 4px;
}

.org-arm-sub {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
}

.org-arm-chip {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold2);
    background: rgba(245,158,11,0.1);
    padding: 2px 8px;
    border-radius: 2px;
    border: 1px solid rgba(245,158,11,0.2);
}

.org-gap {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin-top: 8px;
    align-self: center;
    border-left: 1px dashed rgba(192,132,252,0.3);
}

.org-company-wrap {
    text-align: center;
}

.org-company-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.org-company-box {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    border: 1.5px dashed rgba(129,140,248,0.4);
    border-radius: 6px;
    padding: 16px 40px;
}

.org-company-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.org-company-sub {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 3px;
}

/* ══════════════ FUNDING ══════════════ */
.funding-hero {
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(135deg, rgba(147,51,234,0.2), rgba(99,102,241,0.15));
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

    .funding-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--gold), var(--pink), transparent);
    }

.funding-big {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px,7vw,80px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.funding-big-label {
    font-size: 15px;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 300;
}

.funding-big-sub {
    font-size: 12px;
    color: var(--accent3);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.f-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.f-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    border-radius: 6px 0 0 6px;
}

.f-card-inner {
    padding-left: 16px;
}

.f-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.f-amount {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.f-body {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}

.f-items {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.f-item {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: baseline;
}

    .f-item::before {
        content: '—';
        color: var(--accent3);
        flex-shrink: 0;
    }

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

.tier-box {
    border: 1.5px solid var(--border);
    border-radius: 7px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    background: rgba(255,255,255,0.03);
}

    .tier-box:hover {
        border-color: var(--border2);
        background: rgba(147,51,234,0.1);
    }

    .tier-box.hot {
        border-color: var(--accent);
        background: rgba(147,51,234,0.15);
        box-shadow: 0 0 32px rgba(147,51,234,0.2);
    }

.tier-badge2 {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    font-weight: 700;
}

.tier-amt {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.tier-nm {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 14px;
}

.tier-ps {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
}

.tier-p {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 8px;
}

    .tier-p::before {
        content: '✓';
        color: var(--gold2);
        flex-shrink: 0;
        font-weight: 700;
    }

/* ══════════════ BOARD ══════════════ */
.board-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.b-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px 16px;
    text-align: center;
}

.b-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(147,51,234,0.35);
}

.b-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 3px;
}

.b-role {
    font-size: 11px;
    color: var(--gold2);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.b-desc {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.45;
}

.partner-hdr {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

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

.p-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 16px 18px;
}

.p-city {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 4px;
}

.p-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 5px;
}

.p-desc {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.45;
}

/* ══════════════ TIMELINE ══════════════ */
.tl {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

    .tl::before {
        content: '';
        position: absolute;
        top: 27px;
        bottom: 27px;
        left: 27px;
        width: 1px;
        background: linear-gradient(180deg, var(--accent), var(--gold), var(--pink), var(--accent));
        opacity: 0.4;
    }

.tl-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 32px;
}

.tl-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
    border: 2px solid rgba(192,132,252,0.35);
    box-shadow: 0 0 20px rgba(147,51,234,0.35);
}

.tl-content {
    flex: 1;
    padding-top: 10px;
}

.tl-phase {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent3);
    margin-bottom: 6px;
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.tl-body {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
    max-width: 560px;
}

.tl-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tl-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(192,132,252,0.08);
    border: 1px solid rgba(192,132,252,0.18);
    padding: 3px 10px;
    border-radius: 2px;
}

/* ══════════════ CTA ══════════════ */
.cta-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, var(--bg3) 0%, #4a1090 50%, var(--bg3) 100%);
    border-top: 1px solid var(--border2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-ey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 24px;
}

    .cta-ey::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--gold2);
    }

.cta-h {
    font-size: clamp(34px,4.5vw,56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .cta-h .acc {
        color: var(--gold2);
    }

.cta-b {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 42px;
}

.cta-acts {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 56px;
}

.c-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px 18px;
    text-align: center;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(147,51,234,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .c-icon svg {
        width: 20px;
        height: 20px;
    }

.c-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent3);
    margin-bottom: 6px;
}

.c-body {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
    padding: 38px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent3);
}

    .footer-logo span {
        color: var(--muted);
        font-weight: 400;
    }

.footer-note {
    font-size: 11px;
    color: rgba(192,132,252,0.4);
    margin-top: 3px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        font-size: 12px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--accent3);
        }

.footer-copy {
    font-size: 12px;
    color: rgba(192,132,252,0.35);
}

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-eyebrow {
    animation: fadeUp 0.5s ease both;
}

.hero-title {
    animation: fadeUp 0.5s 0.1s ease both;
}

.hero-subtitle {
    animation: fadeUp 0.5s 0.2s ease both;
}

.hero-actions {
    animation: fadeUp 0.5s 0.3s ease both;
}

.glass-card {
    animation: fadeUp 0.5s 0.28s ease both;
}

.city-row {
    animation: fadeUp 0.5s 0.38s ease both;
}

.stats-glass {
    animation: fadeUp 0.5s 0.46s ease both;
}

/* ══════════════════════════════════════
   APPRENTICESHIP TRACKS
══════════════════════════════════════ */

.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

/* ── CARD BASE ── */
.track-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(192,132,252,0.22);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
}

    .track-card:hover {
        border-color: rgba(192,132,252,0.5);
        background: rgba(147,51,234,0.07);
    }

    .track-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

.tc-1::before {
    background: linear-gradient(90deg, #e879f9, #a855f7);
}

.tc-2::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.tc-3::before {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.tc-4::before {
    background: linear-gradient(90deg, #10b981, #3b82f6);
}

.tc-5::before {
    background: linear-gradient(90deg, #f59e0b, #10b981);
}

.card-inner {
    padding: 26px 24px 24px;
}

/* ── CARD HEADER ── */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.track-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .track-icon svg {
        width: 22px;
        height: 22px;
    }

.ti-1 {
    background: rgba(232,121,249,0.18);
}

.ti-2 {
    background: rgba(245,158,11,0.18);
}

.ti-3 {
    background: rgba(59,130,246,0.18);
}

.ti-4 {
    background: rgba(16,185,129,0.18);
}

.ti-5 {
    background: rgba(245,158,11,0.15);
}

.track-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tn-1 {
    color: #e879f9;
}

.tn-2 {
    color: #fbbf24;
}

.tn-3 {
    color: #60a5fa;
}

.tn-4 {
    color: #34d399;
}

.tn-5 {
    color: #fbbf24;
}

.track-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

/* ── HOOK ── */
.track-hook {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #e9d5ff;
    line-height: 1.55;
    border-left: 2px solid rgba(192,132,252,0.35);
    padding-left: 14px;
    margin-bottom: 20px;
}

/* ── CARD SECTIONS ── */
.card-section {
    margin-bottom: 18px;
}

    .card-section:last-child {
        margin-bottom: 0;
    }

.cs-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(192,132,252,0.6);
    margin-bottom: 8px;
}

.day-text {
    font-size: 13px;
    color: #c4b5fd;
    font-weight: 300;
    line-height: 1.65;
}

/* ── SKILL PILLS ── */
.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.skill-pill {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 4px 11px;
    border-radius: 20px;
    background: rgba(147,51,234,0.18);
    border: 1px solid rgba(192,132,252,0.25);
    color: #ddd6fe;
}

/* ── CAREER PATHS ── */
.careers-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: #c4b5fd;
    font-weight: 400;
}

.career-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cd-1 {
    background: #e879f9;
}

.cd-2 {
    background: #fbbf24;
}

.cd-3 {
    background: #60a5fa;
}

.cd-4 {
    background: #34d399;
}

.cd-5 {
    background: #fbbf24;
}

/* ── FIT LIST ── */
.fit-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    color: #c4b5fd;
    font-weight: 300;
    line-height: 1.5;
}

.fit-check {
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

.fc-1 {
    color: #e879f9;
}

.fc-2 {
    color: #fbbf24;
}

.fc-3 {
    color: #60a5fa;
}

.fc-4 {
    color: #34d399;
}

.fc-5 {
    color: #fbbf24;
}

/* ── MARKET BAND ── */
.market-band {
    margin-top: 20px;
    border-top: 1px solid rgba(192,132,252,0.12);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.market-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(192,132,252,0.5);
}

.market-value {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
}

.mv-1 {
    color: #e879f9;
}

.mv-2 {
    color: #fbbf24;
}

.mv-3 {
    color: #60a5fa;
}

.mv-4 {
    color: #34d399;
}

.mv-5 {
    color: #fbbf24;
}

.market-note {
    font-size: 10px;
    color: rgba(192,132,252,0.45);
    font-style: italic;
    text-align: right;
    max-width: 160px;
    line-height: 1.4;
}

/* ── TRACK 5 WIDE LAYOUT ── */
.track-wide {
    margin-bottom: 14px;
}

.track-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.track-wide-header {
    grid-column: 1 / -1;
}

/* ── APPLY STRIP ── */
.tracks-apply-strip {
    background: linear-gradient(135deg, rgba(147,51,234,0.2), rgba(99,102,241,0.15));
    border: 1px solid rgba(192,132,252,0.35);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

    .tracks-apply-strip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #9333ea, #f59e0b, #e879f9, transparent);
    }

.tracks-apply-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.tracks-apply-sub {
    font-size: 13px;
    color: #c4b5fd;
    font-weight: 300;
    line-height: 1.55;
    max-width: 480px;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE — 768px and below
══════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── NAV ── */
    .nav {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
    }

    .nav-links {
        display: none; /* hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: rgba(255,255,255,0.97);
        border-top: 1px solid rgba(147,51,234,0.15);
        padding: 8px 0;
        order: 3;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            padding: 12px 20px;
            font-size: 14px;
            border-bottom: 1px solid rgba(147,51,234,0.08);
            color: #4a3570;
        }

            .nav-links a.btn-primary {
                margin: 10px 20px;
                text-align: center;
                border-bottom: none;
                border-radius: 3px;
            }

    .nav-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
        order: 2;
    }

        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #252c24;
            border-radius: 2px;
            transition: all 0.25s;
        }

        .nav-hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    /* ── HERO ── */
    .hero {
        min-height: auto;
        padding: 80px 24px 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 18px 0 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn-primary,
        .hero-actions .btn-secondary {
            text-align: center;
            width: 100%;
        }

    /* ── CITY ROW ── */
    .city-row {
        grid-template-columns: 1fr;
    }

    /* ── STATS ── */
    .stats-row {
        flex-wrap: wrap;
    }

    .stat-cell {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(192,132,252,0.12);
        padding: 10px 0;
    }

        .stat-cell:nth-child(odd) {
            border-right: 1px solid rgba(192,132,252,0.12);
        }

        .stat-cell:nth-last-child(-n+2) {
            border-bottom: none;
        }

    /* ── QUOTE BAND ── */
    .quote-band {
        padding: 40px 24px;
    }

        .quote-band::before {
            font-size: 140px;
            top: -20px;
        }

    .quote-text {
        font-size: 18px;
    }

    /* ── SECTION WRAPS ── */
    .section-wrap {
        padding: 60px 24px;
    }

    .section-head {
        font-size: 28px;
    }

    /* ── PROBLEM / SOLUTION ── */
    .two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .prose-head {
        font-size: 26px;
    }

    /* ── MODEL GRID ── */
    .model-grid {
        grid-template-columns: 1fr;
    }

    /* ── JOURNEY ── */
    .journey-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding-left: 28px;
        position: relative;
    }

        .journey-row::before {
            top: 27px;
            left: 27px;
            right: auto;
            width: 1px;
            height: calc(100% - 54px);
            background: linear-gradient(180deg, var(--accent), var(--gold), var(--pink), var(--accent));
        }

    .j-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }

    .j-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .j-step > div {
        padding-top: 4px;
    }

    /* ── TRACK GRID ── */
    .track-grid {
        grid-template-columns: 1fr;
    }

    .track-wide-inner {
        grid-template-columns: 1fr;
    }

    .track-wide-header {
        grid-column: 1;
    }

    /* ── ORG DIAGRAM ── */
    .org-arms {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        align-items: center;
    }

        .org-arms::before {
            display: none;
        }

    .org-arm {
        width: 100%;
        max-width: 320px;
    }

        .org-arm::before {
            height: 16px;
        }

    .org-top-box {
        min-width: unset;
        width: 100%;
        max-width: 320px;
        padding: 18px 24px;
    }

    .org-company-box {
        padding: 14px 24px;
    }

    /* ── FUNDING ── */
    .funding-grid {
        grid-template-columns: 1fr;
    }

    .funding-big {
        font-size: 48px;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    /* ── BOARD ── */
    .board-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    /* ── TIMELINE ── */
    .tl::before {
        left: 27px;
    }

    .tl-item {
        gap: 16px;
    }

    .tl-body {
        font-size: 13px;
    }

    .tl-tags {
        gap: 6px;
    }

    /* ── CTA ── */
    .cta-section {
        padding: 70px 24px;
    }

    .cta-h {
        font-size: 32px;
    }

    .cta-acts {
        flex-direction: column;
        align-items: stretch;
    }

        .cta-acts .btn-primary,
        .cta-acts .btn-secondary,
        .cta-acts .btn-outline {
            text-align: center;
            width: 100%;
        }

    .contact-row {
        grid-template-columns: 1fr;
    }

    /* ── TRACKS APPLY STRIP ── */
    .tracks-apply-strip {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

        .tracks-apply-strip .btn-primary {
            width: 100%;
            text-align: center;
        }

    /* ── FOOTER ── */
    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* ── APPLY FORM ── */
    .form-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════
   TABLET — 769px to 1024px
══════════════════════════════════════ */

@media (min-width: 769px) and (max-width: 1024px) {

    .nav {
        padding: 16px 28px;
    }

    .hero {
        padding: 90px 32px 60px;
    }

    .hero-inner {
        gap: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-wrap {
        padding: 70px 32px;
    }

    .two-col {
        gap: 40px;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .track-grid {
        grid-template-columns: 1fr;
    }

    .track-wide-inner {
        grid-template-columns: 1fr 1fr;
    }

    .funding-grid {
        grid-template-columns: 1fr;
    }

    .tier-grid {
        grid-template-columns: 1fr 1fr;
    }

    .board-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-row {
        grid-template-columns: 1fr 1fr;
    }

    .org-arms {
        width: 100%;
    }

    .org-top-box {
        min-width: unset;
        width: 80%;
    }
}

/* Hide hamburger on desktop */
.nav-hamburger {
    display: none;
}
