/* ============================================================
   LUMAFY AI — Landing Page Override
   Premium visual layer on top of shared.css + style.css
   All classes prefixed with lp- to avoid conflicts
   ============================================================ */

/* ── V5: CINEMATIC SUNRISE HERO ANIMATIONS ──────────────────── */
@keyframes heroPhotoReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes glowBreath {
  0%, 100% { opacity: 0.55; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.85; transform: translate(-50%,-50%) scale(1.12); }
}

@keyframes cardFloat {
  0%, 100% { transform: perspective(1000px) rotateY(4deg) rotateX(-2deg) translateX(0px) translateY(0px); }
  50%       { transform: perspective(1000px) rotateY(4deg) rotateX(-2deg) translateX(0px) translateY(-8px); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateX(0px) translateY(0px); }
  50%       { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateX(0px) translateY(8px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

@keyframes barGrow {
  from { height: 0; }
  to   { height: var(--bar-h); }
}

/* ── GLOBAL LP OVERRIDES ─────────────────────────────────────── */
.lp-section-padding {
  padding: clamp(80px, 10vw, 140px) 0;
}

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

/* Section reveal animation */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.lp-reveal.in-view { opacity: 1; transform: translateY(0); }
.lp-reveal-d1 { transition-delay: 80ms; }
.lp-reveal-d2 { transition-delay: 160ms; }
.lp-reveal-d3 { transition-delay: 240ms; }
.lp-reveal-d4 { transition-delay: 320ms; }
.lp-reveal-d5 { transition-delay: 400ms; }

/* ── NAV — PREMIUM OVERRIDE ──────────────────────────────────── */
.lp-header {
  height: 72px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.lp-header.scrolled {
  background: rgba(26,10,0,0.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(232,130,12,0.12);
  box-shadow: 0 1px 0 rgba(232,130,12,0.08), 0 4px 32px rgba(0,0,0,0.25);
}

.lp-nav {
  height: 72px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

.lp-logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #E8820C;
}

.lp-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1;
}

.lp-logo-text .lp-ai {
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-nav-spacer { flex: 1; }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lp-nav-link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,245,228,0.85);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s cubic-bezier(0.16,1,0.3,1),
              background 0.2s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.lp-nav-link:hover {
  color: #FFFFFF;
  background: rgba(232,130,12,0.06);
}

.lp-nav-signin {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,245,228,0.85);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(232,130,12,0.18);
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.lp-nav-signin:hover {
  color: #F9C06A;
  border-color: rgba(232,130,12,0.45);
  background: rgba(232,130,12,0.05);
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 100%);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  border: none;
  box-shadow: 0 2px 12px rgba(232,130,12,0.30);
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.2s cubic-bezier(0.16,1,0.3,1),
              filter 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,130,12,0.45);
  filter: brightness(1.04);
}

/* ── HERO SECTION — V5 CINEMATIC PHOTO ──────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1A0E06;
}

/* Full-bleed sunrise photograph */
.lp-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  animation: heroPhotoReveal 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Gradient overlay: darkens bottom-left for text legibility,
   keeps top-right sky visible and luminous */
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(15,6,0,0.72) 0%,
      rgba(15,6,0,0.52) 35%,
      rgba(15,6,0,0.10) 65%,
      rgba(15,6,0,0.00) 100%
    ),
    linear-gradient(
      to top,
      rgba(15,6,0,0.55) 0%,
      rgba(15,6,0,0.00) 45%
    );
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 2; /* above overlay z:1 */
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

/* ── HERO LEFT CONTENT ───────────────────────────────────────── */
.lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F9C06A;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

.lp-hero-eyebrow-star {
  font-size: 10px;
  line-height: 1;
}

.lp-hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 0.75s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

.lp-hero-h1-gradient {
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 45%, #F9A56D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Mixed typography — italic Fraunces for the emotional word */
.lp-hero-h1-em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #F4A03A 0%, #F9C06A 60%, #FFF0CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-optical-sizing: auto;
}


.lp-hero-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,245,228,0.80);
  margin-bottom: 2.25rem;
  max-width: 480px;
  opacity: 0;
  animation: heroReveal 0.75s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.lp-hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 360px;
  opacity: 0;
  animation: heroReveal 0.75s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}

.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 100%);
  padding: 0 2rem;
  height: 52px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(232,130,12,0.40), 0 1px 4px rgba(232,130,12,0.25);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s cubic-bezier(0.16,1,0.3,1),
              filter 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.lp-hero-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 3s infinite;
}

.lp-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,130,12,0.50);
  filter: brightness(1.05);
}

.lp-hero-fine {
  font-size: 12px;
  color: rgba(255,245,228,0.50);
  font-family: 'Inter', -apple-system, sans-serif;
  text-align: center;
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroReveal 0.75s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}

.lp-trust-stars {
  display: flex;
  gap: 2px;
  color: #E8820C;
  font-size: 14px;
  line-height: 1;
}

.lp-trust-text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(255,245,228,0.70);
}

.lp-trust-text strong {
  color: rgba(255,245,228,0.95);
  font-weight: 600;
}

/* ── HERO RIGHT — APP MOCKUP ─────────────────────────────────── */
.lp-hero-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  /* Center the column within the right hero grid cell */
  justify-content: center;
  align-self: center;
}

/* Single amber glow — one light source, used precisely (Linear technique) */
.lp-hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,160,58,0.32) 0%, rgba(232,130,12,0.12) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: glowBreath 5s ease-in-out infinite;
  z-index: 0;
}

/* Glass card base — enhanced for photo hero */
.lp-glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255,252,248,0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow:
    0 2px 8px rgba(26,14,0,0.12),
    0 20px 60px rgba(26,14,0,0.22),
    inset 0 1px 0 rgba(255,255,255,1.0),
    0 0 0 0.5px rgba(232,130,12,0.08);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

/* Card 1 — mood check-in */
.lp-card-1 {
  animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s forwards,
             cardFloat 6s ease-in-out 1.2s infinite;
}

.lp-card-2 {
  animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s forwards,
             cardFloat2 6s ease-in-out 1.35s infinite;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateX(0px);
  /* Same width as card-1 — stretch fills the mockup column */
}

/* On hover parent, gently flatten cards */
.lp-hero-mockup:hover .lp-card-1 {
  animation: none;
  transform: perspective(1000px) rotateY(1deg) rotateX(-1deg) translateX(0px) translateY(-4px);
}
.lp-hero-mockup:hover .lp-card-2 {
  animation: none;
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) translateX(0px) translateY(4px);
}

/* Card content — Mood check-in */
.lp-card-question {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A1614;
  margin-bottom: 0.875rem;
}

.lp-mood-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-mood-emoji {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  background: rgba(26,22,20,0.04);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1),
              background 0.2s ease;
}

.lp-mood-emoji.lp-selected {
  background: linear-gradient(135deg, rgba(232,130,12,0.15), rgba(244,96,58,0.10));
  border: 1.5px solid rgba(232,130,12,0.30);
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(232,130,12,0.20);
}

.lp-ai-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  background: rgba(232,130,12,0.06);
  border-radius: 12px;
  border: 1px solid rgba(232,130,12,0.12);
}

.lp-ai-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8820C, #F4603A);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232,130,12,0.35);
}

.lp-ai-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}

.lp-ai-text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #4A3A2E;
}

/* Card 2 — streak / bar chart */
.lp-streak-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-streak-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #E8820C;
  line-height: 1;
}

.lp-streak-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5E57;
}

.lp-chart-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}

.lp-chart-bar {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: rgba(232,130,12,0.18);
  transition: height 1s cubic-bezier(0.16,1,0.3,1);
}

.lp-chart-bar.lp-bar-active {
  background: linear-gradient(to top, #E8820C, #F9A56D);
  box-shadow: 0 2px 8px rgba(232,130,12,0.35);
}

.lp-chart-days {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.lp-chart-day {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #B5A89E;
  flex: 1;
  text-align: center;
}

.lp-chart-day.lp-day-active {
  color: #E8820C;
  font-weight: 600;
}

.lp-chart-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #B5A89E;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ── FEATURES — BENTO GRID ───────────────────────────────────── */
.lp-features {
  /* background: #1C1208; — replaced with photo system */
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Midday photo background */
.lp-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lumafy_midday.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay for readability */
.lp-features::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 8, 0.78);
  z-index: 1;
  pointer-events: none;
}

/* Keep container above overlays */
.lp-features .lp-container {
  position: relative;
  z-index: 2;
}

.lp-features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-section-eyebrow {
  display: inline-block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F4A03A;
  margin-bottom: 1rem;
}

.lp-features-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F5E8DA;
  margin-bottom: 0.875rem;
  line-height: 1.1;
}

.lp-features-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  color: rgba(245,232,218,0.55);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

/* BENTO GRID */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-hero    { grid-column: 1;     grid-row: 1 / 3; }
.bento-2       { grid-column: 2;     grid-row: 1; }
.bento-3       { grid-column: 3;     grid-row: 1; }
.bento-4       { grid-column: 2;     grid-row: 2; }
.bento-5       { grid-column: 3;     grid-row: 2; }
.bento-6       { grid-column: 1;     grid-row: 3; }
.bento-7       { grid-column: 2 / 4; grid-row: 3; }

/* Base bento card */
.lp-bento-card {
  background: rgba(255,252,248,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.lp-bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,130,12,0.25);
  box-shadow: 0 0 40px rgba(232,130,12,0.08),
              0 20px 60px rgba(0,0,0,0.20);
}

/* Top amber line on every card */
.lp-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,130,12,0.5), transparent);
}

/* Hero bento card (AI Coach — large) */
.lp-bento-hero-card {
  background: linear-gradient(160deg, rgba(232,130,12,0.15) 0%, rgba(244,96,58,0.08) 100%);
  border-color: rgba(232,130,12,0.20);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Bento icon container */
.lp-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,130,12,0.25), rgba(244,96,58,0.15));
  border: 1px solid rgba(232,130,12,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.lp-bento-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #F5E8DA;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.lp-bento-body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #B89878;
}

/* Hero bento — icon at top */
.lp-bento-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,130,12,0.30), rgba(244,96,58,0.20));
  border: 1px solid rgba(232,130,12,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: auto;
  box-shadow: 0 4px 20px rgba(232,130,12,0.20);
}

.lp-bento-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.375rem, 1rem + 1.5vw, 1.75rem);
  font-weight: 700;
  color: #F5E8DA;
  margin-bottom: 0.625rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Chat bubbles inside hero bento */
.lp-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.lp-chat-ai {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lp-chat-ai-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8820C, #F4603A);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(232,130,12,0.40);
}

.lp-chat-ai-bubble {
  background: rgba(232,130,12,0.12);
  border: 1px solid rgba(232,130,12,0.18);
  border-radius: 0 10px 10px 10px;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: rgba(245,232,218,0.80);
  line-height: 1.5;
  max-width: 260px;
}

.lp-chat-user-bubble {
  align-self: flex-end;
  background: rgba(255,252,248,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px 0 10px 10px;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: rgba(245,232,218,0.65);
  line-height: 1.5;
  max-width: 200px;
}

/* Wide bento card (Mood check-in) */
.lp-bento-wide-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.lp-bento-wide-content {
  flex: 1;
}

.lp-bento-wide-visual {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  padding: 0.75rem;
  background: rgba(232,130,12,0.08);
  border-radius: 12px;
  border: 1px solid rgba(232,130,12,0.12);
}

.lp-mini-bar {
  width: 10px;
  border-radius: 3px 3px 2px 2px;
  background: rgba(232,130,12,0.25);
  transition: height 1.2s cubic-bezier(0.16,1,0.3,1);
}

.lp-mini-bar.lp-bar-hi {
  background: linear-gradient(to top, #E8820C, #F9A56D);
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.lp-how {
  /* background: #FBF6F0; — replaced with photo system */
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Golden hour photo background */
.lp-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lumafy_golden_hour.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay for readability */
.lp-how::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 0, 0.72);
  z-index: 1;
  pointer-events: none;
}

/* Keep container above overlays */
.lp-how .lp-container {
  position: relative;
  z-index: 2;
}

.lp-how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-how-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F5E8DA;
  margin-bottom: 0;
  line-height: 1.1;
}

/* Journey timeline */
.lp-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
  position: relative;
}

.lp-journey-step:last-child {
  padding-bottom: 0;
}

.lp-journey-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-journey-num-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8820C, #F4603A);
  color: #ffffff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232,130,12,0.40);
  position: relative;
  z-index: 1;
}

.lp-journey-line {
  width: 2px;
  flex: 1;
  margin-top: 0.5rem;
  background: linear-gradient(to bottom, rgba(232,130,12,0.30), rgba(232,130,12,0.05));
}

.lp-journey-step:last-child .lp-journey-line {
  display: none;
}

.lp-journey-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.lp-journey-body {
  padding-top: 0.625rem;
}

.lp-journey-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,130,12,0.15), rgba(244,96,58,0.10));
  border: 1px solid rgba(232,130,12,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 0.875rem;
}

.lp-journey-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #F5E8DA;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.lp-journey-desc {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,232,218,0.70);
}

/* Journey glass card */
.lp-journey-card {
  background: rgba(255,249,245,0.70);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(26,22,20,0.06),
              0 12px 32px rgba(26,22,20,0.07),
              inset 0 1px 0 rgba(255,255,255,0.9);
}

.lp-mini-q {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1A1614;
  margin-bottom: 0.75rem;
}

.lp-mini-option {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(232,130,12,0.12);
  color: #6B5E57;
  margin-bottom: 0.4rem;
  transition: all 0.2s ease;
}

.lp-mini-option.lp-chosen {
  background: linear-gradient(135deg, rgba(232,130,12,0.12), rgba(244,96,58,0.08));
  border-color: rgba(232,130,12,0.30);
  color: #1A1614;
  font-weight: 600;
}

.lp-dash-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(232,130,12,0.08);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #6B5E57;
}

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

.lp-dash-row.lp-active { color: #1A1614; font-weight: 600; }

.lp-dash-row-icon { font-size: 14px; }

.lp-dash-done {
  margin-left: auto;
  color: #2E8B57;
  font-weight: 600;
}

.lp-dash-now {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #E8820C;
  background: rgba(232,130,12,0.10);
  border: 1px solid rgba(232,130,12,0.20);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.lp-streak-card-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #E8820C;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.lp-streak-card-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5E57;
  margin-bottom: 1rem;
}

.lp-streak-dots {
  display: flex;
  gap: 6px;
}

.lp-streak-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(232,130,12,0.18);
  border: 1.5px solid rgba(232,130,12,0.25);
}

.lp-streak-dot.lp-done {
  background: linear-gradient(135deg, #E8820C, #F9A56D);
  border-color: transparent;
  box-shadow: 0 1px 4px rgba(232,130,12,0.35);
}

.lp-streak-dot.lp-today {
  background: transparent;
  border: 2px solid #E8820C;
  box-shadow: 0 0 6px rgba(232,130,12,0.40);
  animation: pulse 2.4s infinite;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.lp-pricing {
  /* background: #1C1208; — replaced with photo system */
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Night photo background — replaces old ambient glow ::before */
.lp-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lumafy_night.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
  /* Note: amber top-border line from .lp-pricing-featured::before is unaffected */
}

/* Dark overlay for readability */
.lp-pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 18, 0.75);
  z-index: 1;
  pointer-events: none;
}

/* Keep container above overlays */
.lp-pricing .lp-container {
  position: relative;
  z-index: 2;
}

.lp-pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-pricing-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F5E8DA;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.lp-pricing-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  color: rgba(245,232,218,0.55);
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.6;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  max-width: 1060px;
  margin-inline: auto;
}

.lp-pricing-card {
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease;
}

.lp-pricing-card:hover {
  transform: translateY(-4px);
}

/* Standard card */
.lp-pricing-standard {
  background: rgba(255,252,248,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Featured card */
.lp-pricing-featured {
  background: linear-gradient(135deg, #2A1608, #1C0E04);
  border: 1px solid rgba(232,130,12,0.40);
  box-shadow: 0 0 0 1px rgba(232,130,12,0.10),
              0 0 60px rgba(232,130,12,0.12),
              0 24px 60px rgba(0,0,0,0.30);
}

.lp-pricing-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,130,12,0.80), transparent);
}

.lp-pricing-popular {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8820C;
  background: rgba(232,130,12,0.12);
  border: 1px solid rgba(232,130,12,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.lp-pricing-plan {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,232,218,0.55);
  margin-bottom: 0.625rem;
}

.lp-pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
  color: #F5E8DA;
}

.lp-pricing-featured .lp-pricing-price {
  color: #F4A03A;
}

.lp-pricing-price span {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(245,232,218,0.45);
}

.lp-pricing-billed {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(232,130,12,0.70);
  margin-bottom: 0.5rem;
}

.lp-pricing-desc {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: rgba(245,232,218,0.45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lp-pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.lp-pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: rgba(245,232,218,0.70);
  line-height: 1.4;
}

.lp-pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,130,12,0.25), rgba(244,96,58,0.15));
  border: 1px solid rgba(232,130,12,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F4A03A;
  font-size: 10px;
  font-weight: 700;
}

.lp-pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 9999px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}

.lp-pricing-btn-outline {
  border: 1.5px solid rgba(232,130,12,0.25);
  color: rgba(245,232,218,0.70);
  background: transparent;
}
.lp-pricing-btn-outline:hover {
  border-color: rgba(232,130,12,0.55);
  color: #F5E8DA;
  background: rgba(232,130,12,0.06);
  transform: translateY(-1px);
}

.lp-pricing-btn-primary {
  background: linear-gradient(135deg, #E8820C, #F4603A);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(232,130,12,0.40);
}
.lp-pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,12,0.50);
  filter: brightness(1.05);
}

.lp-pricing-fine {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(245,232,218,0.30);
  text-align: center;
  max-width: 560px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* ── MAX TIER — COMING SOON ─────────────────────────────────── */

/* Card wrapper: position relative already set on .lp-pricing-card */
.lp-pricing-max-card {
  /* Slightly muted so overlay contrast reads clearly */
  opacity: 0.92;
}

/* Full-card frosted overlay */
.lp-max-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 24px;
  /* Backdrop blur frosted glass — matches the card's dark palette */
  background: rgba(8, 6, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  /* Subtle olive border glow to tie into the Max brand colour */
  box-shadow: inset 0 0 0 1.5px rgba(138,171,60,0.30);
  border-radius: 24px;
  /* Entrance animation */
  animation: maxOverlayIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes maxOverlayIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(6px); }
}

.lp-max-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 260px;
}

/* "Coming Soon" pill badge */
.lp-max-coming-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #8AAB3C;
  background: rgba(138,171,60,0.12);
  border: 1px solid rgba(138,171,60,0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  /* Subtle pulse to catch the eye without being obnoxious */
  animation: maxBadgePulse 3s ease-in-out infinite;
}

@keyframes maxBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(138,171,60,0); }
  50%       { box-shadow: 0 0 0 5px rgba(138,171,60,0.15); }
}

.lp-max-overlay-msg {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(245,232,218,0.65);
  line-height: 1.6;
  margin: 0;
}

/* Notify Me CTA inside overlay */
.lp-max-notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.5rem;
  border-radius: 9999px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #4A5D23, #8AAB3C);
  border: 1px solid rgba(138,171,60,0.40);
  box-shadow: 0 4px 14px rgba(74,93,35,0.40);
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.2s ease,
              filter 0.2s ease;
  margin-top: 0.25rem;
}

.lp-max-notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74,93,35,0.55);
  filter: brightness(1.08);
}

/* Disabled CTA button (replaces the active CTA link) */
.lp-pricing-btn-max-disabled {
  border: 1.5px solid rgba(138,171,60,0.20);
  color: rgba(138,171,60,0.35);
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── CTA BLOCK ───────────────────────────────────────────────── */
.lp-cta {
  /* background: linear-gradient(160deg, #1C1208 0%, #2A1608 100%); — replaced with photo system */
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Night photo background (follows pricing) */
.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lumafy_night.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay */
.lp-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 18, 0.80);
  z-index: 1;
  pointer-events: none;
}

/* Keep container and orb above overlays */
.lp-cta .lp-container {
  position: relative;
  z-index: 2;
}

.lp-cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,130,12,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 2;
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.lp-cta-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #F5E8DA;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  max-width: 540px;
  margin-inline: auto;
}

.lp-cta-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.125rem;
  color: rgba(255,252,248,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 480px;
  margin-inline: auto;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #E8820C;
  background: #ffffff;
  padding: 0 2.25rem;
  height: 54px;
  border-radius: 9999px;
  border: 2px solid rgba(232,130,12,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.20);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.lp-cta-btn:hover {
  background: linear-gradient(135deg, #E8820C, #F4603A);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,12,0.45);
}

/* ── MHAM SECTION ────────────────────────────────────────────── */
.lp-mham {
  background: #FBF6F0;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Grid texture overlay */
.lp-mham::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,130,12,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,130,12,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.lp-mham-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.lp-mham-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1A1614;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.lp-mham-body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #6B5E57;
  margin-bottom: 1.25rem;
  max-width: 680px;
  margin-inline: auto;
}

.lp-mham-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.lp-mham-stat {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lp-mham-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  font-weight: 700;
  color: #E8820C;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-mham-stat-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: #6B5E57;
  line-height: 1.5;
}

.lp-mham-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 100%);
  padding: 0 2.25rem;
  height: 54px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(232,130,12,0.40);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.lp-mham-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,12,0.50);
  filter: brightness(1.05);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.lp-footer {
  background: #1C1208;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-footer-logo .lp-logo-text {
  color: #F5E8DA;
}

.lp-footer-copy {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: #B89878;
  flex: 1;
  text-align: center;
}

.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lp-footer-link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  color: #B89878;
  padding: 0.35rem 0.625rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.lp-footer-link:hover {
  color: #F9A56D;
  background: rgba(255,255,255,0.04);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* Hero — single column on tablet/mobile */
@media (max-width: 860px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .lp-hero-sub {
    max-width: 100%;
  }

  .lp-hero-cta-row {
    max-width: 100%;
    align-items: center;
  }

  .lp-hero-trust {
    justify-content: center;
  }

  .lp-hero-eyebrow {
    justify-content: center;
  }

  .lp-hero-mockup {
    max-width: 420px;
    margin-inline: auto;
  }

  /* Bento grid — 2 cols on tablet */
  .lp-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-hero { grid-column: 1 / 3; grid-row: 1; }
  .bento-2    { grid-column: auto; grid-row: auto; }
  .bento-3    { grid-column: auto; grid-row: auto; }
  .bento-4    { grid-column: auto; grid-row: auto; }
  .bento-5    { grid-column: auto; grid-row: auto; }
  .bento-6    { grid-column: auto; grid-row: auto; }
  .bento-7    { grid-column: 1 / 3; }

  .lp-bento-wide-inner {
    flex-direction: column;
    gap: 1rem;
  }

  /* Pricing — 2 col on tablet, stack weekly+monthly, annual full width */
  .lp-pricing-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
  }
  /* Annual spans full width on tablet */
  .lp-pricing-featured {
    grid-column: 1 / 3;
  }

  /* Journey — narrow right column */
  .lp-journey-right {
    grid-template-columns: 1fr;
  }

  /* MHAM stats */
  .lp-mham-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  /* Footer — stack on tablet */
  .lp-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .lp-footer-copy {
    order: 2;
  }

  .lp-footer-links {
    order: 3;
  }
}

@media (max-width: 560px) {
  /* Nav links — hide on mobile, keep logo + CTA */
  .lp-nav-links,
  .lp-nav-signin {
    display: none;
  }

  /* Bento — single column */
  .lp-bento {
    grid-template-columns: 1fr;
  }

  .bento-hero, .bento-7 { grid-column: 1; }

  /* MHAM stats — 1 column */
  .lp-mham-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }

  /* Journey */
  .lp-journey-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  /* Pricing — single column on mobile */
  .lp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .lp-pricing-featured {
    grid-column: 1;
  }
}

/* Nav links visible from 560px+ */
@media (min-width: 560px) and (max-width: 760px) {
  .lp-nav-links {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TRUST POSITION SECTION
   Inserted between Free Modes and Pricing
═══════════════════════════════════════════════════════════════════════════════ */

.lp-trust-section {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, rgba(8,6,18,0) 0%, rgba(14,10,30,0.6) 50%, rgba(8,6,18,0) 100%);
  position: relative;
}

/* Section heading */
.lp-trust-heading {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.lp-trust-heading-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Pillar grid ──────────────────────────────────────────────────────────── */
.lp-trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.lp-trust-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-trust-pillar:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Pillar icon */
.lp-trust-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.lp-tpi-amber {
  background: rgba(255,170,40,0.12);
  color: #FFAA28;
  border: 1px solid rgba(255,170,40,0.2);
}
.lp-tpi-teal {
  background: rgba(80,220,180,0.12);
  color: #50DCB4;
  border: 1px solid rgba(80,220,180,0.2);
}
.lp-tpi-olive {
  background: rgba(138,171,60,0.12);
  color: #8AAB3C;
  border: 1px solid rgba(138,171,60,0.2);
}

.lp-trust-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.lp-trust-pillar-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}

/* ── Founder statement ────────────────────────────────────────────────────── */
.lp-trust-founder {
  margin-bottom: 52px;
}
.lp-trust-founder-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(255,170,40,0.06) 0%, rgba(255,170,40,0.02) 100%);
  border: 1px solid rgba(255,170,40,0.18);
  border-radius: 20px;
  padding: 40px 44px 36px;
  max-width: 760px;
  margin: 0 auto;
}
.lp-trust-founder-ql {
  position: absolute;
  top: 20px;
  left: 28px;
  opacity: 0.4;
  font-size: 72px;
  line-height: 1;
  color: rgba(255,170,40,0.35);
  pointer-events: none;
  font-family: Georgia, serif;
}
.lp-trust-founder-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  margin: 0 0 24px;
  padding-left: 8px;
}
.lp-trust-founder-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-trust-founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8820C, #FFAA28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #080612;
  flex-shrink: 0;
}
.lp-trust-founder-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.lp-trust-founder-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.lp-trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 0;
  overflow: hidden;
}
.lp-trust-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.lp-trust-stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #FFAA28;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.lp-trust-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.lp-trust-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-trust-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .lp-trust-pillars {
    grid-template-columns: 1fr;
  }
  .lp-trust-founder-inner {
    padding: 28px 22px 24px;
  }
  .lp-trust-stats {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .lp-trust-stat {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .lp-trust-stat:last-child { border-bottom: none; }
  .lp-trust-stat-div { display: none; }
  .lp-trust-section { padding: 72px 0 60px; }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   HAMBURGER MENU — Mobile nav drawer
═══════════════════════════════════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop, shown on mobile */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  margin-right: 4px;
  flex-shrink: 0;
}

.lp-hamburger:hover {
  background: rgba(232,130,12,0.08);
}

.lp-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,245,228,0.9);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              opacity   0.2s ease,
              width     0.25s ease;
}

/* X state when open */
.lp-hamburger.is-open .lp-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-hamburger.is-open .lp-hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.lp-hamburger.is-open .lp-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Full-screen overlay — always in DOM, hidden via pointer-events + opacity */
.lp-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,6,18,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lp-mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel — always in DOM, hidden off-screen above viewport */
.lp-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12,9,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,130,12,0.15);
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              visibility 0s linear 0.3s;
  padding-top: 72px;
}

.lp-mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              visibility 0s linear 0s;
}

.lp-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 28px;
  gap: 4px;
}

.lp-mobile-link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,245,228,0.85);
  padding: 14px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  letter-spacing: -0.01em;
}

.lp-mobile-link:hover,
.lp-mobile-link:active {
  background: rgba(232,130,12,0.08);
  color: #fff;
}

.lp-mobile-signin {
  color: rgba(255,245,228,0.6);
  font-size: 15px;
}

.lp-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 0;
}

.lp-mobile-cta {
  display: block;
  margin-top: 8px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #E8820C 0%, #F4603A 100%);
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-mobile-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Show hamburger on mobile, hide desktop nav links + Sign In CTA */
@media (max-width: 760px) {
  .lp-hamburger {
    display: flex;
  }
  .lp-nav-links {
    display: none;
  }
  .lp-nav-cta {
    display: none;
  }
}
/* cache-bust: 20260519032912 */

/* ─── FAQ Section ─────────────────────────────────────────────────────────── */
.lp-faq {
  padding: 80px 0 64px;
  background: #080612;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-faq-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.lp-faq-question::-webkit-details-marker { display: none; }
.lp-faq-question::marker { display: none; }

.lp-faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #FFAA28;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lp-faq-item[open] .lp-faq-question::after {
  transform: rotate(45deg);
}

.lp-faq-item[open] .lp-faq-question {
  color: #FFAA28;
}

.lp-faq-answer {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  padding: 0 0 20px;
  margin: 0;
  max-width: 720px;
}

@media (max-width: 640px) {
  .lp-faq { padding: 56px 0 48px; }
  .lp-faq-question { font-size: 15px; padding: 18px 0; }
  .lp-faq-answer { font-size: 14px; }
}
