:root {
    --bg: #001a0d;
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .68);
    --faint: rgba(255, 255, 255, .42);
    --border: rgba(255, 255, 255, .12);
    --panelA: rgba(255, 255, 255, .085);
    --panelB: rgba(255, 255, 255, .03);
    --accent: #2f6bff;
    --accent2: #7a2fff;
    --shadow: 0 34px 110px rgba(0, 0, 0, .58);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* Animated background (Vanta) */
#vanta-bg {
    position: fixed;
    inset: 0;
    z-index: -5;
    background: var(--bg);
}

/* Soft color bloom overlay (keeps it nice even if WebGL is subtle) */
.glow {
    position: fixed;
    inset: -25%;
    pointer-events: none;
    z-index: -4;
    filter: blur(60px);
    opacity: .62;
    background:
        radial-gradient(42% 34% at 20% 22%, rgba(47, 107, 255, .26), transparent 62%),
        radial-gradient(38% 32% at 82% 26%, rgba(122, 47, 255, .22), transparent 62%),
        radial-gradient(42% 40% at 55% 82%, rgba(47, 107, 255, .12), transparent 62%);
}

/* Subtle noise */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .07;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 2px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
}

.wrap {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(18px, 4vw, 56px);
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(6px, 1.4vw, 14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .38);
    backdrop-filter: blur(12px);
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
    box-shadow: 0 0 26px rgba(47, 107, 255, .55);
}

.brand-text {
    font-weight: 650;
    letter-spacing: .14em;
    font-size: 12px;
    color: rgba(255, 255, 255, .88);
    user-select: none;
    white-space: nowrap;
    text-transform: none;
    line-height: 1;
    display: block;
}

main {
    display: grid;
    place-items: center;
}

/* HERO: upgraded depth + typography + CTA hierarchy */
.hero {
    width: min(980px, 100%);
    text-align: center;
    padding: clamp(22px, 4vw, 44px);
    border-radius: 24px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(180deg, var(--panelA), var(--panelB));
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(18px);
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, .10);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(47, 107, 255, .62),
            rgba(122, 47, 255, .40),
            rgba(255, 255, 255, .12));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .26;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -45%;
    background:
        radial-gradient(36% 30% at 50% 22%, rgba(255, 255, 255, .11), transparent 62%),
        radial-gradient(30% 26% at 22% 56%, rgba(47, 107, 255, .20), transparent 66%),
        radial-gradient(30% 26% at 78% 56%, rgba(122, 47, 255, .16), transparent 66%);
    filter: blur(18px);
    opacity: .65;
    pointer-events: none;
}

.hero>* {
    position: relative
}

.kicker {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .70);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.kdot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 1);
    box-shadow: 0 0 18px rgba(46, 204, 113, .55);
}

h1 {
    margin: 0;
    font-weight: 760;
    letter-spacing: -0.03em;
    line-height: 1.03;
    font-size: clamp(36px, 6vw, 86px);

    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .76));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 12px 46px rgba(0, 0, 0, .34);
}

.sub {
    margin: 14px auto 0;
    max-width: 52ch;
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--muted);
    line-height: 1.62;
}

.cta-row {
    margin-top: clamp(18px, 3vw, 26px);
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .20em;
    font-weight: 750;
    font-size: 12px;
    transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cta:hover {
    transform: translateY(-1px)
}

.cta:focus-visible {
    outline: 3px solid rgba(47, 107, 255, .45);
    outline-offset: 3px
}

.cta.primary {
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(135deg, rgba(47, 107, 255, .44), rgba(122, 47, 255, .28));
    box-shadow:
        0 18px 58px rgba(0, 0, 0, .40),
        0 0 0 1px rgba(47, 107, 255, .18) inset;
}

.cta.primary:hover {
    filter: brightness(1.08);
    border-color: rgba(47, 107, 255, .42);
}

.cta.secondary {
    color: rgba(255, 255, 255, .80);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
}

.cta.secondary:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .22);
}

.arrow {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(47, 107, 255, .14);
    border: 1px solid rgba(47, 107, 255, .35);
}

.chips {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .16);
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    letter-spacing: .10em;
    backdrop-filter: blur(10px);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(6px, 1.4vw, 14px);
}

.footer-line {
    max-width: min(980px, 100%);
    text-align: center;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width:520px) {
    .brand {
        gap: 10px;
        padding: 9px 12px
    }

    .brand-text {
        letter-spacing: .12em
    }

    .footer-line {
        letter-spacing: .16em
    }
}

@media (prefers-reduced-motion: reduce) {
    .noise {
        display: none
    }

    .cta {
        transition: none
    }

    .cta:hover {
        transform: none
    }
}