:root {
    --ink: #0A0F1C;
    --panel: #111A2E;
    --panel-2: #0D1526;
    --hairline: #223050;
    --hairline-soft: #1A2540;
    --text-hi: #EDF1F9;
    --text-lo: #8996B3;
    --text-faint: #586583;
    --signal: #46E8D4;
    --signal-dim: rgba(70, 232, 212, 0.14);
    --amber: #FFB648;
    --amber-dim: rgba(255, 182, 72, 0.14);
    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--text-hi);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--signal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--signal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--signal);
    flex-shrink: 0;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-hi);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- NAV ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 28, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hairline-soft);
}

nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding-left:  32px;
    padding-right: 32px;
    padding-top:14px;
    padding-bottom:14px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 19px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--text-hi);
}
.logo-image
{
    height: 42px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits within the container */
    
}

.logo .dot {
    color: var(--signal);
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

.menu-toggle .line {
    stroke: var(--text-hi);
    stroke-width: 2;
    stroke-linecap: round;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-lo);
    transition: color .2s;
}

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

.nav-links a:focus-visible,
.btn:focus-visible,
.card:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 3px;
}

.btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 11px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--signal);
    color: var(--ink);
    background: var(--signal);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px var(--signal-dim);
}

.btn-ghost {
    background: transparent;
    color: var(--text-hi);
    border: 1px solid var(--hairline);
}

.btn-ghost:hover {
    border-color: var(--text-lo);
    box-shadow: none;
}

/* ---------- HERO ---------- */
.hero {
    padding: 88px 0 40px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.06;
    margin: 20px 0 22px;
}

.hero h1 .accent {
    color: var(--signal);
}

.hero p.lede {
    font-size: 17px;
    color: var(--text-lo);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
}

.hero-meta strong {
    color: var(--text-lo);
    font-weight: 500;
}

.chart-panel {
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 22px 20px 16px;
    position: relative;
}

.chart-panel .panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chart-panel svg {
    display: block;
    width: 100%;
    height: auto;
}

.legend {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
}

.legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legend i {
    width: 10px;
    height: 2px;
    display: inline-block;
}

.legend .l1 i {
    background: var(--text-faint);
}

.legend .l2 i {
    background: var(--signal);
}

.legend .l3 {
    color: var(--amber);
}

.legend .l3 i {
    background: var(--amber-dim);
    height: 8px;
    border: 1px solid var(--amber);
}

/* ---------- PLATFORM STRIP ---------- */
.strip {
    border-top: 1px solid var(--hairline-soft);
    border-bottom: 1px solid var(--hairline-soft);
    padding: 26px 0;
    margin-top: 64px;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.strip-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
    letter-spacing: 0.04em;
}

.platform-badges {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    align-items: center;
}

.platform-badges .badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-lo);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.platform-badges .badge:hover {
    color: var(--text-hi);
}

.platform-badges .badge .sq {
    width: 8px;
    height: 8px;
    background: var(--hairline);
    flex-shrink: 0;
}

/* ---------- SECTION SHELL ---------- */
section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 36px);
}

.section-head p {
    color: var(--text-lo);
    max-width: 420px;
    font-size: 15px;
}

/* ---------- SOLUTIONS ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline-soft);
    border: 1px solid var(--hairline-soft);
}

.card {
    background: var(--panel);
    padding: 34px 28px;
    transition: background .2s;
}

.card:hover {
    background: var(--panel-2);
}

.card .icon {
    margin-bottom: 22px;
}

.card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-lo);
    font-size: 14.5px;
    margin-bottom: 18px;
}

.card .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---------- PROCESS ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--hairline) 0%, var(--signal) 50%, var(--hairline) 100%);
    opacity: 0.5;
}

.step {
    padding: 0 24px 0 0;
    position: relative;
}

.step .num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--ink);
    background: var(--signal);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.step:nth-child(2) .num,
.step:nth-child(4) .num {
    background: var(--amber);
}

.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-lo);
    font-size: 14px;
}

/* ---------- PLATFORMS DETAIL ---------- */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pcard {
    border: 1px solid var(--hairline);
    padding: 28px 24px;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    position: relative;
}

.pcard .ptop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pcard .pname {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.pcard .pvendor {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.pcard .pmark {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--signal);
    border: 1px solid var(--signal);
    padding: 3px 8px;
    border-radius: 20px;
}

.pcard p {
    color: var(--text-lo);
    font-size: 14px;
    margin-bottom: 16px;
}

.pcard ul {
    list-style: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-lo);
}

.pcard ul li {
    padding: 6px 0;
    border-top: 1px solid var(--hairline-soft);
}

.pcard ul li:first-child {
    border-top: none;
}

/* ---------- METRICS ---------- */
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--hairline-soft);
    border-bottom: 1px solid var(--hairline-soft);
}

.metric {
    padding: 36px 24px;
    border-left: 1px solid var(--hairline-soft);
}

.metric:first-child {
    border-left: none;
}

.metric .num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: var(--signal);
}

.metric .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 8px;
}

/* ---------- CTA ---------- */
.cta-section {
    text-align: center;
    padding: 110px 0;
}

.cta-section .eyebrow {
    justify-content: center;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: clamp(30px, 4vw, 46px);
    max-width: 760px;
    margin: 0 auto 20px;
    line-height: 1.12;
}

.cta-section p {
    color: var(--text-lo);
    max-width: 480px;
    margin: 0 auto 36px;
}

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

/* ---------- FOOTER ---------- */
footer {
    border-top: 1px solid var(--hairline-soft);
    padding: 48px 0 32px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-col h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--text-lo);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--text-hi);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline-soft);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .process {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    .process::before {
        display: none;
    }

    .platform-cards {
        grid-template-columns: 1fr;
    }

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

    .metric {
        border-left: none;
        border-top: 1px solid var(--hairline-soft);
    }

    .metric:nth-child(1),
    .metric:nth-child(2) {
        border-top: none;
    }

    .menu-toggle{
        display:block;
        justify-self:end;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;

        background:rgba(10,15,28,.98);
        border-top:1px solid var(--hairline-soft);

        display:flex;
        flex-direction:column;
        align-items:center;

        padding:30px;

        gap:24px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:.3s;
    }

    .nav-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links{
        flex-direction:column;
        gap:20px;
    }

    .btn{
        width:100%;
        text-align:center;
    }
}

@media (max-width:560px) {
    .hero {
        padding: 30px 0 20px;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }

    .metric {
        border-top: 1px solid var(--hairline-soft);
    }

    .metric:first-child {
        border-top: none;
    }
}