:root {
    --bg: #07070c;
    --card: #101018;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f4f4f8;
    --muted: rgba(255, 255, 255, 0.66);
    --cyan: #38c6ec;
    --magenta: #b03088;
    --lavender: #c8a0e0;
    --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #000;
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;
    line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip {
    position: absolute;
    left: 12px;
    top: -40px;
    background: #fff;
    color: #000;
    padding: 8px 12px;
    z-index: 20;
}
.skip:focus { top: 12px; }

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
    background: #000;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    text-decoration: none;
    margin-right: auto;
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: rgba(255, 255, 255, 0.72); }
.chev { opacity: 0.85; }
.menu { position: relative; }
.menu-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    padding: 8px;
    border-radius: 12px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-panel a { display: block; padding: 8px 10px; border-radius: 8px; }
.menu-panel a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.menu:hover .menu-panel,
.menu:focus-within .menu-panel { display: grid; }
.nav-go { gap: 6px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #0a0a0f;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}
.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
}
.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #fff;
    position: relative;
    margin: 0 auto;
}
.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
}
.burger span::before { top: -5px; }
.burger span::after { top: 5px; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    display: grid;
    place-items: center;
    padding: 64px 24px 88px;
    text-align: center;
    background: #000;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12%;
    width: min(1100px, 130%);
    height: 68%;
    background: radial-gradient(ellipse at center, rgba(80, 196, 245, 0.95) 0%, rgba(24, 110, 210, 0.75) 28%, rgba(8, 40, 110, 0.4) 52%, rgba(0, 0, 0, 0) 72%);
    filter: blur(10px);
    pointer-events: none;
    transform: translateX(-50%);
    animation: hero-glow 16s ease-in-out infinite;
}
.hero::after {
    width: min(760px, 90%);
    height: 48%;
    bottom: -4%;
    background: radial-gradient(ellipse at center, rgba(120, 230, 255, 0.7) 0%, rgba(30, 90, 200, 0.35) 42%, rgba(0, 0, 0, 0) 70%);
    filter: blur(18px);
    animation-duration: 22s;
    animation-direction: reverse;
}
.hero-inner { z-index: 1; }
.hero-inner, .wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; position: relative; }

@keyframes hero-glow {
    0% { transform: translateX(-62%) translateY(0) scale(1); }
    50% { transform: translateX(-38%) translateY(-6%) scale(1.12); }
    100% { transform: translateX(-62%) translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-badge,
    .hero h1,
    .hero .lede,
    .hero-actions,
    .type-caret { animation: none; }
    html.hero-motion .lede.hero-fade,
    html.hero-motion .hero-actions.hero-fade { opacity: 1; transform: none; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    padding: 4px 12px 4px 4px;
    border-radius: 999px;
    background: #1c1c1c;
    color: #ececec;
    font-size: 0.82rem;
}
.hero-badge span {
    padding: 3px 8px;
    border-radius: 999px;
    background: #3ddc6a;
    color: #06210f;
    font-size: 0.75rem;
    font-weight: 700;
}
.hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: clamp(2.2rem, 4.4vw, 4.15rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}
.hero h1 .type-line {
    display: block;
    white-space: nowrap;
}
.type-caret {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    margin-left: 3px;
    background: #fff;
    vertical-align: -0.08em;
    animation: caret-blink 0.9s steps(1) infinite;
}
@keyframes caret-blink {
    50% { opacity: 0; }
}
.hero .lede {
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    font-weight: 400;
}
.hero-actions { gap: 18px; }
.hero-actions .hero-btn {
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #121212;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-actions .hero-btn span { transition: transform 0.2s ease; }
.hero-actions .hero-btn:hover { transform: translateY(-2px); }
.hero-actions .hero-btn:hover span { transform: translateX(4px); }
.hero-actions .hero-btn.alt {
    background: rgba(20, 20, 20, 0.55);
    border-color: rgba(255, 255, 255, 0.16);
}
@keyframes hero-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}
@media (min-width: 861px) {
    html.hero-motion .hero-badge {
        animation: hero-in 0.6s ease both;
    }
    html.hero-motion .lede.hero-fade,
    html.hero-motion .hero-actions.hero-fade {
        opacity: 0;
        transform: translateY(12px);
    }
    html.hero-motion .lede.hero-fade.is-in,
    html.hero-motion .hero-actions.hero-fade.is-in {
        animation: hero-in 0.65s ease forwards;
    }
    html.hero-motion .hero-actions.hero-fade.is-in { animation-delay: 0.12s; }
}
.kicker {
    margin: 0 0 14px;
    color: var(--lavender);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
h1 {
    margin: 0 auto 16px;
    max-width: 14ch;
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.lede {
    max-width: 38rem;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 300;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }

.partners {
    background: #000;
    padding: 8px 0 28px;
    overflow: hidden;
}
.partners p {
    margin: 0 0 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: partners-loop 28s linear infinite;
}
.marquee-track img {
    height: 34px;
    width: auto;
    max-width: 148px;
    object-fit: contain;
    opacity: 0.95;
}
@keyframes partners-loop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; padding: 0 16px; }
}
@media (max-width: 640px) {
    .marquee-track { gap: 36px; }
    .marquee-track img { height: 26px; }
}
.page-hero { padding: 64px 22px 20px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }

.section { padding: 28px 0 10px; }
.section h2 {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.03em;
}
.section .intro {
    max-width: 40rem;
    margin: 0 0 22px;
    color: var(--muted);
    font-weight: 300;
}

.grid { display: grid; gap: 14px; }
.cards-3 { grid-template-columns: 1fr; }
.card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(56, 198, 236, 0.12), transparent 36%),
        var(--card);
}
.card h3 {
    margin: 8px 0;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.card p, .prose p, .prose li { color: var(--muted); font-weight: 300; }
.card .tag {
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.card a.more { color: var(--cyan); font-weight: 600; text-decoration: none; }
.card ul { margin: 12px 0 0; padding-left: 1.1rem; }
.card li { margin: 0.35rem 0; color: var(--muted); font-weight: 300; }

.band {
    margin: 36px auto;
    padding: 36px 28px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(176, 48, 136, 0.35), rgba(56, 198, 236, 0.18));
    text-align: center;
}
.band h2 { margin-bottom: 8px; }
.band p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.82); }

.steps { counter-reset: step; }
.step {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}
.step strong { display: block; color: #fff; font-weight: 500; }
.step span { color: var(--muted); font-weight: 300; }

.prose {
    padding: 8px 0 40px;
}
.prose h2 {
    margin: 1.6rem 0 0.4rem;
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.prose a { color: var(--cyan); }
.prose ul { padding-left: 1.1rem; }

.quote-row { display: grid; gap: 14px; }
.quote {
    margin: 0;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--card);
}
.quote p { margin: 0 0 12px; color: rgba(255, 255, 255, 0.86); }
.quote footer { color: var(--lavender); font-size: 0.92rem; }

form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 0.92rem; font-weight: 500; }
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #07070c;
    color: #fff;
    font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; gap: 12px; }
.note { color: var(--muted); font-size: 0.92rem; }

.site-footer {
    margin-top: 48px;
    padding: 28px 22px 36px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    width: min(var(--max), 100%);
    margin: 0 auto 22px;
    display: grid;
    gap: 22px;
}
.site-footer h2 {
    margin: 0 0 8px;
    color: var(--lavender);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.35rem 0; }
.legal-line {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (min-width: 760px) {
    .cards-3 { grid-template-columns: repeat(3, 1fr); }
    .quote-row { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
}
@media (max-width: 1100px) {
    .nav { padding: 16px 20px; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 0.84rem; }
    .brand { font-size: 1.2rem; }
}

@media (max-width: 860px) {
    .burger { display: inline-grid; place-items: center; flex: none; }
    .nav-links {
        display: none;
        position: absolute;
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
        top: calc(100% + 8px);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        max-height: calc(100vh - 88px);
        max-height: calc(100svh - 88px);
        overflow: auto;
        padding: 10px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: #101018;
    }
    body.nav-open .nav-links { display: flex; }
    .nav-links > .menu > a,
    .nav-go {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 1rem;
    }
    .menu-panel {
        position: static;
        display: grid;
        min-width: 0;
        margin: 0 0 6px;
        padding: 0 0 4px 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .menu-panel a { min-height: 40px; padding: 8px 10px; }
    .menu:hover .menu-panel { display: grid; }
}

@media (max-width: 640px) {
    .hero {
        min-height: calc(100vh - 68px);
        min-height: calc(100dvh - 68px);
        padding: 28px 16px 48px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    .hero::before,
    .hero::after { height: 52%; width: 150%; }
    .hero-badge {
        max-width: 100%;
        font-size: 0.78rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 { font-size: clamp(1.35rem, 6.5vw, 1.85rem); }
    .hero .lede { font-size: 1rem; margin-bottom: 28px; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: min(100%, 340px);
        margin-inline: auto;
    }
    .hero-actions .hero-btn { width: 100%; }
    .hero-badge,
    .hero h1,
    .hero .lede,
    .hero-actions { animation: hero-in 0.7s ease both; }
    .hero h1 { animation-delay: 0.08s; }
    .hero .lede { animation-delay: 0.16s; }
    .hero-actions { animation-delay: 0.24s; }
    .brand { font-size: 1.1rem; }
    .brand svg { width: 22px; height: 21px; }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero h1,
    .hero .lede,
    .hero-actions { animation: none; }
}
