/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
    --c-bg: #FAFAF9;
    --c-surface: #FFFFFF;
    --c-border: #E8E6E1;
    --c-border-light: #F0EEE9;
    --c-text-primary: #18181B;
    --c-text-secondary: #6B7280;
    --c-text-muted: #9CA3AF;
    --c-accent: #1A6B4A;
    --c-accent-light: #E8F5EF;
    --c-accent-hover: #155E3E;
    --c-amber: #D97706;
    --c-amber-light: #FEF3C7;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --r-full: 100px;

    --sh-xs: 0 1px 2px rgba(0, 0, 0, .05);
    --sh-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --sh-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .04);
    --sh-lg: 0 12px 32px rgba(0, 0, 0, .10), 0 4px 8px rgba(0, 0, 0, .04);

    --font-display: 'Sora', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-h: 56px;
}

[data-theme="dark"] {
    --c-bg: #111110;
    --c-surface: #1C1C1A;
    --c-border: #2A2A28;
    --c-border-light: #232321;
    --c-text-primary: #F4F3F0;
    --c-text-secondary: #A09F99;
    --c-text-muted: #6B6A64;
    --c-accent: #22C278;
    --c-accent-light: #0D2B1F;
    --c-accent-hover: #1EAA69;
    --c-amber: #F59E0B;
    --c-amber-light: #1F1500;
    --sh-xs: 0 1px 2px rgba(0, 0, 0, .2);
    --sh-sm: 0 1px 3px rgba(0, 0, 0, .3);
    --sh-md: 0 4px 12px rgba(0, 0, 0, .4);
    --sh-lg: 0 12px 32px rgba(0, 0, 0, .5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background .2s, color .2s;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(17, 17, 16, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
    transition: background .2s;
}

[data-theme="light"] .nav {
    background: rgba(250, 250, 249, .92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -.02em;
}

.nav-logo-mark {
    width: 30px;
    height: 30px;
    background: var(--c-accent);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-mark svg {
    width: 16px;
    height: 16px;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-secondary);
    padding: 5px 10px;
    border-radius: var(--r-sm);
    transition: color .12s, background .12s;
}

.nav-link:hover {
    color: var(--c-text-primary);
    background: var(--c-border-light);
}

.nav-link.active {
    color: var(--c-accent);
    background: var(--c-accent-light);
}

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

.nav-theme-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-secondary);
    border: 1px solid var(--c-border);
    transition: all .12s;
}

.nav-theme-btn:hover {
    color: var(--c-text-primary);
    border-color: var(--c-text-muted);
}

.nav-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    align-items: center;
    justify-content: center;
    color: var(--c-text-primary);
    border: 1px solid var(--c-border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--r-md);
    padding: 8px 16px;
    transition: all .15s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-primary:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
}

.btn-secondary {
    background: var(--c-surface);
    color: var(--c-text-primary);
    border: 1px solid var(--c-border);
    box-shadow: var(--sh-xs);
}

.btn-secondary:hover {
    border-color: var(--c-text-muted);
}

/* mobile drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px 20px;
    z-index: 199;
    box-shadow: var(--sh-lg);
}

.nav-mobile.open {
    display: block;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.nav-mobile-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-text-secondary);
    padding: 10px 12px;
    border-radius: var(--r-sm);
    display: block;
}

.nav-mobile-link:hover {
    background: var(--c-bg);
    color: var(--c-text-primary);
}

.nav-mobile-link.active {
    background: var(--c-accent-light);
    color: var(--c-accent);
}

.nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile-actions .btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: var(--r-lg);
}

/* ─── EYEBROW ─────────────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 10px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    flex-shrink: 0;
}

/* ─── PAGE WRAP ──────────────────────────────────────────────────────── */
.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.about-hero {
    padding: calc(var(--nav-h) + 60px) 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle grid background */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--c-border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-border-light) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .5;
    pointer-events: none;
}

/* fade out grid at bottom */
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--c-bg));
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--c-amber-light);
    border: 1px solid rgba(217, 119, 6, .2);
    border-radius: var(--r-full);
    padding: 4px 14px 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-amber);
    margin-bottom: 20px;
}

.about-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-amber);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
    color: var(--c-text-primary);
    margin-bottom: 20px;
}

.about-hero h1 em {
    font-style: normal;
    color: var(--c-accent);
}

.about-hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--c-text-secondary);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 36px;
}

.about-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--c-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--r-lg);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(34, 194, 120, .3), inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: all .15s;
}

.btn-hero-primary:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 194, 120, .35);
}

.btn-hero-secondary {
    background: var(--c-surface);
    color: var(--c-text-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--sh-xs);
    transition: all .15s;
}

.btn-hero-secondary:hover {
    border-color: var(--c-text-muted);
}

/* ─── STATS STRIP ─────────────────────────────────────────────────────── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 72px;
    box-shadow: var(--sh-sm);
}

.stat-cell {
    background: var(--c-surface);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: background .15s;
}

.stat-cell::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 20%;
    width: 1px;
    background: var(--c-border);
}

.stat-cell:last-child::after {
    display: none;
}

.stat-cell:hover {
    background: var(--c-bg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number span {
    color: var(--c-accent);
}

.stat-label {
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 500;
}

/* ─── SECTION SHARED ──────────────────────────────────────────────────── */
.section {
    margin-bottom: 72px;
}

.section-header {
    margin-bottom: 36px;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
    color: var(--c-text-primary);
    margin-bottom: 10px;
}

.section-headline em {
    font-style: normal;
    color: var(--c-accent);
}

.section-sub {
    font-size: 15px;
    color: var(--c-text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

/* ─── MISSION / VISION ────────────────────────────────────────────────── */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mv-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--sh-xs);
    transition: box-shadow .2s, transform .2s;
}

.mv-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.mv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.mv-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.mv-card-text {
    font-size: 14px;
    color: var(--c-text-secondary);
    line-height: 1.75;
}

/* ─── WHY WE EXIST ────────────────────────────────────────────────────── */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-copy {}

.why-copy p {
    font-size: 15px;
    color: var(--c-text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.why-copy p:last-child {
    margin-bottom: 0;
}

.why-copy strong {
    color: var(--c-text-primary);
    font-weight: 600;
}

.why-problems {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-problem {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    transition: border-color .15s, box-shadow .15s;
}

.why-problem:hover {
    border-color: var(--c-accent);
    box-shadow: var(--sh-sm);
}

.why-problem-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.why-problem-text {
    font-size: 13px;
    color: var(--c-text-secondary);
    line-height: 1.55;
    padding-top: 6px;
}

.why-problem-text strong {
    color: var(--c-text-primary);
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

/* ─── WHAT WE OFFER ───────────────────────────────────────────────────── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.offer-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 22px;
    transition: box-shadow .15s, border-color .15s, transform .15s;
}

.offer-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(34, 194, 120, .25);
    transform: translateY(-3px);
}

.offer-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -.01em;
    margin-bottom: 8px;
}

.offer-text {
    font-size: 13px;
    color: var(--c-text-secondary);
    line-height: 1.65;
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 14px;
}

.offer-tag {
    font-size: 11px;
    font-weight: 500;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: 3px 9px;
    border-radius: var(--r-full);
}

/* ─── VALUES ──────────────────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.value-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px 16px;
    text-align: center;
    transition: box-shadow .15s, border-color .15s, transform .15s;
}

.value-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(34, 194, 120, .25);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.value-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-primary);
    margin-bottom: 6px;
}

.value-text {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* ─── QUOTE BLOCK ─────────────────────────────────────────────────────── */
.quote-block {
    background: var(--c-accent);
    border-radius: var(--r-2xl);
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 72px;
}

[data-theme="dark"] .quote-block {
    background: #0D2B1F;
    border: 1px solid #1A6B4A;
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 28px;
    font-family: var(--font-display);
    font-size: 160px;
    line-height: 1;
    color: rgba(255, 255, 255, .08);
    pointer-events: none;
    font-weight: 700;
}

[data-theme="dark"] .quote-block::before {
    color: rgba(34, 194, 120, .08);
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

[data-theme="dark"] .quote-text {
    color: var(--c-text-primary);
}

.quote-source {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .quote-source {
    color: var(--c-text-muted);
}

/* ─── TEAM / JOIN CTA ─────────────────────────────────────────────────── */
.join-section {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-2xl);
    padding: 52px 48px;
    text-align: center;
    box-shadow: var(--sh-sm);
    margin-bottom: 72px;
}

.join-section h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.2;
    color: var(--c-text-primary);
    margin-bottom: 14px;
}

.join-section h2 em {
    font-style: normal;
    color: var(--c-accent);
}

.join-section p {
    font-size: 16px;
    color: var(--c-text-secondary);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 32px;
}

.join-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-join-primary {
    background: var(--c-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--r-lg);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(34, 194, 120, .3), inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: all .15s;
}

.btn-join-primary:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 194, 120, .35);
}

.btn-join-secondary {
    background: var(--c-bg);
    color: var(--c-text-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: all .15s;
}

.btn-join-secondary:hover {
    border-color: var(--c-text-muted);
}

/* uni tags */
.uni-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.uni-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text-secondary);
    background: var(--c-bg);
}

.uni-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.uni-list-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: 12px;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 44px 0 28px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-top: 10px;
    max-width: 240px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-link {
    font-size: 13px;
    color: var(--c-text-secondary);
    transition: color .1s;
}

.footer-link:hover {
    color: var(--c-text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--c-border-light);
}

.footer-copy {
    font-size: 12px;
    color: var(--c-text-muted);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--c-text-muted);
}

.footer-legal a:hover {
    color: var(--c-text-secondary);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2)::after {
        display: none;
    }

    .stat-cell:nth-child(3) {
        border-top: 1px solid var(--c-border);
    }

    .stat-cell:nth-child(3)::after {
        display: block;
    }

    .stat-cell:nth-child(4) {
        border-top: 1px solid var(--c-border);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .quote-block,
    .join-section {
        padding: 40px 28px;
    }
}

@media (max-width: 640px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    :root {
        --nav-h: 52px;
    }

    .nav-links,
    .nav-desktop-cta {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .page-wrap {
        padding: 0 16px;
    }

    .about-hero {
        padding: calc(var(--nav-h) + 40px) 0 52px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero-sub {
        font-size: 15px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        padding: 14px;
    }

    .section {
        margin-bottom: 52px;
    }

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

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

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

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .quote-block,
    .join-section {
        padding: 32px 20px;
        border-radius: var(--r-xl);
    }

    .join-ctas {
        flex-direction: column;
    }

    .btn-join-primary,
    .btn-join-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* ─── UTILITY ─────────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}