@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');


/* ===== DESIGN TOKENS ===== */
:root {
  --bg-body: #050810;
  --bg-card: #0D121C;
  --bg-card-hover: #111827;
  --bg-surface: #141A27;
  --border-color: #1E293B;
  --border-hover: #334155;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-blue: #3B82F6;
  --accent-blue-light: #60A5FA;
  --accent-blue-glow: rgba(59, 130, 246, 0.15);
  --accent-green: #22C55E;
  --accent-red: #EF4444;
  --accent-yellow: #EAB308;
  --gradient-primary: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-hero: linear-gradient(160deg, #050810 0%, #0C1220 40%, #0A1628 70%, #050810 100%);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
  --shadow-glow-intense: 0 0 50px rgba(59, 130, 246, 0.3);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ===== BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Jura', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

input, select, textarea {
  font-size: 16px; /* prevent iOS zoom */
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue-light); }

/* ===== UTILITIES ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(13, 18, 28, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
}

.glass-strong {
  background: rgba(13, 18, 28, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
}

.glow { box-shadow: var(--shadow-glow); }
.glow-intense { box-shadow: var(--shadow-glow-intense); }

.bg-gradient-hero { background: var(--gradient-hero); }

/* ===== CARD COMPONENT ===== */
.sel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.sel-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ===== BUTTON COMPONENTS ===== */
.sel-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
}
.sel-btn-primary:hover {
  background: #2563EB;
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
  transform: translateY(-1px);
}

.sel-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
}
.sel-btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: var(--accent-blue-glow);
}

/* ===== BADGE ===== */
.sel-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sel-badge-blue {
  background: rgba(59,130,246,0.15);
  color: var(--accent-blue-light);
  border: 1px solid rgba(59,130,246,0.2);
}
.sel-badge-yellow {
  background: rgba(234,179,8,0.15);
  color: #FBBF24;
  border: 1px solid rgba(234,179,8,0.2);
}
.sel-badge-green {
  background: rgba(34,197,94,0.15);
  color: #4ADE80;
  border: 1px solid rgba(34,197,94,0.2);
}

/* ===== SECTION HEADING ===== */
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-heading p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== NAVBAR SHARED ===== */
.sel-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
}

/* ===== ACCORDION ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-content.open {
  max-height: 500px;
}
.accordion-trigger svg.accordion-arrow {
  transition: transform 0.3s ease;
}
.accordion-trigger.open svg.accordion-arrow,
.accordion-arrow.rotate-180 {
  transform: rotate(180deg);
}

/* ===== PAYMENT ICONS ===== */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition-base);
}
.payment-icons:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ===== PAGE WRAPPER (for static pages) ===== */
.page-wrapper {
  padding-top: 88px;
  padding-bottom: 3rem;
  min-height: 100vh;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.2); }
  50% { box-shadow: 0 0 40px rgba(59,130,246,0.4); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* ===== STAT COUNTER ===== */
.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
































    :root {
      --bg: #05070f;
      --bg2: #080c18;
      --card: #0c1120;
      --surface: #111827;
      --blue: #3b82f6;
      --blue-dim: #1d4ed8;
      --cyan: #22d3ee;
      --amber: #f59e0b;
      --green: #22c55e;
      --muted: #64748b;
      --fg: #e2e8f0;
      --fg-dim: #94a3b8;
      --border: #1e293b;
      --border2: #1a2540;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,h2,h3 { font-family: 'Syne', sans-serif; line-height: 1.1; }

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

    /* ── UTILITY ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 120px 0; }
    .section-sm { padding: 80px 0; }

    .gradient-text {
      background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .gradient-text-amber {
      background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 10px;
      font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px;
      cursor: pointer; border: none; transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: #fff;
      box-shadow: 0 0 30px rgba(59,130,246,0.25);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(59,130,246,0.4); }

    .btn-outline {
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--blue); color: #60a5fa; }

    .btn-ghost {
      background: rgba(255,255,255,0.05);
      color: var(--fg);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.1); }

    /* ── BADGE ── */
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 999px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .badge-blue { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
    .badge-amber { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
    .badge-green { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
    .badge-purple { background: rgba(167,139,250,0.1); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.2); }

    /* ── CARD ── */
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
    }
    .card-glow:hover {
      border-color: rgba(59,130,246,0.3);
      box-shadow: 0 0 40px rgba(59,130,246,0.08);
      transition: all 0.3s;
    }

    /* ────────────────────────────────────────
       NAVBAR
    ──────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 16px 24px;
      background: rgba(5,7,15,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .navbar-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px;
    }
    .nav-logo img { height: 36px; border-radius: 8px; }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
    }
    .nav-links a {
      font-size: 14px; color: var(--fg-dim);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--fg); }
    .nav-ctas { display: flex; align-items: center; gap: 10px; }

    /* Mobile nav */
    .nav-mobile-btn {
      display: none; background: none; border: none; color: var(--fg); cursor: pointer;
      padding: 6px;
    }
    .mobile-menu {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(8,12,24,0.98); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 24px;
      flex-direction: column; gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: var(--fg-dim); font-size: 15px; }

    @media(max-width:900px){
      .nav-links,.nav-ctas { display: none; }
      .nav-mobile-btn { display: block; }
    }

    /* ────────────────────────────────────────
       HERO
    ──────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 120px 24px 80px;
    }

    /* Noise texture overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.4;
      pointer-events: none; z-index: 1;
    }

    /* Grid lines */
    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }

    /* Orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
    }
    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
      top: -100px; left: -100px; z-index: 0;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 70%);
      bottom: 0; right: 0; z-index: 0;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
      top: 50%; left: 60%; z-index: 0;
    }

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

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 28px;
      padding: 8px 16px; border-radius: 999px;
      background: rgba(59,130,246,0.08);
      border: 1px solid rgba(59,130,246,0.2);
      font-size: 13px; font-weight: 500; color: #60a5fa;
      letter-spacing: 0.04em;
    }
    .hero-eyebrow span.dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #3b82f6;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 78px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      line-height: 1.05;
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--fg-dim);
      max-width: 620px; margin: 0 auto 40px;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      flex-wrap: wrap; margin-bottom: 60px;
    }

    .hero-proof {
      display: flex; align-items: center; justify-content: center; gap: 24px;
      flex-wrap: wrap;
    }
    .hero-proof-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--fg-dim);
    }
    .hero-proof-item i { color: #4ade80; font-size: 12px; }

    /* Platform logos scroll */
    .platform-strip {
      padding: 32px 0;
      position: relative; overflow: hidden;
      background: linear-gradient(180deg, transparent, rgba(59,130,246,0.03), transparent);
    }
    .platform-strip::before,
    .platform-strip::after {
      content: ''; position: absolute; top: 0; width: 200px; height: 100%; z-index: 1;
    }
    .platform-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
    .platform-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

    .platform-track {
      display: flex; gap: 48px; align-items: center;
      animation: scroll-track 20s linear infinite;
      width: max-content;
    }
    @keyframes scroll-track {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .platform-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 15px; font-weight: 500; color: var(--muted);
      white-space: nowrap;
    }
    .platform-item i { font-size: 20px; }

    /* ────────────────────────────────────────
       STATS BAR
    ──────────────────────────────────────── */
    .stats-bar {
      padding: 60px 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 40px; max-width: 900px; margin: 0 auto;
    }
    @media(max-width:700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

    .stat { text-align: center; }
    .stat-num {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(32px,4vw,48px);
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #60a5fa, #22d3ee);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-label {
      font-size: 13px; color: var(--fg-dim); margin-top: 6px;
      line-height: 1.4;
    }

    /* ────────────────────────────────────────
       PROBLEM / SOLUTION
    ──────────────────────────────────────── */
    .problem-section { background: var(--bg); }

    .section-label {
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 16px;
    }

    .section-heading h2 {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800; letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .section-heading p {
      font-size: 17px; color: var(--fg-dim);
      max-width: 560px;
    }
    .section-heading.center { text-align: center; }
    .section-heading.center p { margin: 0 auto; }

    .pain-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
      margin-top: 60px;
    }
    @media(max-width:800px) { .pain-grid { grid-template-columns: 1fr; } }

    .pain-card {
      padding: 28px; border-radius: 14px;
      background: rgba(239,68,68,0.04);
      border: 1px solid rgba(239,68,68,0.12);
    }
    .pain-card .icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(239,68,68,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      color: #f87171;
    }
    .pain-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
    .pain-card p { font-size: 13px; color: var(--fg-dim); line-height: 1.6; }

    /* Arrow */
    .transition-arrow {
      text-align: center; padding: 60px 0;
      position: relative;
    }
    .transition-arrow .arrow-line {
      width: 1px; height: 80px; background: linear-gradient(#ef4444, #3b82f6);
      margin: 0 auto 16px;
    }
    .transition-arrow p {
      font-family: 'Syne',sans-serif; font-weight: 700; font-size: 13px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue);
    }

    .solution-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 40px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
    }
    @media(max-width:800px) { .solution-card { grid-template-columns: 1fr; } }

    .solution-card h3 {
      font-size: clamp(24px,3vw,38px); font-weight: 800;
      letter-spacing: -0.03em; margin-bottom: 20px;
    }
    .solution-card p { color: var(--fg-dim); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }

    .check-list { display: flex; flex-direction: column; gap: 12px; }
    .check-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px;
    }
    .check-item i { color: #4ade80; margin-top: 2px; flex-shrink: 0; }

    /* Quality showcase */
    .quality-proof {
      background: var(--surface); border-radius: 14px; padding: 24px;
    }
    .quality-proof .label {
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--muted); margin-bottom: 16px;
      display: flex; align-items: center; gap: 6px;
    }
    .quality-proof .label::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: #22c55e; display: inline-block;
      animation: blink 1.5s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

    .quality-samples {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .quality-sample {
      border-radius: 10px; overflow: hidden;
      background: var(--card);
      aspect-ratio: 9/16;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      border: 1px solid var(--border);
    }
    .quality-sample video {
      width: 100%; height: 100%; object-fit: cover;
    }
    .quality-sample .overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 10px 8px;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      font-size: 10px; color: rgba(255,255,255,0.7);
    }
    .quality-badge {
      position: absolute; top: 8px; right: 8px;
      background: rgba(0,0,0,0.7); border-radius: 6px;
      padding: 3px 7px; font-size: 9px; color: #22d3ee;
      font-weight: 600; letter-spacing: 0.05em;
    }

    /* ────────────────────────────────────────
       WHO IS IT FOR
    ──────────────────────────────────────── */
    .audience-section { background: var(--bg2); }

    .audience-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      margin-top: 60px;
    }
    @media(max-width:700px) { .audience-grid { grid-template-columns: 1fr; } }

    .audience-card {
      border-radius: 20px; padding: 40px;
      position: relative; overflow: hidden;
    }

    .audience-card.primary {
      background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(29,78,216,0.05));
      border: 1px solid rgba(59,130,246,0.25);
    }
    .audience-card.secondary {
      background: rgba(167,139,250,0.05);
      border: 1px solid rgba(167,139,250,0.15);
    }

    .audience-card .priority-tag {
      position: absolute; top: 24px; right: 24px;
    }

    .audience-card h3 {
      font-size: 24px; font-weight: 800; margin-bottom: 12px;
    }
    .audience-card .desc {
      color: var(--fg-dim); font-size: 14px; margin-bottom: 24px; line-height: 1.7;
    }

    .use-cases { display: flex; flex-direction: column; gap: 10px; }
    .use-case {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: var(--fg-dim);
      padding: 10px 14px;
      background: rgba(255,255,255,0.04); border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .use-case i { color: #60a5fa; margin-top: 1px; flex-shrink: 0; font-size: 12px; }

    /* ────────────────────────────────────────
       CONTENT ENGINE SHOWCASE
    ──────────────────────────────────────── */
    .engine-section { background: var(--bg); }

    .engine-layout {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center; margin-top: 60px;
    }
    @media(max-width:900px) { .engine-layout { grid-template-columns: 1fr; gap: 48px; } }

    /* Reel mock */
    .reel-device {
      max-width: 280px; margin: 0 auto;
      border-radius: 36px;
      border: 2px solid rgba(255,255,255,0.1);
      overflow: hidden;
      box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
      position: relative;
      background: #000;
    }
    .reel-device::before {
      content: '';
      position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
      width: 60px; height: 4px; border-radius: 2px;
      background: rgba(255,255,255,0.2); z-index: 10;
    }

    .reel-feed {
      height: 540px;
      overflow-y: scroll; overflow-x: hidden;
      scroll-snap-type: y mandatory;
    }
    .reel-feed::-webkit-scrollbar { display: none; }

    .reel-slide {
      height: 540px; scroll-snap-align: start;
      position: relative; background: #000;
    }
    .reel-slide video { width: 100%; height: 100%; object-fit: cover; }

    .reel-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(transparent 50%, rgba(0,0,0,0.85));
      pointer-events: none;
    }
    .reel-info {
      position: absolute; bottom: 60px; left: 16px; right: 56px; z-index: 2;
    }
    .reel-user {
      display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
    }
    .reel-user img { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); }
    .reel-user span { font-size: 12px; font-weight: 600; color: #fff; }
    .reel-caption { font-size: 11px; color: rgba(255,255,255,0.85); line-height: 1.4; }

    .reel-actions {
      position: absolute; right: 10px; bottom: 80px; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
    }
    .reel-action { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .reel-action i { font-size: 18px; color: #fff; }
    .reel-action span { font-size: 9px; color: rgba(255,255,255,0.8); }

    .reel-scroll-indicator {
      position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 3px;
    }
    .reel-scroll-indicator i { font-size: 14px; color: rgba(255,255,255,0.4); animation: bounce-down 1.5s infinite; }
    @keyframes bounce-down { 0%,100%{transform:translateY(0)}50%{transform:translateY(4px)} }

    /* Config panel */
    .config-panel { display: flex; flex-direction: column; gap: 16px; }

    .config-row {
      padding: 18px 20px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; transition: border-color 0.2s;
    }
    .config-row:hover { border-color: rgba(59,130,246,0.3); }
    .config-row-header {
      display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
    }
    .config-row-header i { color: var(--blue); font-size: 14px; width: 16px; }
    .config-row-header span { font-weight: 600; font-size: 14px; }
    .config-row p { font-size: 12px; color: var(--fg-dim); line-height: 1.5; padding-left: 26px; }

    /* ────────────────────────────────────────
       HOW IT WORKS
    ──────────────────────────────────────── */
    .how-section { background: var(--bg2); }

    .steps-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
      margin-top: 60px;
    }
    @media(max-width:800px) { .steps-grid { grid-template-columns: 1fr; } }

    .step {
      text-align: center; padding: 32px 24px;
    }

    .step-number {
      width: 56px; height: 56px; border-radius: 14px;
      background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Syne',sans-serif; font-weight: 800; font-size: 20px; color: #60a5fa;
    }
    .step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .step p { font-size: 13px; color: var(--fg-dim); line-height: 1.65; }

    /* ────────────────────────────────────────
       FEATURES TABLE
    ──────────────────────────────────────── */
    .features-section { background: var(--bg); }

    .tier-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0;
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
      margin-top: 60px;
    }
    @media(max-width:700px) { .tier-grid { display: none; } }

    .tier-header {
      padding: 24px 20px;
      background: var(--card);
      border-bottom: 1px solid var(--border);
    }
    .tier-header:not(:last-child) { border-right: 1px solid var(--border); }
    .tier-header .tier-name { font-family:'Syne',sans-serif; font-weight:700; font-size:15px; margin-bottom:4px; }
    .tier-header .tier-desc { font-size:11px; color:var(--fg-dim); line-height:1.5; }

    .feature-row {
      display: contents;
    }
    .feature-row > div {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
    }
    .feature-row > div:first-child { justify-content: flex-start; }
    .feature-row > div:not(:last-child) { border-right: 1px solid var(--border); }
    .feature-row > div:first-child {
      font-size: 13px; font-weight: 500; gap: 10px;
    }
    .feature-icon {
      width: 30px; height: 30px; border-radius: 7px;
      background: rgba(59,130,246,0.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .feature-icon i { font-size: 12px; color: var(--blue); }

    /* Mobile feature list */
    .features-mobile {
      display: none; flex-direction: column; gap: 12px; margin-top: 40px;
    }
    @media(max-width:700px) { .features-mobile { display: flex; } }

    .feature-card-mobile {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 20px;
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    }
    .feature-card-mobile .icon {
      width: 38px; height: 38px; border-radius: 9px;
      background: rgba(59,130,246,0.1);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .feature-card-mobile .icon i { font-size: 14px; color: var(--blue); }
    .feature-card-mobile span { font-size: 14px; font-weight: 500; }

    /* ────────────────────────────────────────
       VISION (Long-term teaser)
    ──────────────────────────────────────── */
    .vision-section { background: var(--bg2); }

    .vision-card {
      border-radius: 24px; padding: 64px;
      background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(34,211,238,0.04), rgba(167,139,250,0.05));
      border: 1px solid rgba(59,130,246,0.2);
      position: relative; overflow: hidden;
    }
    @media(max-width:700px) { .vision-card { padding: 36px 24px; } }

    .vision-card::before {
      content: '';
      position: absolute; top: -50%; right: -20%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
      pointer-events: none;
    }

    .vision-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center; position: relative; z-index: 1;
    }
    @media(max-width:800px) { .vision-grid { grid-template-columns: 1fr; gap: 40px; } }

    .vision-grid h3 {
      font-size: clamp(24px,3vw,38px); font-weight: 800;
      letter-spacing: -0.03em; margin-bottom: 16px;
    }
    .vision-grid p { color: var(--fg-dim); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }

    .vision-phases { display: flex; flex-direction: column; gap: 14px; }
    .vision-phase {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 16px 20px;
      background: rgba(0,0,0,0.3); border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .vision-phase .phase-num {
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne',sans-serif; font-weight: 700; font-size: 12px;
      flex-shrink: 0;
    }
    .phase-now .phase-num { background: rgba(59,130,246,0.2); color: #60a5fa; }
    .phase-next .phase-num { background: rgba(245,158,11,0.15); color: #fbbf24; }
    .phase-future .phase-num { background: rgba(167,139,250,0.15); color: #c4b5fd; }

    .vision-phase .phase-content h5 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
    .vision-phase .phase-content p { font-size: 12px; color: var(--fg-dim); line-height: 1.5; }

    /* ────────────────────────────────────────
       FAQ
    ──────────────────────────────────────── */
    .faq-section { background: var(--bg); }

    .faq-list { max-width: 720px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 10px; }

    .faq-item {
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
      overflow: hidden;
    }
    .faq-trigger {
      width: 100%; text-align: left;
      padding: 20px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      background: none; border: none; color: var(--fg); cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
      transition: background 0.2s;
    }
    .faq-trigger:hover { background: rgba(255,255,255,0.03); }
    .faq-trigger i { color: var(--muted); transition: transform 0.3s; flex-shrink:0; }
    .faq-trigger.open i { transform: rotate(180deg); color: var(--blue); }
    .faq-body {
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-body.open {
      max-height: 300px;
    }
    .faq-body p {
      padding: 0 24px 20px;
      font-size: 13px; color: var(--fg-dim); line-height: 1.7;
    }

    /* ────────────────────────────────────────
       CONTACT
    ──────────────────────────────────────── */
    .contact-section { background: var(--bg2); }

    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
      align-items: start; max-width: 900px; margin: 0 auto;
      padding-top: 60px;
    }
    @media(max-width:800px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

    .contact-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
    .contact-info p { color: var(--fg-dim); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }

    .contact-methods { display: flex; flex-direction: column; gap: 12px; }
    .contact-method {
      display: flex; align-items: center; gap: 12px;
      font-size: 14px; color: var(--fg-dim);
    }
    .contact-method i { color: var(--blue); width: 16px; }
    .contact-method a { color: var(--blue); }
    .contact-method a:hover { text-decoration: underline; }

    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 13px; color: var(--fg-dim); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 16px;
      font-size: 14px; color: var(--fg);
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--blue); }
    .form-group textarea { resize: none; }
    .form-group select option { background: var(--card); }

    /* ────────────────────────────────────────
       CTA SECTION
    ──────────────────────────────────────── */
    .cta-section {
      background: var(--bg);
      padding: 120px 24px;
    }
    .cta-box {
      max-width: 720px; margin: 0 auto; text-align: center;
      padding: 72px 48px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.05));
      border: 1px solid rgba(59,130,246,0.2);
      position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.15), transparent 60%);
      pointer-events: none;
    }
    .cta-box h2 {
      font-size: clamp(28px, 4vw, 48px); font-weight: 800;
      letter-spacing: -0.03em; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .cta-box p {
      color: var(--fg-dim); font-size: 16px; margin-bottom: 36px;
      position: relative; z-index: 1;
    }
    .cta-btns {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      position: relative; z-index: 1;
    }
    .cta-note {
      margin-top: 20px; font-size: 12px; color: var(--muted);
      position: relative; z-index: 1;
    }

    /* ────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 64px 24px 40px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
      margin-bottom: 48px;
    }
    @media(max-width:800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:500px) { .footer-grid { grid-template-columns: 1fr; } }

    .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .footer-brand img { height: 34px; border-radius: 8px; }
    .footer-brand span { font-family:'Syne',sans-serif; font-weight:800; font-size:16px; }

    .footer-tagline { font-size: 13px; color: var(--fg-dim); line-height: 1.6; }

    .footer-col h5 {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a { font-size: 13px; color: var(--fg-dim); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--fg); }

    .footer-social { display: flex; flex-direction: column; gap: 8px; }
    .footer-social a {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--fg-dim); transition: color 0.2s;
    }
    .footer-social a i { width: 14px; }
    .footer-social a:hover { color: var(--fg); }

    .footer-bottom {
      padding-top: 28px; border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom .copy { font-size: 12px; color: var(--muted); }
    .payment-icons { display: flex; gap: 12px; color: var(--muted); font-size: 18px; }

    /* ────────────────────────────────────────
       FLYING PROMO
    ──────────────────────────────────────── */
    .fly-container {
      position: fixed; top: 30%; right: -400px;
      display: flex; align-items: center; z-index: 99999;
      animation: flyAcross 8s ease-in-out forwards;
    }
    .fly-hero { width: 110px; animation: float-anim 1s ease-in-out infinite alternate; }
    .fly-banner {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white; padding: 10px 20px;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
      border-radius: 10px; margin-left: 10px; white-space: nowrap;
      box-shadow: 0 8px 32px rgba(59,130,246,0.4);
      position: relative;
    }
    .fly-banner::before {
      content: '';
      position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
      width: 0; height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-right: 12px solid #3b82f6;
    }
    @keyframes float-anim { from{transform:translateY(0)} to{transform:translateY(-10px)} }
    @keyframes flyAcross {
      0%{transform:translateX(0)}
      40%{transform:translateX(-55vw)}
      60%{transform:translateX(-70vw)}
      100%{transform:translateX(calc(-100vw - 400px))}
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Accordion */
    .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .accordion-content.open { max-height: 400px; }
    .accordion-arrow { transition: transform 0.3s; }
    .accordion-arrow.rotated { transform: rotate(180deg); }