﻿:root {
    color-scheme: dark;
    --bg: #06080c;
    --panel: #0d1017;
    --ink: #f3f5f8;
    --muted: #9aa4b2;
    --muted-2: #6d7887;
    --line: #20262f;
    --orange: #f26419;
    --orange-hi: #ff8a3d;
    --maxw: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(242,100,25,.06) 0%, transparent 70%);
    }

a {
    color: inherit;
    text-decoration: none;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 48px);
    background: rgba(6,8,12,.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.brand-phase {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links a {
        color: var(--muted);
        font-size: 14.5px;
        transition: color .2s;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--ink);
        }

    .nav-links .btn-primary {
        color: #000;
    }

        .nav-links .btn-primary:hover {
            color: #000;
        }

/* AURA MARK */
.aura-mark {
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(242,100,25,.45));
    flex-shrink: 0;
}

.aura-ring {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: aura-draw 2s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes aura-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.aura-orbit-1 {
    transform-origin: 100px 100px;
    animation: aura-spin 7s linear infinite;
}

.aura-orbit-2 {
    transform-origin: 100px 100px;
    animation: aura-spin 11s linear infinite reverse;
}

@keyframes aura-spin {
    to {
        transform: rotate(360deg);
    }
}

.aura-pulse {
    transform-origin: 100px 100px;
    animation: aura-pulse-kf 3.2s ease-in-out infinite;
}

@keyframes aura-pulse-kf {
    0%, 100% {
        opacity: .25;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.12);
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    transition: transform .12s ease, background .2s, border-color .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-sm {
    padding: 9px 17px;
    font-size: 14.5px;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--orange);
    color: #000;
    border-color: var(--orange);
    font-weight: 650;
}

    .btn-primary:hover {
        background: var(--orange-hi);
    }

/* LAYOUT */
.wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 720;
    letter-spacing: -0.02em;
    line-height: 1.12;
    max-width: 24ch;
    padding-bottom: .06em;
}

.lead {
    margin-top: 20px;
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--muted);
    max-width: 64ch;
    line-height: 1.62;
}

.sec {
    position: relative;
    padding: clamp(72px, 10vh, 120px) 0;
    border-top: 1px solid var(--line);
}

/* PAGE HERO */
.page-hero {
    position: relative;
    padding: calc(66px + clamp(56px, 9vh, 96px)) 0 clamp(56px, 9vh, 96px);
}

    .page-hero h1 {
        font-size: clamp(36px, 6vw, 76px);
        font-weight: 760;
        line-height: 1.06;
        letter-spacing: -.03em;
        max-width: 18ch;
        padding-bottom: .12em;
        background: linear-gradient(175deg, #ffffff 28%, #b9c6e0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.notice-card {
    margin-top: 32px;
    padding: 18px 22px;
    max-width: 62ch;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* OFFERING */
.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--line);
}

.use-cell {
    padding: 28px;
    background: var(--panel);
}

.use-label {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.use-cell p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* PROCESS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.step {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

.step-n {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
}

.step h3 {
    font-size: 17px;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ELIGIBILITY */
.elig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.elig-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

    .elig-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--orange);
        margin-bottom: 10px;
    }

    .elig-card p {
        color: var(--muted);
        font-size: 14.5px;
        line-height: 1.6;
    }

.elig-note {
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--muted-2);
    max-width: 66ch;
    line-height: 1.7;
}

/* CTA */
.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

    .cta-row h2 {
        max-width: 28ch;
    }

/* DISCLAIMER */
.disclaimer {
    border-top: 1px solid var(--line);
    padding: clamp(36px, 5vh, 54px) 0;
}

    .disclaimer p {
        font-size: 13px;
        color: var(--muted-2);
        line-height: 1.78;
        max-width: 96ch;
    }

/* FOOTER */
footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 60px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
}

.foot-meta {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--muted);
    max-width: 32ch;
    line-height: 1.5;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
}

    .foot-links a {
        color: var(--ink);
        font-weight: 600;
        font-size: 14px;
        transition: color .2s;
    }

        .foot-links a:hover {
            color: var(--orange);
        }

.foot-legal {
    font-size: 12.5px;
    color: var(--muted-2);
    line-height: 1.75;
    max-width: 90ch;
}

/* REVEAL — noop; content always visible */

/* RESPONSIVE */
@media (max-width: 860px) {
    .nav-links a:not(.btn) {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .elig-grid {
        grid-template-columns: 1fr;
    }

    .use-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-links {
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .aura-ring {
        animation: none;
        stroke-dashoffset: 0;
    }

    .aura-orbit-1, .aura-orbit-2, .aura-pulse {
        animation: none;
    }
}