/* ══════════ RESET & BASE ══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ══════════ LANDING PAGE STYLES ══════════ */
.lp {
  --purple: #6d28d9;
  --purple-m: #7c3aed;
  --purple-l: #ede9fe;
  --purple-xl: #f5f3ff;
  --cyan: #0891b2;
  --cyan-l: #e0f2fe;
  --cyan-m: #0ea5e9;
  --green: #059669;
  --green-l: #d1fae5;
  --amber: #d97706;
  --amber-l: #fef3c7;
  --coral: #e11d48;
  --grad: linear-gradient(135deg, #6d28d9 0%, #0891b2 100%);
  --grad-soft: linear-gradient(135deg, rgba(109,40,217,0.12) 0%, rgba(8,145,178,0.12) 100%);
  --lp-text: #0d0d1a;
  --lp-text2: #475569;
  --lp-text3: #94a3b8;
  --lp-border: #e2e8f0;
  --lp-bg: #f8f7ff;
  --lp-card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 48px rgba(109,40,217,0.14), 0 8px 20px rgba(0,0,0,0.06);

  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

/* ══════════ NAV ══════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.lp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-nav-logo img, .lp-nav-logo svg { height: 26px; width: auto; display: block; }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  list-style: none;
}
.lp-nav-links a {
  color: var(--lp-text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--purple); }
.lp-nav-right { display: flex; align-items: center; gap: 10px; }
.lp-nav-right .lp-btn-ghost { padding: 10px 18px; font-size: 13px; }
.lp-nav-right .lp-btn-grad  { padding: 10px 28px;  font-size: 13px; }

.lp-btn-ghost {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: transparent;
  color: var(--lp-text2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-xl);
}
.lp-btn-grad {
  padding: 13px 26px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 0 rgba(124,58,237,0);
}
.lp-btn-grad:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
}

/* ══════════ HERO ══════════ */
.lp-hero {
  min-height: 100vh;
  padding: 130px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: var(--lp-bg);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-blob {
  position: absolute;
  top: 30%; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 6px;
  border-radius: 100px;
  background: var(--purple-l);
  border: 1px solid rgba(109,40,217,0.2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-m);
  margin-bottom: 26px;
}
.lp-badge-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}
.lp-hero-h1 {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 20px;
}
.lp-hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--lp-text2);
  max-width: 480px;
  margin-bottom: 38px;
  line-height: 1.75;
}
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}
.lp-btn-hero-main {
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(109,40,217,0.3);
}
.lp-btn-hero-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(109,40,217,0.4);
}
.lp-btn-hero-sec {
  padding: 13px 24px;
  border-radius: 12px;
  border: 1.5px solid var(--lp-border);
  background: #fff;
  color: var(--lp-text2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lp-btn-hero-sec:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-xl);
}
.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: var(--lp-text3);
  flex-wrap: wrap;
}
.lp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-hero-trust-item iconify-icon {
  color: var(--green);
  font-size: 15px;
}

/* ══════════ PRODUCT MOCKUP ══════════ */
.lp-hero-visual {
  position: relative;
  height: 590px;
}
.hero-glow {
  position: absolute;
  inset: -80px -50px;
  background:
    radial-gradient(ellipse 80% 65% at 75% 28%, rgba(109,40,217,.34) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 18% 72%, rgba(8,145,178,.26) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 55% 88%, rgba(109,40,217,.16) 0%, transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-visual::before { display: none; }
.lp-mock-window {
  position: absolute;
  border-radius: 18px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1;
}
.lp-mock-float { z-index: 2; }
.lp-mock-main {
  width: 100%;
  top: 0; right: 0;
  height: 486px;
  box-shadow:
    0 0 0 1px rgba(109,40,217,.10),
    0 4px 12px rgba(0,0,0,.05),
    0 22px 64px rgba(109,40,217,.26),
    0 44px 90px rgba(8,145,178,.12);
}
.lp-mock-titlebar {
  height: 42px;
  background: #f8fafc;
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.lp-mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.lp-mock-dot.r { background: #fc5f57; }
.lp-mock-dot.y { background: #fdbc2c; }
.lp-mock-dot.g { background: #25c940; }
.lp-mock-url {
  flex: 1;
  height: 24px;
  background: #eff2f7;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin: 0 12px;
  font-size: 11px;
  color: var(--lp-text3);
  font-family: monospace;
}
.lp-mock-body {
  display: grid;
  grid-template-columns: 188px 1fr;
  height: calc(100% - 42px);
}
.lp-mock-sidebar {
  background: #f8fafc;
  border-right: 1px solid var(--lp-border);
  padding: 14px 10px;
}
.lp-mock-sidebar-logo { padding: 4px 8px 14px; }
.lp-mock-sidebar-logo img, .lp-mock-sidebar-logo svg { height: 18px; }
.lp-mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--lp-text3);
  margin-bottom: 2px;
  cursor: default;
  font-weight: 500;
}
.lp-mock-nav-item.active {
  background: var(--purple-l);
  color: var(--purple);
  font-weight: 600;
}
.lp-mock-credits {
  margin-top: 14px;
  padding: 10px;
  background: var(--lp-card);
  border-radius: 10px;
  border: 1px solid var(--lp-border);
}
.lp-credits-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--lp-text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.lp-credits-bar {
  height: 5px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}
.lp-credits-fill {
  width: 62%;
  height: 100%;
  background: var(--grad);
  border-radius: 10px;
}
.lp-credits-val { font-size: 10px; color: var(--lp-text3); }
.lp-mock-content {
  padding: 16px;
  overflow: hidden;
  background: #fafbff;
}
.lp-mock-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.lp-mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.lp-mock-kpi {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 10px 10px 8px;
}
.lp-mock-kpi-label { font-size: 9px; color: var(--lp-text3); margin-bottom: 4px; }
.lp-mock-kpi-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1;
}
.lp-mock-kpi-delta { font-size: 9px; color: var(--green); margin-top: 3px; font-weight: 600; }
.lp-mock-chart-box {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.lp-mock-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--lp-text3);
  margin-bottom: 10px;
  font-weight: 600;
}
.lp-mock-chart-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--green-l);
  color: var(--green);
}
/* SVG line/area chart */
.lp-mock-svg-chart { width: 100%; height: 66px; display: block; overflow: visible; }
@keyframes lp-drawLine {
  from { stroke-dashoffset: 520; }
  to   { stroke-dashoffset: 0; }
}
@keyframes lp-fadeArea {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lp-chart-line-path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: lp-drawLine 1.5s cubic-bezier(.4,0,.2,1) .25s both;
}
.lp-chart-area-path { opacity: 0; animation: lp-fadeArea .9s ease .9s both; }
.lp-chart-end-dot { animation: lp-fadeArea .4s ease 1.6s both; opacity: 0; }
.lp-mock-pages { display: flex; flex-direction: column; gap: 6px; }
.lp-mock-page-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 9px;
  padding: 8px 10px;
}
.lp-mock-page-thumb {
  width: 30px; height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
  border: 1px solid var(--lp-border);
}
.lp-mock-page-name { font-size: 10.5px; font-weight: 600; color: var(--lp-text); flex: 1; }
.lp-mock-page-cvr { font-size: 10px; color: var(--lp-text3); }
.lp-mock-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.lp-mock-pill.live { background: #d1fae5; color: #065f46; }
.lp-mock-pill.test { background: #e0f2fe; color: #0369a1; }

/* Floating cards */
.lp-mock-float {
  position: absolute;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.lp-mock-float-ai {
  bottom: -28px; left: -44px;
  width: 230px;
  padding: 14px;
}
.lp-ai-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}
.lp-ai-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}
.lp-ai-bubble {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10.5px;
  line-height: 1.5;
  margin-bottom: 7px;
}
.lp-ai-bubble.user {
  background: #f1f5f9;
  color: var(--lp-text2);
  border-bottom-left-radius: 3px;
}
.lp-ai-bubble.bot {
  background: var(--purple-l);
  color: var(--purple);
  font-weight: 500;
  border-bottom-right-radius: 3px;
}
.lp-ai-cursor {
  display: inline-block;
  width: 6px; height: 11px;
  background: var(--purple);
  border-radius: 1px;
  vertical-align: middle;
  margin-left: 2px;
  animation: lp-blink-c 1.2s step-end infinite;
}
@keyframes lp-blink-c {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.lp-mock-float-ap {
  top: 50px; left: -52px;
  width: 170px;
  padding: 12px;
}
.lp-ap-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--lp-text3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.lp-ap-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.lp-ap-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: lp-pulse-g 2s infinite;
}
@keyframes lp-pulse-g {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(5,150,105,0); }
}
.lp-ap-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--lp-text2);
  padding: 5px 0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-ap-row:last-child { border: none; }

/* ── Floating cards – glassmorphism ── */
.mock-float {
  position: absolute;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.96);
  box-shadow:
    inset 0 1px 0 #fff,
    0 2px 4px rgba(0,0,0,.04),
    0 8px 32px rgba(109,40,217,.18),
    0 20px 50px rgba(0,0,0,.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 10;
}
@keyframes heroFloatUp {
  from { opacity: 0; transform: translateY(18px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFloatRight {
  from { opacity: 0; transform: translateX(18px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.mock-float-win {
  bottom: 112px; right: -18px;
  width: 194px;
  padding: 14px 15px;
  animation: heroFloatRight .75s cubic-bezier(.34,1.3,.64,1) .9s both;
}
/* AI Studio float */
.mock-float-ai {
  bottom: -16px; left: -52px;
  width: 256px;
  padding: 16px;
  animation: heroFloatUp .75s cubic-bezier(.34,1.3,.64,1) .55s both;
}
.ai-header {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; color: var(--lp-text); margin-bottom: 10px;
}
.ai-avatar {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; flex-shrink: 0;
}
.ai-status-pill {
  margin-left: auto; font-size: 9px; font-weight: 700;
  background: var(--purple-l); color: var(--purple);
  padding: 2px 7px; border-radius: 100px;
}
.ai-bubble {
  border-radius: 8px; padding: 8px 10px;
  font-size: 10.5px; line-height: 1.5; margin-bottom: 7px;
}
.ai-bubble.user { background: #f1f5f9; color: var(--lp-text2); border-bottom-left-radius: 3px; }
.ai-bubble.bot { background: var(--purple-l); color: var(--purple); font-weight: 500; border-bottom-right-radius: 3px; }
.ai-cursor {
  display: inline-block; width: 6px; height: 11px;
  background: var(--purple); border-radius: 1px; vertical-align: middle; margin-left: 2px;
  animation: lp-blink-c 1.2s step-end infinite;
}
.ai-gen-status {
  display: flex; align-items: center; gap: 7px;
  padding-top: 8px; border-top: 1px solid var(--lp-border);
  font-size: 10px; color: var(--lp-text3); margin-top: 2px;
}
.ai-gen-dots { display: flex; gap: 3px; align-items: center; }
.ai-gen-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--purple);
  animation: ai-dot-bounce 1.2s ease infinite;
}
.ai-gen-dot:nth-child(2) { animation-delay: .2s; }
.ai-gen-dot:nth-child(3) { animation-delay: .4s; }
@keyframes ai-dot-bounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%       { transform: translateY(-3px); opacity: 1; }
}
/* Win notification */
.win-stripe { height: 3px; border-radius: 3px; background: linear-gradient(90deg, #059669, #0EA5E9); margin-bottom: 12px; }
.win-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.win-icon-box {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.win-title { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: var(--lp-text); }
.win-sub { font-size: 10.5px; color: var(--lp-text3); margin-top: 2px; }
.win-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding-top: 9px; border-top: 1px solid var(--lp-border); }
.win-num { text-align: center; }
.win-num-val {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
}
.win-num-val.g { color: var(--green); }
.win-num-val.c { color: var(--cyan); }
.win-num-lbl { font-size: 9.5px; color: var(--lp-text3); margin-top: 3px; }
/* Autopilot float */
.mock-float-ap {
  top: 42px; left: -58px; width: 182px; padding: 14px;
  animation: heroFloatUp .75s cubic-bezier(.34,1.3,.64,1) .25s both;
}
.ap-header { font-size: 9px; font-weight: 700; color: var(--lp-text3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.ap-live { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.ap-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: lp-pulse-g 2s infinite; }
.ap-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; color: var(--lp-text2); padding: 5px 0;
  border-bottom: 1px solid var(--lp-border);
}
.ap-row:last-child { border: none; }
.ap-row iconify-icon { color: var(--cyan); font-size: 12px; flex-shrink: 0; }

/* ══════════ AUDIENCE BAR ══════════ */
.lp-audience-bar {
  padding: 16px 5vw;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: #fff;
}
.lp-audience-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-audience-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  border-right: 1px solid var(--lp-border);
}
.lp-audience-item:first-child { padding-left: 20px; }
.lp-audience-item:last-child { border-right: none; }
.lp-audience-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.75;
}
.lp-audience-icon.c1 { background: var(--purple-l); color: var(--purple); }
.lp-audience-icon.c2 { background: var(--cyan-l); color: var(--cyan); }
.lp-audience-icon.c3 { background: var(--green-l); color: var(--green); }
.lp-audience-icon.c4 { background: var(--amber-l); color: var(--amber); }
.lp-audience-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--lp-text3);
  line-height: 1.3;
}

/* ══════════ STATS ══════════ */
.lp-stats-section {
  padding: 80px 5vw;
  background: var(--lp-bg);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin: 0 auto;
  gap: 2px;
}
.lp-stat-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lp-stat-label { font-size: 13.5px; color: var(--lp-text3); margin-top: 8px; }

/* ══════════ SECTION LABELS ══════════ */
.lp-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 16px;
}
.lp-section-sub {
  font-size: 17px;
  color: var(--lp-text2);
  line-height: 1.75;
  max-width: 540px;
}

/* ══════════ HOW IT WORKS ══════════ */
.lp-how-section {
  padding: 100px 5vw;
  background: #fff;
}
.lp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.lp-how-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.lp-how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.lp-how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  border-radius: 20px 20px 0 0;
}
.lp-how-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-how-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(109,40,217,0.25);
}
.lp-how-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
}
.lp-how-desc { font-size: 15px; color: var(--lp-text2); line-height: 1.7; }
.lp-how-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  background: var(--purple-l);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ══════════ AUTOPILOT ══════════ */
.lp-autopilot-section {
  padding: 100px 5vw;
  background: var(--lp-bg);
}
.lp-auto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-auto-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--lp-border);
  margin-bottom: 14px;
  transition: all 0.2s;
}
.lp-auto-feature:hover {
  border-color: rgba(109,40,217,0.2);
  box-shadow: 0 4px 20px rgba(109,40,217,0.08);
}
.lp-auto-feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.lp-auto-feat-icon.green { background: var(--green-l); color: var(--green); }
.lp-auto-feat-icon.cyan  { background: var(--cyan-l);  color: var(--cyan);  }
.lp-auto-feat-icon.purple{ background: var(--purple-l);color: var(--purple);}
.lp-auto-feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 6px;
}
.lp-auto-feat-desc { font-size: 14px; color: var(--lp-text2); line-height: 1.65; }

/* Autopilot log */
.lp-ap-log-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-ap-log-header {
  padding: 14px 18px;
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-ap-log-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-text);
  flex: 1;
}
.lp-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--green-l);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.lp-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: lp-pulse-g 2s infinite;
}
.lp-ap-log-body { padding: 18px; }
.lp-log-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--lp-bg);
  font-size: 12.5px;
  color: var(--lp-text2);
  line-height: 1.5;
  border-left: 3px solid transparent;
}
.lp-log-entry.obs { border-left-color: var(--cyan); }
.lp-log-entry.thn { border-left-color: #f59e0b; }
.lp-log-entry.act { border-left-color: var(--green); }
.lp-log-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-log-entry.obs .lp-log-tag { background: var(--cyan-l); color: var(--cyan); }
.lp-log-entry.thn .lp-log-tag { background: #fef3c7; color: #92400e; }
.lp-log-entry.act .lp-log-tag { background: var(--green-l); color: var(--green); }
.lp-ap-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.lp-ap-kpi-box { background: var(--lp-bg); border-radius: 10px; padding: 12px; text-align: center; }
.lp-ap-kpi-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-ap-kpi-lbl { font-size: 10px; color: var(--lp-text3); margin-top: 2px; }

/* ══════════ FEATURES GRID ══════════ */
.lp-features-section {
  padding: 100px 5vw;
  background: #fff;
}
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-feat-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.25s;
}
.lp-feat-card:hover {
  background: #fff;
  border-color: rgba(109,40,217,0.18);
  box-shadow: 0 8px 32px rgba(109,40,217,0.1);
  transform: translateY(-4px);
}
.lp-feat-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.lp-feat-icon-wrap.c1 { background: var(--purple-l); color: var(--purple); }
.lp-feat-icon-wrap.c2 { background: var(--cyan-l);   color: var(--cyan);   }
.lp-feat-icon-wrap.c3 { background: var(--green-l);  color: var(--green);  }
.lp-feat-icon-wrap.c4 { background: #fee2e2; color: #dc2626; }
.lp-feat-icon-wrap.c5 { background: #fef3c7; color: var(--amber); }
.lp-feat-icon-wrap.c6 { background: #f3e8ff; color: var(--purple-m); }
.lp-feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}
.lp-feat-desc { font-size: 14px; color: var(--lp-text2); line-height: 1.7; }

/* ══════════ EARLY ACCESS ══════════ */
.lp-early-section {
  padding: 100px 5vw;
  background: var(--lp-bg);
}
.lp-early-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.lp-early-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.25s;
}
.lp-early-card:hover {
  border-color: rgba(109,40,217,0.2);
  box-shadow: 0 8px 32px rgba(109,40,217,0.08);
  transform: translateY(-4px);
}
.lp-early-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.lp-early-card-icon.c1 { background: var(--purple-l); color: var(--purple); }
.lp-early-card-icon.c2 { background: var(--cyan-l);   color: var(--cyan);   }
.lp-early-card-icon.c3 { background: var(--green-l);  color: var(--green);  }
.lp-early-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}
.lp-early-card-desc { font-size: 14px; color: var(--lp-text2); line-height: 1.7; }

/* ══════════ CTA ══════════ */
.lp-cta-section {
  padding: 100px 5vw;
  text-align: center;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.lp-cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.lp-cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.lp-cta-title {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.lp-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.lp-btn-cta-white {
  padding: 16px 40px;
  border-radius: 14px;
  background: #fff;
  color: var(--purple);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.02em;
  transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.lp-btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  background: #f5f3ff;
}
.lp-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

/* ══════════ FOOTER ══════════ */
.lp-footer {
  padding: 32px 5vw;
  background: #fff;
  border-top: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lp-footer-logo-wrap a { display: inline-block; text-decoration: none; }
.lp-footer-logo-wrap img, .lp-footer-logo-wrap svg { height: 22px; display: block; }
.lp-footer-copy { font-size: 13px; color: var(--lp-text3); }
.lp-footer-socials { display: flex; align-items: center; gap: 14px; }
.lp-footer-socials a {
  color: var(--lp-text3);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.lp-footer-socials a:hover { color: var(--purple); }
.lp-footer-right { display: flex; align-items: center; gap: 20px; }

/* ══════════ SCROLL REVEAL ══════════ */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.lp-reveal.visible {
  opacity: 1;
  transform: none;
}
.lp-d1 { transition-delay: 0.1s; }
.lp-d2 { transition-delay: 0.2s; }
.lp-d3 { transition-delay: 0.3s; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .lp-hero, .lp-auto-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { display: none; }
  .lp-how-grid, .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-nav-links { display: none; }
  .lp-early-grid { grid-template-columns: 1fr; }
}
