﻿@import url("../dropdowns/dropdowns.css");

:root {
    --bg: #0a0d14;
    --bg-elevated: #101521;
    --bg-elevated-2: #151b2a;
    --bg-soft: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f7fb;
    --text-primary: #eaf2ff;
    --text-muted: #a7b1c2;
    --text-soft: #7e8797;
    --accent: #60a5fa;
    --accent-2: #9b7bff;
    --success: #4dd4ac;
    --warning: #ffcc66;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.34);
    --radius: 18px;
    --radius-sm: 12px;
    --content-width: 1180px;
    --nav-height: 76px;

    --bg-surface: #0d1423;
    --bg-surface-hover: #151c2c;
    --bg-surface-hover-alt: #18263a;
    --bg-surface-strong: #080e19;
    --bg-input: #0a1120;
    --bg-input-strong: #07101d;
    --bg-hover-subtle: rgba(234, 242, 255, 0.07);
    --bg-overlay: rgba(12, 18, 32, 0.92);
    --accent-soft: rgba(96, 165, 250, 0.18);
    --border-subtle: rgba(234, 242, 255, 0.12);
    --border-muted: rgba(234, 242, 255, 0.18);
    --border-accent: rgba(96, 165, 250, 0.32);
    --shadow-focus: rgba(96, 165, 250, 0.28);
    --text-on-accent: #071422;
    --text-secondary: #98a6bb;
    --scrollbar-thumb: rgba(234, 242, 255, 0.24);
    --scrollbar-thumb-hover: rgba(234, 242, 255, 0.36);
    --scrollbar-track: rgba(9, 14, 26, 0.92);
    --secondary-button: #111a2b;
    --secondary-button-text: #eaf2ff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
            radial-gradient(circle at top left, rgba(110, 140, 255, 0.16), transparent 28%),
            radial-gradient(circle at top right, rgba(155, 123, 255, 0.10), transparent 24%),
            linear-gradient(180deg, #0b0f18 0%, #090c13 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

code {
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.hidden{
    display: none;
}

.row-left,
.row-right,
.row-center {
    display: flex;
    gap: 8px;
}

.row-center{ align-items: center; }
.row-left{ align-items: flex-start; }
.row-right{ align-items: flex-end; }

/* NAV */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-height);
    backdrop-filter: blur(16px);
    background: rgba(8, 11, 18, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    width: min(var(--content-width), calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo,
.logo a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--text);
}

.logo {
    flex: 0 0 auto;
}

.logo-link {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    position: relative;
}

.logo-text {
    position: relative;
}

.brand-logo {
    display: block;
    height: 39px;
    width: 59px;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 180ms ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links .nav-cta,
.nav-cta-mobile {
    color: var(--text);
    background: linear-gradient(135deg, rgba(110, 140, 255, 0.22), rgba(155, 123, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}


/* LAYOUT */

.container {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    padding: 76px 0 52px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #d8e2ff;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 14px rgba(110, 140, 255, 0.6);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 40px;
    align-items: center;
    margin-top: 22px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    max-width: 9.5ch;
}

.hero-copy .subtitle {
    margin: 22px 0 0;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: var(--text-muted);
    max-width: 700px;
}

.hero-copy .hero-meta {
    margin-top: 20px;
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 180ms ease;
}

.cta {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 34px rgba(110, 140, 255, 0.24);
}

.cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(110, 140, 255, 0.28);
}

.secondary-btn {
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
    position: relative;
    border-radius: 24px;
    padding: 22px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
            linear-gradient(180deg, rgba(19, 27, 44, 0.82), rgba(12, 18, 30, 0.92));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 85% 20%, rgba(110, 140, 255, 0.18), transparent 24%),
            radial-gradient(circle at 18% 90%, rgba(155, 123, 255, 0.14), transparent 24%);
    pointer-events: none;
}

.panel-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.panel-label {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.status-pill.live::before,
.status-pill.soon::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.status-pill.live::before {
    background: var(--success);
    box-shadow: 0 0 12px rgba(77, 212, 172, 0.5);
}

.status-pill.soon::before {
    background: var(--warning);
    box-shadow: 0 0 12px rgba(255, 204, 102, 0.45);
}

.architecture {
    position: relative;
    display: grid;
    gap: 12px;
}

.arch-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.arch-node {
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    min-height: 78px;
}

.arch-node strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.arch-node span {
    display: block;
    color: var(--text-soft);
    font-size: 0.84rem;
}

.arch-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.capability-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 0;
    padding: 18px 0 0;
}

.capability-item {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.capability-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.capability-item span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

main {
    padding-bottom: 90px;
}

.section {
    padding: 56px 0;
}

.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-header h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.grid-3,
.grid-4,
.grid-2 {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
            rgba(16, 21, 33, 0.9);
    box-shadow: var(--shadow);
}

.card.soft {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.025);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    color: var(--text-muted);
}

.kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #cdd8ff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.metric {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.metric-label {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.metric-sub {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.flow-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 6px;
}

.flow-step {
    position: relative;
    padding: 18px 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.flow-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(110, 140, 255, 0.16);
    color: #dce4ff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.flow-step p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.93rem;
}

.highlight-panel {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border-strong);
    background:
            radial-gradient(circle at 100% 0%, rgba(110, 140, 255, 0.16), transparent 22%),
            linear-gradient(180deg, rgba(16, 21, 33, 0.96), rgba(12, 17, 28, 0.96));
    box-shadow: var(--shadow);
}

.highlight-panel h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.highlight-panel p {
    margin: 0;
    color: var(--text-muted);
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
}

.callout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.roadmap-card {
    border-color: rgba(255, 204, 102, 0.22);
    background:
            linear-gradient(180deg, rgba(255, 204, 102, 0.05), rgba(255, 255, 255, 0.02)),
            rgba(16, 21, 33, 0.9);
}

.cta-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border-strong);
    background:
            radial-gradient(circle at 0% 50%, rgba(110, 140, 255, 0.14), transparent 24%),
            linear-gradient(180deg, rgba(16, 21, 33, 0.95), rgba(12, 17, 28, 0.95));
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.cta-panel p {
    margin: 0;
    color: var(--text-muted);
}

.cta-panel .cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer {
    padding: 24px 0 48px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.footer-inner {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.muted-link {
    color: var(--text-soft);
    text-decoration: none;
}

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

/* RESPONSIVE */

@media (max-width: 1080px) {
    .hero-grid,
    .callout-grid,
    .cta-panel,
    .grid-4,
    .grid-3,
    .grid-2,
    .flow-band,
    .metric-row,
    .capability-strip {
        grid-template-columns: 1fr;
    }

    .arch-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .nav {
        height: auto;
    }

    .nav-inner {
        min-height: var(--nav-height);
        height: auto;
        padding: 14px 0;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-cta-mobile {
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-copy h1 {
        max-width: none;
    }

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

    .arch-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .logo,
    .logo a {
        font-size: 18px;
    }

    .brand-logo {
        width: 52px;
        height: 34px;
    }

    .logo-text {
        top: 3px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-cta-mobile {
        padding: 0 12px;
        font-size: 0.85rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }
}
