﻿@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');
:root {
    --bg-0: #ffffff;
    --bg-1: #f6faf6;
    --bg-2: #eef6ee;
    --bg-card: #ffffff;
    --bg-card-hi: #f4fdf4;
    --bg-dark: #051205;
    --border: rgba(8, 180, 11, 0.11);
    --border-hi: rgba(8, 180, 11, 0.24);
    --green-1: #068a08;
    --green-2: #08cc0b;
    --green-3: #0fe012;
    --green-4: #3deb40;
    --green-tint: rgba(8, 204, 11, 0.07);
    --green-tint2: rgba(8, 204, 11, 0.13);
    --ink-1: #071407;
    --ink-2: #1a2e1a;
    --ink-3: #3a5a3a;
    --ink-4: #6a8c6a;
    --ink-5: #a0bca0;
    --text-h: #071407;
    --text-p: #3a5a3a;
    --text-dim: #7a9a7a;
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
    --nav-h: 68px;
    --max-w: 1160px;
    --section-py: 88px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-0);
    color: var(--text-p);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--green-2);
    text-decoration: none;
    transition: color .2s;
}

    a:hover {
        color: var(--green-3);
    }

ul {
    list-style: none;
}

/* ── NETWORK CANVAS BG ───────────────────────────────────── */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

    .nav.scrolled {
        border-color: var(--border);
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

    .nav-logo img {
        height: 30px;
        width: auto;
    }

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink-1);
    letter-spacing: 0.08em;
}

.nav-logo-sub {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-2);
    line-height: 1;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

    .nav-links a {
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--ink-3);
        padding: 8px 14px;
        transition: color .2s;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--green-2);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink-2);
        transition: transform .3s, opacity .3s;
        border-radius: 2px;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 32px 28px;
    flex-direction: column;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--ink-2);
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
    }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--green-2);
        }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: var(--green-2);
    color: var(--ink-1);
    border: 1px solid var(--green-2);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--green-1);
        border-color: var(--green-1);
        color: #fff;
        box-shadow: 0 4px 20px rgba(8,204,11,0.35);
    }

.btn-ghost {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: transparent;
    color: var(--ink-2);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    display: inline-block;
}

    .btn-ghost:hover {
        background: var(--green-tint);
        border-color: var(--green-2);
        color: var(--green-1);
    }

.btn-ghost-white {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    display: inline-block;
}

    .btn-ghost-white:hover {
        border-color: rgba(255,255,255,0.5);
        color: white;
        background: rgba(255,255,255,0.06);
    }

.btn-lg {
    padding: 13px 32px;
    font-size: 0.86rem;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.section {
    padding: var(--section-py) 0;
    position: relative;
    z-index: 1;
}

.section-sm {
    padding: 52px 0;
    position: relative;
    z-index: 1;
}

.bg-tinted {
    background: var(--bg-1);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-2);
    margin-bottom: 12px;
    display: block;
}

.section-header {
    margin-bottom: 52px;
}

    .section-header h2 {
        font-family: var(--font-display);
        font-size: clamp(1.7rem, 3vw, 2.4rem);
        font-weight: 700;
        color: var(--text-h);
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .section-header p {
        color: var(--text-p);
        max-width: 600px;
        line-height: 1.75;
        font-size: 0.95rem;
    }

.text-green {
    color: var(--green-1);
}

/* ── STAT BAR ────────────────────────────────────────────── */
.stat-bar {
    background: var(--ink-1);
    position: relative;
    z-index: 1;
}

.stat-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 32px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

    .stat-num em {
        color: var(--green-2);
        font-style: normal;
    }

.stat-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: border-color .25s, box-shadow .25s;
}

    .card:hover {
        border-color: var(--border-hi);
        box-shadow: var(--shadow-md);
    }

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--green-tint);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.card p {
    font-size: 0.875rem;
    color: var(--text-p);
    line-height: 1.65;
}

/* ── GRIDS ───────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 72px;
    background: var(--bg-0);
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    max-width: 700px;
    padding-left: 32px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-2);
    display: block;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--text-h);
    line-height: 1.1;
    margin-bottom: 18px;
}

    .page-hero h1 span {
        color: var(--green-1);
    }

.page-hero p {
    font-size: 1rem;
    color: var(--text-p);
    max-width: 540px;
    line-height: 1.78;
}

/* ── FEATURE DETAIL ──────────────────────────────────────── */
.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

    .feature-detail.reverse .feature-vis {
        order: -1;
    }

.feature-vis {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-vis img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
    }

.feature-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--text-h);
    line-height: 1.2;
    margin-bottom: 14px;
}

.feature-body > p {
    color: var(--text-p);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.93rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-dot {
    width: 16px;
    height: 16px;
    background: var(--green-tint2);
    border: 1px solid var(--border-hi);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: var(--green-1);
    flex-shrink: 0;
    margin-top: 4px;
}

.check-item p {
    font-size: 0.875rem;
    color: var(--text-p);
    line-height: 1.6;
}

.check-item strong {
    color: var(--text-h);
    font-weight: 600;
}

/* ── DARK SECTION ────────────────────────────────────────── */
.section-dark {
    background: var(--ink-1);
}

    .section-dark .section-label {
        color: var(--green-4);
    }

    .section-dark h2 {
        color: #fff;
    }

    .section-dark .section-header p {
        color: rgba(255,255,255,0.5);
    }

    .section-dark .card {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.07);
    }

        .section-dark .card:hover {
            border-color: rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.07);
        }

        .section-dark .card h3 {
            color: #fff;
        }

        .section-dark .card p {
            color: rgba(255,255,255,0.5);
        }

    .section-dark .card-icon {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.1);
    }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
    background: var(--ink-1);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .cta-band h2 {
        font-family: var(--font-display);
        font-size: clamp(1.7rem, 3.5vw, 2.6rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 14px;
    }

    .cta-band p {
        font-size: 1rem;
        color: rgba(255,255,255,0.5);
        max-width: 480px;
        margin: 0 auto 32px;
        line-height: 1.75;
    }

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

/* ── PLATFORM MODULE GRID ────────────────────────────────── */
.module-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.module-cell {
    background: var(--bg-card);
    padding: 36px 28px;
    transition: background .2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

    .module-cell:hover {
        background: var(--bg-card-hi);
    }

.module-num {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.module-icon {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.module-cell h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.module-cell p {
    font-size: 0.85rem;
    color: var(--text-p);
    line-height: 1.6;
}

.module-link {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-2);
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ── PROCESS STRIP ───────────────────────────────────────── */
.process-strip {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    padding: 0 28px;
    position: relative;
    border-right: 1px solid var(--border);
}

    .process-step:first-child {
        padding-left: 0;
    }

    .process-step:last-child {
        border-right: none;
    }

.ps-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--border-hi);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-p);
    line-height: 1.65;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ink-3);
        display: block;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 11px 14px;
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--ink-1);
        background: #fff;
        border: 1px solid var(--border-hi);
        border-radius: var(--r-sm);
        transition: border-color .2s, box-shadow .2s;
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green-2);
            box-shadow: 0 0 0 3px rgba(8,204,11,0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

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

/* ── TAG / BADGE ─────────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-1);
    background: var(--green-tint);
    border: 1px solid var(--border-hi);
    border-radius: 40px;
    padding: 3px 10px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--ink-1);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--green-4);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-bottom p {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.25);
    }

.footer-socials {
    display: flex;
    gap: 10px;
}

    .footer-socials a {
        font-size: 0.75rem;
        font-family: var(--font-display);
        font-weight: 700;
        color: rgba(255,255,255,0.3);
        width: 30px;
        height: 30px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color .2s, border-color .2s;
    }

        .footer-socials a:hover {
            color: var(--green-4);
            border-color: var(--green-2);
        }

/* ── EXCHANGE BADGE STRIP ────────────────────────────────── */
.exchange-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ex-badge {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(8,204,11,0.08);
    border: 1px solid rgba(8,204,11,0.2);
    color: var(--green-1);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ── AUDIENCE TABS ───────────────────────────────────────── */
.sol-tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 52px;
    background: var(--bg-card);
}

.sol-tab {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    border-right: 1px solid var(--border);
    transition: background .2s, color .2s;
    background: transparent;
    border-top: none;
    border-bottom: none;
    border-left: none;
}

    .sol-tab:last-child {
        border-right: none;
    }

    .sol-tab.active, .sol-tab:hover {
        background: var(--green-tint);
        color: var(--green-1);
    }

.sol-panel {
    display: none;
}

    .sol-panel.active {
        display: block;
    }

/* ── SVC CARD ────────────────────────────────────────────── */
.svc-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color .25s, box-shadow .25s;
}

    .svc-card:hover {
        border-color: var(--border-hi);
        box-shadow: var(--shadow-md);
    }

    .svc-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

.svc-body {
    padding: 24px;
}

    .svc-body h3 {
        font-family: var(--font-display);
        font-size: 1.02rem;
        font-weight: 700;
        color: var(--text-h);
        margin-bottom: 8px;
    }

    .svc-body p {
        font-size: 0.875rem;
        color: var(--text-p);
        line-height: 1.6;
    }

/* ── HITL STRIP ──────────────────────────────────────────── */
.hitl-strip {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.hitl-step {
    flex: 1;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
    position: relative;
}

    .hitl-step:last-child {
        border-right: none;
    }

.hbadge {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 10px;
}

    .hbadge.ai {
        background: rgba(8,204,11,0.1);
        color: var(--green-1);
        border: 1px solid rgba(8,204,11,0.22);
    }

    .hbadge.hu {
        background: rgba(60,100,230,0.08);
        color: #3060c8;
        border: 1px solid rgba(60,100,230,0.2);
    }

.hitl-step h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 7px;
}

.hitl-step p {
    font-size: 0.8rem;
    color: var(--text-p);
    line-height: 1.6;
}

.ha {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 20px;
    height: 20px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: var(--green-2);
    font-weight: 700;
}

/* ── AI PANEL ────────────────────────────────────────────── */
.ai-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ai-panel-hdr {
    background: var(--ink-1);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-panel-ttl {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.ai-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-4);
}

    .ai-live::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--green-2);
        box-shadow: 0 0 8px rgba(8,204,11,0.7);
        animation: blink 2s ease-in-out infinite;
    }

.ai-panel-body {
    padding: 18px 20px;
}

.ai-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

    .ai-row:last-child {
        border-bottom: none;
    }

.ai-row-lbl {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-p);
}

.ai-row-val {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-h);
}

    .ai-row-val.g {
        color: var(--green-1);
    }

.prog {
    background: var(--bg-2);
    border-radius: 40px;
    height: 4px;
    width: 70px;
    overflow: hidden;
}

.prog-f {
    height: 100%;
    border-radius: 40px;
    background: var(--green-2);
}

.ai-panel-ftr {
    background: var(--green-tint);
    border-top: 1px solid var(--border);
    padding: 11px 20px;
    font-family: var(--font-display);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--green-1);
}

/* ── INSIGHTS / NEWS ─────────────────────────────────────── */
.news-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color .25s, box-shadow .25s;
    display: block;
    text-decoration: none;
}

    .news-card:hover {
        border-color: var(--border-hi);
        box-shadow: var(--shadow-md);
    }

    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

.news-body {
    padding: 22px;
}

.news-cat {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-2);
    margin-bottom: 8px;
    display: block;
}

.news-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-h);
    line-height: 1.3;
    margin-bottom: 8px;
}

.news-body p {
    font-size: 0.82rem;
    color: var(--text-p);
    line-height: 1.6;
}

.news-date {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 10px;
    display: block;
}

/* ── VOTING CALENDAR TABLE ───────────────────────────────── */
.vcal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

    .vcal-table th {
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-dim);
        padding: 10px 14px;
        text-align: left;
        border-bottom: 2px solid var(--border);
    }

    .vcal-table td {
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
        color: var(--text-p);
    }

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

    .vcal-table tr:hover td {
        background: var(--bg-1);
    }

.vote-for {
    color: var(--green-1);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.vote-against {
    color: #c0392b;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.vote-abs {
    color: var(--ink-4);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.exch-tag {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--green-tint2);
    color: var(--green-1);
    border: 1px solid var(--border-hi);
    border-radius: 3px;
    padding: 2px 6px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

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

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


media (max-width: 760px) {
    :root {
        --section-py: 60px;
    }

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

    .nav-hamburger {
        display: flex;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-detail, .feature-detail.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .feature-detail.reverse .feature-vis {
            order: unset;
        }

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

    .container, .page-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-band {
        padding: 52px 24px;
    }

    .process-strip {
        flex-direction: column;
        gap: 32px;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 28px;
    }

        .process-step:last-child {
            border-bottom: none;
        }

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

    .hitl-strip {
        flex-direction: column;
    }

    .hitl-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

        .hitl-step:last-child {
            border-bottom: none;
        }

    .sol-tabs {
        flex-direction: column;
    }

    .sol-tab {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

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

/* ── ANIMATIONS ──────────────────────────────────────────── */
keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero-animate {
    animation: fadeInUp .7s ease both;
}

.hero-animate-2 {
    animation: fadeInUp .7s .15s ease both;
}

.hero-animate-3 {
    animation: fadeInUp .7s .28s ease both;
}

.hero-animate-4 {
    animation: fadeInUp .7s .42s ease both;
}


/* ── SPA PAGE SYSTEM ─────────────────────────────────────── */
.page {
    display: none;
}

    .page.active {
        display: block;
        animation: pgIn .3s ease both;
    }

keyframes pgIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── HOME HERO ────────────────────────────────────────────── */
.home-hero {
    min-height: calc(100vh - var(--nav-h));
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
    background: var(--bg-0);
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 32px 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-1);
    border: 1px solid var(--border-hi);
    border-radius: 40px;
    padding: 5px 14px;
    margin-bottom: 24px;
    background: var(--green-tint);
}

    .hero-label span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green-2);
        display: inline-block;
        animation: blink 2s ease-in-out infinite;
    }

.home-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem,5vw,4.4rem);
    font-weight: 700;
    color: var(--text-h);
    line-height: 1.06;
    margin-bottom: 22px;
}

    .home-hero h1 em {
        color: var(--green-2);
        font-style: normal;
    }

.home-hero .lead {
    font-size: 1.05rem;
    color: var(--text-p);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.exchange-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .exchange-row span {
        font-family: var(--font-display);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-dim);
    }

.investor-types {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}

.inv-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

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

.mkt-cell {
    background: var(--bg-card);
    padding: 28px 24px;
}

.mkt-ex {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-2);
    margin-bottom: 4px;
}

.mkt-country {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-h);
    margin-bottom: 6px;
}

.mkt-desc {
    font-size: 0.8rem;
    color: var(--text-p);
    line-height: 1.5;
}

.mkt-cell .tag {
    margin-top: 10px;
}

.vchain {
    display: flex;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.vc-step {
    flex: 1;
    background: var(--bg-card);
    padding: 24px 18px;
    text-align: center;
    transition: background .2s;
}

    .vc-step:hover {
        background: var(--bg-card-hi);
    }

.vc-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.vc-step h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 5px;
}

.vc-step p {
    font-size: 0.77rem;
    color: var(--text-p);
    line-height: 1.5;
}

.vc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    padding: 0 6px;
    color: var(--green-2);
    font-size: 0.9rem;
    font-weight: 700;
}

/* ── PLATFORM NAV ────────────────────────────────────────── */
.platform-module {
    scroll-margin-top: calc(var(--nav-h) + 60px);
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--ink-1);
    color: var(--green-4);
    padding: 5px 12px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.platform-nav {
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.pnav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 0;
    overflow-x: auto;
}

    .pnav-inner a {
        font-family: var(--font-display);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--ink-3);
        padding: 16px 20px;
        border-bottom: 2px solid transparent;
        transition: color .2s,border-color .2s;
        white-space: nowrap;
        display: block;
    }

        .pnav-inner a:hover, .pnav-inner a.active {
            color: var(--green-1);
            border-color: var(--green-2);
        }

.ai-demo-terminal {
    background: var(--ink-1);
    border: 1px solid rgba(8,204,11,0.2);
    border-radius: var(--r-lg);
    overflow: hidden;
    font-family: var(--font-display);
}

.terminal-bar {
    padding: 12px 18px;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(8,204,11,0.15);
}

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

    .t-dot.r {
        background: #ff5f56;
    }

    .t-dot.y {
        background: #ffbd2e;
    }

    .t-dot.g {
        background: #27c93f;
    }

.t-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-left: 6px;
}

.terminal-body {
    padding: 20px 22px;
}

.t-line {
    font-size: 0.78rem;
    line-height: 2;
}

.t-prompt {
    color: var(--green-2);
}

.t-label {
    color: rgba(255,255,255,0.4);
}

.t-val {
    color: #fff;
    font-weight: 600;
}

.t-good {
    color: var(--green-4);
    font-weight: 700;
}

.t-warn {
    color: #ffbd2e;
    font-weight: 700;
}

.t-bad {
    color: #ff6b6b;
    font-weight: 700;
}

.t-cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: var(--green-2);
    animation: blink 1.2s step-end infinite;
    vertical-align: -2px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 36px;
}

.metric-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
    text-align: center;
}

    .metric-box .num {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--green-2);
        line-height: 1;
        margin-bottom: 5px;
    }

    .metric-box .lbl {
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-dim);
    }

/* ── SOLUTIONS PAGE ──────────────────────────────────────── */
.sol-hero-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.sol-hero-tab {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1px solid var(--border-hi);
    border-radius: var(--r-sm);
    cursor: pointer;
    background: transparent;
    color: var(--ink-3);
    transition: all .2s;
}

    .sol-hero-tab.active, .sol-hero-tab:hover {
        background: var(--green-2);
        color: var(--ink-1);
        border-color: var(--green-2);
    }

.audience-section {
    scroll-margin-top: calc(var(--nav-h) + 20px);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    text-align: center;
}

    .comp-card .badge {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--green-2);
        margin-bottom: 8px;
    }

    .comp-card p {
        font-size: 0.78rem;
        color: var(--text-p);
        line-height: 1.5;
    }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.tl {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

    .tl-item:last-child {
        border-bottom: none;
    }

.tl-yr {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-2);
    line-height: 1;
    padding-top: 4px;
}

.tl-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 6px;
}

.tl-body p {
    font-size: 0.875rem;
    color: var(--text-p);
    line-height: 1.65;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
}

    .team-card .initials {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--green-tint2);
        border: 1px solid var(--border-hi);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--green-1);
        margin-bottom: 14px;
    }

    .team-card h4 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-h);
        margin-bottom: 4px;
    }

    .team-card .role {
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--green-2);
        margin-bottom: 10px;
        display: block;
    }

    .team-card p {
        font-size: 0.82rem;
        color: var(--text-p);
        line-height: 1.6;
    }

/* ── CALENDAR ────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    align-items: center;
}

    .filter-bar select, .filter-bar input {
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 9px 14px;
        border: 1px solid var(--border-hi);
        border-radius: var(--r-sm);
        background: var(--bg-card);
        color: var(--ink-2);
        outline: none;
        transition: border-color .2s;
    }

        .filter-bar select:focus, .filter-bar input:focus {
            border-color: var(--green-2);
        }

.filter-lbl {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.cal-summary {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.cal-sum-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 16px;
    text-align: center;
}

    .cal-sum-card .n {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--green-2);
        line-height: 1;
        margin-bottom: 4px;
    }

    .cal-sum-card .l {
        font-family: var(--font-display);
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-dim);
    }

.vcal-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

/* ── INSIGHTS ────────────────────────────────────────────── */
.insights-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ins-tag {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid var(--border-hi);
    border-radius: 40px;
    cursor: pointer;
    color: var(--ink-3);
    background: transparent;
    transition: all .2s;
}

    .ins-tag.active, .ins-tag:hover {
        background: var(--green-2);
        color: var(--ink-1);
        border-color: var(--green-2);
    }

.featured-insight {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 48px;
}

.fi-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .fi-body .cat {
        font-family: var(--font-display);
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--green-2);
        margin-bottom: 14px;
        display: block;
    }

    .fi-body h2 {
        font-family: var(--font-display);
        font-size: clamp(1.3rem,2.5vw,1.9rem);
        font-weight: 700;
        color: var(--text-h);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .fi-body p {
        font-size: 0.9rem;
        color: var(--text-p);
        line-height: 1.75;
        margin-bottom: 20px;
    }

.fi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

/* ── CONTACT/DEMO ────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

    .contact-item:last-child {
        border-bottom: none;
    }

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--green-tint2);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--text-h);
    line-height: 1.5;
}

.contact-form, .demo-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
}

    .contact-form h3, .demo-form h3 {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-h);
        margin-bottom: 24px;
    }

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.demo-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.db-icon {
    width: 42px;
    height: 42px;
    background: var(--green-tint2);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.demo-benefit h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 4px;
}

.demo-benefit p {
    font-size: 0.82rem;
    color: var(--text-p);
    line-height: 1.6;
}

.demo-form .sub {
    font-size: 0.85rem;
    color: var(--text-p);
    margin-bottom: 28px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--green-2);
    color: var(--ink-1);
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background .2s;
}

    .form-submit:hover {
        background: var(--green-1);
        color: #fff;
    }

/* ── LOGIN PAGE ──────────────────────────────────────────── */
#page-login {
    background: var(--ink-1);
    min-height: 100vh;
}

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: var(--nav-h) 24px 40px;
}

.login-card {
    background: rgba(7,20,7,0.75);
    border: 1px solid rgba(8,204,11,0.25);
    border-radius: var(--r-lg);
    padding: 48px 44px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 80px rgba(8,204,11,0.06);
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    justify-content: center;
}

.login-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
}

.login-logo-sub {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-2);
    line-height: 1;
    margin-top: 2px;
}

.login-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
}

.login-sub {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin-bottom: 36px;
}

.login-field {
    margin-bottom: 18px;
}

    .login-field label {
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.35);
        display: block;
        margin-bottom: 8px;
    }

    .login-field input {
        width: 100%;
        padding: 13px 16px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(8,204,11,0.18);
        border-radius: var(--r-sm);
        font-family: var(--font-body);
        font-size: 0.92rem;
        color: #fff;
        outline: none;
        transition: border-color .2s,box-shadow .2s;
    }

        .login-field input::placeholder {
            color: rgba(255,255,255,0.15);
        }

        .login-field input:focus {
            border-color: var(--green-2);
            box-shadow: 0 0 0 3px rgba(8,204,11,0.1);
        }

.login-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--green-2);
    color: var(--ink-1);
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background .2s,box-shadow .2s;
    margin-top: 8px;
    display: block;
}

    .login-btn:hover {
        background: var(--green-3);
        box-shadow: 0 4px 24px rgba(8,204,11,0.35);
    }

.login-btn-ghost {
    background: transparent !important;
    border: 1px solid rgba(8,204,11,0.22) !important;
    color: rgba(255,255,255,0.5) !important;
    box-shadow: none !important;
}

    .login-btn-ghost:hover {
        background: rgba(8,204,11,0.07) !important;
        color: rgba(255,255,255,0.8) !important;
    }

.login-footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

    .login-footer-links a {
        font-family: var(--font-display);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.25);
        cursor: pointer;
        transition: color .2s;
        text-decoration: none;
    }

        .login-footer-links a:hover {
            color: var(--green-4);
        }

.login-divider {
    text-align: center;
    margin: 22px 0;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.12);
    position: relative;
}

    .login-divider::before, .login-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: rgba(255,255,255,0.07);
    }

    .login-divider::before {
        left: 0;
    }

    .login-divider::after {
        right: 0;
    }

.login-notice {
    margin-top: 28px;
    background: rgba(8,204,11,0.05);
    border: 1px solid rgba(8,204,11,0.12);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-family: var(--font-display);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.25);
    text-align: center;
    line-height: 1.75;
}

/* ── NAV (SPA overrides) ─────────────────────────────────── */
.nav-links a, .nav-logo, .nav-actions span {
    cursor: pointer;
}

/* ── RESPONSIVE EXTRAS ───────────────────────────────────── */
media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

media(max-width:760px) {
    .contact-grid, .demo-grid {
        grid-template-columns: 1fr;
    }

    .featured-insight {
        grid-template-columns: 1fr;
    }

    .fi-img {
        display: none;
    }

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

    .vchain {
        flex-wrap: wrap;
    }

    .vc-arrow {
        display: none;
    }

    .cal-summary {
        grid-template-columns: 1fr 1fr;
    }

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

    .tl-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .login-card {
        padding: 32px 20px;
    }

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

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

media(max-width:480px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}

/* Paste this BEFORE your closing </body > tag */
/* ── MEETINGS CAROUSEL (replaces stat-bar display) ───────── */
.stat-bar {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.stat-bar-inner {
    display: none;
}
/* hide the original grid */

.mcr-track-wrap {
    overflow: hidden;
    position: relative;
}

.mcr-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.mcr-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: transparent;
}

/* Meeting card inside slide */
.mcr-card {
    padding: 24px 22px 22px;
    background: var(--ink-1, #071407);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 2px solid transparent;
    transition: border-color .2s;
}

    .mcr-card:hover {
        border-top-color: var(--green-2, #08cc0b);
    }

    .mcr-card + .mcr-card {
        border-left: 1px solid rgba(255,255,255,0.06);
    }

.mcr-exch {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

    .mcr-exch span {
        font-family: var(--font-display,'Rajdhani',sans-serif);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--green-1,#068a08);
        background: rgba(8,204,11,0.1);
        border: 1px solid rgba(8,204,11,0.2);
        border-radius: 3px;
        padding: 2px 6px;
    }

.mcr-ticker {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.mcr-company {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.mcr-date {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

.mcr-deadline {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .mcr-deadline span { /* pill */
        padding: 3px 9px;
        border-radius: 40px;
        font-size: 0.62rem;
    }

.dl-urgent {
    color: #ff6b6b;
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.22);
}

.dl-soon {
    color: #ffbd2e;
    background: rgba(255,189,46,0.1);
    border: 1px solid rgba(255,189,46,0.22);
}

.dl-ok {
    color: var(--green-4,#3deb40);
    background: rgba(8,204,11,0.08);
    border: 1px solid rgba(8,204,11,0.2);
}

.mcr-recs {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    margin-top: 2px;
}

/* Nav bar at bottom */
.mcr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 32px 12px;
    background: var(--ink-1, #071407);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mcr-label {
    font-family: var(--font-display,'Rajdhani',sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.mcr-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.mcr-dot {
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.14);
    cursor: pointer;
    transition: background .25s, width .25s;
}

    .mcr-dot.active {
        background: var(--green-2,#08cc0b);
        width: 32px;
    }

.mcr-arrows {
    display: flex;
    gap: 8px;
}

.mcr-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
    font-family: inherit;
}

    .mcr-btn:hover {
        background: var(--green-tint,rgba(8,204,11,0.07));
        border-color: var(--green-2,#08cc0b);
        color: var(--green-2,#08cc0b);
    }

media(max-width:900px) {
    .mcr-slide {
        grid-template-columns: repeat(2,1fr);
    }
}

media(max-width:500px) {
    .mcr-slide {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}
