/* ============================
       RESET & BASE
    ============================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg-deep:     #121212;
      --bg-dark:     #0B1020;
      --bg-card:     rgba(15,22,34,0.58);
      --bg-card-h:   rgba(22,33,52,0.72);
      --border:      rgba(154,168,191,0.14);
      --border-h:    rgba(104,227,255,0.34);
      --nav-scrolled-bg: rgba(10,14,24,0.72);
      --mobile-nav-bg: rgba(10,14,24,0.94);
      --page-bg:
        radial-gradient(circle at 18% 18%, rgba(103,232,249,0.14), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(168,85,247,0.18), transparent 26%),
        radial-gradient(circle at 50% 82%, rgba(37,99,235,0.18), transparent 24%),
        linear-gradient(180deg, #090C14 0%, #121212 44%, #090C14 100%);
      --surface-soft: rgba(255,255,255,0.03);
      --surface-soft-hover: rgba(255,255,255,0.08);
      --surface-strong: rgba(255,255,255,0.05);
      --surface-stronger: rgba(255,255,255,0.09);
      --nav-hover-bg: rgba(255,255,255,0.06);
      --grid-line: rgba(255,255,255,0.025);
      --stats-bg: rgba(255,255,255,0.02);
      --header-overlay: linear-gradient(to bottom, rgba(6,10,18,0.12) 0%, rgba(6,10,18,0.62) 100%);
      --kicker-bg: rgba(7,11,19,0.34);
      --kicker-border: rgba(255,255,255,0.18);
      --signal-border: rgba(103,232,249,0.14);
      --cookie-bg: rgba(10,12,35,0.95);
      --footer-bg: rgba(0,0,0,0.3);
      --cta-subtle-text: rgba(255,255,255,0.7);
      --cta-ghost-border: rgba(255,255,255,0.25);
      --cta-ghost-hover: rgba(255,255,255,0.08);
      --cta-trust-text: rgba(255,255,255,0.6);
      --cta-trust-icon: rgba(255,255,255,0.4);

      --purple-500:  #A855F7;
      --purple-600:  #9333EA;
      --blue-500:    #4F8CFF;
      --blue-600:    #2563EB;
      --cyan-400:    #67E8F9;
      --gold:        #F59E0B;
      --coral:       #F97316;
      --green-400:   #4ADE80;
      --teal-500:    #14B8A6;

      --grad-primary: linear-gradient(135deg, #A855F7 0%, #67E8F9 100%);
      --grad-hero:    linear-gradient(135deg, #7E22CE 0%, #2563EB 48%, #22D3EE 100%);
      --grad-lt:      linear-gradient(135deg, #F97316 0%, #EF4444 100%);
      --grad-gf:      linear-gradient(135deg, #2563EB 0%, #22D3EE 100%);
      --grad-ylp:     linear-gradient(135deg, #059669 0%, #5EEAD4 100%);

      --text-primary: #F8FAFC;
      --text-secondary: #A5B4CC;
      --text-muted:  #6F819C;

      --radius-sm:   8px;
      --radius-md:   16px;
      --radius-lg:   24px;
      --radius-xl:   40px;

      --font-body:   'Plus Jakarta Sans', sans-serif;
      --font-accent: 'Space Grotesk', sans-serif;

      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    :root[data-theme="light"] {
      --bg-deep: #F6F8FF;
      --bg-dark: #EEF2FF;
      --bg-card: rgba(15,23,42,0.04);
      --bg-card-h: rgba(15,23,42,0.08);
      --border: rgba(15,23,42,0.12);
      --border-h: rgba(15,23,42,0.2);
      --text-primary: #0F172A;
      --text-secondary: #334155;
      --text-muted: #64748B;
      --nav-scrolled-bg: rgba(246,248,255,0.92);
      --mobile-nav-bg: rgba(246,248,255,0.97);
      --page-bg:
        radial-gradient(circle at 18% 18%, rgba(34,211,238,0.12), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(168,85,247,0.12), transparent 26%),
        radial-gradient(circle at 50% 82%, rgba(59,130,246,0.12), transparent 24%),
        linear-gradient(180deg, #FCFEFF 0%, #F6F8FF 44%, #EEF4FF 100%);
      --surface-soft: rgba(255,255,255,0.62);
      --surface-soft-hover: rgba(255,255,255,0.88);
      --surface-strong: rgba(255,255,255,0.78);
      --surface-stronger: rgba(255,255,255,0.96);
      --nav-hover-bg: rgba(15,23,42,0.06);
      --grid-line: rgba(15,23,42,0.06);
      --stats-bg: rgba(255,255,255,0.5);
      --header-overlay: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(15,23,42,0.18) 100%);
      --kicker-bg: rgba(255,255,255,0.58);
      --kicker-border: rgba(15,23,42,0.1);
      --signal-border: rgba(15,23,42,0.08);
      --cookie-bg: rgba(255,255,255,0.94);
      --footer-bg: rgba(255,255,255,0.36);
      --cta-subtle-text: rgba(255,255,255,0.88);
      --cta-ghost-border: rgba(255,255,255,0.42);
      --cta-ghost-hover: rgba(255,255,255,0.18);
      --cta-trust-text: rgba(255,255,255,0.82);
      --cta-trust-icon: rgba(255,255,255,0.72);
    }

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

    body {
      font-family: var(--font-body);
      background: var(--page-bg);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
      background-attachment: fixed;
    }

    ::selection { background: rgba(139,92,246,0.35); }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ============================
       UTILITY
    ============================ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .grad-text {
      background: var(--grad-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-accent);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple-500);
      background: rgba(139,92,246,0.12);
      border: 1px solid rgba(139,92,246,0.25);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .section-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-500); }

    .section-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 56px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 15px;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--grad-primary);
      color: #fff;
      box-shadow: 0 14px 42px rgba(103,232,249,0.18), 0 10px 36px rgba(168,85,247,0.28);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 52px rgba(103,232,249,0.24), 0 14px 42px rgba(168,85,247,0.35);
    }
    .btn-outline {
      border: 1.5px solid var(--border-h);
      color: var(--text-primary);
      background: var(--surface-soft);
    }
    .btn-outline:hover {
      border-color: var(--cyan-400);
      background: rgba(103,232,249,0.08);
      transform: translateY(-2px);
    }

    .glass-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: var(--transition);
      box-shadow: 0 18px 60px rgba(0,0,0,0.28);
    }
    .glass-card:hover {
      background: var(--bg-card-h);
      border-color: var(--border-h);
      box-shadow: 0 22px 72px rgba(0,0,0,0.34);
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .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; }

    /* ============================
       BACKGROUND BLOBS
    ============================ */
    .blob-bg {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }

    /* ============================
       NAV
    ============================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    #navbar.scrolled {
      background: var(--nav-scrolled-bg);
      backdrop-filter: blur(24px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 16px 48px rgba(0,0,0,0.28);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-mark {
      height: 44px;
      width: auto;
      border-radius: 10px;
      background: rgba(255,255,255,0.92);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.15);
    }
    .logo-mark img {
      height: 44px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      object-position: center;
      padding: 4px 8px;
      display: block;
    }
    .logo-text {
      font-family: var(--font-accent);
      font-weight: 700;
      font-size: 19px;
      letter-spacing: -0.02em;
    }
    .logo-text span { color: var(--purple-500); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      padding: 8px 16px;
      border-radius: 8px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--text-primary); background: var(--nav-hover-bg); }

    .nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 14px; }

    .theme-toggle {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border-h);
      background: var(--bg-card);
      color: var(--text-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: var(--transition);
      margin-left: 10px;
    }
    .theme-toggle:hover {
      border-color: var(--cyan-400);
      background: var(--bg-card-h);
    }
    .theme-toggle .theme-icon-sun { display: none; }
    :root[data-theme="light"] .theme-toggle .theme-icon-sun { display: inline-block; }
    :root[data-theme="light"] .theme-toggle .theme-icon-moon { display: none; }
    :root[data-theme="light"] .founder-floating-card-name { color: #FFFFFF; }
    :root[data-theme="light"] .founder-floating-card-title { color: #E0E7FF; }
    :root[data-theme="light"] .founder-floating-card-role { color: #E0E7FF; }

    .theme-toggle-mobile {
      width: auto;
      min-width: 120px;
      height: 42px;
      margin-left: 0;
      margin-bottom: 6px;
      gap: 8px;
      font-weight: 700;
      font-size: 14px;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
    }
    .nav-hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--mobile-nav-bg);
      backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .mobile-nav a:hover { color: var(--text-primary); }
    .mobile-nav-close {
      position: absolute;
      top: 24px; right: 24px;
      font-size: 28px;
      color: var(--text-secondary);
      cursor: pointer;
      transition: var(--transition);
    }
    .mobile-nav-close:hover { color: var(--text-primary); }

    /* ============================
       HERO
    ============================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 132px 0 88px;
    }

    .hero-blob-1 {
      width: 700px; height: 700px;
      top: -200px; left: -200px;
      background: rgba(124,58,237,0.18);
    }
    .hero-blob-2 {
      width: 500px; height: 500px;
      bottom: -100px; right: -100px;
      background: rgba(37,99,235,0.18);
    }
    .hero-blob-3 {
      width: 400px; height: 400px;
      top: 30%; left: 50%;
      transform: translateX(-50%);
      background: rgba(14,116,144,0.12);
    }

    /* Floating orbs */
    .orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .orb {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
    }
    .orb-1 {
      width: 6px; height: 6px;
      background: var(--purple-500);
      top: 20%; left: 15%;
      animation: float 6s ease-in-out infinite;
    }
    .orb-2 {
      width: 4px; height: 4px;
      background: var(--cyan-400);
      top: 60%; left: 80%;
      animation: float 8s ease-in-out infinite 1s;
    }
    .orb-3 {
      width: 8px; height: 8px;
      background: var(--gold);
      top: 75%; left: 25%;
      animation: float 7s ease-in-out infinite 2s;
    }
    .orb-4 {
      width: 5px; height: 5px;
      background: var(--green-400);
      top: 35%; left: 70%;
      animation: float 9s ease-in-out infinite 0.5s;
    }
    .orb-5 {
      width: 3px; height: 3px;
      background: var(--coral);
      top: 50%; left: 40%;
      animation: float 5s ease-in-out infinite 3s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-20px) scale(1.1); }
    }

    /* Grid pattern overlay */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 1180px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(139,92,246,0.12);
      border: 1px solid rgba(139,92,246,0.3);
      border-radius: 100px;
      padding: 8px 20px 8px 10px;
      margin-bottom: 32px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      animation: fadeDown 0.8s ease both;
    }
    .hero-badge-dot {
      background: var(--grad-primary);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.06em;
    }

    .hero-logo-wrap {
      display: flex;
      justify-content: center;
      margin: 0 auto 28px;
      animation: fadeUp 0.9s ease 0.2s both;
    }
    .hero-logo {
      width: clamp(220px, 30vw, 340px);
      height: auto;
      border-radius: 18px;
      background: rgba(255,255,255,0.92);
      box-shadow: 0 16px 46px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.14);
      padding: 10px 14px;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      object-position: center;
    }

    .hero-h1 {
      width: min(60vw, 980px);
      max-width: 100%;
      font-size: clamp(3.6rem, 8vw, 7rem);
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin: 0 auto 28px;
      animation: fadeUp 0.9s ease 0.15s both;
    }

    .hero-sub {
      font-size: clamp(1.05rem, 2vw, 1.34rem);
      color: var(--text-secondary);
      max-width: 760px;
      margin: 0 auto 48px;
      line-height: 1.8;
      animation: fadeUp 0.9s ease 0.3s both;
    }

    .hero-signal-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 980px;
      margin: 0 auto 34px;
      animation: fadeUp 0.9s ease 0.4s both;
    }
    .hero-signal-pill {
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid var(--signal-border);
      background: linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
      backdrop-filter: blur(14px);
      color: var(--text-secondary);
      font-size: 13px;
      line-height: 1.55;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .hero-signal-pill strong {
      display: block;
      color: var(--text-primary);
      font-size: 14px;
      margin-bottom: 4px;
      letter-spacing: 0.01em;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.9s ease 0.45s both;
    }

    .hero-platforms {
      margin-top: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp 1s ease 0.6s both;
    }
    .hero-platform-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--surface-soft);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: var(--transition);
      backdrop-filter: blur(12px);
    }
    .hero-platform-chip:hover {
      border-color: var(--border-h);
      color: var(--text-primary);
      background: var(--surface-stronger);
      box-shadow: 0 0 24px rgba(103,232,249,0.12);
    }
    .chip-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }

    /* scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      z-index: 1;
      animation: fadeUp 1s ease 1s both;
    }
    .scroll-mouse {
      width: 22px; height: 34px;
      border: 1.5px solid var(--text-muted);
      border-radius: 11px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .scroll-mouse-dot {
      width: 3px; height: 8px;
      background: var(--text-muted);
      border-radius: 2px;
      animation: scrollDot 2s ease infinite;
    }
    @keyframes scrollDot {
      0% { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(8px); opacity: 0; }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ============================
       STATS STRIP
    ============================ */
    #stats {
      padding: 32px 0;
      background: var(--stats-bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      text-align: center;
    }
    .stat-item { padding: 12px; }
    .stat-value {
      font-family: var(--font-accent);
      font-size: 2rem;
      font-weight: 700;
      background: var(--grad-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ============================
       MISSION & VISION
    ============================ */
    #about {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
      text-align: center;
    }
    .about-blob {
      width: 600px; height: 600px;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      background: rgba(124,58,237,0.07);
    }

    .about-content { position: relative; z-index: 1; }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 56px;
      text-align: left;
    }
    .mv-card {
      padding: 40px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }
    .mv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .mv-card.mission::before { background: var(--grad-primary); }
    .mv-card.vision::before { background: linear-gradient(90deg, var(--gold), var(--coral)); }
    .mv-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }
    .mv-icon.m { background: rgba(139,92,246,0.15); color: var(--purple-500); }
    .mv-icon.v { background: rgba(245,158,11,0.15); color: var(--gold); }
    .mv-title {
      font-family: var(--font-accent);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .mv-heading {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .mv-body {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    /* Values strip */
    .values-strip {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
    }
    .value-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
    }
    .value-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      background: rgba(139,92,246,0.12);
      color: var(--purple-500);
    }

    /* ============================
       PRODUCTS
    ============================ */
    #products {
      padding: 120px 0;
      text-align: center;
      position: relative;
    }

    .products-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
      grid-template-areas:
        'featured compact'
        'featured secondary';
      gap: 24px;
      text-align: left;
    }

    .product-card {
      --glow-x: 50%;
      --glow-y: 50%;
      --glow-opacity: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      min-height: 100%;
      isolation: isolate;
      background: linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
    }
    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(420px circle at var(--glow-x) var(--glow-y), rgba(103,232,249,0.16), transparent 45%);
      opacity: var(--glow-opacity);
      transition: opacity 0.25s ease;
      pointer-events: none;
      z-index: 0;
    }
    .product-card:hover {
      transform: translateY(-6px);
    }
    .product-card:hover::before {
      --glow-opacity: 1;
      opacity: 1;
    }
    .product-card-featured { grid-area: featured; }
    .product-card-compact { grid-area: compact; }
    .product-card-secondary { grid-area: secondary; }
    .product-card-header,
    .product-card-body {
      position: relative;
      z-index: 1;
    }
    .product-card-header {
      min-height: 200px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 28px;
      position: relative;
      overflow: hidden;
    }
    .product-card-header::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--header-overlay);
    }
    .product-card-header.lt { background: var(--grad-lt); }
    .product-card-header.gf { background: var(--grad-gf); }
    .product-card-header.ylp { background: var(--grad-ylp); }

    /* Geometric bg pattern in card header */
    .product-card-header::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }

    .product-card-featured .product-card-header {
      min-height: 320px;
      padding-top: 96px;
    }
    .product-card-kicker {
      position: absolute;
      left: 28px;
      top: 24px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--kicker-bg);
      border: 1px solid var(--kicker-border);
      color: #FFFFFF;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 10px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .product-logo-placeholder {
      position: absolute;
      top: 62px; left: 28px;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .product-logo-mark {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.24);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.2);
      transform: scale(0.92);
      transition: transform 0.7s ease, box-shadow 0.7s ease;
    }
    .product-logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 3px;
      border-radius: 10px;
    }
    .product-logo-mark img.product-logo-crop {
      object-fit: cover;
      object-position: center;
      padding: 0;
      transform: scale(1.2);
      transform-origin: center;
    }
    .product-logo-name {
      font-family: var(--font-accent);
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
    }

    .product-audience-badge {
      position: absolute;
      top: 24px; right: 24px;
      z-index: 2;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      backdrop-filter: blur(8px);
    }

    .product-header-copy {
      position: relative;
      z-index: 2;
      max-width: 86%;
    }
    .product-overline {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.74);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .product-card-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .product-card-body-featured {
      gap: 22px;
    }
    .product-name {
      font-family: var(--font-accent);
      font-size: 1.45rem;
      font-weight: 700;
      margin-bottom: 4px;
      position: relative;
      z-index: 2;
    }
    .product-name-hero {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1;
      margin-bottom: 10px;
    }
    .product-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      flex: 1;
    }
    .product-desc-hero {
      max-width: 680px;
      font-size: 15px;
      color: rgba(255,255,255,0.88);
    }
    .product-signal-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .product-signal {
      padding: 14px 14px 12px;
      border-radius: 16px;
      border: 1px solid var(--signal-border);
      background: var(--surface-soft);
      min-height: 100%;
      color: var(--text-secondary);
      font-size: 12px;
      line-height: 1.55;
    }
    .product-signal strong {
      display: block;
      color: var(--text-primary);
      font-size: 13px;
      margin-bottom: 4px;
    }
    .product-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .product-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-secondary);
    }
    .product-feature i {
      font-size: 11px;
      width: 18px; height: 18px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .lt-check { background: rgba(249,115,22,0.15); color: var(--coral); }
    .gf-check { background: rgba(37,99,235,0.15); color: var(--blue-500); }
    .ylp-check { background: rgba(20,184,166,0.15); color: var(--teal-500); }

    .product-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      transition: var(--transition);
      margin-top: 8px;
      width: fit-content;
      background: var(--surface-soft);
    }
    .lt-cta:hover { border-color: var(--coral); color: #FFD8C2; background: rgba(249,115,22,0.12); box-shadow: 0 0 26px rgba(249,115,22,0.18); }
    .gf-cta:hover { border-color: var(--cyan-400); color: #D9FCFF; background: rgba(37,99,235,0.12); box-shadow: 0 0 28px rgba(103,232,249,0.18); }
    .ylp-cta:hover { border-color: #5EEAD4; color: #D8FFF8; background: rgba(20,184,166,0.12); box-shadow: 0 0 26px rgba(94,234,212,0.16); }

    .product-card.visible .product-logo-mark {
      transform: scale(1);
      animation: productFloat 6s ease-in-out infinite;
      box-shadow: 0 16px 32px rgba(0,0,0,0.24), 0 0 24px rgba(103,232,249,0.1);
    }
    .products-footnote {
      margin-top: 22px;
      color: var(--text-muted);
      font-size: 13px;
      letter-spacing: 0.02em;
    }
    .products-footnote span {
      color: var(--text-primary);
      font-weight: 700;
    }

    @keyframes productFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-5px) scale(1.03); }
    }

    /* ============================
       WHY KarmaLabs
    ============================ */
    #why {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .why-blob {
      width: 700px; height: 700px;
      bottom: -200px; right: -200px;
      background: rgba(37,99,235,0.07);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .why-left { position: relative; z-index: 1; }
    .why-left .section-tag { justify-content: flex-start; }
    .why-left .section-heading { margin-bottom: 24px; }
    .why-left .section-sub { margin: 0 0 40px; text-align: left; }

    .why-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .why-feature {
      display: flex;
      gap: 16px;
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: var(--bg-card);
      transition: var(--transition);
    }
    .why-feature:hover {
      border-color: var(--border-h);
      background: var(--bg-card-h);
      transform: translateX(4px);
    }
    .why-feature-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .why-feature-text h4 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .why-feature-text p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Visual for why right */
    .why-visual {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .why-visual-card {
      padding: 28px 20px;
      border-radius: var(--radius-md);
      text-align: center;
      border: 1px solid var(--border);
      background: var(--bg-card);
    }
    .why-visual-card:nth-child(2) { margin-top: 24px; }
    .why-visual-card:nth-child(4) { margin-top: 24px; }
    .why-visual-number {
      font-family: var(--font-accent);
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 6px;
      line-height: 1;
    }
    .why-visual-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ============================
       FOUNDER
    ============================ */
    #founder {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .founder-blob {
      width: 500px; height: 500px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(245,158,11,0.06);
    }

    .founder-grid {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .founder-image-wrap {
      position: relative;
    }
    .founder-image-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--text-muted);
    }
    .founder-image-placeholder i {
      font-size: 64px;
      color: rgba(139,92,246,0.4);
    }
    .founder-image-placeholder p {
      font-size: 13px;
      text-align: center;
      padding: 0 24px;
    }

    /* Floating card on image */
    .founder-floating-card {
      position: absolute;
      bottom: -20px; right: -20px;
      background: rgba(5,7,26,0.9);
      border: 1px solid var(--border-h);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      backdrop-filter: blur(16px);
      min-width: 180px;
    }
    .founder-floating-card-title {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }
    .founder-floating-card-name {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 2px;
      color: #FFFFFF;
    }
    .founder-floating-card-role {
      font-size: 12px;
      color: var(--purple-500);
      font-weight: 600;
    }

    .founder-content .section-tag { justify-content: flex-start; }
    .founder-name {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 6px;
      letter-spacing: -0.02em;
    }
    .founder-title {
      font-size: 15px;
      color: var(--purple-500);
      font-weight: 600;
      margin-bottom: 24px;
      font-family: var(--font-accent);
    }
    .founder-bio {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .founder-quote {
      padding: 24px 28px;
      border-radius: var(--radius-md);
      background: rgba(139,92,246,0.08);
      border-left: 3px solid var(--purple-500);
      border: 1px solid rgba(139,92,246,0.2);
      margin-bottom: 32px;
    }
    .founder-quote-text {
      font-size: 17px;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .founder-quote-credit {
      font-size: 13px;
      color: var(--purple-500);
      font-weight: 600;
    }

    .founder-socials {
      display: flex;
      gap: 12px;
    }
    .founder-social-btn {
      width: 44px; height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .founder-social-btn:hover {
      border-color: var(--purple-500);
      color: var(--purple-500);
      background: rgba(139,92,246,0.1);
      transform: translateY(-2px);
    }

    /* ============================
       TRUST & COMPLIANCE
    ============================ */
    #trust {
      padding: 120px 0;
      position: relative;
      text-align: center;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
      margin-bottom: 56px;
    }
    .trust-card {
      padding: 32px 24px;
      border-radius: var(--radius-lg);
      text-align: left;
    }
    .trust-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }
    .trust-icon.sec  { background: rgba(139,92,246,0.12); color: var(--purple-500); }
    .trust-icon.priv { background: rgba(59,130,246,0.12); color: var(--blue-500); }
    .trust-icon.comp { background: rgba(20,184,166,0.12); color: var(--teal-500); }
    .trust-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .trust-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .trust-legal-links {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .trust-legal-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 100px;
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      background: var(--bg-card);
      transition: var(--transition);
    }
    .trust-legal-link:hover {
      border-color: var(--border-h);
      color: var(--text-primary);
      background: var(--bg-card-h);
    }

    .disclaimer-box {
      margin-top: 40px;
      padding: 20px 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: var(--surface-soft);
    }
    .disclaimer-box p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .disclaimer-box a {
      color: var(--purple-500);
      text-decoration: underline;
    }

    /* ============================
       CTA SECTION
    ============================ */
    #cta {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-inner {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      padding: 80px;
      text-align: center;
      background: linear-gradient(135deg, rgba(79,29,150,0.6), rgba(30,58,138,0.6));
      border: 1px solid rgba(139,92,246,0.25);
    }
    .cta-blob-1 {
      position: absolute;
      width: 400px; height: 400px;
      top: -100px; left: -100px;
      border-radius: 50%;
      background: rgba(124,58,237,0.3);
      filter: blur(100px);
    }
    .cta-blob-2 {
      position: absolute;
      width: 400px; height: 400px;
      bottom: -100px; right: -100px;
      border-radius: 50%;
      background: rgba(37,99,235,0.3);
      filter: blur(100px);
    }
    .cta-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .cta-sub {
      font-size: 1.1rem;
      color: var(--cta-subtle-text);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-white {
      background: #fff;
      color: #1a0545;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }
    .btn-ghost {
      border: 1.5px solid var(--cta-ghost-border);
      color: #fff;
    }
    .btn-ghost:hover {
      background: var(--cta-ghost-hover);
      transform: translateY(-2px);
    }
    .cta-trust {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--cta-trust-text);
    }
    .cta-trust-item i { color: var(--cta-trust-icon); }

    /* ============================
       FOOTER
    ============================ */
    #footer {
      padding: 80px 0 0;
      border-top: 1px solid var(--border);
      background: var(--footer-bg);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .footer-brand-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 280px;
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-social {
      width: 40px; height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
      color: var(--text-muted);
      transition: var(--transition);
    }
    .footer-social:hover {
      border-color: var(--border-h);
      color: var(--text-primary);
      background: var(--bg-card-h);
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .footer-col ul li a:hover {
      color: var(--text-primary);
    }
    .footer-col ul li .footer-external {
      font-size: 10px;
      color: var(--text-muted);
      margin-left: 4px;
    }

    .footer-bottom {
      padding: 24px 0;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-left {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-bottom-left a {
      color: var(--purple-500);
      text-decoration: underline;
    }
    .footer-bottom-right {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-right a {
      font-size: 13px;
      color: var(--text-muted);
      transition: var(--transition);
    }
    .footer-bottom-right a:hover { color: var(--text-secondary); }

    /* ============================
       COOKIE BANNER
    ============================ */
    #cookie-banner {
      position: fixed;
      bottom: 24px; left: 24px; right: 24px;
      max-width: 560px;
      margin: 0 auto;
      left: 50%; transform: translateX(-50%);
      background: var(--cookie-bg);
      border: 1px solid var(--border-h);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      z-index: 900;
      backdrop-filter: blur(20px);
      box-shadow: 0 16px 64px rgba(0,0,0,0.5);
      transition: var(--transition);
    }
    #cookie-banner.hidden {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
      pointer-events: none;
    }
    .cookie-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; flex: 1; }
    .cookie-text a { color: var(--purple-500); text-decoration: underline; }
    .cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
    .cookie-accept {
      padding: 8px 18px;
      border-radius: 100px;
      background: var(--grad-primary);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      transition: var(--transition);
    }
    .cookie-accept:hover { opacity: 0.9; }
    .cookie-decline {
      padding: 8px 14px;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      transition: var(--transition);
    }
    .cookie-decline:hover { border-color: var(--border-h); color: var(--text-secondary); }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1024px) {
      .hero-h1 {
        width: 100%;
      }
      .hero-signal-row,
      .product-signal-row {
        grid-template-columns: 1fr;
      }
      .products-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          'featured'
          'compact'
          'secondary';
      }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .founder-grid { grid-template-columns: 1fr; gap: 48px; }
      .founder-image-placeholder { aspect-ratio: 16/9; max-height: 320px; }
      .founder-floating-card { bottom: -12px; right: -12px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { margin-top: 16px; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .theme-toggle { display: none; }
      .logo-mark { height: 38px; width: auto; border-radius: 8px; }
      .logo-mark img { height: 38px; width: auto; padding: 3px 6px; }
      .hero-logo { width: min(74vw, 300px); padding: 8px 10px; border-radius: 14px; }
      .hero-h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
        line-height: 1.02;
      }
      .hero-sub {
        margin-bottom: 34px;
      }
      .hero-signal-row {
        margin-bottom: 26px;
      }
      .product-card-featured .product-card-header,
      .product-card-header {
        min-height: 240px;
        padding-top: 92px;
      }
      .product-header-copy {
        max-width: 100%;
      }
      .product-logo-placeholder {
        top: 60px;
      }

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

      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom-right { justify-content: center; }

      .cta-inner { padding: 48px 24px; }
      .cta-trust { gap: 20px; }

      .hero-platforms { gap: 8px; }

      #cookie-banner { left: 16px; right: 16px; transform: none; }
      #cookie-banner.hidden { transform: translateY(20px); }

      .values-strip { gap: 24px; }
    }

    @media (max-width: 480px) {
      .hero-badge {
        padding: 8px 14px 8px 10px;
      }
      .hero-platforms {
        margin-top: 52px;
      }
      .product-card-body,
      .product-card-body-featured {
        padding: 22px;
      }
      .product-name-hero {
        font-size: 1.8rem;
      }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .why-visual { grid-template-columns: 1fr; }
      .why-visual-card:nth-child(2), .why-visual-card:nth-child(4) { margin-top: 0; }
      .founder-socials { flex-wrap: wrap; }
    }
