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

:root {
    --white: #fcfcfc;
    --off: #f9f9f8;
    --ink: #0d0d0d;
    --muted: #6a6a6a;
    --light: #b8b8b8;
    --border: #e8e8e8;
    --blue: #1446f5;
    --blue-bg: rgba(20, 70, 245, 0.06);
    --mono: 'DM Mono', monospace;
    --display: 'Google Sans Display', 'Google Sans', sans-serif;
    --sans: 'Geist', sans-serif;
    --max: 1080px;
    --pad: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* CURSOR */
#cur,
#ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#cur {
    width: 6px;
    height: 6px;
    background: var(--ink);
}

#ring {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    transition: width .25s, height .25s, border-color .2s;
}

body:has(a:hover) #ring,
body:has(button:hover) #ring {
    width: 44px;
    height: 44px;
    border-color: var(--blue);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
}

.logo-box {
    width: 24px;
    height: 24px;
    background: var(--ink);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    font-family: var(--mono);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    letter-spacing: .02em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.n-ghost {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    cursor: none;
}

.n-ghost:hover {
    color: var(--ink);
}

.n-cta {
    font-family: var(--mono);
    font-size: 12px;
    background: var(--ink);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: none;
    letter-spacing: .02em;
}

.n-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

/* WRAPPER — everything centered */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* HERO */
.hero {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 100px var(--pad) 80px;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--blue);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blink {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: bl 1.6s ease infinite;
}

@keyframes bl {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .15
    }
}

h1 {
    font-family: var(--mono);
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -7px;
    color: var(--ink);
    margin-bottom: 28px;
    animation: up .8s cubic-bezier(.16, 1, .3, 1) both;
}

h1 .blue {
    color: var(--blue);
    font-weight: 100;
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 48px;
    animation: up .8s .12s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    animation: up .8s .22s cubic-bezier(.16, 1, .3, 1) both;
}

.btn-primary {
    font-family: var(--mono);
    font-size: 13px;
    background: var(--ink);
    color: #fff;
    padding: 12px 28px;
    border-radius: 7px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: none;
    letter-spacing: .02em;
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 7px;
    text-decoration: none;
    transition: all .2s;
    cursor: none;
    letter-spacing: .02em;
}

.btn-ghost:hover {
    color: var(--ink);
    border-color: #c0c0c0;
}

.hero-note {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
}

/* STATS ROW under hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: up .8s .35s cubic-bezier(.16, 1, .3, 1) both;
}

.hs-item {
    text-align: center;
}

.hs-num {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--ink);
}

.hs-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 4px;
}

/* TICKER */
.ticker-section {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.ticker-section::before,
.ticker-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker-section::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.ticker-section::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent);
}

.ticker-label {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px var(--pad) 0;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .14em;
    text-align: center;
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: slide 10s linear infinite;
    padding: 20px 0 28px;
}

@keyframes slide {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ti {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--light);
    padding: 0 40px;
    white-space: nowrap;
    letter-spacing: .04em;
    border-right: 1px solid var(--border);
    transition: color .2s;
}

.ti:hover {
    color: var(--muted);
}

/* SECTION */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.section:last-child {
    border-bottom: none;
}

.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
}

h2 .blue {
    color: var(--blue);
    font-weight: 400;
}

.section-desc {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 460px;
    margin-top: 16px;
}

/* FEATURES GRID */
.features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.features-header .right p {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 400px;
    margin-left: auto;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.feat-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: background .25s;
}

.feat-card:hover {
    background: var(--off);
}

.feat-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
    margin-bottom: 24px;
}

.feat-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -.2px;
}

.feat-card p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
}

.feat-arrow {
    position: absolute;
    bottom: 24px;
    right: 28px;
    font-size: 16px;
    color: var(--border);
    transition: color .2s, transform .2s;
}

.feat-card:hover .feat-arrow {
    color: var(--blue);
    transform: translate(2px, -2px);
}

/* SPLIT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split.flip {
    direction: rtl;
}

.split.flip>* {
    direction: ltr;
}

.split-text .section-tag {
    margin-bottom: 16px;
}

.split-text h2 {
    margin-bottom: 16px;
}

.split-text p {
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
}

.step-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.step:last-child {
    border-bottom: 1px solid var(--border);
}

.step-n {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
    min-width: 24px;
    padding-top: 2px;
}

.step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Code pane */
.code-pane {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--mono);
    font-size: 12.5px;
}

.cp-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.cp-title {
    font-size: 11px;
    color: var(--muted);
    margin-left: 8px;
    letter-spacing: .04em;
}

.cp-body {
    padding: 24px;
    line-height: 2.1;
    color: var(--muted);
}

.ck {
    color: var(--blue);
}

.cs {
    color: #0a7060;
}

.cc {
    color: var(--border);
}

.co {
    color: #16a34a;
}

.chl {
    display: block;
    margin: 0 -24px;
    padding: 0 24px;
    background: rgba(20, 70, 245, .04);
    border-left: 2px solid var(--blue);
}

.ccur {
    display: inline-block;
    width: 6px;
    height: 12px;
    background: var(--blue);
    vertical-align: middle;
    margin-left: 2px;
    animation: bl .8s step-end infinite;
}

.code-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 24px 20px;
}

.ctag {
    font-family: var(--mono);
    font-size: 11px;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
}

.ctag.act {
    border-color: var(--blue);
    color: var(--blue);
}

/* MARQUEE */
.marquee-section {
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.mq-track {
    display: flex;
    width: max-content;
    animation: slide 18s linear infinite;
}

.mw {
    font-family: var(--display);
    font-size: clamp(56px, 6vw, 84px);
    font-weight: 700;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 1px #6480ff;
    padding: 0 48px;
    white-space: nowrap;
}

.mw.filled {
    -webkit-text-stroke: none;
    color: var(--ink);
    opacity: .05;
}

.mq-sep {
    align-self: center;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

/* ENTERPRISE CARDS */
.ent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ent-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 36px;
    transition: border-color .25s;
}

.ent-card:hover {
    border-color: #c0c0c0;
}

.ent-idx {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
    margin-bottom: 20px;
}

.ent-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.3px;
    line-height: 1.3;
}

.ent-card p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
}

.ent-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ent-list li {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    padding: 8px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ent-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.ent-list li::before {
    content: '↳';
    color: var(--blue);
    font-size: 11px;
}

/* CTA */
.cta-box {
    text-align: center;
    padding: 100px var(--pad);
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-fine {
    padding-top: 50px;
    font-family: var(--mono);
    font-size: 5px;
    color: var(--light);
    margin-top: 16px;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.foot-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 56px;
}

.foot-brand p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 260px;
    margin-top: 12px;
}

.foot-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 300;
    transition: color .2s;
}

.foot-col a:hover {
    color: var(--ink);
}

.foot-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px var(--pad) 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.rv.show {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.d5 {
    transition-delay: .4s
}

@media(max-width:860px) {
    .nav-links {
        display: none
    }

    .features-header {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .features-header .right p {
        margin-left: 0
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .split,
    .split.flip {
        grid-template-columns: 1fr;
        direction: ltr
    }

    .ent-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .hero-stats {
        gap: 32px
    }
}