/* =========================================================================
   Oikos — Landing page
   Self-contained, scoped under .lp so it never collides with the app shell.
   ========================================================================= */

.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

.lp {
  /* palette */
  --bg: #06080d;
  --bg-2: #0a0e16;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8eefb;
  --text-strong: #ffffff;
  --muted: #93a1ba;
  --muted-2: #5f6b82;

  --blue: #4f7cff;
  --purple: #8b5cf6;
  --cyan: #22d3ee;
  --orange: #ff7a45;
  --pink: #f472b6;

  --grad: linear-gradient(110deg, #6f9bff 0%, #a78bfa 45%, #22d3ee 100%);
  --grad-warm: linear-gradient(120deg, #ff8a4c, #f472b6 60%, #a78bfa);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}

.lp a { color: inherit; text-decoration: none; }
.lp img { display: block; max-width: 100%; }
.lp button { font: inherit; }

.lp-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Ambient background
   ========================================================================= */
.lp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(79, 124, 255, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(139, 92, 246, 0.10), transparent 55%),
    var(--bg);
}
.lp-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 72%);
}
.lp-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: lp-float 18s ease-in-out infinite;
}
.lp-aurora--1 { width: 520px; height: 520px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(79,124,255,0.45), transparent 70%); }
.lp-aurora--2 { width: 460px; height: 460px; top: 30%; left: -160px; background: radial-gradient(circle, rgba(139,92,246,0.40), transparent 70%); animation-delay: -6s; }
.lp-aurora--3 { width: 420px; height: 420px; bottom: -120px; right: 10%; background: radial-gradient(circle, rgba(34,211,238,0.28), transparent 70%); animation-delay: -11s; }
@keyframes lp-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -28px) scale(1.08); }
}
#lp-particles { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================================
   Nav
   ========================================================================= */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.lp-nav.is-stuck {
  padding: 10px 0;
  background: rgba(8, 11, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lp-brand { display: flex; align-items: center; }
.lp-brand-logo { height: 76px; width: auto; filter: drop-shadow(0 4px 16px rgba(124, 92, 246, 0.4)); transition: height 0.35s var(--ease); }
.lp-nav.is-stuck .lp-brand-logo { height: 62px; }
.lp-nav-links { display: flex; gap: 30px; }
.lp-nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
.lp-nav-links a:hover { color: var(--text-strong); }
.lp-nav-links a:hover::after { width: 100%; }
.lp-nav-cta { display: flex; align-items: center; gap: 12px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.lp-btn {
  --pad-y: 10px;
  --pad-x: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.lp-btn--lg { --pad-y: 15px; --pad-x: 26px; font-size: 16px; }
.lp-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-btn .lp-play { fill: currentColor; stroke: none; }
.lp-btn .lp-arrow { transition: transform 0.25s var(--ease); }
.lp-btn:hover .lp-arrow { transform: translateX(4px); }

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(120deg, #5b86ff, #8b5cf6 55%, #22d3ee 130%);
  background-size: 160% 160%;
  box-shadow: 0 10px 30px -8px rgba(91, 134, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: lp-sheen 6s ease infinite;
}
@keyframes lp-sheen { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(124, 92, 246, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3); }

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

.lp-btn--glass {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.lp-btn--glass:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* =========================================================================
   Hero
   ========================================================================= */
.lp-hero {
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 96px;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 11px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 26px;
}
.lp-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  animation: lp-pulse 2.2s infinite;
}
@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}
.lp-h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
  color: var(--text-strong);
}
.lp-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 34px;
}
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero-meta { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.lp-avatars { display: flex; }
.lp-avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: #fff;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.lp-avatars span:first-child { margin-left: 0; }
.lp-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.lp-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.lp-avatars span:nth-child(4) { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.lp-meta-text { font-size: 13.5px; color: var(--muted); }
.lp-meta-text strong { color: var(--text-strong); }

/* ---- Hero stage: the morphing browser ---- */
.lp-hero-stage { position: relative; perspective: 1600px; }
.lp-stage-glow {
  position: absolute;
  inset: -40px -20px;
  background: radial-gradient(circle at 60% 40%, rgba(124, 92, 246, 0.35), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.lp-browser {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.92), rgba(10, 14, 22, 0.92));
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: rotateY(-9deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}
.lp-hero-stage:hover .lp-browser { transform: rotateY(-4deg) rotateX(2deg); }
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.lp-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-dot--r { background: #ff5f57; }
.lp-dot--y { background: #febc2e; }
.lp-dot--g { background: #28c840; }
.lp-omnibox {
  flex: 1;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
}
.lp-lock { width: 9px; height: 9px; border-radius: 2px; border: 1.5px solid var(--cyan); border-bottom-width: 4px; }
.lp-mode-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.lp-mode-tag.is-agent {
  color: #fff;
  background: linear-gradient(120deg, var(--purple), var(--cyan));
  border-color: transparent;
  box-shadow: 0 0 18px rgba(124, 92, 246, 0.5);
}
.lp-mode-tag.is-rec {
  color: #ffd9d4;
  background: rgba(255, 95, 87, 0.16);
  border-color: rgba(255, 95, 87, 0.4);
}
.lp-mode-tag.is-ready {
  color: #c7f9e9;
  background: rgba(52, 227, 176, 0.16);
  border-color: rgba(52, 227, 176, 0.45);
}
.lp-browser-body { position: relative; aspect-ratio: 560 / 360; }
.lp-scene { width: 100%; height: 100%; display: block; }
.lp-stage-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 12.5px;
  font-family: var(--mono);
  color: var(--muted);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: color 0.3s;
}

/* ---- scene primitives (driven by landing.js) ---- */
#agent-scene text { font-family: var(--font); }
.sb-cursor { transition: transform 0.62s var(--ease); }
.sb-click-ring { transition: opacity 0.45s ease, transform 0.45s ease; transform-box: fill-box; transform-origin: center; }
.sb-typed { transition: width 0.5s var(--ease); }
.sb-item { transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); transform-box: fill-box; }
.sb-item-check { transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); transform-box: fill-box; transform-origin: center; }
.sb-panel-status, .sb-panel-dot, .sb-run { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.sb-path { transition: stroke-dashoffset 0.9s var(--ease), opacity 0.5s; }
.sb-node-ring { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transform-box: fill-box; transform-origin: center; }
.sb-field-fill { transition: width 0.45s var(--ease); }
.sb-success { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); transform-box: fill-box; transform-origin: center; }
.sb-node.lit .sb-node-ring { stroke: var(--cyan); filter: drop-shadow(0 0 6px rgba(34,211,238,0.9)); }

/* =========================================================================
   Trust marquee
   ========================================================================= */
.lp-trust { padding: 30px 0 10px; }
.lp-trust-label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 22px;
}
.lp-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.lp-marquee-track { display: flex; gap: 56px; width: max-content; animation: lp-marquee 32s linear infinite; }
.lp-marquee-track span { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--muted-2); white-space: nowrap; transition: color 0.2s; }
.lp-marquee-track span:hover { color: var(--text); }
@keyframes lp-marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   Sections
   ========================================================================= */
.lp-section { padding: 92px 0; }
.lp-section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.lp-kicker {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
}
.lp-h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text-strong);
}
.lp-section-sub { font-size: 17px; color: var(--muted); margin: 0; }

/* ---- steps ---- */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.lp-step::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 160px at 50% -20%, rgba(124, 92, 246, 0.18), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.lp-step:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.lp-step:hover::before { opacity: 1; }
.lp-step-no { font-family: var(--mono); font-size: 13px; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 16px; }
.lp-step-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(79,124,255,0.18), rgba(139,92,246,0.18));
  border: 1px solid var(--border-strong);
  margin-bottom: 18px;
}
.lp-step-icon svg, .lp-card-icon svg { width: 22px; height: 22px; fill: none; stroke: url(#lp-ico-grad, var(--cyan)); stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lp-step h3, .lp-card h3 { font-size: 17.5px; font-weight: 700; margin: 0 0 8px; color: var(--text-strong); letter-spacing: -0.01em; }
.lp-step p, .lp-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---- feature cards ---- */
.lp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.lp-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7); }
.lp-card-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,211,238,0.16), rgba(139,92,246,0.16));
  border: 1px solid var(--border-strong);
  margin-bottom: 20px;
}
.lp-card-icon svg { width: 24px; height: 24px; }

/* =========================================================================
   Stats band
   ========================================================================= */
.lp-stats { padding: 46px 0; }
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.lp-stat { text-align: center; position: relative; }
.lp-stat::after { content: ""; position: absolute; right: 0; top: 12%; height: 76%; width: 1px; background: var(--border); }
.lp-stat:last-child::after { display: none; }
.lp-stat-num, .lp-stat-suffix {
  display: inline-block;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-stat-label { font-size: 13.5px; color: var(--muted); margin-top: 6px; padding-inline: 12px; }

/* =========================================================================
   Reviews
   ========================================================================= */
.lp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-review {
  display: flex; flex-direction: column;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.lp-review:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.lp-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #ffb454; }
.lp-stars svg { width: 16px; height: 16px; fill: currentColor; }
.lp-review-body { font-size: 15px; color: var(--text); margin: 0 0 20px; flex: 1; }
.lp-review-body b { color: var(--text-strong); font-weight: 600; }
.lp-review-who { display: flex; align-items: center; gap: 12px; }
.lp-review-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: #fff;
}
.lp-review-name { font-size: 14.5px; font-weight: 600; color: var(--text-strong); }
.lp-review-role { font-size: 12.5px; color: var(--muted); }

/* =========================================================================
   Pricing
   ========================================================================= */
.lp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.lp-price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.lp-price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.lp-price-card.is-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(140deg, var(--blue), var(--purple), var(--cyan)) border-box;
  box-shadow: 0 30px 70px -30px rgba(124, 92, 246, 0.6);
}
.lp-price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; padding: 5px 14px; border-radius: var(--r-pill);
  background: linear-gradient(120deg, var(--purple), var(--cyan));
  box-shadow: 0 8px 20px -6px rgba(124, 92, 246, 0.7);
}
.lp-price-name { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; color: var(--text-strong); }
.lp-price-amt { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.lp-price-amt .cur { font-size: 24px; font-weight: 700; color: var(--text); }
.lp-price-amt .num { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; color: var(--text-strong); line-height: 1; }
.lp-price-amt .per { font-size: 15px; color: var(--muted); }
.lp-price-tokens { font-size: 14px; color: var(--cyan); font-weight: 600; margin-bottom: 22px; }
.lp-price-feats { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lp-price-feats li { display: flex; gap: 10px; font-size: 14.5px; color: var(--muted); }
.lp-price-feats li svg { width: 18px; height: 18px; flex: none; margin-top: 1px; fill: none; stroke: var(--cyan); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.lp-price-card .lp-btn { width: 100%; justify-content: center; }
.lp-pricing-foot { text-align: center; color: var(--muted); margin-top: 28px; font-size: 14.5px; }
.lp-pricing-foot a { color: var(--cyan); }

/* =========================================================================
   CTA band
   ========================================================================= */
.lp-cta-band { padding: 40px 0 100px; }
.lp-cta-inner {
  position: relative;
  text-align: center;
  padding: 70px 30px;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(124, 92, 246, 0.10), rgba(34, 211, 238, 0.04));
  overflow: hidden;
}
.lp-cta-inner .lp-section-sub { margin: 12px auto 30px; }
.lp-cta-inner .lp-hero-cta { justify-content: center; }
.lp-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 280px at 50% 0%, rgba(124, 92, 246, 0.3), transparent 70%);
  pointer-events: none;
}

/* =========================================================================
   Footer
   ========================================================================= */
.lp-footer { border-top: 1px solid var(--border); padding: 60px 0 30px; background: rgba(0,0,0,0.25); }
.lp-footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; }
.lp-footer-brand .lp-brand-logo { height: 72px; margin-bottom: 16px; }
.lp-footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.lp-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin: 0 0 16px; }
.lp-footer-cols a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color 0.2s; }
.lp-footer-cols a:hover { color: var(--text-strong); }
.lp-footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted-2);
}
.lp-footer-status { display: inline-flex; align-items: center; gap: 8px; }
.lp-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #28c840; box-shadow: 0 0 8px #28c840; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 940px) {
  .lp-hero { grid-template-columns: 1fr; gap: 56px; padding-top: 40px; }
  .lp-hero-stage { order: 2; }
  .lp-browser { transform: none; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-cards, .lp-reviews, .lp-pricing { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .lp-stat:nth-child(2)::after { display: none; }
  .lp-footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lp-nav-links { display: none; }
}
@media (max-width: 540px) {
  .lp-steps { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: 1fr; }
  .lp-stat::after { display: none; }
  .lp-footer-cols { grid-template-columns: 1fr; }
  .lp-footer-base { flex-direction: column; gap: 12px; }
}

/* =========================================================================
   Support page — header + split card (info aside | contact form)
   Reuses the landing tokens/chrome; only the form-specific bits live here.
   ========================================================================= */
.lp-support { padding: 64px 0 40px; }
.lp-support-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.lp-support-head .lp-h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 18px; }

.lp-support-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(18, 23, 34, 0.7), rgba(10, 14, 22, 0.7));
  box-shadow: 0 40px 90px -36px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---- left: reassurance + ways to reach us ---- */
.lp-support-aside {
  position: relative;
  padding: 40px 34px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(460px 320px at 0% 0%, rgba(124, 92, 246, 0.22), transparent 70%),
    radial-gradient(420px 360px at 100% 100%, rgba(34, 211, 238, 0.12), transparent 70%),
    linear-gradient(160deg, rgba(79, 124, 255, 0.12), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}
.lp-support-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 20% 12%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 20% 12%, #000, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.lp-support-aside > * { position: relative; z-index: 1; }
.lp-aside-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 10px; }
.lp-aside-lead { font-size: 14.5px; color: var(--muted); margin: 0 0 26px; }

.lp-aside-eta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 11px;
  border-radius: var(--r-pill);
  background: rgba(52, 227, 176, 0.1);
  border: 1px solid rgba(52, 227, 176, 0.28);
  color: #9af0d2;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 28px;
}
.lp-aside-eta .lp-eta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34e3b0; box-shadow: 0 0 8px #34e3b0;
}

.lp-channels { display: flex; flex-direction: column; gap: 8px; }
.lp-channel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s;
}
.lp-channel:hover { background: rgba(255, 255, 255, 0.04); border-color: var(--border); }
.lp-channel-ico {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid var(--border-strong);
}
.lp-channel-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lp-channel-t { font-size: 14px; font-weight: 600; color: var(--text-strong); }
.lp-channel-d { font-size: 13px; color: var(--muted); margin-top: 2px; }
.lp-channel-d a { color: var(--cyan); }

/* ---- right: the form ---- */
.lp-support-form { padding: 40px 36px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.lp-field > label { font-size: 13.5px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.lp-field .lp-opt { color: var(--muted-2); font-weight: 500; }

.lp-input,
.lp-select,
.lp-textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  color: var(--text-strong);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.lp-input::placeholder,
.lp-textarea::placeholder { color: var(--muted-2); }
.lp-input:focus,
.lp-select:focus,
.lp-textarea:focus {
  outline: none;
  border-color: rgba(124, 150, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(91, 134, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.lp-textarea { resize: vertical; min-height: 138px; }

/* custom chevron for the category dropdown */
.lp-select {
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2393a1ba' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
/* native option list renders on an OS-light surface — keep text legible */
.lp-select option,
.lp-select optgroup { color: #11151d; background: #fff; }
.lp-select:required:invalid { color: var(--muted-2); }

.lp-field-hint { font-size: 12.5px; color: var(--muted-2); margin-top: -2px; }

/* quick category chips */
.lp-quickpick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.lp-chip-btn {
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s var(--ease);
}
.lp-chip-btn:hover { color: var(--text-strong); border-color: var(--border-strong); background: rgba(255, 255, 255, 0.06); transform: translateY(-1px); }
.lp-chip-btn.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--blue), var(--purple));
  box-shadow: 0 8px 20px -8px rgba(124, 92, 246, 0.7);
}

.lp-form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.lp-form-foot { margin: 16px 0 0; text-align: center; font-size: 12.5px; color: var(--muted-2); }

.lp-form-error {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 95, 87, 0.1);
  border: 1px solid rgba(255, 95, 87, 0.4);
  color: #ffb4ac;
  font-size: 13px;
  margin-bottom: 16px;
}
.lp-form-error.show { display: flex; }
.lp-form-error svg { width: 16px; height: 16px; flex: none; }

/* success state (swaps in for the form) */
.lp-form-success { display: none; text-align: center; padding: 26px 8px; }
.lp-form-success.show { display: block; animation: lp-pop 0.5s var(--ease); }
@keyframes lp-pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.lp-success-badge {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #34e3b0, #22d3ee);
  box-shadow: 0 16px 36px -10px rgba(34, 211, 238, 0.7);
}
.lp-success-badge svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.lp-success-t { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 8px; }
.lp-success-d { font-size: 14.5px; color: var(--muted); margin: 0 auto; max-width: 380px; }
.lp-success-d b { color: var(--text); }

@media (max-width: 860px) {
  .lp-support-card { grid-template-columns: 1fr; }
  .lp-support-aside { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 540px) {
  .lp-support { padding: 40px 0 24px; }
  .lp-form-row { grid-template-columns: 1fr; gap: 0; }
  .lp-support-aside, .lp-support-form { padding: 28px 22px; }
}

/* ====================== LEGAL (terms.html) ====================== */
/* A long-form readable document card, reusing the support page header. */
.lp-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 44px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.lp-legal-updated {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-legal h2 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 34px 0 10px;
}
.lp-legal h2:first-of-type { margin-top: 0; }
.lp-legal p,
.lp-legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}
.lp-legal ul { padding-left: 22px; margin: 0 0 12px; }
.lp-legal li { margin-bottom: 8px; }
.lp-legal strong { color: var(--text); font-weight: 650; }
.lp-legal a { color: var(--cyan); text-decoration: none; }
.lp-legal a:hover { text-decoration: underline; }
@media (max-width: 540px) {
  .lp-legal { padding: 26px 20px 32px; }
}
