/* =============================================================
   PROCESS BUILDER — Landing Variant C
   Modern · Bold · Black · Coral accent · Subtle motion
   Uses the existing dark-mode tokens (data-mode="dark") and
   then sharpens contrast + typography on top.
   ============================================================= */

.lp-c {
  /* Locked palette — independent of theme so the bold look stays */
  --c-bg: #07080a;
  --c-bg-2: #0d0f13;
  --c-surface: #0f1116;
  --c-surface-2: #15181e;
  --c-line: rgba(255,255,255,0.08);
  --c-line-strong: rgba(255,255,255,0.16);
  --c-text: #f5f6f8;
  --c-text-2: rgba(245,246,248,0.78);
  --c-text-3: rgba(245,246,248,0.55);
  --c-text-4: rgba(245,246,248,0.36);
  --c-accent: #ff7a59;
  --c-accent-2: #ff9b6f;
  --c-accent-glow: rgba(255,122,89,0.35);
  --c-accent-soft: rgba(255,122,89,0.12);

  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Geist', 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.012em;
  position: relative;
  overflow: hidden;
}

/* Persistent grain texture on the bg */
.lp-c::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  mix-blend-mode: overlay;
  z-index: 0;
}

.lp-c > * { position: relative; z-index: 1; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes lpc-glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -20px, 0) scale(1.08); }
}
@keyframes lpc-glowDrift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate3d(-30px, 25px, 0) scale(1.1); opacity: 0.85; }
}
@keyframes lpc-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lpc-floatA {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}
@keyframes lpc-floatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes lpc-floatC {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-14px) rotate(-0.5deg); }
}
@keyframes lpc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lpc-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes lpc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--c-accent-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
@keyframes lpc-spin {
  to { transform: rotate(360deg); }
}
@keyframes lpc-flowLine {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -32; }
}
@keyframes lpc-cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lpc-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================================
   Nav
   ============================================================ */
.lpc-nav {
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--c-line);
  background: color-mix(in oklab, var(--c-bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.lpc-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.015em;
  color: var(--c-text);
}
.lpc-nav__mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--c-text);
  color: var(--c-bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: -0.04em;
}
.lpc-nav__links {
  display: flex;
  gap: 2px;
  margin-left: 12px;
}
.lpc-nav__links a {
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-3);
  border-radius: 6px;
  transition: color .12s, background .12s;
}
.lpc-nav__links a:hover { color: var(--c-text); background: rgba(255,255,255,0.04); }
.lpc-nav__spacer { flex: 1; }
.lpc-nav__login {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-3);
  padding: 6px 12px;
}
.lpc-nav__login:hover { color: var(--c-text); }
.lpc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--c-text-2);
  font-weight: 500;
}
.lpc-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ee37a;
  box-shadow: 0 0 0 0 rgba(46,227,122,0.7);
  animation: lpc-pulse 2.4s ease-in-out infinite;
}

/* ============================================================
   Buttons
   ============================================================ */
.lpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.lpc-btn:active { transform: translateY(0.5px); }
.lpc-btn--primary {
  background: var(--c-text);
  color: var(--c-bg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 8px 24px -8px rgba(255,255,255,0.2);
}
.lpc-btn--primary:hover {
  background: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 12px 32px -8px rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.lpc-btn--accent {
  background: var(--c-accent);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 8px 24px -6px var(--c-accent-glow);
}
.lpc-btn--accent:hover {
  background: var(--c-accent-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 14px 40px -8px var(--c-accent-glow);
  transform: translateY(-1px);
}
.lpc-btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--c-text);
  border-color: var(--c-line-strong);
}
.lpc-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}
.lpc-btn--sm { height: 36px; padding: 0 14px; font-size: 13.5px; }

/* ============================================================
   Section scaffold
   ============================================================ */
.lpc-section {
  padding: 120px 40px;
  position: relative;
}
.lpc-section--tight { padding: 80px 40px; }
.lpc-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.lpc-container--narrow { max-width: 880px; }

.lpc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.lpc-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 12px var(--c-accent-glow);
}

.lpc-section__head {
  text-align: center;
  margin-bottom: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lpc-section__title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--c-text);
  margin: 0 0 18px;
  text-wrap: balance;
}
.lpc-section__title em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}
.lpc-section__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text-3);
  max-width: 60ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ============================================================
   HERO
   ============================================================ */
.lpc-hero {
  padding: 96px 40px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lpc-hero__glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.lpc-hero__glow--a {
  width: 900px;
  height: 700px;
  top: -200px;
  left: 50%;
  margin-left: -450px;
  background: radial-gradient(ellipse at center, var(--c-accent-glow) 0%, transparent 60%);
  filter: blur(40px);
  animation: lpc-glowDrift 16s ease-in-out infinite;
  opacity: 0.85;
}
.lpc-hero__glow--b {
  width: 600px;
  height: 600px;
  top: 200px;
  right: -200px;
  background: radial-gradient(circle, rgba(46,153,255,0.18) 0%, transparent 60%);
  filter: blur(60px);
  animation: lpc-glowDrift2 22s ease-in-out infinite;
}
.lpc-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--c-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--c-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.lpc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}
.lpc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--c-text-2);
  font-weight: 500;
  margin-bottom: 36px;
  animation: lpc-fadeUp 0.6s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-hero__badge-tag {
  background: var(--c-accent-soft);
  color: var(--c-accent-2);
  font-weight: 700;
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lpc-hero__title {
  font-weight: 600;
  font-size: 104px;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--c-text);
  margin: 0 0 30px;
  text-wrap: balance;
  animation: lpc-fadeUp 0.7s 0.05s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-hero__title em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2), var(--c-accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lpc-shimmer 6s linear infinite;
}
.lpc-hero__accent {
  font-weight: 700;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2), var(--c-accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lpc-shimmer 6s linear infinite;
}
.lpc-hero__lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--c-text-3);
  max-width: 64ch;
  margin: 0 auto 40px;
  text-wrap: pretty;
  animation: lpc-fadeUp 0.7s 0.15s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-hero__cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: lpc-fadeUp 0.7s 0.25s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-hero__caption {
  margin-top: 22px;
  font-size: 13px;
  color: var(--c-text-4);
  animation: lpc-fadeUp 0.7s 0.35s cubic-bezier(.2,.7,.3,1) both;
}

/* Hero product stack */
.lpc-hero__stack {
  position: relative;
  margin-top: 72px;
  height: 580px;
  animation: lpc-fadeUp 0.9s 0.4s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-hero__screen {
  position: absolute;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 60px 100px -40px rgba(0,0,0,0.7),
    0 30px 60px -30px rgba(255,122,89,0.18),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  overflow: hidden;
  transform-origin: center;
}
.lpc-hero__screen--main {
  left: 50%;
  top: 0;
  width: 920px;
  height: 540px;
  margin-left: -460px;
  animation: lpc-floatA 7s ease-in-out infinite;
  z-index: 1;
}
.lpc-hero__screen--left {
  left: 50%;
  margin-left: -640px;
  top: 80px;
  width: 280px;
  height: 360px;
  animation: lpc-floatB 8s ease-in-out infinite;
  z-index: 2;
}
.lpc-hero__screen--right {
  right: 50%;
  margin-right: -640px;
  top: 60px;
  width: 280px;
  height: 320px;
  animation: lpc-floatC 9s ease-in-out infinite;
  z-index: 2;
}

/* Light-mode reset for embedded mocks */
.lpc-light-reset {
  /* Force the embedded mock UI back to a real light palette */
  background: #f5f8fa;
  color: #213343;
  /* Override the dark-mode token cascade */
  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-2: #fafbfc;
  --surface-hover: #f5f8fa;
  --sidebar-bg: #ffffff;
  --text: #213343;
  --text-strong: #0f2236;
  --text-2: #33475b;
  --text-muted: #516f90;
  --text-faint: #99acc2;
  --border: #e5eaf0;
  --border-strong: #cbd6e2;
}

/* ============================================================
   MARQUEE — "who it's for"
   ============================================================ */
.lpc-marquee {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0;
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  position: relative;
  margin-top: 80px;
}
.lpc-marquee::before,
.lpc-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2;
  pointer-events: none;
}
.lpc-marquee::before { left: 0; background: linear-gradient(to right, var(--c-bg), transparent); }
.lpc-marquee::after { right: 0; background: linear-gradient(to left, var(--c-bg), transparent); }
.lpc-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: lpc-marquee 40s linear infinite;
}
.lpc-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--c-text-2);
  font-weight: 500;
  white-space: nowrap;
}
.lpc-marquee__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0.7;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.lpc-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lpc-problem-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.lpc-problem-card:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-2px);
}
.lpc-problem-card__quote {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.3;
  color: var(--c-text);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.lpc-problem-card__quote::before {
  content: '“';
  font-size: 56px;
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 2px;
  color: var(--c-accent);
  opacity: 0.6;
}
.lpc-problem-card__attrib {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--c-text-3);
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.lpc-problem-card__attrib-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: -0.04em;
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.lpc-product {
  padding: 0 40px 80px;
}
.lpc-product__frame {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.8),
    0 30px 60px -30px var(--c-accent-glow);
}
.lpc-product__chrome {
  height: 42px;
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.lpc-product__chrome-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.lpc-product__chrome-url {
  margin-left: 18px;
  height: 24px;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--c-text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lpc-product__chrome-url::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--c-text-3);
  border-bottom-color: transparent;
}
.lpc-product__chrome-spacer { flex: 1; }
.lpc-product__chrome-typing {
  color: var(--c-text-3);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  margin-right: 8px;
}
.lpc-product__chrome-typing::after {
  content: '_';
  margin-left: 2px;
  color: var(--c-accent);
  animation: lpc-cursor 1.2s steps(1) infinite;
}

.lpc-product__viewport {
  position: relative;
  overflow: hidden;
}
.lpc-product__scan {
  position: absolute;
  left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent 0%, var(--c-accent-soft) 50%, transparent 100%);
  pointer-events: none;
  z-index: 5;
  animation: lpc-scan 8s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes lpc-scan {
  0% { transform: translateY(-240px); }
  50% { transform: translateY(800px); }
  100% { transform: translateY(-240px); }
}

/* ============================================================
   BENEFITS — Bento grid
   ============================================================ */
.lpc-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.lpc-bento__cell {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, background .2s;
  display: flex;
  flex-direction: column;
}
.lpc-bento__cell:hover {
  border-color: var(--c-line-strong);
  background: var(--c-surface-2);
  transform: translateY(-2px);
}
.lpc-bento__cell--lg { grid-column: span 4; }
.lpc-bento__cell--md { grid-column: span 3; }
.lpc-bento__cell--sm { grid-column: span 2; }
.lpc-bento__cell--feature {
  background: linear-gradient(135deg, var(--c-accent-soft), transparent 60%), var(--c-surface);
  border-color: var(--c-accent-soft);
}
.lpc-bento__cell--feature:hover {
  border-color: var(--c-accent);
}

.lpc-bento__kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.lpc-bento__title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: 1.15;
  text-wrap: balance;
}
.lpc-bento__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-3);
  margin: 0;
  text-wrap: pretty;
}
.lpc-bento__art {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bento art — coverage bars */
.lpc-coverage-art { display: flex; gap: 8px; align-items: end; padding: 8px 0; }
.lpc-coverage-art__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lpc-coverage-art__cell {
  height: 12px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  transition: background .2s;
}
.lpc-coverage-art__cell.is-on { background: var(--c-accent); }
.lpc-coverage-art__cell.is-gap { background: rgba(239,68,68,0.6); }
.lpc-coverage-art__label {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  text-align: center;
  color: var(--c-text-4);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Bento art — stacked variants */
.lpc-variants-art {
  position: relative;
  width: 100%;
  height: 130px;
}
.lpc-variants-art__layer {
  position: absolute;
  left: 50%;
  top: 0;
  width: 220px;
  height: 86px;
  margin-left: -110px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 11.5px;
}
.lpc-variants-art__layer:nth-child(1) { transform: translate(-22px, 0) rotate(-5deg); z-index: 1; opacity: 0.6; }
.lpc-variants-art__layer:nth-child(2) { transform: translate(0, 14px) rotate(-1deg); z-index: 2; }
.lpc-variants-art__layer:nth-child(3) { transform: translate(22px, 28px) rotate(4deg); z-index: 3; border-color: var(--c-accent); background: linear-gradient(135deg, var(--c-accent-soft), var(--c-surface-2)); }
.lpc-variants-art__tag {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.lpc-variants-art__layer:last-child .lpc-variants-art__tag { color: var(--c-accent); }
.lpc-variants-art__name {
  color: var(--c-text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.015em;
}

/* Bento art — phase flow */
.lpc-flow-art {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
}
.lpc-flow-art__node {
  flex: 1;
  height: 56px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  position: relative;
}
.lpc-flow-art__node--active {
  border-color: var(--c-accent);
  background: linear-gradient(135deg, var(--c-accent-soft), var(--c-surface-2));
}
.lpc-flow-art__phase {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  color: var(--c-text-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lpc-flow-art__node--active .lpc-flow-art__phase { color: var(--c-accent); }
.lpc-flow-art__label {
  font-size: 12.5px;
  color: var(--c-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lpc-flow-art__arrow {
  color: var(--c-text-4);
  font-family: 'Geist Mono', monospace;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.lpc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 64px 40px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: linear-gradient(180deg, transparent, rgba(255,122,89,0.04), transparent);
  max-width: 1240px;
  margin: 0 auto;
}
.lpc-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--c-line);
}
.lpc-stat:last-child { border-right: 0; }
.lpc-stat__num {
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--c-text);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--c-text) 0%, color-mix(in oklab, var(--c-text) 60%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lpc-stat__num em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
  -webkit-text-fill-color: var(--c-accent);
}
.lpc-stat__label {
  font-size: 14px;
  color: var(--c-text-3);
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.45;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lpc-final {
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lpc-final__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1200px;
  height: 800px;
  margin-left: -600px;
  margin-top: -400px;
  background: radial-gradient(ellipse, var(--c-accent-glow) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: lpc-glowDrift 12s ease-in-out infinite;
}
.lpc-final__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.lpc-final__title {
  font-weight: 600;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--c-text);
  margin: 0 0 22px;
  text-wrap: balance;
}
.lpc-final__title em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}
.lpc-final__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text-3);
  margin: 0 0 36px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.lpc-final__cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.lpc-faq__list { border-top: 1px solid var(--c-line); }
.lpc-faq__item {
  border-bottom: 1px solid var(--c-line);
  padding: 28px 0;
}
.lpc-faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--c-text);
  margin-bottom: 12px;
  cursor: pointer;
}
.lpc-faq__q-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  font-size: 17px;
  font-weight: 500;
}
.lpc-faq__a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-3);
  max-width: 76ch;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lpc-footer {
  padding: 36px 40px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--c-text-3);
}
.lpc-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
  font-weight: 600;
}
.lpc-footer__spacer { flex: 1; }
.lpc-footer a { color: var(--c-text-3); }
.lpc-footer a:hover { color: var(--c-text); }
.lpc-footer__links { display: flex; gap: 18px; }

/* ============================================================
   REQUEST ACCESS MODAL
   The landing page has no data-theme attribute, so the portal's
   themed tokens (--surface, --border, --text-strong, …) resolve
   to empty here. We hardcode safe values so the modal renders
   as a clean cream card against the dark page chrome.
   ============================================================ */
.lpc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, #000 65%, transparent);
  backdrop-filter: blur(6px);
  animation: lpc-fadeUp 0.2s ease-out both;
  padding: 24px;
}
.lpc-modal-card {
  width: min(460px, 100%);
  background: #FBFAF7;
  border: 1px solid rgba(230, 225, 214, 0.5);
  border-radius: 16px;
  box-shadow:
    0 24px 80px -20px rgba(0, 0, 0, 0.6),
    0 8px 24px -8px rgba(255, 122, 89, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 32px;
  position: relative;
  animation: lpc-cardIn 0.3s cubic-bezier(.2,.7,.3,1) both;
}
.lpc-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #847C71;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lpc-modal-close:hover {
  background: rgba(132, 124, 113, 0.1);
  color: #1A1714;
}
.lpc-modal-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1A1714;
  background: #FFFFFF;
  border: 1px solid #E6E1D6;
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.lpc-modal-input:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
}
.lpc-modal-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
select.lpc-modal-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23847C71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 36px;
}
