/* ============================================================
   SORS — Billion-Dollar Startup Design System
   Ultra-premium. Animated. Unforgettable.
   ============================================================ */

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

:root {
    --bg: #000000;
    --bg-elevated: #0a0a0f;
    --bg-card: #08080d;
    --surface: #111118;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);
    --accent: #4f8eff;
    --accent-glow: rgba(79, 142, 255, 0.35);
    --accent2: #00d4ff;
    --accent3: #7b61ff;
    --text: #f0f0f5;
    --text-muted: #a0a0b8;
    --text-dim: #45455e;
    --success: #00e68a;
    --warning: #ffb84d;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: var(--font);
    background: var(--bg);
    background-image: linear-gradient(180deg,
        rgba(6, 12, 28) 0%,
        rgba(4, 8, 22) 10%,
        rgba(3, 6, 18) 18%,
        rgba(1, 2, 8) 38%,
        #000000 55%,
        #000000 78%,
        #000000 100%);
    background-attachment: scroll;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   SKIP LINK — Accessibility
   ======================================== */
.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ========================================
   BACK TO TOP — Floating Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: background 0.4s var(--ease-out-smooth), color 0.4s var(--ease-out-smooth), border-color 0.4s var(--ease-out-smooth), box-shadow 0.4s var(--ease-out-smooth), opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
    backdrop-filter: blur(12px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   BUTTONS — Premium Glow
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.4s var(--ease-out-smooth), background 0.4s var(--ease-out-smooth), border-color 0.4s var(--ease-out-smooth), box-shadow 0.4s var(--ease-out-smooth), transform 0.35s var(--ease);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

/* Primary conversion CTA: "Join pre-beta waitlist" site-wide; reuse this class only */
.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent3) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-smooth);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--accent-glow), 0 10px 40px rgba(79, 142, 255, 0.25);
}

.btn--primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn--primary span,
.btn--primary svg {
    position: relative;
    z-index: 1;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

/* ========================================
   NAVIGATION — Floating Glass
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease);
}

.nav__inner {
    max-width: 1200px;
    margin: 0.75rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1.5rem;
    border-radius: 100px;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(10px) saturate(1.6);
    -webkit-backdrop-filter: blur(10px) saturate(1.6);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.5s var(--ease-out-smooth), border-color 0.5s var(--ease-out-smooth), box-shadow 0.5s var(--ease-out-smooth);
}

.nav--scrolled .nav__inner {
    background: rgba(10, 10, 15, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.nav__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    /* Makes black background transparent */
    filter: drop-shadow(0 0 8px rgba(79, 142, 255, 0.3));
    /* Subtle glow */
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
    .nav__logo-img {
        height: 55px;
        /* Increased for desktop authority */
    }
}

.nav__links {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color 0.4s var(--ease-out-smooth);
    font-weight: 400;
}

.nav__link:hover {
    color: #fff;
}

.nav__link--active {
    color: #fff;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-muted);
    transition: all 0.3s;
    border-radius: 1px;
}

.nav__mobile {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    margin: 0.5rem 1rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.nav__mobile.active {
    display: flex;
}

/* ========================================
   HERO — Cinematic Impact
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated gradient mesh */
.hero__aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__aurora::before,
.hero__aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: meshFloat 15s ease-in-out infinite;
}

.hero__aurora::before {
    width: 800px;
    height: 800px;
    top: -30%;
    left: 20%;
    background: radial-gradient(circle, rgba(79, 142, 255, 0.2) 0%, transparent 70%);
    animation: meshFloat 15s ease-in-out infinite, auroraGlow 14s ease-in-out infinite;
    animation-delay: 0s, 0s;
}

.hero__aurora::after {
    width: 600px;
    height: 600px;
    bottom: -20%;
    right: 10%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.12) 0%, transparent 70%);
    animation: meshFloat 15s ease-in-out infinite, auroraGlow 14s ease-in-out infinite;
    animation-delay: -5s, -3s;
}

@keyframes auroraGlow {
    0%, 100% { opacity: 0.88; }
    50% { opacity: 1; }
}

/* Third orb via a pseudo on hero content wrapper */
.hero__orb-3 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 10%;
    right: 30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    animation: meshFloat 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Animated grid lines */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* WebGL 3D background */
.hero__webgl {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__webgl-canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
}

/* Noise texture */
.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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.025'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(79, 142, 255, 0.2);
    background: rgba(79, 142, 255, 0.05);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    transition: color 0.4s var(--ease-out-smooth), border-color 0.4s var(--ease-out-smooth), background 0.4s var(--ease-out-smooth);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--success);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 4px var(--success);
    }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero__title--gradient {
    background: linear-gradient(110deg, var(--accent) 0%, var(--accent2) 35%, var(--accent3) 70%, var(--accent) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__rotating {
    display: inline-block;
    color: var(--text-muted);
}


.hero__subtitle {
    font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
    color: #e0e0e6;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__proof {
    margin-top: 1.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero__proof-line {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.hero__proof-line:last-child {
    margin-bottom: 0;
}

.hero__proof a,
.hero__trust-bar a {
    color: var(--accent);
}

.hero__proof a:hover,
.hero__trust-bar a:hover {
    text-decoration: underline;
}

.hero__trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero__trust-icon {
    font-style: normal;
}

@media (max-width: 640px) {
    .hero__trust-bar {
        gap: 0.75rem 1.25rem;
    }
    .hero__proof-line {
        font-size: 0.6875rem;
    }
    .hero__trust-item {
        font-size: 0.6875rem;
    }
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 56px;
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
    animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ========================================
   QUICKSTART BLOCK — After hero
   ======================================== */
.quickstart-block {
    padding: 4rem 0;
    position: relative;
    background: transparent;
}

.quickstart-block__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.quickstart-block__copy {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 560px;
}

.quickstart-codes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.quickstart-code-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quickstart-code-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

.quickstart-code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    overflow-x: auto;
    margin-bottom: 0;
}

.quickstart-code code {
    white-space: pre;
}

.quickstart-block__note {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.quickstart-block__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s ease;
}

.quickstart-block__link:hover {
    color: var(--accent2);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .quickstart-block {
        padding: 3rem 0;
    }
    .quickstart-codes {
        grid-template-columns: 1fr;
    }
    .quickstart-code {
        padding: 1rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   SECTIONS — Clean Headers
   ======================================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-smooth), transform 0.7s var(--ease-out-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out-smooth), transform 0.6s var(--ease-out-smooth);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(n+7) { transition-delay: 0.35s; }

.fade-in-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(79, 142, 255, 0.15);
    background: rgba(79, 142, 255, 0.04);
}

.section__tag--coming {
    color: var(--text-dim);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.section__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section__desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ========================================
   BENCHMARKS
   ======================================== */
.benchmark-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.benchmark-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.benchmark-table th,
.benchmark-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.benchmark-table th {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
}

.benchmark-table tbody tr:last-child td {
    border-bottom: none;
}

.benchmark-row--us td {
    background: rgba(79, 142, 255, 0.06);
}

.benchmark-row--us td:first-child {
    color: var(--accent);
}

.benchmark-note {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-top: 1.25rem;
}

.benchmark-note a {
    color: var(--accent);
}

@media (max-width: 640px) {
    .benchmark-table th,
    .benchmark-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   TERMINAL SECTION — After benchmarks
   ======================================== */
.terminal-section {
    padding: 4rem 0;
}

.terminal-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 640px;
}

.terminal-window__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.terminal-window__title {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-left: 0.5rem;
}

.terminal-content {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
    color: var(--text);
    margin: 0;
    overflow-x: auto;
}

.terminal-prompt {
    color: var(--success);
}

.terminal-output {
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .terminal-content {
        padding: 1rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   FEATURED PRODUCT
   ======================================== */

.featured-product {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .featured-product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.featured-product__showcase {
    position: relative;
}

.featured-product__window {
    background: #0d0d12;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(79, 142, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.4s var(--ease-out-smooth);
}

.featured-product__window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(79, 142, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.featured-product__window-bar {
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot--red {
    background: #ff5f57;
}

.dot--yellow {
    background: #febc2e;
}

.dot--green {
    background: #28c840;
}

.featured-product__img {
    width: 100%;
    height: auto;
    display: block;
}


.featured-product__info {
    padding-left: 2rem;
}

@media(max-width: 900px) {
    .featured-product__info {
        padding-left: 0;
    }
}

.featured-product__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(79, 142, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-product__tagline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.featured-product__desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.featured-product__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-product__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.featured-product__feature svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.featured-product__feature strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.featured-product__feature span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.featured-product__models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.featured-product__models-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag--accent {
    background: rgba(79, 142, 255, 0.1);
    color: var(--accent);
    border-color: rgba(79, 142, 255, 0.2);
}

/* ========================================
   PERF STRIP
   ======================================== */

.perf-strip {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.perf-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media(max-width: 768px) {
    .perf-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

.perf-badge {
    text-align: center;
    position: relative;
}

.perf-badge+.perf-badge::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media(max-width: 768px) {
    .perf-badge+.perf-badge::before {
        display: none;
    }
}

.perf-badge__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.perf-badge__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-mono);
}

.perf-badge__label {
    font-size: 0.875rem;
    color: var(--text-muted);
}


/* ========================================
   INTELLIGENCE (Roadmap)
   ======================================== */

.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.intel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
    transition: transform 0.4s var(--ease-out-smooth), border-color 0.4s var(--ease-out-smooth), box-shadow 0.4s var(--ease-out-smooth);
}

.intel-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.intel-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text);
    transition: background 0.4s var(--ease-out-smooth), color 0.4s var(--ease-out-smooth);
}

.intel-card:hover .intel-card__icon {
    background: var(--accent);
    color: #fff;
}

.intel-card__icon svg {
    width: 24px;
    height: 24px;
}

.intel-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.intel-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ========================================
   VERTICALS
   ======================================== */

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media(max-width: 1024px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .verticals-grid {
        grid-template-columns: 1fr;
    }
}

.vertical-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.vertical-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.vertical-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.vertical-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.vertical-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.vertical-card__sample {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.vertical-card__sample-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.vertical-card__sample-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ========================================
   ECOSYSTEM
   ======================================== */

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

.ecosystem-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
}

.ecosystem-card--active {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(79, 142, 255, 0.05);
}

.ecosystem-card--planned {
    opacity: 0.7;
    border-style: dashed;
}

.ecosystem-card--planned:hover {
    opacity: 1;
    border-style: solid;
}

.ecosystem-card__status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.ecosystem-card--active .ecosystem-card__status {
    background: rgba(0, 230, 138, 0.15);
    color: var(--success);
}

.ecosystem-card--planned .ecosystem-card__status {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.ecosystem-card__logo {
    display: block;
    max-width: 64px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1.5rem;
}

.ecosystem-card__icon-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.ecosystem-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ecosystem-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ========================================
   ABOUT / MISSION — Split Layout
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about__desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about__principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.principle {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.principle__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.principle strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.principle p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ========================================
   TRUST STRIP
   ======================================== */

.trust-strip {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.trust-badge__icon {
    margin-bottom: 1rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.trust-badge__label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.trust-badge__desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card--featured {
    border-color: rgba(79, 142, 255, 0.35);
    background: rgba(79, 142, 255, 0.04);
}

.pricing-card__badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.pricing-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.pricing-card__price {
    margin-bottom: 0.5rem;
}

.pricing-card__amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-card__period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card__price--sub {
    margin-bottom: 1rem;
}

.pricing-card__price--sub .pricing-card__amount {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-card__anchor {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-card__features li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.pricing-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.35rem;
    height: 0.35rem;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.8;
}

.pricing-card .btn--block {
    width: 100%;
    justify-content: center;
}

.pricing-trust {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pricing-trust__line {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.pricing-trust__faq {
    font-size: 0.875rem;
    margin-top: 1.25rem;
}

.pricing-trust__faq a {
    color: var(--accent);
    text-decoration: none;
}

.pricing-trust__faq a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA BOX
   ======================================== */
.section--cta {
    padding-top: 0;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-box__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 142, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-box__title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-box__desc {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    background: transparent;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.4));
    pointer-events: none;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 1rem;
}

.footer__copy {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.footer__links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.footer__col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.4s var(--ease-out-smooth);
}

.footer__col a:hover {
    color: var(--accent);
}
