/* ============================================================
   PWLBtoday — landing page (front door)
   Premium dark hero + light tools/why bands. Self-contained.
   Brand: navy #0a2540 · orange #fd7e14 · mint #2dd4a8
   ============================================================ */

:root {
  --landing-navy: #0a2540;
  --landing-navy-mid: #143659;
  --landing-navy-light: #1a4775;
  --landing-orange: #fd7e14;
  --landing-orange-2: #ff9a4d;
  --landing-mint: #2dd4a8;
  --landing-sky: #5cc8ff;
  --landing-ink: #0c1826;
  --landing-text: #243240;
  --landing-muted: #5a6b7b;
  --landing-line: #e6eaf0;
  --landing-bg: #f5f7fa;
  --lp-radius: 18px;
  --lp-shadow: 0 24px 60px -28px rgba(8, 22, 40, 0.55);
  --lp-maxw: 1200px;
  --lp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Two-tone product wordmarks (PWLBpredict, PWLBacademy, PWLBbrief) — the
   "PWLB" prefix inherits the surrounding text colour, the product name
   gets the brand orange, matching the in-app sidebar/header treatment. */
.lp-accent { color: var(--landing-orange); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--landing-text);
  background: var(--landing-navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- buttons ---------- */
.lp-btn {
  --b: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--lp-ease), box-shadow 0.25s var(--lp-ease),
    background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lp-btn-lg { padding: 14px 26px; font-size: 1rem; }
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-primary {
  background: linear-gradient(135deg, var(--landing-orange), var(--landing-orange-2));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(253, 126, 20, 0.65);
}
.lp-btn-primary:hover { box-shadow: 0 18px 38px -10px rgba(253, 126, 20, 0.75); }
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.lp-btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.lp-btn-outline {
  background: transparent;
  color: var(--landing-navy);
  border-color: rgba(10, 37, 64, 0.25);
}
.lp-btn-outline:hover { border-color: var(--landing-orange); color: var(--landing-orange); }

/* ---------- free badge ---------- */
.lp-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--landing-mint);
  background: rgba(45, 212, 168, 0.12);
  border: 1px solid rgba(45, 212, 168, 0.35);
  padding: 7px 13px;
  border-radius: 999px;
}
.lp-free-badge-sm { font-size: 0.72rem; padding: 4px 10px; }

/* ---------- live dot ---------- */
.lp-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--landing-mint);
  box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.6);
  animation: lp-pulse 2.2s infinite;
  flex: none;
}
@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(45, 212, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0); }
}

/* ============================ NAV ============================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s, padding 0.3s;
}
.lp-nav.scrolled {
  background: rgba(8, 20, 36, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  padding-bottom: 10px;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 6px 12px;
}
.lp-brand-logo { height: 34px; width: auto; display: block; }
.lp-nav-links {
  display: flex;
  gap: 26px;
  margin-left: 18px;
  margin-right: auto;
}
.lp-nav-links a,
.lp-nav-links button {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 550;
  font-size: 0.92rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.lp-nav-links a::after,
.lp-nav-links button::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--landing-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--lp-ease);
}
.lp-nav-links a:hover, .lp-nav-links button:hover { color: #fff; }
.lp-nav-links a:hover::after, .lp-nav-links button:hover::after { transform: scaleX(1); }
.lp-nav-actions { display: flex; align-items: center; gap: 14px; }
.lp-link-signin {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
}
.lp-link-signin:hover { color: #fff; }

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.lp-nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.lp-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 49;
  width: min(80vw, 320px);
  height: 100dvh;
  background: rgba(10, 24, 42, 0.97);
  backdrop-filter: blur(16px);
  padding: 92px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.34s var(--lp-ease);
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.6);
}
.lp-mobile-menu.open { transform: translateX(0); }
.lp-mobile-menu a,
.lp-mobile-menu button {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
.lp-mobile-menu a.lp-btn { justify-content: center; margin-top: 18px; border: none; }

/* ===== Shell integration — landing now lives inside the dashboard shell
   (white header + sidebar). Let the content go edge-to-edge in the content
   column so the hero/section backgrounds stay full-bleed. ===== */
body[data-page="home"] .site-main-wrap { padding: 0; }
.lp-main { display: block; min-width: 0; }

/* ============================ HERO ============================ */
.lp-hero {
  position: relative;
  min-height: calc(100svh - var(--shell-header-h, 60px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(18px, 4vw, 44px) 90px;
  background:
    radial-gradient(1200px 700px at 78% -5%, rgba(26, 71, 117, 0.65), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(253, 126, 20, 0.16), transparent 55%),
    linear-gradient(160deg, #07182c 0%, #0a2540 45%, #102f52 100%);
  overflow: hidden;
}
.lp-hero-aurora {
  position: absolute; inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(closest-side, rgba(92, 200, 255, 0.18), transparent),
    radial-gradient(closest-side, rgba(45, 212, 168, 0.16), transparent);
  background-position: 30% 20%, 75% 40%;
  background-size: 60% 60%, 55% 55%;
  background-repeat: no-repeat;
  filter: blur(20px);
  animation: lp-aurora 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes lp-aurora {
  0% { transform: translate3d(0,0,0) scale(1); opacity: 0.8; }
  100% { transform: translate3d(4%, 3%, 0) scale(1.08); opacity: 1; }
}
.lp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 80%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.lp-hero-title {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 22px;
}
.lp-grad {
  background: linear-gradient(105deg, var(--landing-orange-2) 0%, var(--landing-orange) 45%, #ffd9b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  max-width: 38ch;
  margin: 0 0 32px;
}
.lp-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.lp-hero-stats {
  display: flex;
  gap: clamp(22px, 4vw, 44px);
}
.lp-stat { display: flex; flex-direction: column; gap: 2px; }
.lp-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-stat-text { color: var(--landing-mint); }
.lp-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* hero visual / showpiece card */
.lp-hero-visual { position: relative; }
.lp-hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 20px 20px 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.65);
}
.lp-hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.lp-hero-card-eyebrow {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--landing-orange);
  font-weight: 700;
}
.lp-hero-card-title { color: #fff; font-weight: 650; font-size: 1.02rem; }
.lp-chip-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--landing-mint);
  background: rgba(45, 212, 168, 0.12);
  border: 1px solid rgba(45, 212, 168, 0.3);
  padding: 4px 10px; border-radius: 999px;
}
.lp-hero-chart { width: 100%; height: 280px; }
.lp-hero-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.lp-hero-card-foot b { color: #fff; }
.lp-hero-card-foot .lp-up { color: var(--landing-mint); font-weight: 700; }

/* live tip halo on the hero movement chart (mirrors the predictor) */
.lp-spark-halo { animation: lp-halo 1.7s ease-out infinite; }
.lp-spark-halo-2 { animation-delay: 0.85s; }
@keyframes lp-halo {
  0% { r: 3; stroke-opacity: 0.85; }
  100% { r: 13; stroke-opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-spark-halo { animation: none; }
}
.lp-hero-card-foot a { color: var(--landing-orange); font-weight: 650; }
.lp-hero-card-foot a:hover { text-decoration: underline; }

/* returning users */
.lp-returning {
  position: relative; z-index: 2;
  max-width: var(--lp-maxw);
  margin: 38px auto 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.lp-returning a { color: var(--landing-orange); font-weight: 650; }
.lp-returning a:hover { text-decoration: underline; }
.lp-sethome {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 13px; border-radius: 999px; cursor: pointer;
  transition: background 0.2s;
}
.lp-sethome:hover { background: rgba(255, 255, 255, 0.14); }
.lp-sethome.done { color: var(--landing-mint); border-color: rgba(45, 212, 168, 0.4); }

/* scroll cue */
.lp-scrollcue {
  position: absolute;
  z-index: 2;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.lp-scrollcue svg { animation: lp-bob 1.8s ease-in-out infinite; }
@keyframes lp-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================ TOOLS ============================ */
.lp-tools {
  background: var(--landing-bg);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 44px);
  border-radius: 36px 36px 0 0;
  margin-top: -28px;
  position: relative; z-index: 3;
}
.lp-section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.lp-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--landing-orange);
  margin-bottom: 14px;
}
.lp-kicker-brand { color: var(--landing-navy); }
.lp-section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--landing-navy);
  margin: 0 0 14px;
}
.lp-section-head p { color: var(--landing-muted); font-size: 1.05rem; margin: 0; }

.lp-grid {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.lp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--landing-line);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(8, 22, 40, 0.04);
  transition: transform 0.3s var(--lp-ease), box-shadow 0.3s var(--lp-ease),
    border-color 0.3s;
  min-height: 232px;
}
.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow);
  border-color: rgba(253, 126, 20, 0.4);
}
button.lp-card {
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  padding: 0;
}
.lp-card-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.lp-card-tag {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--landing-orange); margin-bottom: 12px;
}
/* Two-tone product wordmark tags (PWLBpredict, PWLBbrief, PWLBacademy):
   "PWLB" picks up the surrounding navy/white, the product name stays orange. */
.lp-card-tag-brand { color: var(--landing-navy); }
.lp-card-academy .lp-card-tag.lp-card-tag-brand { color: rgba(255, 255, 255, 0.85); }
.lp-card-academy .lp-card-tag-brand .lp-accent { color: var(--landing-orange-2); }
.lp-card h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.18; letter-spacing: -0.015em;
  color: var(--landing-navy); font-weight: 750; margin: 0 0 10px;
}
.lp-card p { color: var(--landing-muted); font-size: 0.96rem; line-height: 1.55; margin: 0 0 18px; }
.lp-card-go {
  margin-top: auto;
  font-weight: 700; font-size: 0.92rem; color: var(--landing-navy);
  display: inline-flex; align-items: center; gap: 7px;
}
.lp-card-go i { font-style: normal; transition: transform 0.25s var(--lp-ease); color: var(--landing-orange); }
.lp-card:hover .lp-card-go i { transform: translateX(5px); }

/* icon chip (replaces the per-card mini charts) */
.lp-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--landing-orange);
  background: linear-gradient(135deg, rgba(253, 126, 20, 0.13), rgba(45, 212, 168, 0.13));
  border: 1px solid rgba(253, 126, 20, 0.18);
  margin-bottom: 18px;
  transition: transform 0.3s var(--lp-ease);
}
.lp-card-icon svg { width: 26px; height: 26px; }
.lp-card:hover .lp-card-icon { transform: translateY(-2px) scale(1.05); }
.lp-card-icon-light {
  color: var(--landing-orange-2);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
/* academy card gets a richer dark tint */
.lp-card-academy {
  background: linear-gradient(150deg, #0d2944, #123a63);
  border-color: rgba(255, 255, 255, 0.1);
}
.lp-card-academy .lp-card-tag { color: var(--landing-orange-2); }
.lp-card-academy h3 { color: #fff; }
.lp-card-academy p { color: rgba(255, 255, 255, 0.72); }
.lp-card-academy .lp-card-go { color: #fff; }
.lp-card-academy:hover { border-color: rgba(253, 126, 20, 0.5); }

/* ============================ WHY ============================ */
.lp-why {
  background: var(--landing-bg);
  padding: clamp(40px, 6vw, 80px) clamp(18px, 4vw, 44px) clamp(64px, 9vw, 110px);
}
.lp-section-head-light h2 { color: var(--landing-navy); }
.lp-why-grid {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-why-item {
  background: #fff;
  border: 1px solid var(--landing-line);
  border-radius: var(--lp-radius);
  padding: 26px 24px;
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s;
}
.lp-why-item:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-why-ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(253, 126, 20, 0.12), rgba(45, 212, 168, 0.12));
  margin-bottom: 16px;
}
.lp-why-item h4 { font-size: 1.05rem; color: var(--landing-navy); margin: 0 0 8px; font-weight: 700; }
.lp-why-item p { color: var(--landing-muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ============================ CTA ============================ */
.lp-cta {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 44px);
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(253, 126, 20, 0.18), transparent 60%),
    linear-gradient(160deg, #07182c, #0a2540 60%, #102f52);
}
.lp-cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.lp-cta-inner h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; font-weight: 800; margin: 0 0 16px;
}
.lp-cta-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 56ch; margin: 0 auto 30px;
}
.lp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-cta .lp-btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.lp-cta .lp-btn-outline:hover { border-color: var(--landing-orange); color: var(--landing-orange-2); }

/* ============================ FOOTER ============================ */
.lp-footer {
  background: #07182c;
  padding: clamp(48px, 7vw, 72px) clamp(18px, 4vw, 44px) 28px;
  color: rgba(255, 255, 255, 0.7);
}
.lp-footer-inner {
  max-width: var(--lp-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer-brand img { height: 34px; margin-bottom: 14px; }
.lp-footer-brand p { font-size: 0.9rem; line-height: 1.55; max-width: 30ch; color: rgba(255,255,255,0.6); }
.lp-footer-col h5 {
  color: #fff; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin: 0 0 14px;
}
.lp-footer-col a,
.lp-footer-col button {
  display: block; font-size: 0.92rem; padding: 5px 0;
  color: rgba(255, 255, 255, 0.62); transition: color 0.2s;
  background: none; border: none; text-align: left;
  font-family: inherit; cursor: pointer; width: 100%;
}
.lp-footer-col a:hover, .lp-footer-col button:hover { color: var(--landing-orange-2); }
.lp-footer-base {
  max-width: var(--lp-maxw); margin: 22px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.5);
}

/* ============================ REVEAL (GSAP fallback) ============================ */
[data-reveal] { opacity: 0; transform: translateY(26px); }
.lp-revealed [data-reveal],
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .lp-nav-links { display: none; }
  .lp-nav-cta { display: none; }
  .lp-link-signin { display: none; }
  .lp-nav-toggle { display: flex; }
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { order: 2; margin-top: 8px; }
  .lp-hero-chart { height: 240px; }
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; }
  .lp-hero { padding-top: 96px; }
  .lp-hero-stats { gap: 22px; }
  .lp-returning { justify-content: center; text-align: center; }
  .lp-scrollcue { display: none; }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .lp-hero-aurora, .lp-live-dot, .lp-scrollcue svg { animation: none !important; }
  .lp-btn:hover, .lp-card:hover, .lp-why-item:hover { transform: none; }
}
