/* ═══════════════════════════════════════════════════════════════════
   SwellFrame — Midnight Navy Light (Color Direction 09)
   White air, navy depth, vivid blue pulse.
   Arctic #FFFFFF | Mist #F0F6FF | Abyss #0B1A2E | Blue #3B5BFE | Deep Navy #1A3352
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  /* Core palette — same hues, inverted roles */
  --navy:          #0B1A2E;   /* now: text, headings, dark sections */
  --navy-mid:      #1A3352;   /* now: secondary text, nav links */
  --navy-light:    #2D5282;   /* now: muted text, borders */
  --navy-border:   #D4E4F2;   /* now: card borders, dividers (light) */
  --blue:          #3B5BFE;   /* accent: CTAs, highlights, eyebrows */
  --blue-dark:     #2D4BE8;   /* accent hover */
  --teal:          #00B89C;   /* secondary accent — kept for success states */
  --white:         #FFFFFF;
  --off-white:     #F5F9FC;   /* alternate section bg */
  --pale-blue:     #EBF4FF;   /* subtle blue-tint bg for alt sections */
  --muted:         #4A6B8A;   /* body text on white */
  --muted-light:   #7A9BB8;   /* captions, microcopy */
  --amber:         #F59E0B;   /* testimonial stars */
  --section-alt:   #F0F6FF;   /* alternating section background */

  /* Legacy aliases — updated for light theme */
  --lp-white:            #ffffff;
  --lp-off-white:        #F5F9FC;
  --lp-text:             #0B1A2E;
  --lp-text-secondary:   #4A6B8A;
  --lp-text-tertiary:    #7A9BB8;
  --lp-accent:           #3B5BFE;
  --lp-accent-light:     #3B5BFE;
  --lp-accent-hover:     #00B89C;
  --lp-dark-bg:          #0B1A2E;   /* used for final CTA + footer */
  --lp-dark-surface:     #152640;
  --lp-dark-text:        #F5F9FC;   /* text color ON dark sections — must stay light */
  --lp-warm-gray:        #F0F6FF;
  --lp-border:           #D4E4F2;

  /* Typography */
  --lp-font:        'DM Sans', system-ui, -apple-system, sans-serif;
  --lp-font-serif:  'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --lp-section-pad:  clamp(4rem, 8vw, 7rem);
  --lp-container:    1200px;
  --lp-gap:          1.5rem;

  /* Radius */
  --lp-radius-sm: 10px;
  --lp-radius-md: 16px;
  --lp-radius-lg: 24px;

  /* Transitions */
  --lp-ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --lp-transition: 0.35s var(--lp-ease);
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.lp-body {
  margin: 0;
  padding: 0;
  font-family: var(--lp-font);
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Container ─────────────────────────────────────────────────── */
.lp-container {
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lp-container--narrow { max-width: 800px; }

/* ── Section Base ──────────────────────────────────────────────── */
.lp-section {
  padding: var(--lp-section-pad) 0;
  background: var(--white);
}

/* Dark section — stays navy for contrast (final CTA, etc.) */
.lp-section--dark {
  background: var(--navy);
  color: var(--white);
}

/* Alt section — very pale blue, used for step / card sections */
.lp-section--gray {
  background: var(--section-alt);
  color: var(--navy);
}

.lp-section--accent {
  background: var(--blue);
  color: var(--navy);
}

/* ── Typography ────────────────────────────────────────────────── */
.lp-eyebrow {
  font-family: var(--lp-font);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: block;
}

.lp-headline {
  font-family: var(--lp-font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.lp-headline--sm {
  font-family: var(--lp-font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Headings inside dark sections */
.lp-section--dark .lp-headline,
.lp-section--dark .lp-headline--sm,
.lp-final-cta .lp-headline {
  color: var(--white);
}

.lp-body-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.lp-text-center { text-align: center; }
.lp-mx-auto { max-width: 600px; margin-inline: auto; }

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--lp-ease), transform 0.75s var(--lp-ease);
}

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

.lp-reveal-stagger .lp-reveal:nth-child(1) { transition-delay: 0s; }
.lp-reveal-stagger .lp-reveal:nth-child(2) { transition-delay: 0.1s; }
.lp-reveal-stagger .lp-reveal:nth-child(3) { transition-delay: 0.2s; }
.lp-reveal-stagger .lp-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Buttons ───────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-family: var(--lp-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.22s var(--lp-ease), color 0.22s, transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

/* Primary: Brick blue bg, white text */
.lp-btn--primary {
  background: #3B5BFE;
  color: var(--white);
}

.lp-btn--primary:hover {
  background: #2D4BE8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 91, 254, 0.30);
}

/* Secondary: subtle border, color-change hover */
.lp-btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-border);
}

.lp-btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Outline — used in dark sections */
.lp-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.lp-btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.lp-btn-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── ═══════════════════════════════════════════════════════════
      NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled: frosted white */
.lp-nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(11, 26, 46, 0.08);
}

.lp-nav__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav__brand {
  font-family: var(--lp-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
  transition: color 0.3s;
}

.lp-nav--scrolled .lp-nav__brand {
  color: var(--blue);
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 500;
}

.lp-nav__links a {
  padding: 0.4rem 0.75rem;
  color: rgba(255,255,255,0.88);   /* white over hero */
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.lp-nav--scrolled .lp-nav__links a {
  color: var(--navy-mid);          /* navy once scrolled */
}

.lp-nav__links a:hover { color: var(--blue) !important; }

.lp-nav__login { color: rgba(255,255,255,0.6) !important; }
.lp-nav--scrolled .lp-nav__login { color: var(--muted-light) !important; }
.lp-nav__login:hover { color: var(--blue) !important; }

.lp-nav__cta {
  padding: 0.5rem 1.25rem !important;
  background: #3B5BFE !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.lp-nav__cta:hover {
  background: #2D4BE8 !important;
  transform: translateY(-1px);
}

/* Hamburger */
.lp-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.lp-nav--scrolled .lp-nav__hamburger span { background: var(--navy); }

.lp-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }

.lp-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.lp-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.lp-mobile-drawer.is-open { display: block; }

.lp-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 46, 0.4);
  backdrop-filter: blur(4px);
}

.lp-mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  border-left: 1px solid var(--navy-border);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lp-mobile-drawer__link {
  display: block;
  padding: 0.85rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.lp-mobile-drawer__link:hover {
  color: var(--blue);
  background: var(--pale-blue);
}

.lp-mobile-drawer__cta {
  margin-top: auto;
  padding-top: 2rem;
}

/* ── ═══════════════════════════════════════════════════════════
      HERO — Full-Bleed with light gradient
   ═══════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  will-change: transform;
}

/* Light gradient left — lets image breathe on the right */
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(240, 246, 255, 0.85) 45%,
    rgba(240, 246, 255, 0.45) 100%
  );
}

.lp-hero__image { display: none; }

.lp-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-left: max(2%, calc((100vw - 1200px) / 2));
}

.lp-hero__wordmark {
  font-family: var(--lp-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
}

.lp-hero__headline {
  font-family: var(--lp-font-serif);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.07;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.lp-hero__headline em {
  color: var(--blue);
  font-style: italic;
}

.lp-hero__sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}

.lp-hero__microcopy {
  font-size: 0.8rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* ── ═══════════════════════════════════════════════════════════
      FORECAST SHOWCASE — Feature side-by-side
   ═══════════════════════════════════════════════════════════ */
.lp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
  background: var(--white);
}

.lp-feature__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--section-alt);
  height: 100%;
}

.lp-device-frame {
  max-width: 380px;
  background: linear-gradient(145deg, #3a3a3a 0%, #555 40%, #404040 100%);
  border-radius: 14px;
  padding: 14px;
  box-shadow:
    0 40px 100px rgba(11, 26, 46, 0.20),
    0 0 0 1px rgba(11, 26, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lp-device-frame img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.lp-feature__body {
  padding: 5rem;
  background: var(--white);
}

.lp-feature__body h2 {
  margin-bottom: 1.2rem;
}

.lp-feature__body h2 em {
  color: var(--blue);
  font-style: italic;
}

.lp-feature__body .lp-body-text {
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* Pill tags */
.lp-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.lp-tag {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--navy-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--off-white);
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.lp-tag:hover {
  border-color: var(--blue);
  background: var(--pale-blue);
  color: var(--blue);
}

/* "Nope" row — strikethrough anti-tags */
.lp-tags--nope {
  margin-top: 0.5rem;
}

.lp-tag--strike {
  color: var(--muted);
  border-color: transparent;
  background: transparent;
  opacity: 0.55;
}

.lp-tag--strike s {
  text-decoration: line-through;
  text-decoration-color: var(--muted);
}

.lp-tag--strike:hover {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

/* Full-bleed image variant for feature splits */
.lp-feature__img-wrap--full {
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}

.lp-feature__img-wrap--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Alternate feature background — pale blue body, white image wrap */
.lp-feature--alt {
  background: var(--section-alt);
}

.lp-feature--alt .lp-feature__img-wrap--full {
  background: var(--white);
}

.lp-feature--alt .lp-feature__body {
  background: var(--section-alt);
}

/* ── ═══════════════════════════════════════════════════════════
      WHERE IT LIVES — Card Grid
   ═══════════════════════════════════════════════════════════ */
.lp-where {
  background: var(--section-alt);
  padding: var(--lp-section-pad) 0;
}

.lp-spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-spot-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: default;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.10);
  transition: box-shadow 0.3s, transform 0.3s;
}

.lp-spot-card:hover {
  box-shadow: 0 12px 40px rgba(11, 26, 46, 0.18);
  transform: translateY(-4px);
}

.lp-spot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-spot-card:hover img { transform: scale(1.04); }

.lp-spot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 46, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.lp-spot-card__text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
  text-align: left;
}

.lp-spot-card__text h3 {
  font-family: var(--lp-font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.lp-spot-card__text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}

/* ── ═══════════════════════════════════════════════════════════
      HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.lp-step {
  background: var(--white);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--lp-radius-md);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lp-step:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59, 91, 254, 0.12);
}

.lp-step__icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.lp-step__number {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.lp-step__title {
  font-family: var(--lp-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.lp-step__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── ═══════════════════════════════════════════════════════════
      DESIGN / PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.lp-card {
  background: var(--white);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--lp-radius-md);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

/* Cards inside dark sections */
.lp-section--dark .lp-card {
  background: rgba(26, 51, 82, 0.50);
  border-color: rgba(59, 91, 254, 0.10);
}

.lp-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(59, 91, 254, 0.10);
}

.lp-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.lp-card__title {
  font-family: var(--lp-font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.lp-section--dark .lp-card__title { color: var(--white); }

.lp-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.lp-section--dark .lp-card__desc { color: var(--muted-light); }

/* ── ═══════════════════════════════════════════════════════════
      AI SECTION (legacy — kept for compat)
   ═══════════════════════════════════════════════════════════ */
.lp-ai-section { background: var(--section-alt); }

.lp-ai-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.lp-ai-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--lp-radius-sm);
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-mid);
  transition: border-color 0.2s, background 0.2s;
}

.lp-ai-feature:hover {
  border-color: var(--blue);
  background: var(--pale-blue);
}

.lp-ai-feature__icon { font-size: 1.2rem; }

/* ── ═══════════════════════════════════════════════════════════
      TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.lp-testimonial {
  background: var(--white);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--lp-radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-testimonial:hover {
  border-color: rgba(59, 91, 254, 0.4);
  box-shadow: 0 6px 24px rgba(59, 91, 254, 0.08);
}

.lp-testimonial__stars {
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.lp-testimonial__quote {
  font-size: 0.97rem;
  color: var(--navy-mid);
  line-height: 1.7;
  font-style: italic;
}

.lp-testimonial__author {
  font-size: 0.82rem;
  color: var(--muted-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── ═══════════════════════════════════════════════════════════
      PRICING
   ═══════════════════════════════════════════════════════════ */
.lp-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
  margin-top: 3.5rem;
}

.lp-pricing-card {
  background: var(--white);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--lp-radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.lp-pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(59, 91, 254, 0.25), 0 20px 50px rgba(59, 91, 254, 0.10);
}

.lp-pricing-card__badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--blue);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.lp-pricing-card__name {
  font-family: var(--lp-font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.lp-pricing-card__price {
  font-family: var(--lp-font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin: 0.4rem 0;
}

.lp-pricing-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.lp-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.lp-pricing-card__features li {
  font-size: 0.93rem;
  color: var(--navy-mid);
  padding-left: 1.4rem;
  position: relative;
}

.lp-pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── ═══════════════════════════════════════════════════════════
      FINAL CTA — stays dark for contrast anchor at page end
   ═══════════════════════════════════════════════════════════ */
.lp-final-cta {
  background: var(--navy);
}

.lp-final-cta .lp-headline,
.lp-final-cta .lp-body-text {
  color: rgba(255,255,255,0.88);
}

/* ── Email Form ─────────────────────────────────────────────── */
.lp-email-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lp-email-form--centered {
  justify-content: center;
  flex-wrap: wrap;
}

.lp-email-form__input {
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--lp-font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lp-email-form__input::placeholder { color: rgba(255,255,255,0.4); }

.lp-email-form__input:focus {
  border-color: var(--blue);
  background: rgba(59, 91, 254, 0.08);
}

.lp-email-form__success {
  display: none;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
}

.lp-email-form__success.is-visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── ═══════════════════════════════════════════════════════════
      FOOTER — stays dark
   ═══════════════════════════════════════════════════════════ */
.lp-footer {
  background: var(--navy);
  padding: 4rem 0 3rem;
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 2rem 4rem;
  align-items: start;
}

.lp-footer__brand {
  font-family: var(--lp-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.lp-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
}

.lp-footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}

.lp-footer__nav a:hover { color: var(--blue); }

.lp-footer__social {
  display: flex;
  gap: 0.75rem;
}

.lp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s, border-color 0.2s;
}

.lp-footer__social a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.lp-footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── ═══════════════════════════════════════════════════════════
      RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-feature { grid-template-columns: 1fr; }
  .lp-feature__img-wrap { order: -1; min-height: 400px; }
  .lp-feature__body { padding: 3rem 2rem; }
  .lp-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-nav__links { display: none; }
  .lp-nav__hamburger { display: flex; }

  .lp-steps { grid-template-columns: 1fr; }
  .lp-card-grid { grid-template-columns: 1fr; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-spot-grid { grid-template-columns: 1fr; max-width: 400px; }

  .lp-hero__copy { padding-left: 1.5rem; padding-right: 1.5rem; margin-left: 0; }
  .lp-hero__headline { font-size: 2.8rem; }

  .lp-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-footer__social { margin-top: 0; }
}

@media (max-width: 480px) {
  .lp-btn-group { flex-direction: column; align-items: flex-start; }
  .lp-email-form { flex-direction: column; align-items: stretch; }
  .lp-email-form__input { max-width: 100%; }
}

/* ── Auth Pages (login.html, signup.html) ──────────────────────── */

.auth-page {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: var(--section-alt);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.auth-title {
  font-family: var(--lp-font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.auth-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.8rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-row {
  display: flex;
  gap: 1rem;
}

.auth-row .auth-field {
  flex: 1;
}

.auth-hint {
  font-weight: 400;
  color: var(--muted-light);
}

.auth-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.auth-field input,
.auth-field select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--navy-border);
  border-radius: 10px;
  font-family: var(--lp-font);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 91, 254, 0.08);
}

.auth-field input::placeholder {
  color: var(--muted-light);
}

.auth-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--blue);
}

.auth-checkbox span {
  font-weight: 500;
}

.auth-forgot {
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-forgot:hover {
  color: var(--blue-dark);
}

.auth-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.auth-footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth-footer a:hover {
  color: var(--blue-dark);
}

/* Signup specific */
.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  margin-top: 0.2rem;
}

.auth-terms input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.auth-terms a {
  color: var(--blue);
  text-decoration: underline;
}

.auth-divider {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.82rem;
  margin: 0.5rem 0;
  position: relative;
}

.auth-error {
  color: #E53E3E;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 2rem 1.5rem;
  }
  .auth-title {
    font-size: 1.5rem;
  }
  .auth-check-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
