/* Flox — public landing · Business OS positioning */

:root {
  --lp-bg: #0c0e1c;
  --lp-bg-2: #0e102e;
  --lp-surface: rgba(255, 255, 255, 0.035);
  --lp-surface-2: rgba(255, 255, 255, 0.06);
  --lp-surface-3: rgba(255, 255, 255, 0.09);
  --lp-border: rgba(255, 255, 255, 0.09);
  --lp-border-strong: rgba(255, 255, 255, 0.18);
  --lp-text: #f4f4f5;
  --lp-muted: #9ca3af;
  --lp-accent: #a78bfa;
  --lp-accent-2: #60a5fa;
  --lp-success: #4ade80;
  --lp-success-soft: rgba(74, 222, 128, 0.14);
  --lp-radius: 18px;
  --lp-radius-lg: 28px;
  --lp-max: 1120px;
  --lp-header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lp-text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(167, 139, 250, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 40%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--lp-bg) 0%, var(--lp-bg-2) 50%, #0c1024 100%);
  min-height: 100vh;
}

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

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

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lp-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lp-header-h);
  display: flex;
  align-items: center;
  background: rgba(12, 14, 28, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.06em;
}

.lp-brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-muted);
  transition: color 0.2s, background 0.2s;
}

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

.lp-nav__login {
  display: none;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.lp-btn:active { transform: scale(0.98); }

.lp-btn--primary {
  color: #0c0e1c;
  background: linear-gradient(135deg, #fff 0%, #e4e4e7 100%);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.12);
}

.lp-btn--primary:hover {
  box-shadow: 0 6px 32px rgba(255, 255, 255, 0.2);
}

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

.lp-btn--ghost:hover {
  background: var(--lp-surface-2);
  border-color: var(--lp-border-strong);
}

.lp-btn--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #7c3aed);
  box-shadow: 0 4px 24px rgba(167, 139, 250, 0.35);
}

.lp-btn--accent:hover {
  box-shadow: 0 6px 32px rgba(167, 139, 250, 0.45);
}

.lp-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  font-size: 20px;
}

/* Hero */
.lp-hero {
  padding: 64px 0 72px;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-success);
  box-shadow: 0 0 12px var(--lp-success);
}

.lp-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero__brand {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--lp-accent);
}

.lp-hero__tagline {
  margin: 0 0 14px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lp-muted);
}

.lp-hero__lead {
  margin: 0 0 24px;
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.6;
  max-width: 520px;
}

.lp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.lp-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
}

.lp-pill--trial {
  color: var(--lp-success);
  background: var(--lp-success-soft);
  border-color: rgba(74, 222, 128, 0.35);
  font-weight: 700;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-hero__note {
  font-size: 13px;
  color: var(--lp-muted);
}

/* Hero visual — app mock */
.lp-hero__visual {
  position: relative;
  animation: lp-fade-up 0.8s ease-out both;
}

.lp-mock {
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--lp-border-strong);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45), 0 0 80px rgba(167, 139, 250, 0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.lp-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(0, 0, 0, 0.2);
}

.lp-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.lp-mock__dot:first-child { background: #f87171; }
.lp-mock__dot:nth-child(2) { background: #fbbf24; }
.lp-mock__dot:nth-child(3) { background: #4ade80; }

.lp-mock__body {
  padding: 24px;
}

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

.lp-mock__tile {
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--lp-border);
}

.lp-mock__tile-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  margin-bottom: 6px;
}

.lp-mock__tile-value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-mock__tile-value--accent {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-mock__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-mock__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.lp-mock__line--short { width: 65%; }
.lp-mock__line--med { width: 82%; }

.lp-mock__badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-success);
  background: var(--lp-success-soft);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Cloud banner */
.lp-cloud-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 56px;
  padding: 20px 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-cloud-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--lp-success);
  background: var(--lp-success-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.lp-cloud-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--lp-text);
}

.lp-cloud-banner p {
  margin: 0;
  font-size: 15px;
  color: var(--lp-muted);
}

/* Sections */
.lp-section {
  padding: 80px 0;
}

.lp-section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.lp-section-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-accent);
}

.lp-section-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--lp-muted);
  font-size: 17px;
  line-height: 1.55;
}

/* Platform / Business OS */
.lp-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.lp-platform__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--lp-accent);
}

.lp-platform__lead {
  margin: 0;
  max-width: 520px;
  color: var(--lp-muted);
  font-size: 17px;
  line-height: 1.6;
}

.lp-platform__layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lp-platform__layers li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  padding: 18px 20px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-platform__layer-num {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lp-accent);
  opacity: 0.85;
}

.lp-platform__layers strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.lp-platform__layers span:last-child {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.45;
}

/* Stats */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.lp-stat {
  padding: 20px 16px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-stat__num {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--lp-muted);
}

/* Social proof (PLACEHOLDER — replace with real assets) */
.lp-proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s, background 0.2s;
}

.lp-logo:hover {
  border-color: var(--lp-border-strong);
  background: var(--lp-surface-2);
}

.lp-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--lp-accent);
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  flex-shrink: 0;
}

.lp-logo__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
  white-space: nowrap;
}

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

.lp-testimonial {
  margin: 0;
  padding: 24px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-testimonial:hover {
  border-color: var(--lp-border-strong);
  transform: translateY(-2px);
}

.lp-testimonial__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text);
  flex: 1;
}

.lp-testimonial__quote::before {
  content: '«';
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-accent-2);
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
  flex-shrink: 0;
}

.lp-testimonial__author {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-testimonial__role {
  display: block;
  font-size: 12px;
  color: var(--lp-muted);
  line-height: 1.35;
}

.lp-testimonial__metric {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-success);
  background: var(--lp-success-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  align-self: flex-start;
}

.lp-case {
  position: relative;
  padding: 32px;
  border-radius: var(--lp-radius-lg);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(167, 139, 250, 0.1) 0%, transparent 55%),
    var(--lp-surface);
  border: 1px solid var(--lp-border-strong);
}

.lp-case__badge {
  position: absolute;
  top: -11px;
  left: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #7c3aed);
}

.lp-case__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.lp-case__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-case__copy p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-case__results {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-case__results li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--lp-muted);
  border-bottom: 1px solid var(--lp-border);
}

.lp-case__results li:last-child { border-bottom: none; }

.lp-case__results strong {
  color: var(--lp-text);
  font-weight: 700;
}

.lp-case__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-case__stat {
  padding: 16px 18px;
  border-radius: var(--lp-radius);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--lp-border);
  text-align: center;
}

.lp-case__stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-accent);
}

.lp-case__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-case__link,
.lp-case__aside .lp-btn {
  width: 100%;
  text-align: center;
}

/* Formats */
.lp-formats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.lp-format-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: all 0.2s;
}

.lp-format-tab:hover { color: var(--lp-text); border-color: var(--lp-border-strong); }

.lp-format-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #7c3aed);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.lp-format-panel {
  display: none;
  padding: 32px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  animation: lp-fade-in 0.35s ease;
}

.lp-format-panel.is-active { display: block; }

.lp-format-panel__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-format-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  flex-shrink: 0;
}

.lp-format-panel h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lp-format-panel__hook {
  margin: 0;
  color: var(--lp-muted);
  font-size: 15px;
}

.lp-format-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-format-features li {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
}

.lp-format-features li::before {
  content: '✓ ';
  color: var(--lp-success);
  font-weight: 700;
}

/* Features */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-feature-card {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lp-feature-card:hover {
  border-color: var(--lp-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.lp-feature-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  background: rgba(167, 139, 250, 0.12);
}

.lp-feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.lp-feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* Capital */
.lp-capital {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.lp-capital__text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--lp-accent);
}

.lp-capital__text p {
  margin: 0 0 12px;
  color: var(--lp-muted);
  font-size: 16px;
}

.lp-capital__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.lp-capital__list li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-capital__list li:last-child { border-bottom: none; }

.lp-capital__list li::before {
  content: '→ ';
  color: var(--lp-success);
  font-weight: 700;
}

.lp-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-flow__node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s;
}

.lp-flow__node:hover { border-color: var(--lp-border-strong); }

.lp-flow__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: var(--lp-accent);
}

.lp-flow__node strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.lp-flow__node span {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-flow__arrow {
  text-align: center;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-step {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  text-align: center;
}

.lp-step__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #7c3aed);
}

.lp-step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lp-step p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
}

/* Benefits */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-benefit {
  padding: 28px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-benefit__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--lp-accent-2);
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.lp-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lp-benefit p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-integrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.lp-integration {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

/* Trial banner */
.lp-trial-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 28px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-success-soft);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.08);
}

.lp-trial-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-success);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.lp-trial-banner__body strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--lp-success);
}

.lp-trial-banner__body p {
  margin: 0;
  font-size: 15px;
  color: var(--lp-muted);
}

/* Pricing */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.lp-plan {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-plan:hover {
  border-color: var(--lp-border-strong);
}

.lp-plan--featured {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 60px rgba(167, 139, 250, 0.12);
}

.lp-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #7c3aed);
  white-space: nowrap;
}

.lp-plan__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.lp-plan__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  flex-shrink: 0;
}

.lp-plan__code {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-plan h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.lp-plan__tagline {
  margin: 0;
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-plan__price {
  margin-bottom: 6px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-plan__period {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-plan__seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-muted);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--lp-border);
}

.lp-plan__inherit {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-success);
  background: var(--lp-success-soft);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.lp-plan__inherit-check {
  font-weight: 800;
}

.lp-plan__benefits-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-plan__features {
  flex: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.lp-plan__features li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--lp-muted);
  border-bottom: 1px solid var(--lp-border);
  line-height: 1.4;
}

.lp-plan__features li:last-child { border-bottom: none; }

.lp-plan__features li::before {
  content: '✓ ';
  color: var(--lp-success);
  font-weight: 700;
}

.lp-plan .lp-btn { width: 100%; }

/* Enterprise */
.lp-enterprise {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-strong);
}

.lp-enterprise h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.lp-enterprise p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  max-width: 560px;
}

/* FAQ */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid var(--lp-border);
}

.lp-faq__item:first-child {
  border-top: 1px solid var(--lp-border);
}

.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--lp-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.lp-faq__item.is-open .lp-faq__q::after {
  transform: rotate(45deg);
}

.lp-faq__a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-faq__item.is-open .lp-faq__a {
  display: block;
  animation: lp-fade-in 0.25s ease;
}

/* CTA */
.lp-cta {
  padding: 80px 0;
  text-align: center;
}

.lp-cta__box {
  padding: 56px 40px;
  border-radius: var(--lp-radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(167, 139, 250, 0.18) 0%, transparent 60%),
    var(--lp-surface);
  border: 1px solid var(--lp-border-strong);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
}

.lp-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.03em;
}

.lp-cta p {
  margin: 0 auto 28px;
  max-width: 480px;
  color: var(--lp-muted);
  font-size: 17px;
}

.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-cta__trial {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--lp-success);
  font-weight: 600;
}

/* Sticky CTA */
.lp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 14, 28, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--lp-border-strong);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.lp-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lp-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-sticky-cta__copy {
  margin: 0;
  min-width: 0;
}

.lp-sticky-cta__copy strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-success);
  line-height: 1.25;
}

.lp-sticky-cta__copy span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--lp-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp-sticky-cta__primary {
  padding: 11px 18px;
  font-size: 14px;
}

.lp-sticky-cta__secondary {
  padding: 11px 16px;
  font-size: 14px;
}

body.lp-sticky-active {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

/* Pains → solution (SEO + conversion) */
.lp-pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-pain-card {
  padding: 22px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-pain-card__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f87171;
}

.lp-pain-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.lp-pain-card__problem {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-pain-card__solve {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text);
}

.lp-pain-card__solve strong {
  color: var(--lp-accent);
}

/* Growth / metrics */
.lp-growth {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.lp-growth__intro h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lp-growth__intro p {
  margin: 0 0 16px;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-growth__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-growth__list li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--lp-muted);
  border-bottom: 1px solid var(--lp-border);
  line-height: 1.5;
}

.lp-growth__list li:last-child { border-bottom: none; }

.lp-growth__list strong {
  color: var(--lp-text);
}

.lp-growth__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-metric-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-metric-tile__icon {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--lp-accent);
}

.lp-metric-tile strong {
  font-size: 15px;
}

.lp-metric-tile span:last-child {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-growth__cta-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--lp-muted);
}

/* SEO sections */
.lp-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lp-seo-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s, transform 0.2s;
}

.lp-seo-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-2px);
}

.lp-seo-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lp-seo-card p {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-seo-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-accent);
}

.lp-seo-cities {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.lp-seo-cities li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--lp-muted);
  border-bottom: 1px solid var(--lp-border);
}

.lp-seo-cities li:last-child { border-bottom: none; }

.lp-seo-cities strong {
  color: var(--lp-text);
}

.lp-seo-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-compare {
  overflow-x: auto;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 8px;
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-compare__row:last-child { border-bottom: none; }

.lp-compare__head {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.25);
  color: var(--lp-text);
}

.lp-compare__row span:not(:first-child) {
  color: var(--lp-muted);
}

.lp-compare__row span:last-child {
  color: var(--lp-success);
  font-weight: 600;
}

/* Footer */
.lp-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--lp-border);
}

.lp-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__links a {
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-footer__links a:hover { color: var(--lp-text); }

.lp-footer__copy {
  font-size: 13px;
  color: var(--lp-muted);
}

/* Mobile */
@media (max-width: 960px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-nav { display: none; }
  .lp-header__actions {
    gap: 6px;
  }
  .lp-header__actions .lp-btn {
    padding: 9px 12px;
    font-size: 13px;
  }
  .lp-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--lp-header-h);
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: rgba(12, 14, 28, 0.96);
    border-bottom: 1px solid var(--lp-border);
  }
  .lp-nav.is-open .lp-nav__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border-strong);
  }
  .lp-nav.is-open .lp-nav__login:hover {
    background: var(--lp-surface-2);
    color: var(--lp-text);
  }
  .lp-menu-toggle { display: grid; place-items: center; }
  .lp-capital { grid-template-columns: 1fr; }
  .lp-benefits, .lp-steps { grid-template-columns: 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-platform { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-case__grid { grid-template-columns: 1fr; }
  .lp-pains { grid-template-columns: repeat(2, 1fr); }
  .lp-growth { grid-template-columns: 1fr; }
  .lp-seo-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-compare__row { grid-template-columns: 1fr 1fr; font-size: 13px; }
  .lp-compare__row span:first-child { grid-column: 1 / -1; font-weight: 600; color: var(--lp-text); }
  .lp-enterprise { flex-direction: column; text-align: center; }
  .lp-trial-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .lp-hero { padding: 40px 0 56px; }
  .lp-section { padding: 56px 0; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-format-panel { padding: 20px; }
  .lp-cloud-banner { flex-direction: column; }
  .lp-header__actions .lp-btn--primary { display: none; }
  .lp-header__actions .lp-btn--ghost {
    padding: 9px 14px;
    font-size: 14px;
  }
  .lp-sticky-cta__secondary { display: none; }
  .lp-sticky-cta__copy span { font-size: 11px; }
  .lp-sticky-cta__primary {
    padding: 12px 20px;
    font-size: 15px;
  }
  .lp-pains { grid-template-columns: 1fr; }
  .lp-growth__tiles { grid-template-columns: 1fr; }
  .lp-seo-grid { grid-template-columns: 1fr; }
}

@media (min-width: 961px) {
  .lp-sticky-cta__inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 24px;
  }
}
