/* ─────────────────────────────────────────────────────────────
 * PoopJob Landing Page — styles.css
 * Mobile-first. Default styles target small screens (~≤760px).
 * Layer up with min-width media queries.
 * No Tailwind. No framework. No JS.
 * ───────────────────────────────────────────────────────────── */

/* ─── @font-face — self-hosted Quicksand ─────────────────────── */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/quicksand-400-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/quicksand-400-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/quicksand-500-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/quicksand-500-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/quicksand-600-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/quicksand-600-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/quicksand-700-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/quicksand-700-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Color tokens ───────────────────────────────────────────── */
:root {
  --bg: #efe5d2;
  --paper: #fbf5e6;
  --paper-deep: #f4ecd8;
  --ink: #1e2933;
  --ink-soft: #566472;
  --ink-mute: #8a95a0;
  --ink-hair: rgba(30, 41, 51, 0.1);
  --blue: #a7cfd5;
  --blue-deep: #3f7986;
  --blue-soft-bg: #d8e9ec;
  --warm: #e8b79c;
  --cocoa: #c4986f;
  --cocoa-ink: #6e4a2e;
  --slate: #2a3640;
  --shadow: 0 1px 2px rgba(30, 41, 51, 0.04), 0 8px 24px rgba(30, 41, 51, 0.06);
  --shadow-lg: 0 4px 12px rgba(30, 41, 51, 0.06), 0 32px 64px rgba(30, 41, 51, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    'Quicksand',
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

/* ─── Nav ────────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(239, 229, 210, 0.78);
  border-bottom: 1px solid var(--ink-hair);
}

.lp-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.lp-nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.nav-link:hover {
  background: rgba(30, 41, 51, 0.06);
  color: var(--ink);
}

/* Hide Features/Insights nav links on narrow screens */
.nav-link-features,
.nav-link-insights {
  display: none;
}

/* ─── Logo mark (PJMark) ─────────────────────────────────────── */
.pj-mark {
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.pj-mark--lg {
  width: 36px;
  height: 36px;
}

.pj-mark--sm {
  width: 32px;
  height: 32px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cta-btn:active {
  transform: scale(0.97);
}

.cta-btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow:
    0 1px 0 #000 inset,
    0 12px 24px rgba(30, 41, 51, 0.18);
}

.cta-btn--primary:hover {
  background: var(--slate);
}

.cta-btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(30, 41, 51, 0.18);
}

.cta-btn--ghost:hover {
  background: rgba(30, 41, 51, 0.06);
}

.cta-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

/* ─── Section eyebrow ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.section-eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 1px;
  display: inline-block;
}

.section-eyebrow--light {
  color: var(--blue);
}

.section-eyebrow--light .section-eyebrow-line {
  background: var(--blue);
}

/* ─── Section headings ───────────────────────────────────────── */
.section-h2 {
  margin: 12px 0 16px;
  max-width: 820px;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

.section-lede {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.lp-hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 38%, var(--blue-soft-bg) 0%, rgba(216, 233, 236, 0) 70%),
    radial-gradient(40% 30% at 18% 60%, rgba(232, 183, 156, 0.35) 0%, rgba(232, 183, 156, 0) 70%);
  pointer-events: none;
}

.lp-hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--ink-hair);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}

.lp-hero-eyebrow-star {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.lp-hero-h1 {
  margin: 0;
  font-size: clamp(38px, 10.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

.lp-hero-h1-accent {
  color: var(--blue-deep);
  font-style: italic;
  font-weight: 700;
}

.lp-hero-lede {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.lp-hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Hero phones — mobile: one centered phone */
.lp-hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  min-height: 480px;
}

.lp-hero-phone--back {
  display: none;
}

.lp-hero-phone--front {
  position: static;
  margin: 0 auto;
}

/* ─── Phone card chrome ──────────────────────────────────────── */

/*
 * .phone-card-wrap: outer container with the scaled dimensions.
 * overflow: hidden clips the unscaled layout space of the inner bezel.
 * filter: drop-shadow applies to the clipped visual output.
 */
.phone-card-wrap {
  filter: drop-shadow(0 30px 40px rgba(30, 41, 51, 0.18));
  flex-shrink: 0;
  overflow: hidden;
}

.phone-card-bezel {
  border-radius: 56px;
  background: #0b0f14;
  padding: 10px;
  position: relative;
}

.phone-card-screen {
  width: 100%;
  height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}

.phone-card-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 34px;
  border-radius: 18px;
  background: #0b0f14;
  z-index: 30;
}

/*
 * .phone-card-label: sits below .phone-card-wrap as a sibling,
 * so it is not clipped by overflow: hidden on the wrap.
 */
.phone-card-label {
  margin-top: 14px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.phone-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Features ───────────────────────────────────────────────── */
.lp-features {
  background: var(--paper);
  border-top: 1px solid var(--ink-hair);
  border-bottom: 1px solid var(--ink-hair);
}

.lp-features-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}

.lp-features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}

.feature-card-title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
}

.feature-card-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* Feature illustrations */
.feature-illo-diaper {
  display: flex;
  gap: 8px;
}

.feature-illo-diaper-pill {
  flex: 1;
  color: #fff;
  border-radius: 18px;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.feature-illo-diaper-pill--poop {
  background: var(--cocoa);
}
.feature-illo-diaper-pill--pee {
  background: var(--blue-deep);
}
.feature-illo-diaper-pill--mix {
  background: #c9b790;
}

.feature-illo-diaper-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.feature-illo-diaper-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.feature-illo-feed {
  background: var(--slate);
  border-radius: 20px;
  padding: 18px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-illo-feed-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(167, 207, 213, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-illo-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(167, 207, 213, 0.8);
}

.feature-illo-feed-info {
  flex: 1;
}

.feature-illo-feed-label {
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}

.feature-illo-feed-time {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

.feature-illo-feed-switch {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.feature-illo-insights {
  background: var(--paper-deep);
  border-radius: 20px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 102px;
}

.feature-illo-bar {
  flex: 1;
  border-radius: 6px;
  opacity: 0.85;
}

.feature-illo-bar--highlight {
  opacity: 1;
  background: var(--blue-deep);
}

/* ─── Showcase ───────────────────────────────────────────────── */
.lp-showcase {
  padding-top: 64px;
}

.lp-showcase-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase-rail {
  margin-top: 56px;
  padding: 40px 20px 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 41, 51, 0.18) transparent;
}

.showcase-rail::-webkit-scrollbar {
  height: 8px;
}

.showcase-rail::-webkit-scrollbar-thumb {
  background: rgba(30, 41, 51, 0.18);
  border-radius: 4px;
}

.showcase-rail-inner {
  display: flex;
  gap: 56px;
  align-items: flex-end;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 40px;
}

.showcase-phone {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Insights deep-dive ─────────────────────────────────────── */
.lp-insights-section {
  background: var(--slate);
  color: #f5efe0;
  margin-top: 80px;
  border-top: 1px solid var(--ink-hair);
}

.lp-insights {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.lp-insights-phones {
  position: relative;
  height: 440px;
  display: flex;
  justify-content: center;
  transform: scale(0.78);
  transform-origin: top center;
}

.lp-insights-phone--back {
  position: absolute;
  left: 20px;
  top: 40px;
  transform: rotate(-3deg);
  z-index: 1;
}

.lp-insights-phone--front {
  position: absolute;
  right: 0;
  top: 90px;
  transform: rotate(4deg);
  z-index: 2;
}

.lp-insights-copy {
  /* stacks below phones on mobile */
}

.lp-insights-h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
}

.lp-insights-lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.74);
  max-width: 460px;
  text-wrap: pretty;
}

.lp-insights-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-insights-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(245, 239, 224, 0.92);
  font-size: 15px;
  line-height: 1.5;
}

.lp-insights-bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* ─── Principles ─────────────────────────────────────────────── */
.lp-principles {
  padding: 64px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-principles-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-hair);
}

.lp-principles-item {
  padding: 22px 4px;
  border-bottom: 1px solid var(--ink-hair);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: baseline;
}

.lp-principles-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
}

.lp-principles-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 6px;
}

.lp-principles-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ─── Quote ──────────────────────────────────────────────────── */
.lp-quote {
  background: var(--paper);
  border-top: 1px solid var(--ink-hair);
  border-bottom: 1px solid var(--ink-hair);
  padding: 64px 20px;
}

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

.lp-quote-mark {
  font-size: 96px;
  line-height: 0.6;
  color: var(--blue);
  font-family: Georgia, serif;
  height: 36px;
  display: block;
}

.lp-quote-text {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.4px;
  text-wrap: balance;
}

.lp-quote-attr {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.lp-faq {
  padding: 64px 20px;
  max-width: 880px;
  margin: 0 auto;
}

.lp-faq-list {
  border-top: 1px solid var(--ink-hair);
}

.lp-faq-item {
  border-bottom: 1px solid var(--ink-hair);
  padding: 20px 4px;
}

.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
}

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

.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(63, 121, 134, 0.1);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.18s ease;
  flex-shrink: 0;
}

.lp-faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--blue-deep);
  color: #fff;
}

.lp-faq-answer {
  margin: 14px 0 4px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ─── Closing CTA ────────────────────────────────────────────── */
.lp-cta {
  padding: 0 16px 56px;
}

.lp-cta-card {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-soft-bg) 0%, var(--paper) 60%, #f1d9c8 100%);
  border-radius: 28px;
  padding: 48px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lp-cta-blob-blue {
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.35;
  filter: blur(2px);
  pointer-events: none;
}

.lp-cta-blob-warm {
  position: absolute;
  left: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--warm);
  opacity: 0.5;
  pointer-events: none;
}

.lp-cta-content {
  position: relative;
  max-width: 640px;
}

.lp-cta-h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}

.lp-cta-lede {
  margin: 20px 0 32px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}

.lp-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--ink-hair);
  padding: 32px 20px;
}

.lp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-footer-copy {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.lp-footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-link:hover {
  color: var(--ink);
}

/* ─── Responsive: min-width 760px (tablet / small desktop) ───── */
@media (min-width: 760px) {
  /* Nav */
  .lp-nav-inner {
    padding: 18px 32px;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 14px;
  }

  .cta-btn--sm {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Show Features/Insights nav links */
  .nav-link-features,
  .nav-link-insights {
    display: inline-flex;
  }

  /* Hero */
  .lp-hero {
    padding: 64px 32px 80px;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }

  .lp-hero-h1 {
    font-size: clamp(44px, 5.6vw, 72px);
    letter-spacing: -1.6px;
  }

  .lp-hero-lede {
    font-size: 19px;
  }

  /* Hero phones — desktop: two overlapping phones */
  .lp-hero-phones {
    position: relative;
    height: 640px;
    display: block;
    min-height: unset;
  }

  .lp-hero-phone--back {
    display: block;
    position: absolute;
    top: 0;
    right: 80px;
    z-index: 1;
  }

  .lp-hero-phone--front {
    position: absolute;
    top: 60px;
    right: -10px;
    z-index: 2;
    margin: 0;
  }

  /* Features */
  .lp-features-inner {
    padding: 96px 32px;
  }

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

  /* Showcase */
  .lp-showcase {
    padding-top: 96px;
  }

  .lp-showcase-header {
    padding: 0 32px;
  }

  .showcase-rail {
    padding: 40px 32px 80px;
  }

  /* Insights */
  .lp-insights {
    padding: 96px 32px;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
  }

  .lp-insights-phones {
    height: 580px;
    transform: none;
  }

  /* Principles */
  .lp-principles {
    padding: 96px 32px;
  }

  .lp-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-principles-item {
    padding: 28px 28px;
  }

  /* Right column items: no right border */
  .lp-principles-item:nth-child(odd) {
    border-right: 1px solid var(--ink-hair);
  }

  /* Quote */
  .lp-quote {
    padding: 96px 32px;
  }

  /* FAQ */
  .lp-faq {
    padding: 96px 32px;
  }

  /* CTA */
  .lp-cta {
    padding: 0 32px 96px;
  }

  .lp-cta-card {
    padding: 72px 56px;
    border-radius: 40px;
  }

  /* Footer */
  .lp-footer {
    padding: 40px 32px;
  }

  .lp-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}

/* ─── Responsive: min-width 900px ────────────────────────────── */
@media (min-width: 900px) {
  /* Nav: show all links */
  .nav-link-features,
  .nav-link-insights {
    display: inline-flex;
  }
}

/* ─── Disabled links (footer + privacy promise) ─────────────── */
/* Links that are not yet wired up use aria-disabled="true" instead of href="#"
   so they don't scroll to top or fire navigation events. */
.footer-link--disabled,
.cta-btn--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ─── Very small phones (max-width: 400px) ───────────────────── */
@media (max-width: 400px) {
  .lp-hero-h1 {
    font-size: 38px;
  }

  .lp-hero-phones {
    min-height: 420px;
  }

  .lp-hero-phone--front {
    transform: scale(0.88);
    transform-origin: top center;
  }
}
