*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #04040a;
    --surface: #080812;
    --surface-2: #0d0d1e;
    --surface-3: #12122a;
    --border: rgba(255, 255, 255, 0.06);
    --border-2: rgba(255, 255, 255, 0.11);
    --text: #eeeef5;
    --muted: #4a4a6a;
    --muted-2: #8888aa;
    --accent: #d4ff4f;
    --accent-glow: rgba(212, 255, 79, 0.18);
    --blue: #4fc3ff;
    --blue-glow: rgba(79, 195, 255, 0.15);
    --purple: #b06cff;
    --purple-glow: rgba(176, 108, 255, 0.2);
    --red: #ff5c7a;
    --green: #4fffb0;
    --radius: 10px;
    --font: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* AURORA */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    animation: adrift 24s ease-in-out infinite;
    opacity: 0;
}

.aurora-blob:nth-child(1) {
    width: 720px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(176, 108, 255, 0.22) 0%, transparent 70%);
    top: -220px;
    left: -80px;
    animation-delay: 0s;
    animation-duration: 22s;
}

.aurora-blob:nth-child(2) {
    width: 640px;
    height: 580px;
    background: radial-gradient(ellipse, rgba(79, 195, 255, 0.16) 0%, transparent 70%);
    top: -60px;
    right: -160px;
    animation-delay: -9s;
    animation-duration: 28s;
}

.aurora-blob:nth-child(3) {
    width: 900px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(212, 255, 79, 0.07) 0%, transparent 70%);
    top: 55vh;
    left: 15%;
    animation-delay: -16s;
    animation-duration: 32s;
}

.aurora-blob:nth-child(4) {
    width: 540px;
    height: 540px;
    background: radial-gradient(ellipse, rgba(176, 108, 255, 0.14) 0%, transparent 70%);
    bottom: -100px;
    right: 8%;
    animation-delay: -6s;
    animation-duration: 26s;
}

@keyframes adrift {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }

    12% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: translate(50px, 70px) scale(1.12);
    }

    88% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.45;
}

.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.011) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.011) 1px, transparent 1px);
    background-size: 56px 56px;
}

* {
    position: relative;
    z-index: 1;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4, 4, 10, 0.82);
}

.nav-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-b {
    color: var(--purple);
}

.logo-n {
    color: var(--text);
}

.logo-a {
    color: var(--accent);
}

.nav-ver {
    font-size: 10px;
    font-weight: 400;
    background: rgba(176, 108, 255, 0.08);
    color: var(--purple);
    border: 1px solid rgba(176, 108, 255, 0.22);
    padding: 2px 9px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    color: var(--muted-2);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn-nav {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid rgba(212, 255, 79, 0.3);
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav:hover {
    background: rgba(212, 255, 79, 0.07);
    border-color: rgba(212, 255, 79, 0.5);
    box-shadow: 0 0 24px var(--accent-glow);
}

/* HERO */
.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 112px 48px 96px;
    text-align: center;
}

.eyebrow {
    font-size: 11px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
}

.eyebrow::before {
    background: linear-gradient(90deg, transparent, var(--blue));
}

.eyebrow::after {
    background: linear-gradient(90deg, var(--blue), transparent);
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero h1 .grad {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 48%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted-2);
    max-width: 500px;
    margin: 0 auto 52px;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.btn-primary {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #aaff00);
    color: #04040a;
    padding: 13px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 48px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 72px var(--accent-glow), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    color: var(--muted-2);
    padding: 13px 24px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--surface-2);
}

/* TERMINAL */
.terminal-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(176, 108, 255, 0.07);
}

.t-bar {
    background: var(--surface-2);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dr {
    background: #ff5f57;
}

.dy {
    background: #febc2e;
}

.dg {
    background: #28c840;
}

.t-bar-title {
    font-size: 11px;
    color: var(--muted);
    margin: 0 auto;
    letter-spacing: 0.06em;
}

.t-body {
    background: rgba(4, 4, 14, 0.96);
    padding: 24px 28px;
    font-size: 12.5px;
    line-height: 1.9;
    text-align: left;
}

.tp {
    color: var(--muted);
}

.tc {
    color: var(--text);
}

.tt {
    color: var(--muted-2);
    margin-top: 6px;
    font-weight: 500;
}

.td {
    color: var(--muted);
    opacity: .45;
}

.te {
    color: var(--red);
    font-weight: 700;
}

.tf {
    color: var(--blue);
    opacity: .85;
    padding-left: 2ch;
    font-size: 12px;
}

.tx {
    color: var(--muted-2);
    padding-left: 2ch;
    font-size: 12px;
}

.ts {
    color: var(--red);
    font-weight: 700;
    margin-top: 4px;
}

.tb {
    display: block;
    height: 2px;
}

/* SECTIONS */
section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 96px 48px;
}

.s-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-label::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), transparent);
    opacity: .4;
}

.s-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.s-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted-2);
    max-width: 460px;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

hr.div {
    border: none;
    border-top: 1px solid var(--border);
}

/* PROBLEM */
.p-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}

.code-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.cc-head {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-head.bad {
    color: var(--red);
    background: rgba(255, 92, 122, 0.04);
}

.cc-head.good {
    color: var(--green);
    background: rgba(79, 255, 176, 0.04);
}

.code-card pre {
    padding: 20px;
    font-family: var(--font);
    font-size: 12px;
    line-height: 1.8;
    overflow-x: auto;
    color: var(--muted-2);
}

.hk {
    color: var(--purple);
}

.hf {
    color: var(--blue);
}

.hb {
    color: var(--red);
}

.hg {
    color: var(--green);
}

.hd {
    color: var(--muted);
    font-style: italic;
}

/* CATCHES */
.c-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 56px;
}

.c-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all .25s;
    cursor: default;
}

.c-card:hover {
    border-color: var(--border-2);
    box-shadow: 0 0 40px rgba(79, 195, 255, .05);
}

.c-card:nth-child(3n + 1):hover {
    border-color: rgba(212, 255, 79, .22);
    box-shadow: 0 0 40px rgba(212, 255, 79, .05);
}

.c-card:nth-child(3n + 2):hover {
    border-color: rgba(79, 195, 255, .22);
    box-shadow: 0 0 40px rgba(79, 195, 255, .05);
}

.c-card:nth-child(3n):hover {
    border-color: rgba(176, 108, 255, .22);
    box-shadow: 0 0 40px rgba(176, 108, 255, .05);
}

.c-glyph {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.g1 {
    color: var(--accent);
}

.g2 {
    color: var(--blue);
}

.g3 {
    color: var(--purple);
}

.c-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.c-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted-2);
    line-height: 1.7;
}

.c-sev {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sh {
    background: rgba(255, 92, 122, .1);
    color: var(--red);
    border: 1px solid rgba(255, 92, 122, .2);
}

.sm {
    background: rgba(176, 108, 255, .1);
    color: var(--purple);
    border: 1px solid rgba(176, 108, 255, .2);
}

/* FRAMEWORKS */
.fw-marquee {
    margin-top: 56px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}


.fw-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    animation: frameworkCrawl 26s linear infinite;
}

.fw-marquee:hover .fw-track {
    animation-play-state: paused;
}

.fw-item {
    min-width: 152px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-logo {
    height: 64px;
    max-width: 148px;
    width: auto;
    filter: grayscale(1) saturate(.15) brightness(.78);
    opacity: .52;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.fw-item:hover .fw-logo {
    filter: grayscale(0) saturate(1) brightness(1);
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes frameworkCrawl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* INSTALL */
.i-box {
    margin-top: 56px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    overflow: hidden;
}

.i-step {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: center;
}

.i-step:last-child {
    border-bottom: none;
}

.i-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.i-code {
    font-family: var(--font);
    font-size: 13px;
    color: var(--text);
    background: var(--surface-2);
    padding: 11px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    letter-spacing: -.01em;
}

.ca {
    color: var(--accent);
}

.cb {
    color: var(--blue);
}

.cm {
    color: var(--muted-2);
}

/* COMING */
.r-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 56px;
}

.r-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    opacity: .6;
    transition: opacity .25s, border-color .25s;
}

.r-card:hover {
    opacity: 1;
    border-color: var(--border-2);
}

.r-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    background: var(--surface-3);
    border: 1px solid var(--border);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    letter-spacing: .04em;
}

.r-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.r-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted-2);
    line-height: 1.7;
}

/* QUOTE */
.q-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.q-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 88px 48px;
    text-align: center;
}

blockquote {
    font-size: clamp(17px, 2.4vw, 23px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 28px;
}

blockquote em {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.q-attr {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* CTA */
.cta {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 48px;
    text-align: center;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted-2);
    margin-bottom: 44px;
    line-height: 1.85;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-meta {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .08em;
}

/* COMING SOON */
.coming-soon {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px 88px;
    opacity: .62;
}

.cs-list {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cs-item {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted-2);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 999px;
    padding: 8px 13px;
    letter-spacing: .02em;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f-left {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
}

.f-left span {
    color: var(--accent);
}

.f-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.f-links a {
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .06em;
    transition: color .2s;
}

.f-links a:hover {
    color: var(--text);
}

/* ANIMATE */
.fu {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease-out, transform .55s ease-out;
}

.fu.v {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 72px 24px 56px;
    }

    section {
        padding: 64px 24px;
    }

    .p-grid,
    .c-grid,
    .r-grid {
        grid-template-columns: 1fr;
    }

    .fw-track {
        gap: 18px;
        animation-duration: 22s;
    }

    .fw-item {
        min-width: 132px;
    }

    .fw-logo {
        height: 56px;
        max-width: 124px;
    }

    .i-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta,
    .q-inner {
        padding: 64px 24px;
    }

    .coming-soon {
        padding: 0 24px 64px;
    }
}