@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');  
  /* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
        :root {
            --teal: #166666;
            --teal-mid: #1a8080;
            --teal-glow: #24a8a8;
            --teal-dim: rgba(22, 102, 102, 0.18);
            --teal-line: rgba(22, 102, 102, 0.35);
            --bg: #F6F6F6;
            --surface: #EFEFEF;
            --dark: #0b1010;
            --dark1:#0d1818;
            --dark2:#111f1f;
            --dark-card: #111a1a;
            --ink: #0f1f1f;
            --ink-2: #1c2e2e;
            --body: #3a4a4a;
            --muted: #7a9494;
            --white: #ffffff;
            --r-sm: 10px;
            --r-md: 18px;
            --r-lg: 28px;
            --r-xl: 40px;
            --t:#166666; --t1:#1a8080; --t2:#24a8a8; --t3:#0e4a4a;
            --td:rgba(22,102,102,0.12); --tl:rgba(22,102,102,0.28);
            --bg2:#EEEEEE;
            --expo:cubic-bezier(0.16,1,0.3,1);
            --brand-teal-dark: #0d3d3d;
            --brand-teal-light: #e7f0f0;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 24px -4px rgba(0, 0, 0, 0.08);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            cursor: none;
        }

        /* ── CUSTOM CURSOR ── */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--teal);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: background 0.2s;
        }

        .cursor-ring {
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--teal-line);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
        }

        .cursor-ring.hovered {
            width: 52px;
            height: 52px;
            background: var(--teal-dim);
            border-color: var(--teal);
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--teal);
            border-radius: 2px;
        }

        /* ══════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════ */
        #loader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            z-index: 9000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }

        .loader-logo {
            opacity: 0;
        }

        .loader-logo span {
            color: var(--teal-glow);
        }

        .loader-bar-wrap {
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1px;
            overflow: hidden;
        }

        .loader-bar {
            height: 100%;
            background: var(--teal-glow);
            width: 0%;
            border-radius: 1px;
        }

        .loader-pct {
            font-size: 0.8rem;
            color: var(--muted);
            letter-spacing: 0.2em;
        }

        /* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            padding: 0 6%;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.4s, box-shadow 0.4s;
        }

        nav.stuck {
            background: rgba(246, 246, 246, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(22, 102, 102, 0.12);
        }

        .n-logo {
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--teal);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
        }

        .n-logo-mark {
            width: 32px;
            height: 32px;
            background: var(--teal);
            border-radius: 9px;
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
        }

        .n-logo-mark::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            border: 2px solid white;
            border-radius: 3px;
            transform: rotate(10deg);
        }

        .n-links {
            display: flex;
            gap: 38px;
            list-style: none;
        }

        .n-links a {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--body);
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: color 0.2s;
            position: relative;
        }

        .n-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--teal);
            transition: width 0.25s;
        }

        .n-links a:hover {
            color: var(--teal);
        }

        .n-links a:hover::after {
            width: 100%;
        }

        .n-right {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-n-login {
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--body);
            background: none;
            border: none;
            cursor: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
            text-decoration: none;
        }

        .btn-n-login:hover {
            color: var(--teal);
            background: var(--teal-dim);
        }

        .btn-n-cta {
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: white;
            background: var(--teal);
            border: none;
            cursor: none;
            padding: 10px 24px;
            border-radius: 100px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 20px rgba(22, 102, 102, 0.3);
        }

        .btn-n-cta:hover {
            background: var(--teal-mid);
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(22, 102, 102, 0.4);
        }

        .btn-n-cta-arrow {
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 10px;
        }

        /* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 0;
            padding: 90px 6% 60px;
            position: relative;
            overflow: hidden;
            background: var(--bg);
        }
        #hero-canvas{
            position:absolute;
            inset: -42px 88px;
            pointer-events:none;z-index:0;
            opacity:0.6;
        }

        /* Geometric grid background */
        .hero-bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(22, 102, 102, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(22, 102, 102, 0.07) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 100%);
        }

        /* Teal glow blob */
        .hero-glow {
            position: absolute;
            width: 700px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(22, 102, 102, 0.12) 0%, transparent 65%);
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .hero-left {
            position: relative;
            z-index: 2;
            padding-right: 40px;
        }
        /* eyebrow */
.h-eyebrow{
  display:flex;align-items:center;gap:12px;
  margin-bottom:20px;overflow:hidden;
}
.h-eyebrow-pill{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(22,102,102,0.08);
  border:1px solid rgba(22,102,102,0.2);
  padding:5px 14px 5px 8px;border-radius:100px;
}
.h-eyebrow-dot{
  width:20px;height:20px;border-radius:50%;background:#166666;
  display:grid;place-items:center;font-size:8px;color:white;
  animation:dotPulse 2.5s ease infinite;
}
@keyframes dotPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(22,102,102,0.5)}
  60%{box-shadow:0 0 0 8px rgba(22,102,102,0)}
}
.h-eyebrow-text{font-size:0.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:#166666}


        .hero-h1 {
            font-size: clamp(3rem, 4.6vw, 4.6rem);
            font-weight: 700;
            line-height: 1.0;
            letter-spacing: 0px;
            color: var(--ink);
            margin-bottom: 20px;
            opacity: 0;
        }

        .hero-h1 em {
            font-style: normal;
            color: var(--teal);
            position: relative;
        }

        .hero-h1 .word-outline {
            -webkit-text-stroke: 2px var(--teal);
            color: transparent;
        }

        .hero-desc {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--body);
            max-width: 440px;
            margin-bottom: 20px;
            opacity: 0;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            opacity: 0;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 36px;
            background: var(--teal);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 8px 32px rgba(22, 102, 102, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn-hero-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
            border-radius: inherit;
        }

        .btn-hero-primary:hover {
            background: var(--teal-mid);
            transform: translateY(-2px);
            box-shadow: 0 16px 48px rgba(22, 102, 102, 0.4);
        }

        .btn-hero-arrow {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: grid;
            place-items: center;
            transition: transform 0.2s;
        }

        .btn-hero-primary:hover .btn-hero-arrow {
            transform: translateX(3px);
        }

        .hero-watch {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--body);
            font-size: 0.875rem;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .hero-watch:hover {
            color: var(--teal);
        }

        .hero-play-icon {
            width: 40px;
            height: 40px;
            border: 1.5px solid rgba(22, 102, 102, 0.3);
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--teal);
            font-size: 11px;
            padding-left: 2px;
            transition: all 0.2s;
        }

        .hero-watch:hover .hero-play-icon {
            background: var(--teal);
            color: white;
            border-color: var(--teal);
        }

        .hero-proof {
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
        }

        .hero-avatars {
            display: flex;
        }

        .hero-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid var(--bg);
            background: var(--teal);
            display: grid;
            place-items: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            margin-left: -10px;
        }

        .hero-avatar:first-child {
            margin-left: 0;
        }

        .hero-avatar:nth-child(2) {
            background: var(--teal-mid);
        }

        .hero-avatar:nth-child(3) {
            background: #0e4f4f;
        }

        .hero-avatar:nth-child(4) {
            background: #1a6f6f;
        }

        .hero-proof-text {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .hero-proof-text strong {
            color: var(--ink);
            font-weight: 600;
        }

        /* ── HERO RIGHT: APP PREVIEW ── */
        .hero-right {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding-left: 20px;
        }

        .app-window {
            width: 100%;
            max-width: 580px;
            background: var(--dark-card);
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(22, 102, 102, 0.2),
                0 60px 100px rgba(11, 16, 16, 0.35),
                0 0 80px rgba(22, 102, 102, 0.08);
            opacity: 0;
            transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
            transform-origin: left center;
        }

        .app-window:hover {
            transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            transition: transform 0.6s ease;
        }

        .aw-chrome {
            height: 44px;
            background: #0d1818;
            display: flex;
            align-items: center;
            padding: 0 18px;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .aw-dots {
            display: flex;
            gap: 6px;
        }

        .aw-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }

        .aw-dot.r {
            background: #ff5f56;
        }

        .aw-dot.y {
            background: #febc2e;
        }

        .aw-dot.g {
            background: #28c840;
        }

        .aw-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.02em;
        }

        .aw-body {
            display: grid;
            grid-template-columns: 180px 1fr;
            height: 420px;
        }

        .aw-sidebar {
            background: #0d1818;
            padding: 20px 0;
            border-right: 1px solid rgba(255, 255, 255, 0.04);
        }

        .aw-sb-section {
            margin-bottom: 24px;
        }

        .aw-sb-label {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.2);
            padding: 0 18px;
            margin-bottom: 6px;
        }

        .aw-sb-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 18px;
            font-size: 0.75rem;
            color: rgb(255 255 255 / 50%);
            cursor: pointer;
            transition: all 0.15s;
            position: relative;
        }

        .aw-sb-item:hover,
        .aw-sb-item.on {
            color: rgba(255, 255, 255, 0.9);
            background: rgba(22, 102, 102, 0.15);
        }

        .aw-sb-item.on::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--teal-glow);
            border-radius: 0 2px 2px 0;
        }

        .aw-sb-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(22, 102, 102, 0.2);
            display: grid;
            place-items: center;
            font-size: 10px;
        }

        .aw-sb-item.on .aw-sb-icon {
            background: rgba(22, 102, 102, 0.5);
        }

        .aw-main {
            padding: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: #101c1c;
        }

        .aw-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .aw-h-title {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
        }

        .aw-h-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: var(--teal);
            color: white;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 100px;
            cursor: pointer;
        }

        .aw-kpis {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .aw-kpi {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            padding: 14px 12px;
        }

        .aw-kpi-l {
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .aw-kpi-v {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--teal-glow);
            line-height: 1;
        }

        .aw-kpi-d {
            font-size: 0.6rem;
            color: #4ade80;
            margin-top: 3px;
        }

        .aw-chart {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 14px;
            flex: 1;
        }

        .aw-chart-title {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .aw-bars {
            display: flex;
            gap: 6px;
            align-items: flex-end;
            height: 80px;
        }

        .aw-bar {
            flex: 1;
            border-radius: 3px 3px 0 0;
            background: rgba(22, 102, 102, 0.3);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: background 0.2s;
        }

        .aw-bar:hover {
            background: rgba(22, 102, 102, 0.5);
        }

        .aw-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, var(--teal-glow), var(--teal));
            border-radius: 3px 3px 0 0;
            height: 0;
            animation: awBarFill 1.5s ease forwards;
            animation-delay: var(--d);
        }

        @keyframes awBarFill {
            to {
                height: var(--h);
            }
        }

        .aw-pipeline {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 14px;
        }

        .aw-p-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .aw-p-row:last-child {
            margin-bottom: 0;
        }

        .aw-p-label {
            font-size: 0.65rem;
            color: rgb(255 255 255 / 50%);
            width: 70px;
            flex-shrink: 0;
        }

        .aw-p-track {
            flex: 1;
            height: 5px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 3px;
            overflow: hidden;
        }

        .aw-p-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--teal), var(--teal-glow));
            border-radius: 3px;
            width: 0;
            transition: width 1.2s ease;
        }

        .aw-p-val {
            font-size: 0.62rem;
            color: var(--teal-glow);
            font-weight: 600;
            width: 28px;
            text-align: right;
        }

        /* Floating notification */
        .hero-notif {
            position: absolute;
            bottom: 30px;
            left: -20px;
            background: white;
            border-radius: 14px;
            padding: 12px 16px;
            box-shadow: 0 10px 40px rgba(22, 102, 102, 0.2), 0 0 0 1px rgba(22, 102, 102, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            white-space: nowrap;
            opacity: 0;
            animation: notifSlide 0.6s ease 3s both;
        }

        @keyframes notifSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        .notif-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--teal), var(--teal-mid));
            border-radius: 8px;
            display: grid;
            place-items: center;
            color: white;
            font-size: 14px;
        }

        .notif-val {
            font-weight: 700;
            color: var(--ink);
        }

        .notif-sub {
            color: var(--muted);
            font-size: 0.7rem;
        }

        .hero-badge-float {
            position: absolute;
            top: 20px;
            right: -10px;
            background: var(--teal);
            color: white;
            border-radius: 12px;
            padding: 10px 16px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(22, 102, 102, 0.4);
            opacity: 0;
            animation: notifSlide 0.6s ease 3.2s both;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hbf-dot {
            width: 7px;
            height: 7px;
            background: #4ade80;
            border-radius: 50%;
            animation: blink 1.5s ease infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        /* ══════════════════════════════════════════
   MARQUEE / CLIENTS
══════════════════════════════════════════ */
        .marquee-band{background:var(--ink);padding:20px 0;overflow:hidden;display:flex;position:relative;z-index:1}
.marquee-band::before,.marquee-band::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
.marquee-band::before{left:0;background:linear-gradient(to right,var(--ink),transparent)}
.marquee-band::after{right:0;background:linear-gradient(to left,var(--ink),transparent)}
.mq-track{display:flex;gap:0;flex-shrink:0;animation:mq 25s linear infinite}
.mq-track.rev{animation-direction:reverse;animation-duration:28s}
.mq-item{
  display:inline-flex;align-items:center;gap:10px;
  padding:0 40px;font-family:'Cabinet Grotesk',sans-serif;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:rgba(255,255,255,0.22);
  white-space:nowrap;
}
.mq-sep{color:var(--t);font-size:.9rem}
@keyframes mq{from{transform:translateX(0)}to{transform:translateX(-100%)}}

        /* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
        .features {
            padding: 130px 6%;
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--teal-line), transparent);
        }

        .section-pre {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .section-pre-num {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--teal);
            opacity: 0.6;
        }

        .section-pre-line {
            width: 40px;
            height: 1px;
            background: var(--teal-line);
        }

        .section-pre-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
        }

        .features-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 80px;
        }

        .features-h2 {
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.05;
            color: var(--ink);
        }

        .features-h2 .teal {
            color: var(--teal);
        }

        .features-right-copy {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--body);
            padding-top: 10px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .feat-card {
            background: var(--white);
            border-radius: var(--r-lg);
            padding: 40px 36px;
            border: 1px solid rgba(22, 102, 102, 0.08);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
            cursor: default;
        }

        .feat-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1.5px solid var(--teal);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(22, 102, 102, 0.12);
        }

        .feat-card:hover::after {
            opacity: 1;
        }

        .feat-card.wide {
            grid-column: span 2;
        }

        .feat-card.tall-dark {
            background: var(--ink);
            color: white;
        }

        .feat-num {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--teal-line);
            letter-spacing: 0.1em;
            margin-bottom: 28px;
        }

        .feat-card.tall-dark .feat-num {
            color: rgba(255, 255, 255, 0.2);
        }

        .feat-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(22, 102, 102, 0.1);
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            transition: background 0.3s;
            font-weight: 700;
        }

        .feat-card:hover .feat-icon-wrap {
            background: var(--teal);
            color: #fff;
        }

        .feat-card.tall-dark .feat-icon-wrap {
            background: rgba(22, 102, 102, 0.3);
        }

        .feat-card.tall-dark:hover .feat-icon-wrap {
            background: var(--teal);
        }

        .feat-icon-wrap svg {
            transition: stroke 0.3s;
        }

        .feat-card:hover .feat-icon-wrap svg {
            stroke: white;
        }

        .feat-h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .feat-card.tall-dark .feat-h3 {
            color: white;
        }

        .feat-p {
            font-size: 0.875rem;
            line-height: 1.7;
            color: var(--body);
        }

        .feat-card.tall-dark .feat-p {
            color: rgba(255, 255, 255, 0.5);
        }

        /* mini bar chart inside wide card */
        .feat-mini-chart {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 60px;
            margin-top: 24px;
        }

        .feat-bar {
            flex: 1;
            background: rgba(22, 102, 102, 0.1);
            border-radius: 3px 3px 0 0;
            transition: background 0.2s;
        }

        .feat-card:hover .feat-bar {
            background: rgba(22, 102, 102, 0.2);
        }

        .feat-bar-fill {
            border-radius: 3px 3px 0 0;
            background: linear-gradient(180deg, var(--teal-glow), var(--teal));
            width: 100%;
            height: 0;
            animation: featBarUp 1s ease forwards;
            animation-delay: var(--fd);
        }

        @keyframes featBarUp {
            to {
                height: var(--fh);
            }
        }

        /* ══════════════════════════════════════════
   DARK SECTION — HOW IT WORKS
══════════════════════════════════════════ */
        .process {
            background: var(--dark);
            padding: 130px 6%;
            position: relative;
            overflow: hidden;
        }

        .process-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(22, 102, 102, 0.18) 0%, transparent 60%);
            left: -200px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .process-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(22, 102, 102, 0.1) 0%, transparent 60%);
            right: -100px;
            bottom: 0;
            pointer-events: none;
        }

        .process .section-pre-label {
            color: var(--teal-glow);
        }

        .process .section-pre-num {
            color: var(--teal-glow);
            opacity: 0.6;
        }

        .process .section-pre-line {
            background: rgba(22, 170, 170, 0.3);
        }

        .process-h2 {
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.05;
            color: white;
            max-width: 700px;
            margin-bottom: 80px;
        }

        .process-h2 span {
            color: var(--teal-glow);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            position: relative;
        }

        /* connecting line — real DOM element, animated by GSAP */
        .process-connector {
            position: absolute;
            top: 56px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: repeating-linear-gradient(90deg, var(--teal-line) 0, var(--teal-line) 6px, transparent 6px, transparent 16px);
            transform-origin: left center;
            transform: scaleX(0);
            pointer-events: none;
        }

        .step-card {
            padding: 32px 28px;
            border-radius: var(--r-lg);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s, border-color 0.3s;
            position: relative;
        }

        .step-card:hover {
            background: rgba(22, 102, 102, 0.1);
            border-color: var(--teal-line);
        }

        .step-num-bubble {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(22, 102, 102, 0.2);
            border: 1px solid var(--teal-line);
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 1rem;
            color: var(--teal-glow);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            transition: background 0.3s, border-color 0.3s;
        }

        .step-card:hover .step-num-bubble {
            background: var(--teal);
            border-color: var(--teal);
            color: white;
        }

        .step-h {
            font-weight: 800;
            font-size: 1rem;
            color: white;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .step-p {
            font-size: 0.85rem;
            color: rgb(255 255 255 / 50%);
            line-height: 1.7;
        }

        /* ══════════════════════════════════════════
   METRICS / COUNTER STRIP
══════════════════════════════════════════ */
        .metrics {
            padding: 90px 6%;
            background: var(--teal);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            overflow: hidden;
        }

        .metrics::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .metric-item {
            padding: 40px 32px;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 1;
        }

        .metric-item:last-child {
            border-right: none;
        }

        .metric-val {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: 0px;
        }

        .metric-val sup {
            font-size: 1.8rem;
            vertical-align: top;
            margin-top: 4px;
            letter-spacing: 0;
        }

        .metric-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.5;
        }

        .metric-sub {
            font-size: 0.75rem;
            color: rgb(255 255 255 / 50%);
            margin-top: 4px;
        }

        /* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
        .testi {
            padding: 130px 6%;
            background: var(--bg);
            overflow: hidden;
        }

        .testi-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: end;
            gap: 60px;
            margin-bottom: 64px;
        }

        .testi-h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.05;
            color: var(--ink);
        }

        .testi-h2 em {
            font-style: normal;
            color: var(--teal);
        }

        .testi-sub {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--body);
            padding-top: 8px;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .testi-card {
            background: var(--white);
            border-radius: var(--r-lg);
            padding: 36px;
            border: 1px solid rgba(22, 102, 102, 0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .testi-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 24px;
            font-size: 8rem;
            font-weight: 700;
            color: rgba(22, 102, 102, 0.06);
            line-height: 1;
        }

        .testi-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(22, 102, 102, 0.1);
        }

        .testi-card.featured {
            background: var(--teal);
            grid-row: span 2;
        }

        .testi-card.featured::before {
            color: rgba(255, 255, 255, 0.08);
        }

        .testi-stars {
            color: var(--teal);
            font-size: 0.85rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testi-card.featured .testi-stars {
            color: rgba(255, 255, 255, 0.7);
        }

        .testi-quote {
            font-size: 0.9rem;
            line-height: 1.75;
            color: var(--body);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testi-card.featured .testi-quote {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-av {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--teal);
            display: grid;
            place-items: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: white;
            flex-shrink: 0;
        }

        .testi-card.featured .testi-av {
            background: rgba(255, 255, 255, 0.2);
        }

        .testi-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--ink);
        }

        .testi-card.featured .testi-name {
            color: white;
        }

        .testi-role {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .testi-card.featured .testi-role {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
        .pricing {
            padding: 130px 6%;
            background: var(--ink);
            position: relative;
            overflow: hidden;
        }

        .pricing-glow {
            position: absolute;
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(22, 102, 102, 0.15) 0%, transparent 60%);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .pricing .section-pre-label {
            color: var(--teal-glow);
        }

        .pricing .section-pre-num {
            color: var(--teal-glow);
            opacity: 0.6;
        }

        .pricing .section-pre-line {
            background: rgba(22, 170, 170, 0.3);
        }

        .pricing-h2 {
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.05;
            color: white;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 16px;
        }

        .pricing-sub {
            font-size: 1rem;
            color: rgb(255 255 255 / 50%);
            text-align: center;
            margin-bottom: 64px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .price-card {
            border-radius: var(--r-lg);
            padding: 40px 36px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: border-color 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            border-color: var(--teal-line);
            transform: translateY(-4px);
        }

        .price-card.pop {
            background: var(--teal);
            border-color: var(--teal);
            transform: scale(1.04);
        }

        .price-card.pop:hover {
            transform: scale(1.04) translateY(-4px);
        }

        .pop-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--teal-glow);
            color: var(--dark);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 0 0 10px 10px;
        }

        .price-tier {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgb(255 255 255 / 50%);
            margin-bottom: 20px;
        }

        .price-card.pop .price-tier {
            color: rgba(255, 255, 255, 0.7);
        }

        .price-val {
            font-size: 3.2rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            letter-spacing: 0px;
            margin-bottom: 4px;
        }

        .price-val sup {
            font-size: 1.5rem;
            vertical-align: top;
            margin-top: 6px;
            letter-spacing: 0;
        }

        .price-val .mo {
            font-size: 1rem;
            font-weight: 400;
            color: rgb(255 255 255 / 50%);
            letter-spacing: 0;
        }

        .price-card.pop .price-val .mo {
            color: rgba(255, 255, 255, 0.65);
        }

        .price-desc {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .price-card.pop .price-desc {
            color: rgba(255, 255, 255, 0.65);
        }

        .price-div {
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin-bottom: 28px;
        }

        .price-card.pop .price-div {
            background: rgba(255, 255, 255, 0.2);
        }

        .price-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 36px;
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .price-card.pop .price-feature {
            color: rgba(255, 255, 255, 0.85);
        }

        .pf-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(22, 102, 102, 0.3);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            font-size: 9px;
            color: var(--teal-glow);
        }

        .price-card.pop .pf-check {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .price-btn {
            width: 100%;
            display: block;
            text-align: center;
            text-decoration: none;
            padding: 14px;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: none;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            background: transparent;
            color: white;
            transition: all 0.25s;
        }

        .price-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .price-card.pop .price-btn {
            background: white;
            border-color: white;
            color: var(--teal);
        }

        .price-card.pop .price-btn:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        /* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
        .final-cta {
            padding: 0 6% 130px;
            background: var(--ink);
        }

        .final-cta-inner {
            background: linear-gradient(135deg, var(--teal) 0%, #0e4f4f 100%);
            border-radius: var(--r-xl);
            padding: 90px 80px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 60px;
            position: relative;
            overflow: hidden;
        }

        .final-cta-inner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 360px;
            height: 360px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
        }

        .final-cta-inner::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: 30%;
            width: 200px;
            height: 200px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
        }

        .fcta-h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            color: white;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .fcta-p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            position: relative;
            z-index: 1;
        }

        .fcta-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .btn-fcta-white {
            padding: 16px 36px;
            background: white;
            color: var(--teal);
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            border: none;
            cursor: none;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .btn-fcta-white:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .btn-fcta-outline {
            padding: 15px 36px;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            color: white;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            background: transparent;
            cursor: none;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .btn-fcta-outline:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        /* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
        footer {
            background: #060d0d;
            padding: 60px 6% 36px;
            border-top: 1px solid rgba(22, 102, 102, 0.15);
        }

        .footer-grid {
            display: flex;
            /* grid-template-columns: 2fr 1fr 1fr 1.5fr; */
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1.7;
            margin-top: 14px;
            max-width: 260px;
        }

        .footer-logo-text {
            font-weight: 700;
            font-size: 1.3rem;
            color: white;
            letter-spacing: -0.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-logo-mark {
            width: 28px;
            height: 28px;
            background: var(--teal);
            border-radius: 7px;
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
        }

        .footer-logo-mark::after {
            content: '';
            position: absolute;
            width: 11px;
            height: 11px;
            border: 2px solid white;
            border-radius: 2px;
            transform: rotate(10deg);
        }

        .footer-col-title {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.25);
            margin-bottom: 18px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul a {
            font-size: 0.84rem;
            color: rgb(255 255 255 / 50%);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col ul a:hover {
            color: var(--teal-glow);
        }

        .footer-input-row {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }

        .footer-email-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 11px 14px;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.82rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .footer-email-input::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .footer-email-input:focus {
            border-color: var(--teal);
        }

        .footer-sub-btn {
            padding: 11px 18px;
            background: var(--teal);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: none;
            transition: background 0.2s;
        }

        .footer-sub-btn:hover {
            background: var(--teal-mid);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copy {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ══════════════════════════════════════════
   MOBILE
══════════════════════════════════════════ */
        .mob-nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: none;
        }

        .mobile-nav {
            display: none;
        }

        @media (max-width: 960px) {
            body {
                cursor: auto;
            }

            .cursor-dot,
            .cursor-ring {
                display: none;
            }

            .n-links,
            .n-right {
                display: none;
            }

            .mob-nav-toggle {
                display: block;
            }

            .mobile-nav.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(246, 246, 246, 0.97);
                backdrop-filter: blur(20px);
                padding: 24px 6%;
                gap: 4px;
                z-index: 499;
                border-bottom: 1px solid rgba(22, 102, 102, 0.1);
            }

            .mobile-nav a {
                padding: 12px 0;
                font-size: 1rem;
                color: var(--body);
                text-decoration: none;
                border-bottom: 1px solid rgba(22, 102, 102, 0.06);
            }

            .mobile-nav .btn-n-cta {
                border-radius: 100px;
                justify-content: center;
                margin-top: 8px;
                color: #fff;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 100px 6% 60px;
                gap: 50px;
            }

            .hero-left {
                padding-right: 0;
            }
            .hero-right {
                padding-left: 0 !important;
            }
            .app-window {
                transform: none !important;
            }

            .hero-notif,
            .hero-badge-float {
                display: none;
            }

            .features-head {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feat-card.wide {
                grid-column: span 1;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            .process-steps::before {
                display: none;
            }

            .metrics {
                grid-template-columns: 1fr 1fr;
            }

            .metric-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .testi-head {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .testi-grid {
                grid-template-columns: 1fr;
            }

            .testi-card.featured {
                grid-row: span 1;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 420px;
            }

            .price-card.pop {
                transform: none;
            }

            .final-cta-inner {
                grid-template-columns: 1fr;
                padding: 50px 36px;
                gap: 36px;
            }

            .fcta-btns {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 560px) {
            .process-steps{
                grid-template-columns: none !important;
            }
            .footer-grid{
                grid-template-columns: none !important;
            }
        }
        @media (max-width: 460px) {
            .metrics {
                grid-template-columns: none;
                justify-content: center;
            }
        }
        /* ══════════════════════════════════════════
   SCROLL REVEAL STATES (set by GSAP)
══════════════════════════════════════════ */
        .sr {
            opacity: 0;
            transform: translateY(40px);
        }

        .sr-left {
            opacity: 0;
            transform: translateX(-40px);
        }

        .sr-right {
            opacity: 0;
            transform: translateX(40px);
        }

        .sr-scale {
            opacity: 0;
            transform: scale(0.9);
        }


/*about US*/


/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */
.section-label{display:inline-flex;align-items:center;gap:10px;margin-bottom:24px}
.sl-num{font-family:'Cabinet Grotesk',sans-serif;font-size:.68rem;font-weight:700;color:var(--t);opacity:.55}
.sl-dash{width:36px;height:1px;background:var(--tl)}
.sl-text{font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--t)}
.sec-h2{font-family:'Cabinet Grotesk',sans-serif;font-weight:900;line-height:1.0;letter-spacing:-2px;font-size:clamp(2.4rem,4vw,3.6rem)}
.sec-h2 .teal{color:var(--t)}
.sec-h2 .outline-t{-webkit-text-stroke:2px var(--t);color:transparent}
.sec-body{font-size:1rem;line-height:1.8;color:var(--body);font-weight:300}

/* scroll reveal */
.sr{opacity:0;transform:translateY(48px)}
.sr-l{opacity:0;transform:translateX(-48px)}
.sr-r{opacity:0;transform:translateX(48px)}
.sr-s{opacity:0;transform:scale(0.9)}
.sr-fade{opacity:0}

/* ══════════════════════════════════════
   HERO — ABOUT
══════════════════════════════════════ */
 /* --- TYPOGRAPHY UTILS --- */
        .section-tag {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--teal);
            margin-bottom: 16px;
            display: inline-block;
        }
        .text-accent { color: var(--teal); }

        /* --- HEROes SECTION --- */
        .heroes {
            padding: 180px 5% 100px;
            background: var(--bg);
            border-bottom: 1px solid var(--border-color);
            text-align: center;
        }

        .heroes-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .heroes-title { 
            font-size: 64px; 
            font-weight: 800; 
            line-height: 1.1; 
            letter-spacing: 0;
            color: var(--text-main);
            margin-bottom: 24px;
        }

        .heroes-subtitle { 
            font-size: 20px; 
            color: var(--text-muted); 
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* --- BENTO GRID: OUR DNA --- */
        .dna-section {
            padding: 100px 5%;
            background-color: var(--bg);
        }

        .section-header { text-align: left; margin-bottom: 48px; max-width: 600px; }
        .section-title { font-size: 40px; font-weight: 800; letter-spacing: 0; line-height: 1.1; }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bento-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .bento-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal);
        }

        .card-icon {
            width: 48px; height: 48px;
            background: var(--brand-teal-light);
            color: var(--teal);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; font-weight: 700;
            margin-bottom: 24px;
        }

        .bento-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
        .bento-card p { color: var(--text-muted); font-size: 15px; }

        /* Grid Spans */
        .col-span-8 { grid-column: span 8; }
        .col-span-4 { grid-column: span 4; }
        .col-span-6 { grid-column: span 6; }

        /* --- METRICS BAND --- */
        .metrics-band {
            background-color: var(--teal);
            padding: 80px 5%;
            color: white;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .metric-item { padding-left: 24px; border-left: 2px solid rgba(255,255,255,0.2); }
        .metric-item h4 { font-size: 48px; font-weight: 800; letter-spacing: 0; margin-bottom: 8px; line-height: 1; }
        .metric-item p { font-size: 15px; font-weight: 500; opacity: 0.9; }

        /* --- FOUNDERS SECTION --- */
        .founders-section {
            padding: 100px 5%;
            background: var(--white);
        }
        .founders-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .founder-card {
            background: var(--bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .founder-img { width: 100%; height: 340px; object-fit: cover; background: #e2e8f0; }
        .founder-info { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
        .founder-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
        .founder-role { color: var(--teal); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
        .founder-quote { color: var(--text-muted); font-size: 15px; font-style: italic; border-left: 3px solid var(--brand-teal-light); padding-left: 16px; margin-top: auto; }

        /* --- DARK ARCHITECTURE SECTION --- */
        .dark-infra {
            background: #061111;
            color: white;
            padding: 120px 5%;
        }
        .dark-infra .section-tag { color: #20B2AA; }
        .dark-infra .section-title { color: white; }
        .infra-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }
        .infra-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
        .infra-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
        .infra-item p { color: #94a3b8; font-size: 15px; }

        .infra-visual {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        /* --- CTA BOTTOM --- */
        .cta-section {
            padding: 120px 5%;
            background: var(--bg);
        }
        .cta-box {
            background: var(--teal);
            border-radius: 24px;
            padding: 80px 40px;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
            color: white;
        }
        .cta-box h2 { font-size: 48px; font-weight: 800; margin-bottom: 24px; letter-spacing: 0; }
        .btn-white {
            background: white;
            color: var(--teal);
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.2s;
        }
        .btn-white:hover { transform: translateY(-2px); }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .bento-card { grid-column: span 12; }
            .metrics-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
            .founders-grid { grid-template-columns: 1fr; }
            .infra-grid { grid-template-columns: 1fr; }
            .heroes-title { font-size: 48px; }
        }
        @media (max-width: 600px) {
            .metrics-grid { grid-template-columns: 1fr; }
            .heroes-title { font-size: 36px; }
            nav { display: none; /* Add hamburger in production */ }
        }