/* landing.css — marketing homepage */

html, body.landing-body {
  background: var(--sepia-paper) !important;
}
.landing-body {
  color: var(--sepia-ink);
  font-family: var(--font-body);
  min-height: 100vh;
}
/* Neutralize app.css #root (which paints a black radial gradient for the phone mockup) */
.landing-body #root {
  display: block;
  background: var(--sepia-paper);
  min-height: auto;
  align-items: initial;
  justify-content: initial;
}

/* Button sizes (override app.css .btn base padding/font for landing) */
.btn-lg { padding: 16px 26px; font-size: 15px; min-height: 52px; }
.btn-sm { padding: 10px 18px; font-size: 13px; min-height: 40px; }

/* ─── Top nav ─────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 236, 0.88);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--sepia-line);
}
.lp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--sepia-ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-wordmark .bw-line-1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--sepia-ink);
}
.brand-wordmark .bw-line-2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-top: 3px;
}
.lp-footer-brand .brand-wordmark .bw-line-1 { color: #fff; font-size: 17px; }
.lp-footer-brand .brand-wordmark .bw-line-2 { color: #FF933A; font-size: 12px; }
.lp-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.lp-nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
}
.lp-nav-links a:hover { color: var(--sepia-ink); }
.lp-nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lp-nav-cta .signin-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
}

/* ─── Layout helpers ──────────────────────────────── */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-section {
  padding: 96px 0;
}
.lp-section.tight { padding: 56px 0; }

.lp-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--brand-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.8vw, 72px);
  color: var(--sepia-ink);
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.lp-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--sepia-ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.lp-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--sepia-ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.lp-lede {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 620px;
  text-wrap: pretty;
}

/* ─── Hero ────────────────────────────────────────── */
.lp-hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,147,58,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-hero-copy .lp-eyebrow { margin-bottom: 18px; display: inline-block; }
.lp-hero-copy .lp-h1 { margin-bottom: 20px; }
.lp-hero-copy .lp-lede { margin-bottom: 32px; }
.lp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--sepia-line);
  flex-wrap: wrap;
}
.lp-hero-trust .tr-stat {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-hero-trust .tr-stat b {
  font-weight: 800;
  color: var(--sepia-ink);
  font-size: 14px;
}

/* Hero compare */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.lp-compare {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(42,31,21,.35);
  cursor: ew-resize;
  user-select: none;
  background: #2a1f15;
}
.lp-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.lp-compare .cmp-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lp-compare .cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2), 0 4px 14px rgba(0,0,0,.4);
  transform: translateX(-1.5px);
  pointer-events: none;
}
.lp-compare .cmp-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.lp-compare .cmp-handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--sepia-ink);
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  z-index: 2;
}
.lp-compare .cmp-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.lp-compare .cmp-label.before { left: 16px; }
.lp-compare .cmp-label.after  { right: 16px; }

/* Floating review card */
.lp-hero-review {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--sepia-shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 260px;
  z-index: 2;
}
.lp-hero-review .rev-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efd9b6, #d9b97a);
  color: var(--sepia-ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.lp-hero-review .rev-stars {
  color: #E7A832;
  font-size: 12px;
  letter-spacing: 1px;
}
.lp-hero-review .rev-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.35;
  margin-top: 2px;
}
.lp-hero-review .rev-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--muted-1);
  margin-top: 4px;
}

/* ─── Press band ──────────────────────────────────── */
.lp-press {
  border-top: 1px solid var(--sepia-line);
  border-bottom: 1px solid var(--sepia-line);
  padding: 40px 0;
  background: var(--sepia-paper-2);
}
.lp-press-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--muted-1);
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-press-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.55;
}
.lp-press-logos .press-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sepia-ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lp-press-logos .press-logo.serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

/* ─── How it works ────────────────────────────────── */
.lp-how {
  background: var(--sepia-paper);
}
.lp-how-header {
  text-align: center;
  margin-bottom: 64px;
}
.lp-how-header .lp-h2 { margin: 16px auto 16px; }
.lp-how-header .lp-lede { margin: 0 auto; }

.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.lp-how-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--sepia-line);
  box-shadow: var(--shadow-card);
  position: relative;
}
.lp-how-step .step-num {
  position: absolute;
  top: -18px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF933A, #FF4A00);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.lp-how-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sepia-ink);
  margin: 12px 0 10px;
}
.lp-how-step p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}
.lp-how-step .step-visual {
  margin: -10px -12px 16px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sepia-paper-2);
  display: grid;
  place-items: center;
  position: relative;
}
.lp-how-step .step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Feature grid ────────────────────────────────── */
.lp-features {
  background: var(--sepia-paper-2);
}
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-feature {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--sepia-line);
}
.lp-feature.dark {
  background: linear-gradient(135deg, #3a2817 0%, #1c130b 100%);
  border: 0;
  color: #fff;
}
.lp-feature.dark h3 { color: #fff; }
.lp-feature.dark p  { color: rgba(255,255,255,.7); }
.lp-feature.dark .feat-ic { background: rgba(255,147,58,.18); color: #FF933A; }

.lp-feature .feat-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,74,0,.1);
  color: var(--brand-orange);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.lp-feature h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--sepia-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lp-feature p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ─── Gallery ─────────────────────────────────────── */
.lp-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-gallery-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--sepia-line);
  box-shadow: var(--shadow-card);
}
.lp-gallery-card .gc-compare {
  aspect-ratio: 4 / 5;
  position: relative;
  background: #2a1f15;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.lp-gallery-card .gc-compare img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.lp-gallery-card .gc-compare .cmp-before-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.lp-gallery-card .gc-compare .cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
  pointer-events: none;
}
.lp-gallery-card .gc-compare .cmp-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.lp-gallery-card .gc-meta {
  padding: 16px 18px;
}
.lp-gallery-card .gc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sepia-ink);
}
.lp-gallery-card .gc-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--muted-1);
  margin-top: 2px;
}

/* ─── Testimonials ────────────────────────────────── */
.lp-testimonials {
  background: linear-gradient(180deg, var(--sepia-paper) 0%, var(--sepia-paper-2) 100%);
}
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.lp-testi {
  background: #fff;
  border-radius: 18px;
  padding: 28px 28px 24px;
  border: 1px solid var(--sepia-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-testi .testi-stars {
  color: #E7A832;
  font-size: 15px;
  letter-spacing: 2px;
}
.lp-testi .testi-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--sepia-ink);
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-wrap: pretty;
  flex: 1;
}
.lp-testi .testi-foot {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--sepia-line);
}
.lp-testi .testi-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efd9b6, #d9b97a);
  color: var(--sepia-ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.lp-testi .testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--sepia-ink);
}
.lp-testi .testi-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--muted-1);
  margin-top: 2px;
}

/* ─── Pricing ─────────────────────────────────────── */
.lp-pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.lp-billing-toggle {
  display: inline-flex;
  background: rgba(42,31,21,.08);
  border-radius: 999px;
  padding: 5px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.lp-billing-toggle button {
  background: transparent;
  border: 0;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--muted-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-billing-toggle button.active {
  background: #fff;
  color: var(--sepia-ink);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.lp-billing-toggle .save-pill {
  background: var(--brand-orange);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.lp-price-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  border: 2px solid var(--sepia-line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-price-card.featured {
  background: linear-gradient(135deg, #3a2817 0%, #1c130b 100%);
  border-color: #FF933A;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 30px 60px -20px rgba(42,31,21,.35);
}
.lp-price-card.featured h3 { color: #fff; }
.lp-price-card .pc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-price-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sepia-ink);
  margin-bottom: 6px;
}
.lp-price-card .pc-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--muted-1);
  margin-bottom: 24px;
}
.lp-price-card.featured .pc-desc { color: rgba(255,255,255,.65); }

.lp-price-card .pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.lp-price-card .pc-amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--sepia-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-price-card.featured .pc-amt { color: #fff; }
.lp-price-card .pc-per {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted-1);
}
.lp-price-card.featured .pc-per { color: rgba(255,255,255,.65); }
.lp-price-card .pc-eq {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-1);
  margin-bottom: 24px;
  min-height: 16px;
}
.lp-price-card.featured .pc-eq { color: rgba(255,255,255,.55); }

.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-price-card .pc-footnote {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted-1);
  margin-top: 14px;
  line-height: 1.45;
  text-align: center;
}
.lp-price-card.featured .pc-footnote { color: rgba(255,255,255,.5); }
.lp-price-card li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
}
.lp-price-card.featured li { color: rgba(255,255,255,.85); }
.lp-price-card li svg { color: var(--brand-orange); flex-shrink: 0; }
.lp-price-card.featured li svg { color: #FF933A; }

/* ─── FAQ ─────────────────────────────────────────── */
.lp-faq {
  background: var(--sepia-paper);
}
.lp-faq-grid {
  max-width: 820px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-faq-item {
  border-bottom: 1px solid var(--sepia-line);
  padding: 22px 0;
}
.lp-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--sepia-ink);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary .chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sepia-paper-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.lp-faq-item[open] summary .chev {
  transform: rotate(45deg);
  background: var(--brand-orange);
  color: #fff;
}
.lp-faq-item .faq-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.6;
  padding: 12px 48px 4px 0;
  max-width: 720px;
  text-wrap: pretty;
}

/* ─── CTA band / Get-the-app ──────────────────────── */
.lp-cta-band {
  background: linear-gradient(135deg, #3a2817 0%, #1c130b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-cta-band::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,147,58,.22), transparent 70%);
  pointer-events: none;
}
.lp-cta-band .lp-h2 {
  color: #fff;
  margin: 16px 0;
  position: relative;
}
.lp-cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 540px;
  position: relative;
}
.lp-getapp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-getapp-copy .lp-eyebrow { display: inline-block; margin-bottom: 10px; }
.lp-cta-band .lp-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 36px;
}

.lp-getapp-email {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 20px 22px;
  max-width: 520px;
}
.lp-getapp-email .ge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.ge-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ge-form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.ge-form input::placeholder { color: rgba(255,255,255,.45); }
.ge-form input:focus { border-color: #FF933A; background: rgba(255,255,255,.12); }
.ge-form button {
  background: var(--brand-orange);
  color: #fff;
  border: 0;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.ge-form button:hover:not(:disabled) { background: var(--brand-orange-hover); }
.ge-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.ge-sent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 4px 0;
}
.ge-sent svg { color: #4BD762; flex-shrink: 0; }
.ge-fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
}

/* Phone + QR visual */
.lp-getapp-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.qr-phone {
  width: 260px;
  height: 500px;
  border-radius: 44px;
  background: linear-gradient(145deg, #2a1f15, #0b0603);
  padding: 8px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,147,58,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
}
.qr-phone::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.qr-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #F6EFE4 0%, #EFE4D1 100%);
  overflow: hidden;
  position: relative;
}
.qr-phone-inner {
  padding: 62px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  position: relative;
}
.qr-phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,147,58,.25), transparent 60%);
  pointer-events: none;
}
.qr-phone-caption {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--sepia-ink);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.qr-code {
  width: 180px;
  height: 180px;
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);
  gap: 0;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(42,31,21,.15);
  position: relative;
  z-index: 1;
}
.qr-code span {
  display: block;
  aspect-ratio: 1;
}
.qr-code .qr-on { background: var(--sepia-ink); }
.qr-code .qr-off { background: transparent; }
.qr-phone-store {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--muted-1);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.qr-phone-store .dot { color: var(--brand-orange); }
.qr-caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
  line-height: 1.45;
  max-width: 260px;
}

/* ─── App store buttons ───────────────────────────── */
.app-badge {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
}
.app-badge.light { background: #fff; color: #2a1f15; border: 1.5px solid var(--sepia-line); }
.app-badge .ab-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,.7);
  line-height: 1;
  display: block;
}
.app-badge.light .ab-sub { color: var(--muted-1); }
.app-badge .ab-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  display: block;
  margin-top: 3px;
  letter-spacing: -0.02em;
}

/* ─── Footer ──────────────────────────────────────── */
.lp-footer {
  background: var(--sepia-ink);
  color: rgba(255,255,255,.7);
  padding: 72px 0 40px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.lp-footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.lp-footer a:hover { color: #fff; }
.lp-footer-brand .lp-logo {
  color: #fff;
  font-size: 20px;
  margin-bottom: 14px;
}
.lp-footer-brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 20px;
}
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-how-steps,
  .lp-feature-grid,
  .lp-gallery-grid,
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-testi-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-price-card.featured { transform: none; }
  .lp-nav-links { display: none; }
  .lp-section { padding: 64px 0; }
  .lp-hero { padding: 40px 0 32px; }
  .lp-hero-review { left: 20px; bottom: -20px; }
  .lp-getapp-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-getapp-qr { order: -1; }
  .qr-phone { width: 220px; height: 440px; }
  .lp-cta-band p { margin-left: 0; margin-right: 0; }
}
@media (max-width: 640px) {
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-press-logos { gap: 24px; justify-content: center; }
  .lp-press-logos .press-logo { font-size: 18px; }
}
