@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --background: 210 33% 97%;
    --foreground: 220 34% 15%;
    --border: 215 24% 86%;
    --card: 210 33% 99%;
    --card-foreground: 220 34% 15%;
    --muted: 214 23% 92%;
    --muted-foreground: 215 17% 42%;
    --primary: 222 39% 12%;
    --primary-foreground: 210 33% 97%;
    --secondary: 187 96% 48%;
    --secondary-foreground: 222 39% 12%;
    --accent: 28 95% 63%;
    --accent-foreground: 220 34% 15%;
    --input: 215 24% 80%;
    --ring: 187 96% 48%;
    --radius: .65rem;
    --app-font-sans: 'DM Sans', sans-serif;
    --app-font-display: 'Space Grotesk', sans-serif;
    --app-font-mono: 'DM Mono', monospace;
    --signal: #C6FF5E;
    --signal-dim: rgba(198,255,94,0.10);
    --text: #EAEEF1;
}

.dark {
    --background: 222 35% 9%;
    --foreground: 210 33% 96%;
    --border: 217 23% 24%;
    --card: 220 30% 13%;
    --card-foreground: 210 33% 96%;
    --muted: 220 27% 17%;
    --muted-foreground: 216 17% 67%;
    --primary: 187 96% 48%;
    --primary-foreground: 222 40% 7%;
    --secondary: 220 29% 19%;
    --secondary-foreground: 210 33% 96%;
    --accent: 28 95% 63%;
    --accent-foreground: 222 40% 7%;
    --input: 217 23% 30%;
    --ring: 187 96% 48%;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--app-font-sans);
    margin: 0;
}

button, a, input, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: hsl(var(--secondary) / .28);
}

.site-shell {
    overflow: hidden;
    background: hsl(var(--background));
}

.container-wide {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.display {
    font-family: var(--app-font-display);
    letter-spacing: -.045em;
}

.mono {
    font-family: var(--app-font-mono);
    letter-spacing: .02em;
}

.eyebrow {
    color: hsl(var(--secondary));
    font: 500 11px var(--app-font-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section {
    padding: 118px 0;
    position: relative;
}

.section-heading {
    font: 600 clamp(36px, 5vw, 67px)/.98 var(--app-font-display);
    letter-spacing: -.055em;
    max-width: 720px;
}

    .section-heading em {
        color: hsl(var(--secondary));
        font-style: normal;
    }

.lede {
    color: hsl(var(--muted-foreground));
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
}

.text-link {
    color: hsl(var(--foreground));
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
}

    .text-link:hover .arrow {
        transform: translateX(4px);
    }

.arrow {
    transition: transform .25s ease;
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    color: hsl(210 33% 97%);
    background: transparent;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .logo img {
        width: 156px;
        height: auto;
        filter: invert(1);
        mix-blend-mode: screen;
    }

.site-footer .logo img {
    filter: none;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

    .nav-links a {
        color: hsl(210 33% 97% / .7);
        font-size: 13px;
        text-decoration: none;
        transition: color .2s ease;
    }

        .nav-links a:hover, .nav-links a:focus-visible {
            color: hsl(210 33% 97%);
        }

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

.header-cta {
    border: 1px solid hsl(187 96% 48% / .65);
    border-radius: 5px;
    color: hsl(187 96% 72%);
    font-size: 12px;
    padding: 10px 15px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

    .header-cta:hover {
        background: hsl(187 96% 48%);
        color: hsl(222 39% 12%);
    }

.icon-button {
    display: grid;
    place-items: center;
    border: 1px solid hsl(210 33% 97% / .2);
    background: transparent;
    border-radius: 5px;
    color: inherit;
    width: 36px;
    height: 36px;
}

    .icon-button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
        outline: 2px solid hsl(var(--secondary));
        outline-offset: 3px;
    }

.mobile-toggle {
    display: none;
}

.hero {
    color: hsl(210 33% 97%);
    min-height: 770px;
    padding: 166px 0 100px;
    background: radial-gradient(circle at 75% 20%, hsl(187 96% 48% / .15), transparent 28%), linear-gradient(120deg, hsl(222 40% 9%), hsl(222 39% 13%) 70%, hsl(222 43% 10%));
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .34;
        background-image: linear-gradient(hsl(210 33% 97% / .05) 1px, transparent 1px), linear-gradient(90deg, hsl(210 33% 97% / .05) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: linear-gradient(90deg, black, transparent 88%);
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        border: 1px solid hsl(187 96% 48% / .13);
        right: -190px;
        top: 125px;
        box-shadow: 0 0 0 35px hsl(187 96% 48% / .035), 0 0 0 70px hsl(187 96% 48% / .025);
    }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
    align-items: start;
    gap: 90px;
}

.hero-copy {
    animation: rise .7s both;
}

    .hero-copy h1 {
        font: 600 clamp(53px, 7.3vw, 98px)/.91 var(--app-font-display);
        letter-spacing: -.075em;
        max-width: 720px;
        margin: 22px 0 29px;
    }

        .hero-copy h1 .cyan {
            color: hsl(187 96% 58%);
        }

    .hero-copy p {
        color: hsl(210 33% 97% / .67);
        font-size: 18px;
        line-height: 1.63;
        max-width: 530px;
        margin: 0;
    }

.hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.button-primary, .button-quiet {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    min-height: 48px;
    padding: 0 19px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button-primary {
    background: hsl(187 96% 48%);
    color: hsl(222 39% 12%);
    border: 1px solid hsl(187 96% 48%);
}

    .button-primary:hover {
        background: hsl(187 96% 58%);
        transform: translateY(-2px);
    }

.button-quiet {
    color: hsl(210 33% 97%);
    border: 1px solid hsl(210 33% 97% / .24);
    background: hsl(210 33% 97% / .04);
}

    .button-quiet:hover {
        border-color: hsl(210 33% 97% / .56);
        background: hsl(210 33% 97% / .09);
        transform: translateY(-2px);
    }

.hero-note {
    align-items: center;
    color: hsl(210 33% 97% / .45);
    display: flex;
    font: 11px var(--app-font-mono);
    gap: 9px;
    margin-top: 24px;
}

    .hero-note span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: hsl(148 65% 56%);
        box-shadow: 0 0 0 4px hsl(148 65% 56% / .14);
    }

.console {
    animation: rise .8s .14s both;
    background: hsl(220 30% 13% / .88);
    border: 1px solid hsl(210 33% 97% / .17);
    border-radius: 8px;
    box-shadow: 0 30px 75px hsl(0 0% 0% / .25);
    overflow: hidden;
    transform: rotate(1.3deg);
}

.console-top {
    align-items: center;
    border-bottom: 1px solid hsl(210 33% 97% / .1);
    display: flex;
    justify-content: space-between;
    padding: 15px 17px;
}

.console-dots {
    display: flex;
    gap: 5px;
}

    .console-dots i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: hsl(210 33% 97% / .25);
    }

        .console-dots i:first-child {
            background: hsl(4 74% 58%);
        }

        .console-dots i:nth-child(2) {
            background: hsl(28 95% 63%);
        }

        .console-dots i:last-child {
            background: hsl(148 65% 56%);
        }

.console-title {
    color: hsl(210 33% 97% / .55);
    font: 10px var(--app-font-mono);
    letter-spacing: .08em;
}

.console-body {
    padding: 22px;
}

.console-kicker {
    color: hsl(210 33% 97% / .43);
    font: 10px var(--app-font-mono);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.console-amount {
    color: hsl(210 33% 97%);
    font: 600 41px var(--app-font-display);
    letter-spacing: -.06em;
    margin: 7px 0 22px;
}

    .console-amount small {
        color: hsl(210 33% 97% / .4);
        font: 11px var(--app-font-mono);
        letter-spacing: .02em;
    }

.route-line {
    align-items: center;
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

    .route-line::after {
        background: hsl(187 96% 48% / .45);
        content: "";
        height: 1px;
        flex: 1;
    }

.route-provider {
    align-items: center;
    border: 1px solid hsl(210 33% 97% / .11);
    border-radius: 5px;
    display: flex;
    gap: 10px;
    min-width: 0;
    padding: 11px 12px;
}

    .route-provider.is-active {
        border-color: hsl(187 96% 48% / .55);
        background: hsl(187 96% 48% / .07);
    }

.provider-mark {
    display: grid;
    place-items: center;
    color: hsl(187 96% 58%);
    border: 1px solid currentColor;
    border-radius: 4px;
    font: 500 10px var(--app-font-mono);
    height: 28px;
    width: 28px;
}

.provider-copy {
    min-width: 0;
}

    .provider-copy strong {
        color: hsl(210 33% 97%);
        display: block;
        font-size: 12px;
    }

    .provider-copy small {
        color: hsl(210 33% 97% / .4);
        display: block;
        font: 10px var(--app-font-mono);
        margin-top: 3px;
    }

.route-status {
    color: hsl(148 65% 56%);
    font: 10px var(--app-font-mono);
    margin-left: auto;
}

    .route-status.retry {
        color: hsl(28 95% 63%);
    }

.console-controls {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.console-select, .console-run {
    border: 1px solid hsl(210 33% 97% / .15);
    border-radius: 4px;
    color: hsl(210 33% 97%);
    font: 11px var(--app-font-mono);
    background: hsl(210 33% 97% / .05);
    padding: 11px 10px;
}

.console-select {
    flex: 1;
}

.console-run {
    background: hsl(187 96% 48%);
    border-color: hsl(187 96% 48%);
    color: hsl(222 39% 12%);
    font-weight: 700;
    min-width: 104px;
}

    .console-run:disabled {
        cursor: wait;
        opacity: .65;
    }

.console-foot {
    border-top: 1px solid hsl(210 33% 97% / .1);
    color: hsl(210 33% 97% / .42);
    font: 10px var(--app-font-mono);
    margin-top: 23px;
    padding-top: 14px;
}

.proof-bar {
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    border-top: 1px solid hsl(var(--border));
    padding: 23px 0;
}

.proof-inner {
    align-items: center;
    display: flex;
    gap: 36px;
    justify-content: space-between;
}

    .proof-inner span {
        color: hsl(var(--muted-foreground));
        font-size: 12px;
    }

        .proof-inner span:not(:first-child) {
            font-family: var(--app-font-display);
            font-weight: 600;
            letter-spacing: .05em;
        }

            .proof-inner span:not(:first-child)::before {
                color: hsl(var(--secondary));
                content: "↗";
                margin-right: 8px;
            }

.light-section {
    background: hsl(var(--background));
}

.dark-section {
    background: hsl(222 39% 12%);
    color: hsl(210 33% 97%);
}

    .dark-section .lede {
        color: hsl(210 33% 97% / .58);
    }

    .dark-section .eyebrow {
        color: hsl(187 96% 58%);
    }

.intro-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 100px;
}

.intro-copy {
    padding-top: 10px;
}

    .intro-copy .lede {
        margin-top: 29px;
    }

.mini-rule {
    width: 56px;
    height: 2px;
    background: hsl(var(--secondary));
    margin: 25px 0;
}

.capability-list {
    border-top: 1px solid hsl(var(--border));
}

.capability {
    align-items: start;
    border-bottom: 1px solid hsl(var(--border));
    display: grid;
    grid-template-columns: 46px 1fr 30px;
    gap: 18px;
    padding: 25px 0;
    transition: padding .25s ease;
}

    .capability:hover {
        padding-left: 8px;
    }

.cap-number {
    color: hsl(var(--secondary));
    font: 11px var(--app-font-mono);
    padding-top: 5px;
}

.capability h3 {
    font: 600 22px var(--app-font-display);
    margin: 0 0 7px;
}

.capability p {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 570px;
}

.capability .arrow {
    color: hsl(var(--muted-foreground));
    margin-top: 5px;
}

.dark-section .feature-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 92px;
    align-items: start;
}

.dark-section .section-heading {
    color: hsl(210 33% 97%);
}

.dark-section .feature-layout > div:first-child {
    position: sticky;
    top: 100px;
}

.feature-note {
    border-left: 1px solid hsl(187 96% 48% / .45);
    color: hsl(210 33% 97% / .52);
    font-size: 13px;
    line-height: 1.65;
    margin-top: 50px;
    padding-left: 17px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-card {
    border: 1px solid hsl(210 33% 97% / .12);
    min-height: 206px;
    padding: 25px 23px;
    transition: background .25s ease, transform .25s ease, border .25s ease;
}

    .feature-card:hover {
        background: hsl(210 33% 97% / .06);
        border-color: hsl(187 96% 48% / .5);
        transform: translateY(-4px);
    }

    /*.feature-card:nth-child(3) {
        grid-column: span 2;
        min-height: 180px;
    }*/

.feature-icon {
    align-items: center;
    color: hsl(187 96% 58%);
    display: flex;
    height: 32px;
    justify-content: space-between;
    margin-bottom: 22px;
}

    .feature-icon .mono {
        font-size: 10px;
        color: hsl(210 33% 97% / .38);
    }

.feature-glyph {
    font: 26px var(--app-font-display);
}

.feature-card h3 {
    font: 600 21px var(--app-font-display);
    margin: 0 0 9px;
}

.feature-card p {
    color: hsl(210 33% 97% / .52);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.solution-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 14px;
    margin-top: 60px;
}

.solution-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    min-height: 310px;
    padding: 28px;
    position: relative;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .solution-card:first-child {
        background: hsl(222 39% 12%);
        color: hsl(210 33% 97%);
        min-height: 372px;
    }

    .solution-card:hover {
        border-color: hsl(var(--secondary));
        box-shadow: 0 18px 42px hsl(220 34% 15% / .1);
        transform: translateY(-5px);
    }

    .solution-card h3 {
        font: 600 27px/.98 var(--app-font-display);
        letter-spacing: -.04em;
        margin: 22px 0 12px;
    }

    .solution-card p {
        color: hsl(var(--muted-foreground));
        font-size: 13px;
        line-height: 1.65;
    }

    .solution-card:first-child p {
        color: hsl(210 33% 97% / .58);
    }

.solution-index {
    color: hsl(var(--secondary));
    font: 11px var(--app-font-mono);
}

.solution-glyph {
    color: hsl(222 39% 12%);
    font-size: 25px;
    margin-top: 27px;
}

.solution-card:first-child .solution-glyph {
    color: hsl(187 96% 58%);
}

.solution-arrow {
    bottom: 25px;
    color: hsl(var(--secondary));
    position: absolute;
    right: 25px;
}

.architecture {
    background: hsl(187 96% 48%);
    color: hsl(222 39% 12%);
    overflow: hidden;
}

    .architecture .section-heading {
        max-width: 780px;
    }

    .architecture .eyebrow {
        color: hsl(222 39% 12% / .65);
    }

.arch-flow {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 62px;
    position: relative;
}

    .arch-flow::before {
        background: hsl(222 39% 12% / .22);
        content: "";
        height: 1px;
        left: 8%;
        position: absolute;
        right: 8%;
        top: 29px;
    }

.arch-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.arch-dot {
    align-items: center;
    background: hsl(187 96% 48%);
    border: 1px solid hsl(222 39% 12% / .28);
    border-radius: 50%;
    display: flex;
    height: 58px;
    justify-content: center;
    margin: 0 auto 17px;
    width: 58px;
}

.arch-glyph {
    font: 20px var(--app-font-display);
}

.arch-item strong {
    display: block;
    font: 600 14px var(--app-font-display);
}

.arch-item small {
    display: block;
    font-size: 11px;
    margin: 5px auto 0;
    opacity: .65;
    max-width: 130px;
}

.metrics {
    padding: 66px 0;
    background: hsl(222 39% 12%);
    color: hsl(210 33% 97%);
}

.metric-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 22px;
}

.metric-intro p {
    color: hsl(210 33% 97% / .55);
    font-size: 13px;
    line-height: 1.55;
    max-width: 240px;
}

.metric {
    border-left: 1px solid hsl(210 33% 97% / .15);
    padding-left: 25px;
}

    .metric strong {
        display: block;
        font: 600 clamp(31px, 4vw, 48px) var(--app-font-display);
        letter-spacing: -.06em;
    }

    .metric span {
        color: hsl(210 33% 97% / .5);
        display: block;
        font: 11px var(--app-font-mono);
        line-height: 1.4;
        margin-top: 7px;
    }

.resource-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 95px;
}

.resource-list {
    border-top: 1px solid hsl(var(--border));
}

.resource {
    align-items: center;
    border-bottom: 1px solid hsl(var(--border));
    display: grid;
    gap: 20px;
    grid-template-columns: 46px 1fr 26px;
    padding: 22px 0;
    text-decoration: none;
    color: inherit;
    transition: padding .22s ease;
}

    .resource:hover {
        padding-left: 8px;
    }

.resource-index {
    color: hsl(var(--secondary));
    font: 10px var(--app-font-mono);
}

.resource h3 {
    font: 600 17px var(--app-font-display);
    margin: 0 0 4px;
}

.resource p {
    color: hsl(var(--muted-foreground));
    font-size: 12px;
    margin: 0;
}

.resource .arrow {
    color: hsl(var(--muted-foreground));
}

.faq-section {
    background: hsl(var(--muted));
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 105px;
}

.faq-intro .lede {
    margin-top: 24px;
}

.faq-list {
    border-top: 1px solid hsl(var(--border));
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
    align-items: center;
    background: transparent;
    border: 0;
    color: hsl(var(--foreground));
    display: flex;
    font: 600 16px var(--app-font-display);
    justify-content: space-between;
    padding: 22px 0;
    text-align: left;
    width: 100%;
}

.faq-answer {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    line-height: 1.7;
    max-width: 650px;
    overflow: hidden;
    padding: 0 40px 21px 0;
}

.faq-question .faq-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.contact {
    background: hsl(222 39% 12%);
    color: hsl(210 33% 97%);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.contact .section-heading {
    color: hsl(210 33% 97%);
    margin-top: 17px;
}

.contact .lede {
    color: hsl(210 33% 97% / .54);
    margin-top: 24px;
}

.contact-detail {
    align-items: center;
    color: hsl(210 33% 97% / .65);
    display: flex;
    font-size: 13px;
    gap: 11px;
    margin-top: 30px;
}

    .contact-detail .mail-glyph {
        color: hsl(187 96% 58%);
    }
	
	.contact-detail a {
		color: hsl(210 33% 97% / .65);
	}

.contact-form {
    background: hsl(210 33% 97% / .06);
    border: 1px solid hsl(210 33% 97% / .15);
    padding: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 17px;
}

    .field label {
        color: hsl(210 33% 97% / .62);
        display: block;
        font: 11px var(--app-font-mono);
        letter-spacing: .06em;
        margin-bottom: 8px;
    }

    .field input, .field textarea, .field select {
        background: hsl(210 33% 97% / .06);
        border: 1px solid hsl(210 33% 97% / .2);
        border-radius: 4px;
        color: hsl(210 33% 97%);
        outline: none;
        padding: 12px;
        width: 100%;
    }

        .field input:focus, .field textarea:focus, .field select:focus {
            border-color: hsl(187 96% 48%);
            box-shadow: 0 0 0 3px hsl(187 96% 48% / .13);
        }

    .field textarea {
        min-height: 105px;
        resize: vertical;
    }

    .field select option {
        background: hsl(222 39% 12%);
    }

.contact-form .button-primary {
    margin-top: 4px;
    width: 100%;
}

.form-success {
    border: 1px solid hsl(148 65% 56% / .42);
    color: hsl(148 65% 70%);
    line-height: 1.6;
    padding: 19px;
}

    .form-success strong {
        color: hsl(210 33% 97%);
        display: block;
        margin-bottom: 5px;
    }

.site-footer {
    background: hsl(222 43% 9%);
    color: hsl(210 33% 97% / .52);
    padding: 27px 0;
}

.footer-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

    .footer-inner img {
        opacity: .8;
        width: 136px;
    }

    .footer-inner p {
        font: 10px var(--app-font-mono);
    }

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: inherit;
        font-size: 11px;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: hsl(187 96% 58%);
        }

.reveal {
    animation: rise .7s both;
}

.delay-1 {
    animation-delay: .1s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.logo-mark {
    width: 20px;
    height: 20px;
    position: relative;
}

    .logo-mark span {
        position: absolute;
        border-radius: 50%;
        background: var(--signal);
    }

        .logo-mark span:nth-child(1) {
            width: 9px;
            height: 9px;
            top: 0;
            left: 0;
        }

        .logo-mark span:nth-child(2) {
            width: 9px;
            height: 9px;
            bottom: 0;
            right: 0;
            background: var(--text);
        }
/* Diagram */
.diagram-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

    .diagram-box svg {
        width: 100%;
        height: auto;
        display: block;
    }

.diagram-caption {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 12px;
    padding: 0 4px;
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
    margin-right: 6px;
}

@keyframes flow {
    to {
        stroke-dashoffset: -40;
    }
}

.flowline {
    stroke-dasharray: 4 6;
    animation: flow 1.4s linear infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

.pulse {
    animation: pulse 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .flowline, .pulse {
        animation: none;
    }
}


@media (max-width: 900px) {
    .hero-grid, .intro-grid, .dark-section .feature-layout, .resource-layout, .faq-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .hero-grid {
        gap: 66px;
    }

    .hero-copy h1 {
        max-width: 650px;
    }

    .console {
        max-width: 660px;
        width: 100%;
    }

    .dark-section .feature-layout > div:first-child {
        position: static;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solution-card:first-child {
        grid-column: span 2;
        min-height: 300px;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-intro {
        grid-column: span 2;
    }

    .proof-inner {
        flex-wrap: wrap;
        gap: 18px 28px;
    }
}

@media (max-width: 680px) {
    .container-wide {
        width: min(100% - 34px, 1180px);
    }

    .section {
        padding: 80px 0;
    }

    .site-header {
        height: 68px;
    }

    .logo img {
        width: 141px;
    }

    .nav-links, .nav-actions .header-cta {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .mobile-toggle {
        display: grid;
    }

    .mobile-open .nav-links {
        align-items: flex-start;
        background: hsl(222 39% 12%);
        border: 1px solid hsl(210 33% 97% / .16);
        display: flex;
        flex-direction: column;
        gap: 20px;
        left: 17px;
        padding: 22px;
        position: absolute;
        right: 17px;
        top: 62px;
    }

        .mobile-open .nav-links a {
            font-size: 14px;
        }

    .mobile-open .nav-actions {
        display: flex;
    }

        .mobile-open .nav-actions .header-cta {
            display: inline-flex;
        }

    .hero {
        padding: 120px 0 70px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 15vw, 76px);
    }

    .hero-copy p {
        font-size: 16px;
    }

    .console {
        transform: none;
    }

    .console-body {
        padding: 16px;
    }

    .route-line {
        gap: 6px;
    }

    .route-provider {
        padding: 9px;
    }

    .provider-copy strong {
        font-size: 11px;
    }

    .route-status {
        font-size: 9px;
    }

    .proof-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .proof-inner span:first-child {
            grid-column: span 2;
        }

    .intro-grid, .dark-section .feature-layout, .resource-layout, .faq-layout, .contact-grid {
        gap: 35px;
    }

    .section-heading {
        font-size: clamp(40px, 12vw, 56px);
    }

    .feature-cards, .solution-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(3), .solution-card:first-child {
        grid-column: auto;
    }

    .feature-card, .feature-card:nth-child(3) {
        min-height: auto;
    }

    .solution-card, .solution-card:first-child {
        min-height: 260px;
    }

    .arch-flow {
        align-items: start;
        display: flex;
        flex-direction: column;
        gap: 19px;
        margin-top: 42px;
    }

        .arch-flow::before {
            bottom: 25px;
            height: auto;
            left: 28px;
            right: auto;
            top: 28px;
            width: 1px;
        }

    .arch-item {
        align-items: center;
        display: grid;
        gap: 14px;
        grid-template-columns: 58px 1fr;
        text-align: left;
    }

    .arch-dot {
        margin: 0;
    }

    .arch-item small {
        margin: 3px 0 0;
        max-width: none;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 29px 14px;
    }

    .metric-intro {
        grid-column: span 2;
    }

    .metric {
        padding-left: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 19px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .hero::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
