﻿

:root {
    --bg: #03030a;
    --bg2: #06060f;
    --bg3: #08081a;
    --surface: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.07);
    --cyan: #00d4ff;
    --cyan-dim: rgba(0,212,255,0.15);
    --purple: #a855f7;
    --white: #f0f0fa;
    --muted: #7878a0;
    --muted2: #454565;
    --font-d: 'Cormorant Garamond', serif;
    --font-s: 'Syne', sans-serif;
    --font-b: 'DM Sans', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-b);
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--cyan-dim);
    color: var(--cyan);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan-dim);
    border-radius: 2px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(3,3,10,0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav-logo {
    font-family: var(--font-s);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
}

    .nav-logo span {
        color: var(--cyan);
    }

.nav-logonew {
    height: 52px;
    display: flex;
    align-items: center;
}

.logo-imgnew {
    height: 100%;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    filter: brightness(1.1); /* Makes it pop on dark theme */
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

    .nav-links a {
        font-family: var(--font-s);
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.25s;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-cta {
    font-family: var(--font-s);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--cyan);
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 0 20px rgba(0,212,255,0.35);
}

    .nav-cta:hover {
        background: #fff;
        box-shadow: 0 0 35px rgba(0,212,255,0.6);
        transform: translateY(-1px);
    }

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-glow-left {
    position: absolute;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-right {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 72px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 2rem;
    font-family: var(--font-s);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-d);
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.6rem;
}

    .hero-title em {
        font-style: italic;
        background: linear-gradient(135deg, var(--cyan) 0%, #7dd3fc 50%, var(--purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.8rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-s);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: linear-gradient(135deg, var(--cyan), #7dd3fc);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(0,212,255,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 45px rgba(0,212,255,0.65);
    }

.btn-ghost {
    font-family: var(--font-s);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    padding: 13px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-ghost:hover {
        border-color: rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.05);
        transform: translateY(-2px);
    }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.hero-stat-val {
    font-family: var(--font-s);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

    .hero-stat-val span {
        color: var(--cyan);
    }

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* right side 3D sphere info panel */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hero-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 12px;
    padding: 14px 20px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-s);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--white);
    animation: float-card 6s ease-in-out infinite;
}

    .hero-info-card:nth-child(2) {
        animation-delay: -2s;
    }

    .hero-info-card:nth-child(3) {
        animation-delay: -4s;
    }

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.card-icon {
    width: 32px;
    height: 32px;
    background: var(--cyan-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-ind {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-s);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted2);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }
}

/* ── SECTIONS COMMON ── */
section {
    position: relative;
    padding: 120px 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-wrapper {
    position: relative;
    overflow: hidden;
}

    .section-wrapper.alt {
        background: var(--bg2);
    }

.section-tag {
    display: inline-block;
    font-family: var(--font-s);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.2rem;
}

.section-h2 {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.4rem;
}

    .section-h2 em {
        font-style: italic;
        color: var(--cyan);
    }

.section-p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px;
}

/* ── PROBLEM ── */
#problem {
    text-align: center;
    padding: 140px 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.big-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
}

.stat-number {
    font-family: var(--font-d);
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, var(--cyan) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-label {
    font-family: var(--font-s);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.8rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.problem-item {
    background: var(--surface);
    padding: 2rem 1.8rem;
    text-align: left;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}

    .problem-item:last-child {
        border-right: none;
    }

    .problem-item:hover {
        background: rgba(255,255,255,0.07);
    }

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-title {
    font-family: var(--font-s);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.problem-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── SOLUTION ── */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--cyan), transparent);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .solution-card:hover {
        background: rgba(0,212,255,0.04);
        border-color: rgba(0,212,255,0.2);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,212,255,0.08);
    }

        .solution-card:hover::before {
            opacity: 1;
        }

.sol-number {
    font-family: var(--font-s);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--cyan);
    opacity: 0.6;
    margin-bottom: 1.2rem;
}

.sol-title {
    font-family: var(--font-s);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.sol-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.sol-glow {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.12), transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

.solution-card:hover .sol-glow {
    opacity: 1;
}

/* ── HOW IT WORKS ── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

    .steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 12.5%;
        right: 12.5%;
        height: 1px;
        background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
        opacity: 0.3;
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(0,212,255,0.3);
}

.step:hover .step-num {
    background: rgba(0,212,255,0.08);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,212,255,0.25);
}

.step-title {
    font-family: var(--font-s);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── ANALYTICS ── */
.analytics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 2rem;
}

.analytics-visual {
    position: relative;
}

.dashboard-mock {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    padding: 1.5rem;
}

.dash-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.2rem;
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.d1 {
    background: #ff5f57;
}

.d2 {
    background: #ffbd2e;
}

.d3 {
    background: #28c840;
}

.dash-title {
    font-family: var(--font-s);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.dash-metric {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid var(--border);
}

.dm-val {
    font-family: var(--font-s);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
}

.dm-label {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: 0.06em;
}

.dash-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--cyan), rgba(0,212,255,0.3));
    transition: height 0.6s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
}

    .bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--cyan);
        box-shadow: 0 0 6px var(--cyan);
    }

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

    .analytics-item:hover {
        border-color: rgba(0,212,255,0.2);
        background: rgba(0,212,255,0.04);
    }

.ai-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ai-content-title {
    font-family: var(--font-s);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.ai-content-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── TWO COLUMNS BRANDS / RETAILERS ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .audience-card.brand {
        border-top: 2px solid var(--cyan);
    }

    .audience-card.retailer {
        border-top: 2px solid var(--purple);
    }

    .audience-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    }

.audience-tag {
    font-family: var(--font-s);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.brand .audience-tag {
    color: var(--cyan);
}

.retailer .audience-tag {
    color: var(--purple);
}

.audience-h3 {
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.audience-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .audience-benefits li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.88rem;
        color: var(--muted);
    }

        .audience-benefits li::before {
            content: '→';
            color: var(--cyan);
            font-family: var(--font-s);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

.retailer .audience-benefits li::before {
    color: var(--purple);
}

.audience-bg-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
}

.brand .audience-bg-glow {
    background: radial-gradient(circle, rgba(0,212,255,0.07), transparent 70%);
}

.retailer .audience-bg-glow {
    background: radial-gradient(circle, rgba(168,85,247,0.08), transparent 70%);
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vm-card {
    padding: 2rem;
    border-left: 2px solid var(--cyan);
    background: var(--surface);
    border-radius: 0 12px 12px 0;
}

    .vm-card.mission {
        border-left-color: var(--purple);
    }

.vm-label {
    font-family: var(--font-s);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.8rem;
}

.vm-card.mission .vm-label {
    color: var(--purple);
}

.vm-text {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    font-style: italic;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s;
}

    .value-row:hover {
        border-color: rgba(0,212,255,0.2);
        background: var(--surface);
    }

.value-num {
    font-family: var(--font-s);
    font-size: 0.65rem;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.1em;
    min-width: 28px;
}

.value-text {
    font-family: var(--font-s);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

/* ── NETWORK ── */
.network-section {
    text-align: center;
}

.network-map-placeholder {
    margin: 3rem auto 0;
    max-width: 800px;
    height: 380px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-nodes {
    position: absolute;
    inset: 0;
}

.map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    position: relative;
}

    .map-dot::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid rgba(0,212,255,0.3);
        animation: ping 2s ease-in-out infinite;
    }

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.map-city {
    font-family: var(--font-s);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.map-coming {
    font-family: var(--font-s);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted2);
    text-align: center;
    z-index: 1;
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
}

.nstat-val {
    font-family: var(--font-d);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

    .nstat-val span {
        color: var(--cyan);
    }

.nstat-label {
    font-family: var(--font-s);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── INVESTORS ── */
.investors-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.inv-quote {
    font-family: var(--font-d);
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    border-left: 3px solid var(--cyan);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.inv-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

    .inv-card:hover {
        border-color: rgba(0,212,255,0.2);
        transform: translateX(4px);
    }

.inv-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.inv-card-title {
    font-family: var(--font-s);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.inv-card-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── CONTACT ── */
.contact-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.contact-info p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-s);
    font-size: 0.8rem;
    color: var(--muted);
}

    .contact-method span:first-child {
        font-size: 1rem;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-tab {
    font-family: var(--font-s);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.25s;
}

    .form-tab.active, .form-tab:hover {
        background: var(--cyan-dim);
        border-color: var(--cyan);
        color: var(--cyan);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-family: var(--font-s);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: rgba(255,255,255,0.04);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 12px 14px;
        color: var(--white);
        font-family: var(--font-b);
        font-size: 0.88rem;
        outline: none;
        transition: border-color 0.25s;
        -webkit-appearance: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgba(0,212,255,0.4);
            box-shadow: 0 0 0 3px rgba(0,212,255,0.06);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group select option {
        background: var(--bg2);
    }

/* ── CTA BAND ── */
.cta-band {
    text-align: center;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 65%);
    }

    .cta-band h2 {
        font-family: var(--font-d);
        font-size: clamp(2.8rem, 5vw, 5rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1.2rem;
        position: relative;
    }

    .cta-band p {
        font-size: 1rem;
        color: var(--muted);
        max-width: 500px;
        margin: 0 auto 2.5rem;
        position: relative;
    }

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 240px;
}

.footer-col h4 {
    font-family: var(--font-s);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted2);
}

    .footer-bottom span {
        color: var(--cyan);
    }

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Glossy highlight on hover for cards */
.gloss {
    position: relative;
    overflow: hidden;
}

    .gloss::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 40%;
        height: 200%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
        transform: skewX(-20deg);
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .gloss:hover::after {
        left: 120%;
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content,
    .solution-grid,
    .two-col,
    .analytics-layout,
    .about-grid,
    .investors-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

        .steps::before {
            display: none;
        }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-right {
        display: none;
    }

    .network-stats {
        gap: 2.5rem;
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 550px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 1.2rem;
    }
}
/* ==========================================================
   ADONSt. SOFTER TONED TEXT FOR EYE PROTECTION (ANTI-GLARE)
   ========================================================== */

/* 1. Global Paragraphs aur Small Description Text */
.hero-sub,
.problem-desc,
.sol-desc,
.step-desc,
.ai-content-desc,
.section-p,
.contact-layout p,
.cta-band p,
p {
    color: #cbd5e1 !important; /* Pure white se badal kar soft slate-gray kiya (Aankhon ko chubhega nahi) */
    opacity: 1 !important;
    font-weight: 400 !important; /* Halka thin kiya taaki chamak kam ho */
    line-height: 1.6 !important;
    text-shadow: none !important; /* Glow shadow hatayi taaki glare na bane */
}

/* 2. Solutions Sections ke Bullet Points */
.audience-benefits li,
.audience-card ul li {
    color: #cbd5e1 !important; /* Soft premium off-white */
    opacity: 1 !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem;
    text-shadow: none !important;
}

/* 3. Chhote Tags, Labels aur Form Elements */
.hero-stat-label,
.dm-label,
.nstat-label,
.scroll-ind span,
.form-tab,
.map-coming,
.footer-bottom span {
    color: #94a3b8 !important; /* Muted cool-gray for secondary text */
    opacity: 1 !important;
    font-weight: 500 !important;
}

.form-group label {
    color: #94a3b8 !important; /* Form labels ko soft kiya */
    opacity: 1 !important;
    letter-spacing: 0.05em;
}

/* 4. Vision/Mission & Investor Cards Description */
.vm-text,
.inv-quote {
    color: #cbd5e1 !important;
    opacity: 1 !important;
    font-style: italic;
}

.inv-card-desc {
    color: #cbd5e1 !important; /* Investor cards text soft off-white */
    opacity: 1 !important;
    line-height: 1.5 !important;
}

.value-text {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

.value-num {
    color: #00b4d8 !important; /* Cyan ki brightness thodi soft ki */
    font-weight: 700 !important;
}

/* 5. Footer Specific Toning */
.footer-brand p {
    color: #94a3b8 !important; /* Logo description text muted gray */
    opacity: 1 !important;
}

.footer-col h4 {
    color: #e2e8f0 !important; /* Headings ko pure white se soft-white kiya */
    opacity: 1 !important;
    font-weight: 600 !important;
}

.footer-col ul li a {
    color: #94a3b8 !important; /* Default state links ko soft gray kiya */
    opacity: 1 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-col ul li a:hover {
        color: #00b4d8 !important; /* Smooth hover transition */
    }

/* ==========================================================
   ADONSt. NAVBAR LINKS & CTA FIX (EYE COMFORT)
   ========================================================== */

/* Navbar Default Links */
.nav-links li a,
#nav .nav-links a,
nav a {
    color: #cbd5e1 !important; /* Sharp white se soft off-white kiya */
    opacity: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

    /* Navbar Links Hover State */
    .nav-links li a:hover,
    #nav .nav-links a:hover {
        color: #00b4d8 !important; /* Neon cyan se badal kar refined teal-cyan kiya */
        text-shadow: none !important; /* Glare glow hatayi */
    }

/* "Book a Demo" Button Default */
.nav-cta {
    background: #00b4d8 !important; /* Premium calm cyan background */
    color: #05050a !important; /* Deep rich dark text */
    font-weight: 600 !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none;
}

    /* "Book a Demo" Button Hover */
    .nav-cta:hover {
        background: #e2e8f0 !important; /* Pure white flash ke badle soft white transition */
        color: #05050a !important;
        box-shadow: 0px 4px 12px rgba(0, 180, 216, 0.2) !important; /* Halka and elegant cyan shadow */
    }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

    .nav-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animate to X when open */
    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        background: rgba(3, 3, 10, 0.97);
        backdrop-filter: blur(24px);
        padding: 2rem 5%;
        gap: 1.8rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }

        .nav-links.open {
            transform: translateY(0);
            top: 72px;
        }

        .nav-links a {
            font-size: 1rem !important;
            color: var(--white) !important;
        }

    /* Hide the "Book a Demo" CTA button in nav on mobile (it's in the menu anyway) */
    .nav-cta {
        display: none;
    }
}
