/* ============================================
   O-FIND LANDING, minimal premium (Apple-inspired)
   ============================================ */

:root {
  --lp-bg: #111111;
  --lp-surface: #1a1a1a;
  --lp-cream: #EAE0C8;
  /* Cream ink on charcoal marketing chrome (independent of app theme tokens). */
  --accent-rgb: 234, 224, 200;
  --lp-muted: rgba(var(--accent-rgb), 0.52);
  --lp-faint: rgba(var(--accent-rgb), 0.28);
  --lp-rose: #c9787a;
  --lp-max: 980px;
  --lp-narrow: 580px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .entrance, .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.lp-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--lp-bg);
  color: var(--lp-cream);
  line-height: 1.5;
  min-height: 100vh;
  /* Room for fixed topnav (safe-area + bar). */
  --lp-topnav-height: 56px;
  padding-top: calc(var(--lp-topnav-height) + env(safe-area-inset-top, 0px));
}

.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Motion ── */
@keyframes lpRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.entrance {
  animation: lpRise 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.entrance:nth-child(2) { animation-delay: 100ms; }
.entrance:nth-child(3) { animation-delay: 200ms; }
.entrance:nth-child(4) { animation-delay: 300ms; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout ── */
.lp-main {
  display: flex;
  flex-direction: column;
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: max(48px, env(safe-area-inset-top, 48px)) 28px 56px;
  overflow: hidden;
}

.lp-ambient {
  position: absolute;
  inset: -20% 0 auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 45% at 72% 18%, rgba(201, 120, 122, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 20% 60%, rgba(var(--accent-rgb), 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.lp-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-faint);
  margin-bottom: 20px;
}

.lp-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin-bottom: 20px;
}

.lp-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--lp-muted);
  max-width: 42ch;
  line-height: 1.65;
  margin-bottom: 32px;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-btn--fill {
  padding: 12px 26px;
  border-radius: 980px;
  background: var(--lp-cream);
  color: #111;
}

.lp-btn--fill:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.lp-btn--fill:active {
  transform: scale(0.98);
}

.lp-btn--fill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.lp-btn--text {
  padding: 12px 4px;
  background: transparent;
  color: var(--lp-muted);
}

.lp-btn--text:hover {
  color: var(--lp-cream);
}

.lp-platform-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--lp-muted);
  max-width: 36ch;
}

/* ── App preview showcase (real O-Card screenshots) ── */
.lp-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.lp-showcase-glow {
  position: absolute;
  inset: 8% 0 18%;
  background:
    radial-gradient(ellipse 55% 50% at 38% 42%, rgba(201, 120, 122, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 45% 40% at 68% 58%, rgba(74, 128, 168, 0.16) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.lp-showcase-phones {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 4vw, 28px);
  width: 100%;
  padding: 8px 0 4px;
}

.lp-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex: 0 1 auto;
}

.lp-device--front {
  transform: translateY(6px) rotate(-2.5deg);
  z-index: 2;
}

.lp-device--back {
  transform: translateY(-10px) rotate(2.5deg);
  z-index: 1;
}

.lp-device-frame {
  width: min(168px, 38vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(155deg, #343434 0%, #1a1a1a 48%, #101010 100%);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
}

.lp-device--front .lp-device-frame {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.58),
    0 10px 24px rgba(201, 120, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.lp-device-screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(var(--accent-rgb), 0.05);
}

.lp-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
}

.lp-device-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-faint);
}

.lp-device--front .lp-device-label {
  color: rgba(201, 120, 122, 0.72);
}

.lp-device--back .lp-device-label {
  color: rgba(122, 168, 201, 0.72);
}

.lp-device-caption {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--lp-muted);
  text-align: center;
  text-wrap: balance;
}

.lp-patent-note {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-faint);
  text-align: center;
}

/* ── Proof (tier 2) ── */
.lp-proof {
  padding: 0 28px 48px;
}

.lp-proof-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.lp-proof-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-rose);
  border: 1px solid rgba(201, 120, 122, 0.28);
  background: rgba(201, 120, 122, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lp-proof-quote {
  margin: 0;
}

.lp-proof-quote p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--lp-muted);
  text-wrap: balance;
}

/* ── Perks (tier 2) ── */
.lp-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 24px;
  text-align: left;
}

.lp-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--lp-muted);
}

.lp-perk img {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.85;
}

.lp-perk strong {
  font-weight: 500;
  color: var(--lp-cream);
}

.lp-trust-strip {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--lp-faint);
  margin-top: 20px;
  text-wrap: balance;
}

/* ── Hero secondary purpose line / audience list ── */
.lp-lead-secondary {
  margin: -4px 0 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--accent-rgb), 0.55);
  max-width: 38ch;
}

.lp-audience-list {
  list-style: none;
  padding: 0;
  max-width: 42ch;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-audience-list li {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(var(--accent-rgb), 0.58);
}

.lp-audience-who {
  font-weight: 600;
  color: rgba(var(--accent-rgb), 0.78);
}

.lp-audience-sep {
  font-weight: 400;
  color: rgba(var(--accent-rgb), 0.4);
}

/* ── How it works ── */
.lp-section-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-faint);
  margin: 0 0 12px;
}

.lp-how {
  padding: 52px 28px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 120, 122, 0.07) 0%, transparent 65%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 50%, transparent 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}

.lp-how-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-how-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--lp-cream);
  margin: 0 0 10px;
  text-wrap: balance;
}

.lp-how-intro {
  margin: 0 0 32px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.lp-how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
}

.lp-how-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-cream);
  background: rgba(201, 120, 122, 0.18);
  border: 1px solid rgba(201, 120, 122, 0.4);
  box-shadow: 0 0 16px rgba(201, 120, 122, 0.2);
}

.lp-how-step-title {
  margin: 2px 0 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-cream);
}

.lp-how-step-action {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(var(--accent-rgb), 0.78);
}

.lp-how-step-outcome {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-not-this {
  margin: 28px auto 0;
  max-width: 48ch;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(var(--accent-rgb), 0.62);
  text-wrap: balance;
}

.lp-not-this a {
  color: var(--lp-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.28);
}

.lp-not-this a:hover {
  border-bottom-color: rgba(var(--accent-rgb), 0.55);
}

/* ── Not a dating app (landing) ── */
.lp-not-dating {
  padding: 48px 28px 56px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}

.lp-not-dating-inner {
  max-width: var(--lp-narrow);
  margin: 0 auto;
  text-align: center;
}

.lp-not-this--links {
  margin-top: 8px;
  max-width: 52ch;
}

/* ── Core tools ── */
.lp-tools {
  padding: 48px 28px 56px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}

.lp-tools-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.lp-tools-title {
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--lp-cream);
  margin: 0 0 10px;
}

.lp-tools-intro {
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
  text-align: left;
}

/* ── Go deeper (optional tools) ── */
.lp-deeper {
  padding: 44px 28px 52px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 120, 122, 0.05) 0%, transparent 65%),
    transparent;
}

.lp-deeper-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lp-deeper-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--lp-cream);
  margin: 0 0 14px;
  text-wrap: balance;
}

.lp-deeper-body {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--lp-muted);
  text-wrap: pretty;
}

.lp-deeper-body strong {
  color: rgba(var(--accent-rgb), 0.88);
  font-weight: 500;
}

.lp-deeper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

/* Quieter cards so they don’t compete with the three core tools */
.lp-tool-card--soft {
  padding: 14px 16px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(var(--accent-rgb), 0.06);
}

.lp-tool-card--soft .lp-tool-name {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--accent-rgb), 0.88);
}

.lp-tool-card--soft .lp-tool-desc {
  font-size: 13px;
  color: rgba(var(--accent-rgb), 0.55);
}

.lp-tool-card {
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
}

.lp-tool-name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lp-cream);
}

.lp-tool-desc {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-story-quote {
  margin: 0;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(var(--accent-rgb), 0.07);
  position: relative;
}

.lp-story-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-rose), transparent);
  opacity: 0.7;
}

.lp-story-quote p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--lp-muted);
  text-wrap: balance;
}

.lp-tools-quote {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Signup ── */
.lp-signup {
  padding: 56px 28px 80px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}

.lp-signup-inner {
  max-width: var(--lp-narrow);
  margin: 0 auto;
  text-align: center;
}

.lp-signup-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
  text-wrap: balance;
}

.lp-signup-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  text-wrap: balance;
}

.lp-signup-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.lp-signup-input {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--lp-cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 980px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-signup-input::placeholder {
  color: var(--lp-faint);
}

.lp-signup-input:focus {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.lp-signup-submit {
  width: auto;
  min-width: 120px;
  max-width: 160px;
  align-self: center;
  padding-left: 36px;
  padding-right: 36px;
}

.lp-signup-status {
  font-size: 13px;
  font-weight: 400;
  margin-top: 12px;
  min-height: 20px;
  color: var(--lp-muted);
}

.lp-signup-status--success {
  color: #7aab82;
}

.lp-signup-status--error {
  color: var(--lp-rose);
}

/* ── Top nav: fixed frosted bar + Menu dropdown ── */
.lp-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
  min-height: calc(var(--lp-topnav-height) + env(safe-area-inset-top, 0px));
  padding:
    max(12px, env(safe-area-inset-top, 0px))
    max(20px, env(safe-area-inset-right, 20px))
    12px
    max(20px, env(safe-area-inset-left, 20px));
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.lp-topnav-brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-cream);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.lp-topnav-brand:hover {
  opacity: 0.9;
}

.lp-topnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
}

.lp-topnav-menu {
  position: relative;
  flex: 0 0 auto;
}

.lp-topnav-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 980px;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  background: transparent;
  color: var(--lp-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-topnav-menu-btn:hover,
.lp-topnav-menu-btn[aria-expanded="true"] {
  color: var(--lp-cream);
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.lp-topnav-menu-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.18s ease;
}

.lp-topnav-menu-btn[aria-expanded="true"] .lp-topnav-menu-chevron {
  transform: rotate(180deg);
}

.lp-topnav-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  background: rgba(22, 22, 22, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 110;
}

.lp-topnav-panel[hidden] {
  display: none !important;
}

.lp-topnav-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.lp-topnav-panel a:hover,
.lp-topnav-panel a:focus-visible {
  color: var(--lp-cream);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.lp-topnav-panel-rule {
  height: 1px;
  margin: 6px 8px;
  background: rgba(var(--accent-rgb), 0.1);
}

.lp-topnav-cta {
  padding: 8px 14px;
  border-radius: 980px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  color: var(--lp-cream) !important;
  font-size: 13px;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}

.lp-topnav-cta:hover {
  border-color: rgba(var(--accent-rgb), 0.36);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 380px) {
  .lp-topnav-cta {
    padding: 8px 11px;
    font-size: 12.5px;
  }
}

/* ── About page ── */
.lp-about-page,
.lp-landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-about-page .lp-main,
.lp-landing-page .lp-main {
  flex: 1;
}

/* Hero top padding (body already clears fixed nav) */
.lp-landing-page .lp-hero {
  padding-top: 28px;
}

.lp-about-page .lp-about {
  position: relative;
  border-top: none;
  padding: 48px 28px 96px;
  overflow: hidden;
  background: transparent;
}

.lp-about-ambient {
  position: absolute;
  inset: 0 0 auto;
  height: 48%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(201, 120, 122, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
}

.lp-about {
  padding: 56px 28px 72px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 120, 122, 0.05) 0%, transparent 60%),
    transparent;
}

.lp-about-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.lp-about-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
}

.lp-about-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-faint);
  margin-bottom: 18px;
}

.lp-about-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
  color: var(--lp-cream);
}

.lp-about-block {
  margin-bottom: 0;
}

.lp-about-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.45),
    0 0 22px rgba(255, 255, 255, 0.22),
    0 0 36px rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.lp-about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 52ch;
  text-wrap: pretty;
}

.lp-about-origin {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* Origin label: vibrant white (section umbrella) */
.lp-about-origin .lp-about-kicker--inline {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.45),
    0 0 22px rgba(255, 255, 255, 0.22),
    0 0 36px rgba(255, 255, 255, 0.1);
}

/* Origin subheads (The pause, What silence costs, …): quieter */
.lp-about-origin .lp-about-subtitle {
  color: var(--lp-faint);
  font-weight: 500;
  text-shadow: none;
}

.lp-about-origin .lp-about-body {
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.lp-about-origin .lp-about-body + .lp-about-body {
  margin-top: 1.15em;
}

.lp-about-rule {
  width: 48px;
  height: 1px;
  margin: 48px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.28),
    transparent
  );
}

.lp-about-body--empty {
  min-height: 4.5em;
}

.lp-about-team {
  max-width: 100%;
}

.lp-about-team > .lp-about-subtitle {
  text-align: center;
  margin-bottom: 32px;
}

.lp-about-people {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.lp-person {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
}

.lp-person-avatar {
  flex-shrink: 0;
  width: min(100%, 220px);
  max-width: 220px;
  aspect-ratio: 4 / 5;
  height: auto;
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
}

.lp-person-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .lp-person:hover .lp-person-avatar img {
    transform: scale(1.03);
  }
}

.lp-person-copy {
  min-width: 0;
  flex: 1;
  text-align: left;
}

.lp-person-name {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--lp-cream);
  margin-bottom: 6px;
}

.lp-person-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-faint);
  margin-bottom: 14px;
}

.lp-person-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--lp-muted);
}

.lp-person-bio + .lp-person-bio {
  margin-top: 0.9em;
}

.lp-about-company {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lp-company-logo-link {
  display: inline-flex;
  margin: 0 auto 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lp-company-logo-link:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.lp-company-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 2px;
}

.lp-about-company .lp-about-body {
  margin: 0 auto;
}

.lp-about-contact {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.lp-about-contact .lp-about-body {
  margin: 0 auto 28px;
  font-size: 15px;
}

.lp-contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lp-contact-link,
.lp-contact-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: var(--lp-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.22);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lp-contact-link:hover,
.lp-contact-email:hover {
  color: var(--lp-cream);
  border-bottom-color: rgba(var(--accent-rgb), 0.55);
}

/* ── Footer ── */
.lp-footer {
  padding: 24px 28px max(24px, env(safe-area-inset-bottom, 24px));
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
  text-align: center;
}

.lp-footer-line {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--lp-faint);
  margin-bottom: 10px;
}

.lp-footer-line a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lp-footer-line a:hover {
  color: var(--lp-muted);
  border-bottom-color: rgba(var(--accent-rgb), 0.4);
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.lp-footer-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-footer-links a:hover {
  color: var(--lp-cream);
}

/* ── Content pages (FAQ / guides) ── */
.lp-content-page .lp-main {
  padding-top: 28px;
}

.lp-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 28px 72px;
}

.lp-content-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 12px;
}

.lp-content-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--lp-cream);
  margin-bottom: 14px;
}

.lp-content-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--lp-muted);
  margin-bottom: 28px;
  max-width: 52ch;
}

.lp-content-meta {
  font-size: 12px;
  color: var(--lp-faint);
  margin: -12px 0 28px;
}

.lp-prose h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lp-cream);
  margin: 36px 0 12px;
}

.lp-prose h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-cream);
  margin: 24px 0 8px;
}

.lp-prose p,
.lp-prose li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(234, 224, 200, 0.86);
}

.lp-prose p + p {
  margin-top: 14px;
}

.lp-prose ul,
.lp-prose ol {
  margin: 12px 0 16px 1.2em;
}

.lp-prose li + li {
  margin-top: 8px;
}

.lp-prose a {
  color: var(--lp-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.28);
}

.lp-prose a:hover {
  border-bottom-color: rgba(var(--accent-rgb), 0.55);
}

.lp-prose strong {
  font-weight: 600;
  color: var(--lp-cream);
}

.lp-content-cta {
  margin-top: 40px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.lp-content-cta p {
  font-size: 14px;
  color: var(--lp-muted);
  margin-bottom: 14px;
}

.lp-content-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* FAQ */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.lp-faq-item {
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.lp-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-weight: 400;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1;
}

.lp-faq-item[open] summary::after {
  content: '−';
}

.lp-faq-item .lp-faq-a {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(234, 224, 200, 0.86);
}

.lp-faq-item .lp-faq-a p + p {
  margin-top: 10px;
}

/* Guides index cards */
.lp-guide-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.lp-guide-card {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-guide-card:hover {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.lp-guide-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-cream);
  margin-bottom: 6px;
}

.lp-guide-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-guide-card-meta {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-faint);
}

/* ── Responsive ── */
@media (min-width: 720px) {
  .lp-hero {
    padding: 72px 40px 72px;
  }

  .lp-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .lp-showcase {
    max-width: none;
    margin: 0;
    justify-self: end;
  }

  .lp-device-frame {
    width: min(200px, 22vw);
  }

  .lp-device--front {
    transform: translateY(10px) rotate(-3deg);
  }

  .lp-device--back {
    transform: translateY(-14px) rotate(3deg);
  }

  .lp-device-caption {
    max-width: 38ch;
  }

  .lp-lead-secondary {
    font-size: 15px;
    max-width: 42ch;
  }

  .lp-audience-list li {
    font-size: 15px;
  }

  .lp-how {
    padding: 64px 40px 68px;
  }

  .lp-how-steps {
    gap: 16px;
  }

  .lp-how-step {
    padding: 20px 22px;
    gap: 18px;
  }

  .lp-tools {
    padding: 56px 40px 56px;
  }

  .lp-tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .lp-deeper {
    padding: 52px 40px 60px;
  }

  .lp-deeper-body {
    font-size: 16px;
  }

  .lp-deeper-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 560px;
  }

  .lp-story-quote {
    padding: 26px 32px;
  }

  .lp-proof {
    padding: 0 40px 56px;
  }

  .lp-signup {
    padding: 64px 40px 96px;
  }

  .lp-signup-row {
    flex-direction: row;
    max-width: 420px;
  }

  .lp-signup-input {
    flex: 1;
  }

  .lp-signup-submit {
    width: auto;
    min-width: 112px;
    max-width: 140px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .lp-topnav {
    padding: max(20px, env(safe-area-inset-top, 20px)) 40px 16px;
  }

  .lp-landing-page .lp-hero {
    padding-top: 36px;
  }

  .lp-about {
    padding: 72px 40px 88px;
  }

  .lp-about-page .lp-about {
    padding: 64px 40px 120px;
  }

  .lp-about-header {
    margin-bottom: 72px;
  }

  .lp-about-rule {
    margin: 64px auto;
  }

  .lp-about-people {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
  }

  .lp-person {
    max-width: none;
    margin: 0;
    gap: 22px;
  }

  .lp-person-name {
    font-size: 1.35rem;
  }

  .lp-person-bio {
    font-size: 14.5px;
  }

  .lp-contact-list {
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .lp-headline {
    font-size: 3.75rem;
  }
}

@media (max-width: 480px) {
  .lp-showcase-phones {
    gap: 10px;
  }

  .lp-device-frame {
    width: min(148px, 42vw);
    border-radius: 30px;
    padding: 8px;
  }

  .lp-device-screen {
    border-radius: 22px;
  }

  .lp-device--front {
    transform: translateY(4px) rotate(-2deg);
  }

  .lp-device--back {
    transform: translateY(-6px) rotate(2deg);
  }

  .lp-how {
    padding: 40px 22px 44px;
  }

  .lp-how-step {
    padding: 16px 14px;
    gap: 12px;
  }

  .lp-how-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .lp-tools {
    padding: 40px 22px 40px;
  }

  .lp-deeper {
    padding: 36px 22px 44px;
  }

  .lp-story-quote {
    padding: 18px 20px;
  }

  .lp-proof {
    padding: 0 22px 40px;
  }

  .lp-perks {
    margin-bottom: 20px;
  }
}