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

    :root {
      --font-body: 'Inter', system-ui, sans-serif;
      --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

      /* Brand */
      --brand-purple: #7C3AED;
      --brand-violet: #8B5CF6;
      --brand-blue: #3B82F6;
      --brand-cyan: #06B6D4;
      --brand-green: #10B981;
      --brand-pink: #EC4899;
      --brand-orange: #F59E0B;

      /* Gradients */
      --grad-primary: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
      --grad-hero: linear-gradient(135deg, #0F0C29, #302B63, #24243E);
      --grad-glow: radial-gradient(ellipse at center, rgba(124,58,237,0.3) 0%, transparent 70%);
      --grad-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);

      /* Easing */
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

      /* Radius */
      --r-sm: 8px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 32px;
      --r-pill: 9999px;
    }

    /* ─── DARK THEME ──────────────────────────────────────────────────── */
    [data-theme="dark"] {
      --bg: #06060F;
      --bg-2: #0D0B1A;
      --bg-3: #12101F;
      --surface: rgba(255,255,255,0.04);
      --surface-hover: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.08);
      --border-hover: rgba(255,255,255,0.16);
      --text-primary: #F8F8FF;
      --text-secondary: rgba(248,248,255,0.6);
      --text-muted: rgba(248,248,255,0.35);
      --nav-bg: rgba(6,6,15,0.7);
      --card-bg: rgba(255,255,255,0.03);
      --card-border: rgba(255,255,255,0.07);
      --shadow: 0 24px 60px rgba(0,0,0,0.6);
      --glow-color: rgba(124,58,237,0.25);
    }

    /* ─── LIGHT THEME ─────────────────────────────────────────────────── */
    [data-theme="light"] {
      --bg: #F8F7FF;
      --bg-2: #F0EEFF;
      --bg-3: #E8E4FF;
      --surface: rgba(124,58,237,0.04);
      --surface-hover: rgba(124,58,237,0.08);
      --border: rgba(124,58,237,0.12);
      --border-hover: rgba(124,58,237,0.24);
      --text-primary: #0F0B1F;
      --text-secondary: rgba(15,11,31,0.65);
      --text-muted: rgba(15,11,31,0.4);
      --nav-bg: rgba(248,247,255,0.75);
      --card-bg: rgba(255,255,255,0.8);
      --card-border: rgba(124,58,237,0.1);
      --shadow: 0 24px 60px rgba(124,58,237,0.12);
      --glow-color: rgba(124,58,237,0.15);
    }

    /* ─── BASE ────────────────────────────────────────────────────────── */
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
      line-height: 1.6;
    }

    ::selection { background: rgba(124,58,237,0.3); color: var(--text-primary); }

    /* ─── SCROLLBAR ───────────────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--brand-purple); border-radius: 3px; }

    /* ─── ANIMATED BACKGROUND ─────────────────────────────────────────── */
    .bg-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
      animation: orbFloat 8s ease-in-out infinite;
    }

    [data-theme="light"] .bg-orb { opacity: 0.08; }

    .bg-orb:nth-child(2) { width: 600px; height: 600px; background: var(--brand-purple); top: -200px; left: -200px; animation-delay: 0s; }
    .bg-orb:nth-child(3) { width: 500px; height: 500px; background: var(--brand-cyan); top: 30%; right: -150px; animation-delay: -3s; }
    .bg-orb:nth-child(4) { width: 400px; height: 400px; background: var(--brand-blue); bottom: 10%; left: 20%; animation-delay: -6s; }
    .bg-orb:nth-child(5) { width: 300px; height: 300px; background: var(--brand-pink); top: 60%; left: 60%; animation-delay: -2s; }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    /* Grid pattern */
    .bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    [data-theme="light"] .bg-grid {
      background-image:
        linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
    }

    /* ─── LAYOUT ──────────────────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    section { position: relative; z-index: 1; }

    /* ─── NAVBAR ──────────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: var(--nav-bg);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s var(--ease-out);
    }

    nav.scrolled { padding: 12px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--text-primary);
    }

    .logo-icon {
      width: 36px; height: 36px;
      background: var(--grad-primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 15px rgba(124,58,237,0.4);
      animation: logoPulse 3s ease-in-out infinite;
    }

    @keyframes logoPulse {
      0%, 100% { box-shadow: 0 4px 15px rgba(124,58,237,0.4); }
      50% { box-shadow: 0 4px 25px rgba(124,58,237,0.7), 0 0 40px rgba(124,58,237,0.2); }
    }

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

    .nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: var(--r-pill);
      transition: all 0.2s;
    }

    .nav-links a:hover { color: var(--text-primary); background: var(--surface-hover); }

    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-drawer { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; margin: 0 12px 0 20px; }
    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      border-radius: var(--r-pill);
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text-primary);
      font-size: 20px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .logo-img { height: 36px; width: auto; max-width: 140px; object-fit: contain; border-radius: 8px; }
    .logo-word { font-weight: 800; }
    .ticker-bar { margin-top: 73px; }

    .theme-toggle {
      width: 44px; height: 44px;
      border-radius: var(--r-pill);
      background: var(--surface);
      border: 1px solid var(--border);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s var(--ease-spring);
      color: var(--text-primary);
      text-decoration: none;
    }

    .theme-toggle:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: rotate(20deg) scale(1.1); }

    /* ─── BUTTONS ─────────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--r-pill);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
      border: none;
      text-decoration: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--grad-primary);
      color: #fff;
      box-shadow: 0 4px 20px rgba(124,58,237,0.4);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.6); }
    .btn-primary:active { transform: translateY(0); }

    .btn-ghost {
      background: var(--surface);
      color: var(--text-primary);
      border: 1px solid var(--border);
    }

    .btn-ghost:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-1px); }

    .btn-lg { padding: 16px 36px; font-size: 1rem; }
    .btn-xl { padding: 20px 48px; font-size: 1.1rem; font-weight: 700; }

    /* Shimmer */
    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer { 0% { left: -100%; } 50%, 100% { left: 150%; } }

    /* ─── TICKER BAR ──────────────────────────────────────────────────── */
    .ticker-bar {
      background: linear-gradient(90deg, #7C3AED, #3B82F6, #06B6D4, #7C3AED);
      background-size: 200% 100%;
      animation: gradientShift 4s linear infinite;
      padding: 10px 0;
      overflow: hidden;
    }

    @keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

    .ticker-inner {
      display: flex;
      gap: 48px;
      animation: tickerAnim 20s linear infinite;
      width: max-content;
    }

    @keyframes tickerAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      white-space: nowrap;
    }

    /* ─── HERO ────────────────────────────────────────────────────────── */
    .hero {
      padding: 28px 0 32px;
      text-align: left;
      position: relative;
      min-height: calc(100dvh - 108px);
      max-height: calc(100dvh - 108px);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
      align-items: center;
      gap: 36px;
      width: 100%;
    }
    .hero-copy { min-width: 0; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--brand-violet);
      margin-bottom: 14px;
      animation: fadeInDown 0.6s var(--ease-out) forwards;
      opacity: 0;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--brand-green);
      animation: pulseDot 2s ease-in-out infinite;
    }

    @keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4.6vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
      animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
      opacity: 0;
    }

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

    .hero-sub {
      font-size: clamp(0.95rem, 1.4vw, 1.15rem);
      color: var(--text-secondary);
      max-width: 520px;
      margin: 0 0 20px;
      line-height: 1.55;
      animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
      opacity: 0;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
      opacity: 0;
      margin-bottom: 22px;
      justify-content: flex-start;
    }
    .hero .btn-xl { padding: 14px 28px; font-size: 1rem; }
    .hero .btn-lg { padding: 12px 22px; }

    .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      justify-content: flex-start;
      animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
      opacity: 0;
    }

    .stat-item { text-align: center; }

    .stat-number {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 800;
      background: var(--grad-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .stat-divider { width: 1px; height: 40px; background: var(--border); }

    /* ─── PHONE MOCKUP ────────────────────────────────────────────────── */
    .hero-visual {
      margin-top: 0;
      position: relative;
      display: flex;
      justify-content: center;
      animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
      opacity: 0;
    }

    .phone-mockup {
      width: 240px; height: min(460px, calc(100dvh - 160px));
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 40px;
      margin: 0 auto;
      position: relative;
      backdrop-filter: blur(20px);
      box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px var(--border);
      overflow: hidden;
      animation: phoneFloat 6s ease-in-out infinite;
    }

    @keyframes phoneFloat {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-8px) rotate(1deg); }
    }

    .phone-screen {
      position: absolute;
      inset: 8px;
      border-radius: 32px;
      background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
      overflow: hidden;
      padding: 20px 16px;
    }

    .phone-notch { width: 80px; height: 24px; background: var(--bg); border-radius: var(--r-pill); margin: 0 auto 20px; }

    .phone-header { text-align: center; margin-bottom: 20px; }
    .phone-header .app-icon {
      width: 48px; height: 48px;
      background: var(--grad-primary);
      border-radius: 14px;
      margin: 0 auto 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 8px 20px rgba(124,58,237,0.5);
    }
    .phone-header h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
    .phone-header p { font-size: 0.7rem; color: var(--text-muted); }

    .amount-display {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 16px;
      margin-bottom: 14px;
      text-align: center;
    }
    .amount-display .alabel { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
    .amount-display .amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
    .amount-display .amount span { font-size: 1rem; color: var(--text-muted); }

    .upi-input {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 12px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .upi-input .icon { font-size: 16px; }
    .upi-input .text { font-size: 0.7rem; color: var(--text-secondary); }

    .pay-btn {
      width: 100%;
      padding: 14px;
      background: var(--grad-primary);
      border: none;
      border-radius: var(--r-md);
      color: #fff;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .pay-btn::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      animation: shimmer 2s ease-in-out infinite;
    }

    .payment-methods { display: flex; gap: 6px; margin-top: 10px; }
    .pm-chip {
      flex: 1;
      padding: 6px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      text-align: center;
      font-size: 0.6rem;
      color: var(--text-muted);
    }

    /* Floating cards */
    .float-card {
      position: absolute;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-md);
      backdrop-filter: blur(20px);
      padding: 12px 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      white-space: nowrap;
    }
    .float-card.success { left: -110px; top: 80px; animation: floatLeft 5s ease-in-out infinite; }
    .float-card.speed { right: -100px; top: 40px; animation: floatRight 6s ease-in-out infinite; }
    .float-card.secure { left: -90px; bottom: 70px; animation: floatLeft 7s ease-in-out infinite 1s; }

    @keyframes floatLeft { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-10px, -10px); } }
    @keyframes floatRight { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10px, -10px); } }

    .float-card .fc-label { font-size: 0.65rem; color: var(--text-muted); }
    .float-card .fc-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
    .float-card .fc-icon { font-size: 20px; margin-bottom: 4px; display: block; }

    /* ─── SECTION STYLES ──────────────────────────────────────────────── */
    .section { padding: 120px 0; }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-violet);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 540px;
    }

    .text-center { text-align: center; }
    .text-center .section-sub { margin: 0 auto; }

    /* ─── FEATURES ────────────────────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      margin-top: 64px;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      padding: 36px;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      transition: all 0.4s var(--ease-out);
      cursor: default;
    }

    .feature-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow); }
    .feature-card.featured { background: linear-gradient(145deg, rgba(124,58,237,0.1), rgba(59,130,246,0.05)); border-color: rgba(124,58,237,0.2); grid-column: span 2; }

    .feature-icon {
      width: 56px; height: 56px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 24px;
    }

    .fi-purple { background: rgba(124,58,237,0.15); }
    .fi-blue { background: rgba(59,130,246,0.15); }
    .fi-cyan { background: rgba(6,182,212,0.15); }
    .fi-green { background: rgba(16,185,129,0.15); }
    .fi-pink { background: rgba(236,72,153,0.15); }
    .fi-orange { background: rgba(245,158,11,0.15); }

    .feature-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
    .feature-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
    .feature-tag {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(124,58,237,0.12);
      color: var(--brand-violet);
      border-radius: var(--r-pill);
      font-size: 0.72rem;
      font-weight: 600;
      margin-top: 16px;
    }

    /* ─── HOW IT WORKS ────────────────────────────────────────────────── */
    .how-it-works { background: var(--bg-2); }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      margin-top: 72px;
      position: relative;
    }

    .steps-container::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      width: 75%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--brand-purple), var(--brand-cyan), transparent);
      z-index: 0;
    }

    .step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }

    .step-number {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--grad-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin: 0 auto 24px;
      box-shadow: 0 8px 32px rgba(124,58,237,0.4);
      transition: transform 0.3s var(--ease-spring);
    }

    .step:hover .step-number { transform: scale(1.15); }
    .step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
    .step-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

    /* ─── METRICS PREVIEW ─────────────────────────────────────────────── */
    .metrics-preview {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      padding: 32px;
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
    }

    .metrics-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
    .metrics-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }

    .metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }

    .metric-item {
      background: var(--surface);
      border-radius: var(--r-md);
      padding: 16px;
      border: 1px solid var(--border);
    }

    .metric-value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--grad-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .metric-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

    .chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
    .chart-bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: var(--grad-primary);
      opacity: 0.7;
      transition: opacity 0.2s;
      animation: chartGrow 1s var(--ease-spring) forwards;
      transform-origin: bottom;
    }
    .chart-bar:hover { opacity: 1; }
    @keyframes chartGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

    /* ─── LIVE FEED ───────────────────────────────────────────────────── */
    .live-feed {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      overflow: hidden;
      max-width: 400px;
    }

    .live-feed-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
    }

    .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); animation: pulseDot 1.5s ease-in-out infinite; }
    .live-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

    .txn-list { padding: 8px 0; }

    .txn-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      transition: background 0.2s;
      animation: slideIn 0.4s var(--ease-out);
    }

    @keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
    .txn-item:hover { background: var(--surface); }

    .txn-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .txn-info { flex: 1; }
    .txn-name { font-size: 0.82rem; font-weight: 600; }
    .txn-time { font-size: 0.7rem; color: var(--text-muted); }
    .txn-amount { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--brand-green); }

    /* ─── SECURITY ────────────────────────────────────────────────────── */
    .security-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 64px;
    }

    .security-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 28px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-lg);
      transition: all 0.3s var(--ease-out);
    }

    .security-item:hover { transform: translateY(-4px); border-color: var(--border-hover); }
    .security-icon { font-size: 28px; }
    .security-title { font-weight: 700; font-size: 0.95rem; }
    .security-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

    /* ─── INTEGRATIONS ────────────────────────────────────────────────── */
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 16px;
      margin-top: 64px;
    }

    .integration-item {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-lg);
      padding: 24px 16px;
      text-align: center;
      transition: all 0.3s var(--ease-spring);
      cursor: default;
    }

    .integration-item:hover { transform: translateY(-4px) scale(1.05); border-color: var(--border-hover); box-shadow: 0 12px 40px var(--glow-color); }
    .integration-icon { font-size: 32px; margin-bottom: 8px; display: block; }
    .integration-name { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); }

    /* ─── PRICING ─────────────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 64px;
      align-items: start;
    }

    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      padding: 40px;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      transition: all 0.4s var(--ease-out);
    }

    .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    .pricing-card.popular {
      background: linear-gradient(145deg, rgba(124,58,237,0.12), rgba(59,130,246,0.06));
      border-color: rgba(124,58,237,0.3);
      transform: scale(1.02);
    }

    .pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }

    .popular-badge {
      position: absolute;
      top: 20px; right: 20px;
      padding: 4px 14px;
      background: var(--grad-primary);
      border-radius: var(--r-pill);
      font-size: 0.7rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .plan-name { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
    .plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
    .plan-price sup { font-size: 1.4rem; font-weight: 600; }
    .plan-price sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

    .plan-desc {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .plan-features { list-style: none; margin-bottom: 36px; }
    .plan-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.88rem; color: var(--text-secondary); }
    .plan-features li .check { width: 20px; height: 20px; border-radius: 50%; background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

    /* ─── TESTIMONIALS ────────────────────────────────────────────────── */
    .testimonials { background: var(--bg-2); overflow: hidden; }

    .testimonials-track {
      display: flex;
      gap: 24px;
      animation: marqueeAnim 30s linear infinite;
      width: max-content;
      margin-top: 64px;
    }

    .testimonials:hover .testimonials-track { animation-play-state: paused; }
    @keyframes marqueeAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      padding: 32px;
      min-width: 360px;
      max-width: 360px;
      backdrop-filter: blur(10px);
      flex-shrink: 0;
    }

    .testimonial-stars { color: var(--brand-orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
    .author-name { font-weight: 600; font-size: 0.9rem; }
    .author-role { font-size: 0.75rem; color: var(--text-muted); }

    /* ─── CTA ─────────────────────────────────────────────────────────── */
    .cta-section { padding: 120px 0; }

    .cta-box {
      background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.1), rgba(6,182,212,0.08));
      border: 1px solid rgba(124,58,237,0.2);
      border-radius: var(--r-xl);
      padding: 80px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-box h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
    .cta-box p { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .cta-note { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); }

    /* ─── FOOTER ──────────────────────────────────────────────────────── */
    footer { border-top: 1px solid var(--border); padding: 60px 0 40px; position: relative; z-index: 1; }

    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
    .footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
    .footer-col h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; color: var(--text-primary); }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--text-primary); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

    .footer-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 0.7rem;
      color: var(--text-secondary);
      font-weight: 500;
      text-decoration: none;
    }

    .badge:hover { border-color: var(--brand-violet); color: var(--brand-violet); }

    /* ─── GLOW DIVIDER ────────────────────────────────────────────────── */
    .glow-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-purple), var(--brand-cyan), transparent); opacity: 0.4; }

    /* ─── SPLIT LAYOUT ────────────────────────────────────────────────── */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

    /* ─── COMPLIANCE GRID ─────────────────────────────────────────────── */
    .compliance-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

    .compliance-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all 0.2s;
    }

    .compliance-badge:hover { border-color: var(--brand-violet); color: var(--brand-violet); transform: translateY(-2px); }

    /* ─── SCROLL ANIMATIONS ───────────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
    .stagger.visible > *:nth-child(1) { transition-delay: 0s; }
    .stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
    .stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
    .stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
    .stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
    .stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
    .stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }
    .stagger.visible > *:nth-child(8) { transition-delay: 0.7s; }
    .stagger.visible > *:nth-child(9) { transition-delay: 0.8s; }
    .stagger.visible > *:nth-child(10) { transition-delay: 0.9s; }
    .stagger.visible > *:nth-child(11) { transition-delay: 1.0s; }
    .stagger.visible > *:nth-child(12) { transition-delay: 1.1s; }
    .stagger.visible > * { opacity: 1; transform: translateY(0); }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes rippleAnim { to { transform: scale(3); opacity: 0; } }

    /* ─── RESPONSIVE ──────────────────────────────────────────────────── */
    html, body { overflow-x: hidden; max-width: 100%; }

    @media (max-width: 980px) {
      .nav-toggle { display: flex; order: 2; }
      .theme-toggle { order: 3; }
      .nav-inner { gap: 8px; padding: 0 16px; }
      .nav-drawer {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        margin: 0;
        padding: 12px 16px 20px;
        background: var(--nav-bg);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        z-index: 1001;
      }
      .nav-drawer.open { display: flex; }
      .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
      .nav-links a { padding: 12px 14px; }
      .nav-actions { flex-direction: column; width: 100%; }
      .nav-actions .btn { width: 100%; justify-content: center; }
      .ticker-bar { margin-top: 64px; }
      .hero {
        padding: 20px 0 28px;
        min-height: calc(100dvh - 100px);
        max-height: none;
        text-align: center;
      }
      .hero-grid { grid-template-columns: 1fr; gap: 20px; }
      .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 12px; }
      .hero-sub { margin: 0 auto 16px; }
      .hero-actions, .hero-stats { justify-content: center; margin-bottom: 16px; gap: 10px; }
      .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; padding: 14px 20px; }
      .hero-visual { margin-top: 8px; }
      .phone-mockup { width: min(220px, 70vw); height: 380px; }
      .section { padding: 64px 0; }
      .feature-card.featured { grid-column: span 1; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .steps-container::before { display: none; }
      .float-card { display: none; }
      .metrics-grid { grid-template-columns: repeat(2, 1fr); }
      .split { grid-template-columns: 1fr; gap: 32px; }
      .store { padding: 28px 0 64px; }
      .store h1 { font-size: 1.9rem; }
      .store-shot { min-height: 240px; }
    }

    @media (max-width: 600px) {
      .container { padding: 0 16px; }
      .hero-stats { gap: 16px; }
      .stat-number { font-size: 1.45rem; }
      .stat-divider { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .cta-box { padding: 36px 18px; }
      .pricing-card.popular { transform: scale(1); }
      .btn-xl, .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
    }

    /* ─── SAMPLE STORE (live checkout) ───────────────────────────────── */
    .store {
      position: relative;
      z-index: 1;
      padding: 48px 0 96px;
    }
    .store .banner {
      border-radius: var(--r-md);
      padding: 14px 18px;
      margin: 0 0 20px;
      font-size: 0.92rem;
    }
    .store .banner.ok { background: rgba(16,185,129,0.12); color: #059669; }
    .store .banner.bad { background: rgba(239,68,68,0.12); color: #dc2626; }
    .store .banner.warn { background: rgba(245,158,11,0.14); color: #b45309; }
    [data-theme="dark"] .store .banner.ok { color: #34d399; }
    [data-theme="dark"] .store .banner.bad { color: #f87171; }
    [data-theme="dark"] .store .banner.warn { color: #fbbf24; }

    .store-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--brand-violet);
      margin-bottom: 10px;
    }
    .store-kicker .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--brand-green); box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
    }
    .store h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.1rem);
      letter-spacing: -0.04em; line-height: 1.1;
      margin-bottom: 12px;
    }
    .store .lede { color: var(--text-secondary); max-width: 560px; margin-bottom: 28px; }

    .store-hero {
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: stretch;
    }
    .store-shot {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid; place-items: center;
      min-height: 420px;
      position: relative;
    }
    .store-shot img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .store-shot .price-pill {
      position: absolute; left: 18px; bottom: 18px;
      background: var(--grad-primary); color: #fff;
      font-family: var(--font-display); font-weight: 800;
      padding: 10px 16px; border-radius: var(--r-pill);
      box-shadow: 0 10px 24px rgba(124,58,237,0.35);
    }
    .store-buy {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow);
      padding: 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .store-buy h2 { font-family: var(--font-display); font-size: 1.65rem; letter-spacing: -0.03em; }
    .store-buy .muted { color: var(--text-secondary); font-size: 0.95rem; }
    .store-price {
      font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em;
    }
    .store-price small { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); margin-left: 8px; }
    .store-specs { list-style: none; display: grid; gap: 8px; margin: 8px 0 4px; }
    .store-specs li {
      display: flex; gap: 10px; align-items: center;
      color: var(--text-secondary); font-size: 0.92rem;
    }
    .store-specs li::before {
      content: ""; width: 7px; height: 7px; border-radius: 50%;
      background: var(--grad-primary); flex: 0 0 7px;
    }
    .store-buy input {
      width: 100%; padding: 12px 14px; border-radius: 12px;
      border: 1px solid var(--border); background: var(--bg); color: var(--text-primary);
      font: inherit;
    }
    .store-buy .btn { justify-content: center; width: 100%; }
    .store-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .store-chips span {
      font-size: 0.75rem; font-weight: 600; padding: 6px 10px; border-radius: var(--r-pill);
      background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary);
    }
    .store-chips span.ok { color: #059669; border-color: rgba(16,185,129,0.3); }
    .store-chips span.bad { color: #dc2626; border-color: rgba(239,68,68,0.3); }

    .store-flow {
      margin-top: 40px;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    }
    .store-step {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: var(--r-lg); padding: 18px 16px;
    }
    .store-step .n {
      font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
      color: var(--brand-violet); letter-spacing: 0.08em;
    }
    .store-step h3 { font-size: 1rem; margin: 6px 0 4px; font-family: var(--font-display); }
    .store-step p { color: var(--text-secondary); font-size: 0.88rem; }

    .pay-wrap {
      display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: start;
    }
    .pay-product {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow);
    }
    .pay-product img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .pay-product .body { padding: 18px 20px 22px; }
    .pay-product .sku { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
    .pay-checkout {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow);
    }
    .pay-checkout h2 { font-family: var(--font-display); margin-bottom: 8px; }
    .pay-checkout .muted { color: var(--text-secondary); font-size: 0.92rem; }
    .pay-checkout .mono { font-family: ui-monospace, Menlo, monospace; font-size: 0.85rem; }
    .upi-qr {
      width: 228px; height: 228px; margin: 16px auto; padding: 10px;
      background: #fff; border-radius: 16px;
    }
    .upi-qr img, .upi-qr canvas { display: block; width: 100% !important; height: 100% !important; }
    .pay-checkout form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin: 12px 0 6px; }
    .pay-checkout input {
      width: 100%; padding: 12px 14px; border-radius: 12px;
      border: 1px solid var(--border); background: var(--bg); color: var(--text-primary); font: inherit;
    }
    .pay-checkout .btn { margin-top: 12px; }
    .badge {
      display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px;
      font-size: 0.75rem; font-weight: 700; background: var(--surface);
    }
    .badge.ok { background: rgba(16,185,129,0.15); color: #059669; }
    .badge.warn { background: rgba(245,158,11,0.18); color: #b45309; }
    .badge.bad { background: rgba(239,68,68,0.15); color: #dc2626; }

    @media (max-width: 900px) {
      .store-hero, .pay-wrap, .store-flow { grid-template-columns: 1fr; }
      .store-shot { min-height: 280px; }
    }
  </style>
