/* ============================================
   BLACKPAWA — Design System & Landing Page
   ============================================ */

/* --- Tokens --- */
:root {
    --void: #0A0A0A;
    --surface: #141414;
    --elevated: #1E1E1E;
    --border: #2A2A2A;
    --border-hover: #3A3A3A;

    --amber: #F5A623;
    --amber-muted: #C4841D;
    --amber-glow: rgba(245, 166, 35, 0.12);
    --amber-glow-strong: rgba(245, 166, 35, 0.25);

    --bone: #E8E0D4;
    --stone: #8A8278;
    --stone-light: #A09A90;

    --signal-green: #34D399;
    --signal-red: #EF4444;

    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--bone);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* --- Nav --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.logo-mark {
    font-size: 18px;
    line-height: 1;
}

.logo-a {
    font-size: 0.88em;
    letter-spacing: 0.22em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--stone-light);
}

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

.nav-cta {
    background: var(--amber);
    color: var(--void) !important;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s var(--ease-out);
}

.nav-cta:hover {
    background: var(--amber-muted);
    transform: translateY(-1px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-glow);
    border: 1px solid rgba(245, 166, 35, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}

.highlight {
    color: var(--amber);
    position: relative;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--stone-light);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.6s 0.2s var(--ease-out) both;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s 0.3s var(--ease-out) both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    transition: all 0.25s var(--ease-out);
}

.btn-primary {
    background: var(--amber);
    color: var(--void);
}

.btn-primary:hover {
    background: #fdb940;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--amber-glow-strong);
}

.hero-cta-note {
    font-size: 13px;
    color: var(--stone);
}

/* --- Terminal Visual --- */
.hero-visual {
    margin-top: 60px;
    width: 100%;
    max-width: 640px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s 0.4s var(--ease-out) both;
}

.terminal-window {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.4),
        0 0 80px var(--amber-glow);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--elevated);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}

.terminal-dots span:first-child { background: #EF4444; }
.terminal-dots span:nth-child(2) { background: #F5A623; }
.terminal-dots span:last-child { background: #34D399; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--stone);
}

.terminal-body {
    padding: 20px 20px 24px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 2;
}

.terminal-line {
    opacity: 0;
    animation: terminalType 0.3s var(--ease-out) forwards;
}

.terminal-line[data-delay="0"] { animation-delay: 0.8s; }
.terminal-line[data-delay="1"] { animation-delay: 1.6s; }
.terminal-line[data-delay="2"] { animation-delay: 2.4s; }
.terminal-line[data-delay="3"] { animation-delay: 3.0s; }
.terminal-line[data-delay="4"] { animation-delay: 3.8s; }
.terminal-line[data-delay="5"] { animation-delay: 4.4s; }

.t-prompt { color: var(--amber); margin-right: 8px; }
.t-cmd { color: var(--bone); font-weight: 500; }
.t-flag { color: var(--stone-light); margin-left: 6px; }
.t-val { color: var(--amber-muted); margin-left: 4px; }
.t-info { color: var(--stone-light); }
.t-success { color: var(--signal-green); font-weight: 500; }
.t-muted { color: var(--stone); font-size: 12px; }

/* --- Sections Shared --- */
.section-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-bottom: 48px;
}

/* --- Problem Section --- */
.problem {
    padding: 120px 24px;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s var(--ease-out);
}

.pain-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pain-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 14px;
    color: var(--stone-light);
    line-height: 1.5;
}

.pain-closer {
    font-size: 18px;
    color: var(--stone-light);
    text-align: center;
}

.pain-closer strong {
    color: var(--amber);
}

/* --- Features --- */
.features {
    padding: 120px 24px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.feature-card--primary {
    grid-column: 1 / -1;
    border-color: rgba(245, 166, 35, 0.15);
    background: linear-gradient(135deg, var(--surface), rgba(245, 166, 35, 0.04));
}

.feature-card--primary:hover {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 16px 48px var(--amber-glow);
}

.feature-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--amber-glow);
    border: 1px solid rgba(245, 166, 35, 0.2);
    color: var(--amber);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 100px;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--stone-light);
    line-height: 1.55;
    max-width: 500px;
}

.feature-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: 14px;
    color: var(--stone);
}

/* --- How It Works --- */
.how-it-works {
    padding: 120px 24px;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 64px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.step:first-child {
    border-top: 1px solid var(--border);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--amber);
    opacity: 0.3;
    line-height: 1;
    min-width: 72px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--stone-light);
    max-width: 480px;
}

.how-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.how-stat {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 16px;
}

.how-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 4px;
}

.how-stat-label {
    font-size: 14px;
    color: var(--stone);
}

/* --- Waitlist --- */
.waitlist {
    padding: 120px 24px;
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.waitlist-card {
    background: linear-gradient(135deg, var(--surface), rgba(245, 166, 35, 0.03));
    border: 1px solid rgba(245, 166, 35, 0.12);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.waitlist-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--amber-glow) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-card .section-label,
.waitlist-card .section-title {
    position: relative;
}

.waitlist-card .section-title {
    margin-bottom: 16px;
}

.waitlist-sub {
    font-size: 16px;
    color: var(--stone-light);
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.waitlist-form {
    position: relative;
}

.input-group {
    display: flex;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto 12px;
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input::placeholder {
    color: var(--stone);
}

.input-group input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-note {
    font-size: 12px;
    color: var(--stone);
}

.waitlist-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.waitlist-success p {
    font-size: 16px;
    color: var(--bone);
}

/* --- Footer --- */
.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--stone);
    font-size: 13px;
    font-style: italic;
    margin-left: 12px;
    font-family: var(--font-body);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--stone-light);
}

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

.footer-copy {
    font-size: 13px;
    color: var(--stone);
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes terminalType {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* --- Scroll Reveal --- */
.pain-card,
.feature-card,
.step,
.how-stat {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.pain-card.visible,
.feature-card.visible,
.step.visible,
.how-stat.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

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

    .feature-card--primary {
        grid-column: 1;
    }

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

    .step {
        flex-direction: column;
        gap: 12px;
    }

    .step-number {
        font-size: 36px;
    }

    .input-group {
        flex-direction: column;
    }

    .waitlist-card {
        padding: 40px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 4px;
    }

    .footer-tagline {
        margin-left: 0;
    }
}

/* --- Footer Mission --- */
.footer-mission {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: var(--stone);
    font-style: italic;
    margin-top: 8px;
}

/* --- Nav Active Link --- */
.nav-link-active {
    color: var(--amber) !important;
}

/* ============================================
   PAGE HERO (About, Studio)
   ============================================ */
.page-hero {
    padding: 140px 24px 80px;
    position: relative;
}

.page-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 680px;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.page-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--stone-light);
    line-height: 1.65;
    max-width: 600px;
    animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    padding: 80px 24px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-section--alt {
    background: var(--surface);
}

.about-grid {
    max-width: 680px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-light);
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--bone);
}

.about-text em {
    color: var(--amber);
    font-style: italic;
}

.founder-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.role-tag {
    background: var(--amber-glow);
    border: 1px solid rgba(245, 166, 35, 0.15);
    color: var(--amber);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
}

/* Dual Track */
.dual-track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.track-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s var(--ease-out);
}

.track-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.track-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.track-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.track-card p {
    font-size: 14px;
    color: var(--stone-light);
    line-height: 1.55;
    margin-bottom: 16px;
}

.track-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    transition: opacity 0.2s ease;
}

.track-link:hover {
    opacity: 0.8;
}

.dual-track-note {
    font-size: 15px;
    color: var(--stone);
    text-align: center;
    font-style: italic;
}

/* Mission Quote */
.about-section--mission {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--void), rgba(245, 166, 35, 0.03));
}

.mission-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--bone);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.mission-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--amber);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* ============================================
   STUDIO PAGE
   ============================================ */
.studio-section {
    padding: 80px 24px;
    position: relative;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.studio-section--alt {
    background: var(--surface);
}

.studio-section--cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--void), rgba(245, 166, 35, 0.03));
}

/* Verticals Grid */
.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vertical-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s var(--ease-out);
}

.vertical-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.vertical-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--amber);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.vertical-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vertical-card p {
    font-size: 14px;
    color: var(--stone-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.vertical-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vertical-tags span {
    background: var(--elevated);
    border: 1px solid var(--border);
    color: var(--stone-light);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
}

/* Ecosystem */
.ecosystem-intro {
    font-size: 16px;
    color: var(--stone-light);
    margin-bottom: 32px;
    max-width: 560px;
}

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

.eco-card {
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s var(--ease-out);
}

.eco-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.eco-emoji {
    font-size: 28px;
    margin-bottom: 14px;
}

.eco-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.eco-card p {
    font-size: 13px;
    color: var(--stone-light);
    line-height: 1.5;
}

/* Standards */
.standards-list {
    max-width: 640px;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.standard-item:first-child {
    border-top: 1px solid var(--border);
}

.standard-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--amber);
    opacity: 0.4;
    min-width: 40px;
    line-height: 1.3;
}

.standard-item h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.standard-item p {
    font-size: 14px;
    color: var(--stone-light);
}

/* ============================================
   RESPONSIVE — New Pages
   ============================================ */
@media (max-width: 768px) {
    .dual-track-grid,
    .vertical-grid {
        grid-template-columns: 1fr;
    }

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

    .mission-quote {
        font-size: 20px;
    }
}
