/* ===========================================================================
   FieldProve Landing -- fp_landing.css
   Conversion-focused redesign layer. Linked LAST so it governs the homepage.
   Design language: dark, premium SaaS (Stripe / Linear / Vercel) with
   industrial HVAC credibility. Brand orange accent, glassmorphism, large type.
   =========================================================================== */

:root {
  /* Brand + surfaces (extends fp_theme.css tokens; adds the alias the layout
     file references as --brand-gold-soft to fix the undefined-var fallback) */
  --brand: #F97316;
  --brand-2: #f7bc66;
  --brand-glow: rgba(249, 115, 22, 0.35);
  --brand-gold-soft: #f2bd63;

  --ink-0: #05070c;
  --ink-1: #0a0e16;
  --ink-2: #0f1520;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --hairline: rgba(255, 255, 255, 0.10);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  --txt: #f4f7ff;
  --txt-dim: #aeb8cc;
  --txt-faint: #7f8aa2;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.7rem;
  --maxw: 1180px;

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-brand: 0 22px 60px rgba(249, 115, 22, 0.28);
}

/* ---- global rhythm overrides for the redesigned page --------------------- */
body {
  background: #0a0b0e;
}

.lp .fp-container {
  max-width: var(--maxw);
}

.lp .fp-section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
  background: transparent;
}
.lp .fp-section .fp-container {
  position: relative;
  z-index: 1;
}

.lp .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--glass);
  margin-bottom: 1.1rem;
}

.lp h1, .lp h2, .lp h3 { color: var(--txt); }

.lp h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.lp .lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--txt-dim);
  max-width: 640px;
}

.lp .section-header .lead { margin-inline: auto; }

/* gradient headline accent */
.lp .grad {
  background: linear-gradient(100deg, var(--brand) 0%, var(--brand-2) 60%, #ffe0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- buttons ------------------------------------------------------------- */
.lp .btn {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  min-height: 3.2rem;
  white-space: nowrap;
}

.lp .btn-primary {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #221405;
  box-shadow: var(--shadow-brand);
  border: none;
}

.lp .btn-primary:hover { box-shadow: 0 26px 70px rgba(249, 115, 22, 0.42); }

.lp .btn-ghost {
  background: var(--glass);
  color: var(--txt);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(8px);
}

.lp .btn-ghost:hover {
  border-color: var(--brand-2);
  color: #ffe6b9;
}

.lp .btn-lg { min-height: 3.5rem; padding: 1rem 2rem; font-size: 1.05rem; }

/* ---- glass card primitive ------------------------------------------------ */
.lp .glass {
  background: linear-gradient(180deg, var(--glass-strong) 0%, var(--glass) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.lp .navbar {
  padding: 0;
  background: rgba(7, 9, 14, 0.72);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp .navbar-brand-wrap { display: flex; align-items: center; gap: 0.6rem; }
.lp .navbar-logo { width: 34px; height: 34px; border-radius: 8px; }
.lp .navbar-brand { color: var(--txt); font-size: 1.35rem; }
.lp .nav-links a { color: var(--txt-dim); }
.lp .nav-links a:hover { color: var(--txt); border-bottom-color: var(--brand-2); }
.lp .nav-cta {
  padding: 0.55rem 1.1rem;
  min-height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #221405;
  font-weight: 700;
  border: none;
}
.lp .nav-cta:hover { border: none; color: #221405; box-shadow: var(--shadow-brand); }
/* Override the inherited .nav-links a color (var(--txt-dim)) which wins on
   specificity; keep the orange nav CTA text dark like the other primary
   buttons (btn-primary uses #221405). Text color only. */
.lp .nav-links a.nav-cta,
.lp .nav-links a.nav-cta:hover {
  color: #221405;
}

/* =========================================================================
   HERO
   ========================================================================= */
.lp section[id],
.lp #main-content > div[id] {
  scroll-margin-top: 5rem;
}

.lp .hero {
  min-height: auto;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: none;
  overflow: hidden;
}
.lp .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hvac-background.png");
  background-size: cover;
  background-position: center;
  filter: blur(14px) brightness(0.42) saturate(0.85);
  transform: scale(1.12);
  z-index: 0;
}
.lp .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(249, 115, 22, 0.16) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5,7,12,0.55) 0%, rgba(5,7,12,0.82) 60%, #05070c 100%);
  z-index: 0;
}
.lp .hero .fp-container { position: relative; z-index: 2; }

.lp .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
}
.lp .hero-copy { max-width: 560px; }
.lp .hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.lp .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--txt-dim);
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.lp .hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.5rem; }
.lp .playstore-cta {
  margin-bottom: 1.25rem;
}
.lp .playstore-label {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--txt-dim);
}
.lp .playstore-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  line-height: 0;
  transition: transform 180ms ease;
}
.lp .playstore-badge-link:hover {
  transform: scale(1.03);
}
.lp .playstore-badge {
  width: 180px;
  height: auto;
  display: block;
}

.lp .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 540px;
}
.lp .trust-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt-dim);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--glass);
}
.lp .trust-badge.accent { color: var(--brand-2); border-color: rgba(249,115,22,0.35); }

/* ---- phone mockup (reusable device frame) -------------------------------- */
.lp .phone-stage { display: flex; justify-content: center; position: relative; }
.lp .phone-stage::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.lp .phone {
  position: relative;
  z-index: 1;
  width: clamp(260px, 30vw, 340px);
  aspect-ratio: 9 / 19.2;
  border-radius: 2.6rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #23262e 0%, #0d0f14 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-lift), inset 0 0 0 2px rgba(0,0,0,0.6);
}
.lp .phone-notch {
  position: absolute;
  top: 0.9rem; left: 50%; transform: translateX(-50%);
  width: 34%; height: 1.4rem;
  background: #0a0b0f;
  border-radius: 999px;
  z-index: 3;
}
.lp .phone-screen {
  width: 100%; height: 100%;
  border-radius: 2.1rem;
  background: linear-gradient(180deg, #0c1220 0%, #070b13 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* on-screen app chrome used to fake product UI */
.lp .app-topbar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.6rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp .app-dot { width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); }
.lp .app-title { font-size: 0.85rem; font-weight: 700; color: var(--txt); }
.lp .app-title span { display: block; font-size: 0.62rem; font-weight: 500; color: var(--txt-faint); }
.lp .app-body { padding: 0.85rem; display: grid; gap: 0.55rem; align-content: start; flex: 1; }
.lp .demo-shell { display:grid; gap:0.6rem; }
.lp .demo-pill {
  display:inline-flex; align-items:center; width:fit-content;
  padding:0.34rem 0.6rem; border-radius:999px;
  font-size:0.58rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--brand-2); background:rgba(249,115,22,0.12); border:1px solid rgba(249,115,22,0.24);
}
.lp .demo-row { display:flex; gap:0.5rem; flex-wrap:wrap; }
.lp .demo-stat {
  flex:1; min-width:0; padding:0.55rem 0.65rem; border-radius:0.7rem;
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06);
}
.lp .demo-stat span { display:block; font-size:0.58rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--txt-faint); margin-bottom:0.18rem; }
.lp .demo-stat b { font-size:0.8rem; color:var(--txt); }
.lp .demo-status {
  display:inline-flex; align-items:center; justify-content:center;
  padding:0.5rem 0.7rem; border-radius:0.7rem;
  background:rgba(46,160,102,0.16); color:#b7f0cf; border:1px solid rgba(46,160,102,0.28);
  font-size:0.72rem; font-weight:600;
}
.lp .demo-graph { display:grid; gap:0.45rem; padding:0.55rem; border-radius:0.9rem; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); }
.lp .demo-bar { height:0.6rem; border-radius:999px; background:rgba(255,255,255,0.12); overflow:hidden; }
.lp .demo-bar span { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg, var(--brand), var(--brand-2)); animation:demoGrow 1.8s ease infinite alternate; }
.lp .demo-bar:nth-child(2) span { animation-delay:0.15s; }
.lp .demo-bar:nth-child(3) span { animation-delay:0.3s; }
.lp .demo-card {
  padding:0.7rem 0.8rem; border-radius:0.9rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06);
}
.lp .demo-card strong { display:block; font-size:0.8rem; color:var(--txt); margin-bottom:0.2rem; }
.lp .demo-card p { margin:0; font-size:0.72rem; color:var(--txt-dim); line-height:1.45; }
.lp .demo-list { display:grid; gap:0.5rem; }
.lp .demo-item {
  display:flex; gap:0.55rem; align-items:center; padding:0.6rem 0.7rem; border-radius:0.8rem;
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06);
}
.lp .demo-item strong { display:block; font-size:0.74rem; color:var(--txt); }
.lp .demo-item small { display:block; font-size:0.62rem; color:var(--txt-faint); margin-top:0.15rem; }
.lp .demo-badge {
  display:inline-flex; align-items:center; justify-content:center; min-width:2.4rem; padding:0.28rem 0.4rem;
  border-radius:999px; font-size:0.58rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--txt); background:rgba(255,255,255,0.08);
}
.lp .demo-progress {
  height:0.55rem; border-radius:999px; background:rgba(255,255,255,0.08); overflow:hidden;
}
.lp .demo-progress span { display:block; height:100%; width:68%; border-radius:inherit; background:linear-gradient(90deg,var(--brand),var(--brand-2)); animation:demoGrow 1.6s ease-in-out infinite alternate; }
.lp .bubble {
  font-size: 0.72rem; line-height: 1.4;
  padding: 0.55rem 0.7rem; border-radius: 0.8rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.lp .bubble.ai { background: rgba(249,115,22,0.10); border-color: rgba(249,115,22,0.28); color: #ffd9ad; }
.lp .bubble.user { background: rgba(255,255,255,0.05); color: var(--txt-dim); margin-left: 1.4rem; }
.lp .bubble.result { background: rgba(46,160,102,0.12); border-color: rgba(46,160,102,0.32); color: #b7f0cf; }
.lp .bubble .b-label { display:block; font-size:0.58rem; text-transform:uppercase; letter-spacing:0.1em; opacity:0.7; margin-bottom:0.15rem; }
.lp .app-metric { display:flex; justify-content:space-between; align-items:center;
  padding:0.5rem 0.7rem; border-radius:0.7rem; background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06); font-size:0.72rem; color:var(--txt-dim); }
.lp .app-metric b { color: var(--txt); font-size: 0.85rem; }

/* =========================================================================
   PROBLEM
   ========================================================================= */
.lp .problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.lp .pain {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,80,60,0.05), rgba(255,255,255,0.01));
}
.lp .pain-ico { font-size: 1.5rem; margin-bottom: 0.6rem; }
.lp .pain h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.lp .pain p { font-size: 0.92rem; color: var(--txt-dim); margin: 0; }
.lp .problem-turn {
  margin-top: 2.5rem; text-align: center;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 700; color: var(--txt);
}

/* =========================================================================
   SOLUTION / split feature rows (screen showcases)
   ========================================================================= */
.lp .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.lp .split.reverse .split-media { order: 2; }
.lp .split-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.lp .split-copy .lead { margin-bottom: 1.4rem; }
.lp .check-list { display: grid; gap: 0.7rem; margin: 1.2rem 0 1.6rem; }
.lp .check-list li { list-style: none; display: flex; gap: 0.6rem; color: var(--txt-dim); font-size: 0.98rem; }
.lp .check-list .tick {
  flex: none; width: 1.4rem; height: 1.4rem; border-radius: 999px;
  display: grid; place-items: center; font-size: 0.75rem; color: #221405;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}
.lp .showcase-stack { display: grid; gap: clamp(3.5rem, 8vw, 6rem); }

/* narrative continuity for Why -> Diagnostics -> Customers -> Jobs */
.lp #how,
.lp #problem,
.lp #solution,
.lp #features {
  padding-top: clamp(2.45rem, 4.8vw, 3.1rem);
  padding-bottom: clamp(2.45rem, 4.8vw, 3.1rem);
}
/* =========================================================================
   PLATFORM TOURS
   ========================================================================= */
.lp .tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.lp .tour-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.lp .tour-shot {
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.03);
}
.lp .tour-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.lp .tour-copy { padding: 1.05rem; }
.lp .tour-copy h3 { margin-bottom: 0.45rem; }
.lp .tour-copy p { color: var(--txt-dim); margin-bottom: 1rem; }

/* =========================================================================
   STATS
   ========================================================================= */
.lp .stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.lp .stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
}
.lp .stat b {
  display: block;
  font-size: clamp(1.7rem, 3.3vw, 2.35rem);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp .stat span { color: var(--txt-dim); font-size: 0.92rem; }
.lp .workforce-stats {
  margin-top: 0.25rem;
}
.lp .workforce-stats h3 {
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  margin: 0 auto 0.45rem;
  max-width: 700px;
}
.lp .workforce-stats .stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}
.lp .workforce-outro {
  text-align: center;
  margin: 0.65rem auto 0;
  max-width: 820px;
  color: var(--txt-dim);
}
.lp .workforce-outro + .workforce-outro {
  margin-top: 0.35rem;
}

/* =========================================================================
   EMBEDDED WALKTHROUGHS
   ========================================================================= */
.lp .embedded-walkthrough {
  margin: 1.35rem auto 0;
  max-width: 1450px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(100% 100% at 0% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(31, 24, 18, 0.45) 0%, rgba(20, 19, 20, 0.5) 100%);
  box-shadow: var(--shadow-soft);
  padding: clamp(0.8rem, 1.4vw, 1.15rem);
}
.lp .embedded-walkthrough .walkthrough-shell {
  width: 100%;
  max-width: 1450px;
  margin-inline: auto;
}
.lp .embedded-walkthrough .walkthrough-heading {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
.lp .embedded-walkthrough .walkthrough-layout {
  display: grid;
  grid-template-columns: minmax(250px, 312px) minmax(430px, 840px);
  gap: clamp(0.9rem, 1.9vw, 1.35rem);
  align-items: center;
  justify-content: center;
}
.lp .embedded-walkthrough .phone-shell {
  align-self: center;
  position: relative;
  width: min(312px, 100%);
  aspect-ratio: 390 / 844;
  margin-inline: auto;
  border-radius: 42px;
  padding: 7px;
  background: linear-gradient(155deg, #222222, #111111);
  border: 1px solid color-mix(in srgb, #ffffff 16%, transparent);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(0, 0, 0, 0.65);
}
.lp .embedded-walkthrough .phone-shell::before {
  content: "";
  position: absolute;
  inset: 10% -12% -4%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.02) 60%, transparent 80%);
  filter: blur(18px);
  z-index: -1;
}
.lp .embedded-walkthrough .phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 34%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0a;
}
.lp .embedded-walkthrough .phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: #000;
}
.lp .embedded-walkthrough .phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0;
  transition: opacity 300ms ease;
}
.lp .embedded-walkthrough .phone-shot.is-active {
  opacity: 1;
}
.lp .embedded-walkthrough .presentation-panel {
  min-height: clamp(360px, 40vh, 480px);
  height: auto;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--fp-text-primary, #ffffff) 12%, transparent);
  background: linear-gradient(160deg, #1b1f28, #12161f);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: clamp(16px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.lp .embedded-walkthrough .panel-title {
  font-size: clamp(1.6rem, 4.2vw, 2.15rem);
  margin: 0.45rem 0 0;
  line-height: 1.12;
}
.lp .embedded-walkthrough .panel-copy {
  opacity: 1;
  transition: opacity 300ms ease;
}
.lp .embedded-walkthrough .panel-copy.is-fading {
  opacity: 0;
}
.lp .embedded-walkthrough .panel-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: color-mix(in srgb, var(--txt-secondary, #b0b0b0) 76%, white);
}
.lp .embedded-walkthrough .panel-step {
  margin: 0.7rem 0 0;
  color: #ff8c3a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lp .embedded-walkthrough .panel-description {
  margin: 0.8rem 0 0;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.55;
}
.lp .embedded-walkthrough .panel-highlights {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}
.lp .embedded-walkthrough .panel-highlights li {
  color: #c4cad8;
  font-size: 14px;
  line-height: 1.45;
}
.lp .embedded-walkthrough .panel-highlights li::before {
  content: "\2713";
  color: #ff8c3a;
  margin-right: 10px;
}
.lp .embedded-walkthrough .panel-progress {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 18px;
}
.lp .embedded-walkthrough .progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(115, 115, 115, 0.6);
  transition: transform 300ms ease, background-color 300ms ease, opacity 300ms ease;
  opacity: 0.8;
}
.lp .embedded-walkthrough .progress-dot.is-active {
  transform: scale(1.35);
  background: #ff8c3a;
  opacity: 1;
}
.lp .embedded-walkthrough .panel-controls {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.lp .embedded-walkthrough .panel-controls button {
  appearance: none;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 12px;
  min-height: 36px;
  padding: 0 14px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.lp .embedded-walkthrough .panel-controls button:hover {
  background: #222222;
  border-color: color-mix(in srgb, #ff6b00 40%, #2a2a2a);
}
.lp .embedded-walkthrough .panel-controls [data-role="play-pause"] {
  background: #ff6b00;
  color: #0a0a0a;
  border-color: #ff6b00;
}
.lp .embedded-walkthrough .panel-controls [data-role="play-pause"]:hover {
  background: #ff8c3a;
}
.lp .embedded-walkthrough .autoplay-indicator {
  margin-left: auto;
  color: #b0b0b0;
  font-size: 11px;
}

/* =========================================================================
   HOW IT WORKS -- animated vertical workflow
   ========================================================================= */
.lp .flow {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin: 2.5rem auto 0;
  position: relative;
}
.lp .flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
}
.lp .flow-rail { display: grid; justify-items: center; }
.lp .flow-node {
  width: 2.6rem; height: 2.6rem; border-radius: 999px;
  display: grid; place-items: center; font-weight: 700; color: #221405;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(249,115,22,0.10);
}
.lp .flow-line { width: 2px; flex: 1; min-height: 2.2rem;
  background: linear-gradient(180deg, var(--brand-2), rgba(249,115,22,0.15)); }
.lp .flow-card {
  padding: 1rem 1.25rem; margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  background: var(--glass);
  animation: flowIn 0.6s ease both;
}
.lp .flow-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.lp .flow-card p { font-size: 0.9rem; color: var(--txt-dim); margin: 0; }
@keyframes flowIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* =========================================================================
   BENEFITS + FEATURE HIGHLIGHTS grids
   ========================================================================= */
.lp .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.lp .benefit {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.lp .benefit:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.lp .benefit-ico {
  width: 3rem; height: 3rem; border-radius: 0.9rem; margin-bottom: 1rem;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(249,115,22,0.14); border: 1px solid rgba(249,115,22,0.3);
}
.lp .benefit h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.lp .benefit p { font-size: 0.94rem; color: var(--txt-dim); margin: 0; }

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.lp .compare-wrap { margin-top: 2.5rem; overflow-x: auto; }
.lp .compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  min-width: 640px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--hairline);
}
.lp .compare th, .lp .compare td {
  padding: 1rem 1.1rem; text-align: left; font-size: 0.95rem;
  border-bottom: 1px solid var(--hairline);
}
.lp .compare thead th {
  background: var(--ink-2); color: var(--txt); font-weight: 700;
  font-size: 0.9rem;
}
.lp .compare thead th.fp-col {
  background: linear-gradient(180deg, rgba(249,115,22,0.22), rgba(249,115,22,0.08));
  color: #ffe6c2;
}
.lp .compare td.fp-col { background: rgba(249,115,22,0.05); color: var(--txt); font-weight: 600; }
.lp .compare tbody tr:last-child td { border-bottom: none; }
.lp .compare .row-label { color: var(--txt-dim); font-weight: 600; }
.lp .yes { color: #58d19a; font-weight: 700; }
.lp .no { color: #6b7488; }
.lp .partial { color: var(--brand-2); }

/* =========================================================================
   FOUNDING BETA
   ========================================================================= */
.lp .workforce-stats .stat {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
}
.lp .feature-card-grid .benefit-ico {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp #beta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 4.2rem);
  padding-bottom: clamp(3.2rem, 6vw, 4.4rem);
}
.lp #beta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(44% 40% at 12% 48%, rgba(249, 115, 22, 0.22) 0%, transparent 74%),
    radial-gradient(38% 36% at 83% 12%, rgba(249, 115, 22, 0.14) 0%, transparent 76%),
    radial-gradient(46% 50% at 74% 82%, rgba(249, 115, 22, 0.11) 0%, transparent 78%),
    linear-gradient(180deg,
      rgba(5, 7, 12, 0.0) 0%,
      rgba(5, 7, 12, 0.55) 12%,
      rgba(5, 7, 12, 0.88) 30%,
      rgba(5, 7, 12, 0.92) 55%,
      rgba(5, 7, 12, 0.94) 100%);
  z-index: 0;
}
.lp #beta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.2) 0%, rgba(5, 7, 12, 0.45) 100%);
  opacity: 0.34;
  filter: blur(0.3px);
  z-index: 0;
}
.lp #beta .fp-container {
  position: relative;
  z-index: 1;
}
.lp .beta-assembly {
  max-width: 1240px;
  margin-inline: auto;
  text-align: center;
}
.lp .beta-eyebrow {
  display: inline-flex;
  padding: 0.48rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.7);
  background: rgba(15, 11, 10, 0.72);
  color: #ff9a1f;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}
.lp .beta-assembly-header h2 {
  margin: 1rem auto 0;
  max-width: 1180px;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.lp .beta-assembly-header h2 span {
  color: #ff9818;
}
.lp .beta-assembly-copy {
  margin: 1.2rem auto 0;
  max-width: 980px;
  color: #d3d8e4;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.34;
}
.lp .beta-assembly-copy b {
  color: #ff9a1f;
}
.lp .beta-banner {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1180px;
  margin: 1.1rem auto 0;
}
.lp .beta-banner-cards {
  margin-top: 1.4rem;
}
.lp .beta-cta-row {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.lp .beta-cta-primary {
  min-width: min(590px, 72vw);
  min-height: 4.45rem;
  font-size: 1.05rem;
  border-radius: 0.9rem;
}
.lp .beta-store {
  min-height: 4.7rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0.7rem;
  background: rgba(10, 10, 12, 0.7);
}
.lp .beta-store .playstore-badge {
  width: 220px;
}
.lp .beta-footnote {
  margin: 0.7rem 0 0;
  color: rgba(225, 231, 242, 0.7);
  font-size: 0.92rem;
}

/* =========================================================================
   PRICING
   ========================================================================= */
.lp .price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem; align-items: stretch;
}
.lp .price {
  display: flex; flex-direction: column;
  padding: 2rem 1.7rem; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline); background: linear-gradient(180deg, var(--glass-strong), var(--glass));
}
.lp .price.featured {
  border-color: rgba(249,115,22,0.55);
  box-shadow: var(--shadow-brand);
  background: linear-gradient(180deg, rgba(249,115,22,0.10), rgba(255,255,255,0.02));
  transform: translateY(-8px);
}
.lp .price-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #221405; padding: 0.25rem 0.7rem; border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); margin-bottom: 0.9rem; align-self: flex-start; }
.lp .price h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.lp .price-amt { font-size: 2.4rem; font-weight: 800; color: var(--txt); letter-spacing: -0.02em; }
.lp .price-amt small { font-size: 0.95rem; font-weight: 500; color: var(--txt-faint); }
.lp .price-desc { color: var(--txt-dim); font-size: 0.92rem; margin: 0.4rem 0 1.2rem; }
.lp .price-feats { display: grid; gap: 0.6rem; margin-bottom: 1.6rem; flex: 1; }
.lp .price-feats li { list-style: none; display: flex; gap: 0.55rem; font-size: 0.92rem; color: var(--txt-dim); }
.lp .price-feats .tick { color: var(--brand-2); flex: none; }
.lp .price .btn { width: 100%; }

/* =========================================================================
   FAQ accordion (pure CSS <details>)
   ========================================================================= */
.lp .faq { max-width: 780px; margin: 2.5rem auto 0; display: grid; gap: 0.75rem; }
.lp .faq-item { border: 1px solid var(--hairline); border-radius: var(--radius-sm);
  background: var(--glass); overflow: hidden; }
.lp .faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem;
  font-weight: 600; color: var(--txt); display: flex; justify-content: space-between; gap: 1rem;
  font-size: 1rem;
}
.lp .faq-item summary::-webkit-details-marker { display: none; }
.lp .faq-item summary::after { content: "+"; color: var(--brand-2); font-size: 1.3rem; line-height: 1; transition: transform 0.2s ease; }
.lp .faq-item[open] summary::after { transform: rotate(45deg); }
.lp .faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--txt-dim); font-size: 0.95rem; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.lp .finalcta .fp-container { text-align: center; }
.lp .finalcta-inner {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249,115,22,0.35);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(249,115,22,0.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--glass-strong), var(--ink-1));
  box-shadow: var(--shadow-soft);
}
.lp .finalcta h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.9rem; }
.lp .finalcta .lead { margin: 0 auto 2rem; }
.lp .finalcta .hero-actions { justify-content: center; }
.lp .finalcta .playstore-badge {
  width: 190px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.lp .footer .fp-container { padding-top: 3rem; padding-bottom: 3rem; }
.lp .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.lp .footer-grid-modern {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(5, minmax(120px, 1fr));
  gap: 1.3rem;
}
.lp .footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.lp .footer-brand img { width: 30px; height: 30px; border-radius: 7px; }
.lp .footer-brand b { font-size: 1.15rem; color: var(--txt); }
.lp .footer p { color: var(--txt-faint); font-size: 0.9rem; max-width: 300px; }
.lp .footer-links { display: grid; gap: 0.5rem; }
.lp .footer-links h4 {
  color: var(--txt);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.lp .footer-links a { color: var(--txt-dim); font-size: 0.9rem; }
.lp .footer-links a:hover { color: var(--brand-2); }
.lp .footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline);
  color: var(--txt-faint); font-size: 0.85rem; text-align: center; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .lp .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .lp .hero-copy { max-width: 640px; margin-inline: auto; }
  .lp .hero-sub { margin-inline: auto; }
  .lp .hero-actions, .lp .trust-badges { justify-content: center; }
  .lp .playstore-cta { text-align: center; }
  .lp .phone-stage { margin-top: 1rem; }
  .lp .split { grid-template-columns: 1fr; }
  .lp .split.reverse .split-media { order: 0; }
  .lp .split-media { max-width: 360px; margin-inline: auto; }
  .lp .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp .workforce-stats .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp .embedded-walkthrough .walkthrough-layout {
    grid-template-columns: 1fr;
  }
  .lp .embedded-walkthrough .presentation-panel {
    width: 100%;
  }
  .lp .tour-grid { grid-template-columns: 1fr; }
  .lp .footer-grid-modern { grid-template-columns: 1fr 1fr; }
  .lp .beta-assembly-header h2 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); }
  .lp .beta-cta-primary { min-width: min(560px, 72vw); }
}

@media (max-width: 560px) {
  .lp .price.featured { transform: none; }
  .lp .nav-links { display: none; }
  .lp .hero-actions { flex-direction: column; align-items: stretch; }
  .lp .hero-actions .btn { width: 100%; }
  .lp .playstore-badge-link {
    width: min(100%, 320px);
  }
  .lp .playstore-badge {
    width: 100%;
  }
  .lp .trust-badges { justify-content: center; }
  .lp .phone { width: min(84vw, 320px); }
  .lp .stats { grid-template-columns: 1fr; }
  .lp .workforce-stats .stats { grid-template-columns: 1fr; }
  .lp .embedded-walkthrough .walkthrough-heading {
    font-size: 1.9rem;
  }
  .lp .embedded-walkthrough .panel-title {
    font-size: 1.9rem;
  }
  .lp .footer-grid-modern { grid-template-columns: 1fr; }
  .lp .beta-cta-row { flex-direction: column; }
  .lp .beta-cta-primary { min-height: 4rem; min-width: min(680px, 100%); width: 100%; }
  .lp .beta-store { width: 100%; }
  .lp .beta-store .playstore-badge { width: min(100%, 260px); }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .lp * { animation: none !important; transition: none !important; }
  .lp html { scroll-behavior: auto; }
}

