/* ──────────────────────────────────────────────────────────────────
 * PlanJolly — live landing page (planjolly.com)
 * Design tokens from the PlanJolly design system (Figma) via the
 * Claude Design v3 handoff. No-line style: soft ambient shadows and
 * tonal fills, never hard strokes. Noto Serif display, Manrope UI.
 * ────────────────────────────────────────────────────────────────── */

/* ─── Fonts (self-hosted subsets) ─── */
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/NotoSerif-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/NotoSerif-Italic-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Manrope-700.woff2') format('woff2');
}

/* ─── Tokens ─── */
:root {
  /* Navy — primary brand */
  --pj-navy-900: rgb(19, 39, 62);
  --pj-navy-800: rgb(27, 59, 90);
  --pj-navy-700: rgb(35, 66, 98);
  --pj-navy-600: rgb(46, 90, 136);
  --pj-navy-500: rgb(60, 90, 123);

  /* Warm neutrals */
  --pj-bone-50:  rgb(250, 249, 248);
  --pj-bone-100: rgb(244, 243, 242);
  --pj-bone-200: rgb(233, 232, 231);
  --pj-bone-300: rgb(214, 213, 212);

  /* Tan */
  --pj-tan-50:  rgb(242, 232, 224);
  --pj-tan-300: rgb(212, 180, 153);
  --pj-tan-700: rgb(115, 90, 67);

  /* Ink */
  --pj-ink-900: rgb(26, 28, 28);
  --pj-ink-700: rgb(54, 56, 56);
  --pj-ink-500: rgb(63, 70, 70);
  --pj-ink-300: rgb(161, 170, 170);

  --pj-green: rgb(39, 174, 96);

  /* Category accents (from the app's 15-category palette) */
  --cat-ceremony:   #1B3B5A;
  --cat-reception:  #A8835D;
  --cat-stationery: #4A6781;
  --cat-flowers:    #A85A7A;
  --cat-attire:     #735A43;

  /* Panels */
  --panel-peach: #fff4eb;
  --panel-cream: #faf6f1;
  --panel-navy-tint: rgb(232, 235, 239);

  /* Elevation — layered, warm-tinted */
  --soft-shadow:      0 1px 2px rgba(27,59,90,0.04), 0 10px 26px rgba(27,59,90,0.07), 0 34px 70px rgba(27,59,90,0.08);
  --soft-shadow-sm:   0 1px 2px rgba(27,59,90,0.04), 0 6px 18px rgba(27,59,90,0.06);
  --soft-shadow-lift: 0 2px 4px rgba(27,59,90,0.05), 0 18px 36px rgba(27,59,90,0.10), 0 44px 88px rgba(27,59,90,0.10);
  --shadow-cta-lift:  0 8px 30px rgba(27,59,90,0.20);

  --gradient-primary: linear-gradient(180deg, rgb(27,59,90) 0%, rgb(60,90,123) 100%);

  --border-soft: var(--pj-bone-200);

  --font-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ─── Base ─── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--pj-bone-50);
  color: var(--pj-ink-700);
  font: 400 16px/24px var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; }
button { font-family: var(--font-sans); }
::selection { background: var(--pj-navy-800); color: #fff; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--pj-navy-800);
  outline-offset: 3px;
  border-radius: 4px;
}

.kicker {
  font: 600 11px/17px var(--font-sans);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--pj-tan-700);
}

.accent-navy { font: italic 500 1em/1 var(--font-serif); color: var(--pj-navy-700); }
.accent-tan  { font: italic 500 1em/1 var(--font-serif); color: var(--pj-tan-300); }

.lp-section-center { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.lp-section-head {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 56px; text-align: center;
}
.lp-section-title {
  font: 700 48px/54px var(--font-serif);
  letter-spacing: -1.1px;
  color: var(--pj-navy-800);
  max-width: 620px;
  text-wrap: balance;
}

/* ─── Wordmark ─── */
.wordmark { display: inline-flex; text-decoration: none; }
.wordmark svg, svg.wordmark { width: 127px; height: 30px; }
.wordmark--white { --wm-ink: #fff; --wm-warm: #fff; }

/* ─── Store badges ───
 * Official artwork (Apple SVG, Google Play PNG) — never recolour or rebuild.
 * The Play PNG is cropped to the badge itself (Google's download bakes ~33%
 * transparent clear space into the file; the layout provides that clear
 * space instead), so both badges render at the same plain CSS height. */
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-badges a { display: inline-flex; border-radius: 8px; }
.badge-apple img, .badge-play img { height: 50px; width: auto; }
@media (hover: hover) {
  .store-badges a { transition: transform .26s ease-out; }
  .store-badges a:hover { transform: translateY(-2px); }
}

/* ─── Ticks (feature bullets / pricing points) ─── */
.lp-feature-bullets, .lp-pricing-points { display: flex; flex-direction: column; }
.lp-feature-bullets li, .lp-pricing-points li {
  display: flex; gap: 13px; align-items: flex-start;
  font: 500 16px/24px var(--font-sans); color: var(--pj-ink-900);
  text-wrap: pretty; /* no single-word orphans (nbsp in the HTML covers older Safari) */
}
.tick {
  width: 25px; height: 25px; border-radius: 999px; flex-shrink: 0;
  background: var(--pj-navy-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.tick svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Top nav ─── */
.lp-nav {
  position: relative; z-index: 10;
  max-width: 1240px; margin: 0 auto;
  padding: 28px 48px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-links { display: flex; align-items: center; gap: 32px; }
.lp-navlink {
  font: 500 14px/20px var(--font-sans);
  color: var(--pj-ink-900); text-decoration: none;
}
.lp-navlink:hover { color: var(--pj-navy-800); }
.lp-nav-cta {
  font: 700 12px/14px var(--font-sans);
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #fff; background: var(--pj-navy-800);
  padding: 11px 18px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  box-shadow: var(--soft-shadow-sm);
  transition: transform .2s ease-out;
}
.lp-nav-cta:hover { transform: translateY(-2px); }

/* ─── Hero ─── */
.lp-hero {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  padding: 52px 48px 76px;
  display: grid; grid-template-columns: 1.04fr 1fr;
  gap: 56px; align-items: center;
}
.lp-hero-glow {
  position: absolute; inset: -8% -6% auto -6%; height: 720px;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(540px 420px at 72% 36%, rgba(214,228,248,0.55) 0%, rgba(214,228,248,0) 64%),
    radial-gradient(620px 520px at 22% 24%, rgba(27,59,90,0.06) 0%, rgba(27,59,90,0) 66%);
  will-change: transform;
}
.lp-hero-left, .lp-hero-visual { min-width: 0; position: relative; z-index: 2; }
.lp-hero-left { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.lp-hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--pj-tan-50); color: var(--pj-tan-700);
  font: 600 11px/14px var(--font-sans);
  letter-spacing: 1.6px; text-transform: uppercase;
}
.lp-hero-kicker .glyph { width: 11px; height: 11px; fill: currentColor; }
.lp-hero-h1 {
  font: 700 72px/76px var(--font-serif);
  letter-spacing: -1.8px; color: var(--pj-navy-800);
  text-wrap: balance;
}
.lp-hero-sub {
  font: 400 19px/30px var(--font-sans);
  color: var(--pj-ink-700); max-width: 520px;
}
.lp-hero-note { font: 400 14px/22px var(--font-sans); color: var(--pj-ink-500); max-width: 460px; }

.lp-hero-visual { display: flex; justify-content: center; align-items: center; }
.lp-hero-visual-box { position: relative; width: 460px; height: 500px; max-width: 100%; }
.lp-hero-video-card {
  position: absolute; top: 68px; left: 50%; transform: translateX(-50%);
  width: 364px; height: 364px; max-width: 96vw;
  border-radius: 40px; overflow: hidden;
  background: #ebf3fd;
  box-shadow: var(--soft-shadow);
}
.lp-hero-video-card video { width: 100%; height: 100%; object-fit: cover; }
.motif { position: absolute; fill: var(--pj-tan-300); }
.motif-heart-1 { width: 26px; height: 26px; top: 24px; left: 60px; }
.motif-heart-2 { width: 18px; height: 18px; bottom: 60px; right: 40px; fill: var(--pj-navy-600); opacity: 0.5; }
.motif-sparkle-1 { width: 20px; height: 20px; top: 70px; right: 64px; }
.motif-sparkle-2 { width: 14px; height: 14px; bottom: 96px; left: 44px; }

/* ─── Promo video ─── */
.lp-video { padding: 88px 0; }
.lp-video-center { max-width: 980px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.lp-video .lp-section-head { margin-bottom: 0; }
.lp-video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 24px; overflow: hidden;
  background: var(--panel-peach);
  box-shadow: var(--soft-shadow);
  transition: transform .42s cubic-bezier(.16,.84,.44,1), box-shadow .42s cubic-bezier(.16,.84,.44,1);
}
@media (hover: hover) {
  .lp-video-frame:hover { transform: translateY(-4px); box-shadow: var(--soft-shadow-lift); }
}
.lp-video-frame > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-video-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.lp-video-poster img { width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 14px 26px rgba(27,59,90,0.16)); }
.lp-video-logo { width: 110px; height: 26px; }
.lp-video-play {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 999px;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 36px rgba(27,59,90,0.24);
  display: flex; align-items: center; justify-content: center;
  transition: transform 140ms ease-out;
}
.lp-video-play:hover { transform: scale(1.06); }
.lp-video-play svg { fill: var(--pj-navy-800); margin-left: 4px; }
/* Soft ripple so the play button reads as "this is a video" at a glance */
@media (prefers-reduced-motion: no-preference) {
  .lp-video-play::after {
    content: ""; position: absolute; inset: 0; border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.65);
    animation: pj-play-pulse 2.8s ease-out infinite;
  }
}
@keyframes pj-play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); }
  70%, 100% { box-shadow: 0 0 0 26px rgba(255,255,255,0); }
}
.kicker-video { display: inline-flex; align-items: center; gap: 8px; }
.kicker-glyph { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.lp-video-length {
  position: absolute; right: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  font: 600 12px/16px var(--font-sans); letter-spacing: 0.6px;
  color: #fff; background: rgba(26,28,28,0.62);
  padding: 6px 11px; border-radius: 999px;
  pointer-events: none;
}
.lp-video-length svg { width: 11px; height: 11px; fill: currentColor; }
.lp-video-soon {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  font: 500 13px/18px var(--font-sans); color: var(--pj-tan-700);
  background: rgba(255,255,255,0.9); padding: 8px 16px; border-radius: 999px;
  white-space: nowrap;
}
.lp-video-caption { font: 400 14px/22px var(--font-sans); color: var(--pj-ink-500); }

/* ─── Value props (solid navy cards) ─── */
.lp-valueprops { padding: 56px 0 88px; }
.lp-valueprops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vp-card {
  border-radius: 22px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--pj-navy-800);
  box-shadow: var(--soft-shadow);
  transition: transform .42s cubic-bezier(.16,.84,.44,1), box-shadow .42s cubic-bezier(.16,.84,.44,1);
}
@media (hover: hover) {
  .vp-card:hover { transform: translateY(-6px); box-shadow: var(--soft-shadow-lift); }
}
.vp-icon {
  width: 52px; height: 52px; border-radius: 999px; flex-shrink: 0;
  background: rgba(255,255,255,0.13); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.vp-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.vp-icon svg .faint { opacity: 0.6; }
.vp-icon svg .fill { fill: currentColor; stroke: none; }
.vp-card h3 { font: 700 24px/30px var(--font-serif); color: #fff; letter-spacing: -0.4px; }
.vp-card p { font: 400 16px/26px var(--font-sans); color: rgba(255,255,255,0.82); }

/* ─── How it works ─── */
.lp-howitworks { background: #fff; padding: 96px 0; }
.lp-howitworks .lp-section-head { margin-bottom: 64px; }
.lp-howitworks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.lp-howitworks-line {
  position: absolute; top: 34px; left: 16.667%; right: 16.667%; height: 0;
  border-top: 1.5px dashed var(--pj-ink-300); z-index: 0;
}
.hiw-step { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; position: relative; }
.hiw-num {
  width: 68px; height: 68px; border-radius: 999px;
  background: var(--pj-navy-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 22px/1 var(--font-serif); letter-spacing: -0.5px;
  position: relative; z-index: 1;
}
.hiw-step h3 { font: 700 24px/30px var(--font-serif); color: var(--pj-navy-800); letter-spacing: -0.4px; text-wrap: balance; max-width: 280px; }
.hiw-step p { font: 400 16px/26px var(--font-sans); color: var(--pj-ink-700); max-width: 290px; }

/* ─── Feature blocks ─── */
.lp-feature-block {
  max-width: 1240px; margin: 0 auto; padding: 72px 48px;
  display: grid; grid-template-columns: 1.08fr 1fr;
  gap: 72px; align-items: center;
}
.lp-feature-block.is-reverse { grid-template-columns: 1fr 1.08fr; }
.lp-feature-block.is-reverse .lp-feature-text { order: 2; }
.lp-feature-block.is-reverse .lp-feature-phone { order: 1; }
.lp-feature-text { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.lp-feature-title {
  font: 700 50px/56px var(--font-serif);
  letter-spacing: -1.2px; color: var(--pj-navy-800);
  text-wrap: balance;
}
.lp-feature-body { font: 400 17px/28px var(--font-sans); color: var(--pj-ink-700); max-width: 470px; }
.lp-feature-bullets { gap: 13px; margin-top: 6px; }
.lp-feature-phone {
  position: relative; min-width: 0;
  display: flex; justify-content: center; align-items: center;
  min-height: 640px;
}
.lp-feature-halo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(440px, 92%); aspect-ratio: 1; border-radius: 50%;
}
.halo-navy { background: var(--panel-navy-tint); }
.halo-peach { background: var(--panel-peach); }

/* ─── Phone mockup ─── */
.phone {
  position: relative; width: 290px; height: 588px;
  border-radius: 40px; overflow: hidden;
  background: var(--pj-bone-50);
  box-shadow: 0 24px 50px rgba(27,59,90,0.14), 0 0 0 1px rgba(27,59,90,0.10);
}

















.cat-ceremony   { color: var(--cat-ceremony); }
.cat-reception  { color: var(--cat-reception); }
.cat-stationery { color: var(--cat-stationery); }
.cat-flowers    { color: var(--cat-flowers); }
.cat-attire     { color: var(--cat-attire); }



















/* ─── Get the app: QR band ─── */
.lp-getapp { padding: 40px 0 96px; }
.lp-getapp-center { max-width: 1040px; position: relative; }
.lp-getapp-card {
  position: relative; overflow: hidden; z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel-cream) 140%);
  border: 1px solid rgba(27,59,90,0.07);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
  padding: 56px 60px;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center;
}
.lp-getapp-text { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.lp-getapp-text h2 {
  font: 700 44px/50px var(--font-serif);
  letter-spacing: -1.1px; color: var(--pj-navy-800);
  text-wrap: balance;
}
.lp-getapp-text p { font: 400 17px/28px var(--font-sans); color: var(--pj-ink-700); max-width: 420px; }
.lp-getapp-note { font: 400 13px/20px var(--font-sans); color: var(--pj-ink-500); }
.lp-getapp-qrwrap {
  position: relative; justify-self: end;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lp-qr-card {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid rgba(27,59,90,0.08);
  border-radius: 26px; padding: 22px;
  box-shadow: var(--soft-shadow-lift);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lp-qr-frame { position: relative; display: flex; align-items: center; justify-content: center; padding: 14px; }
.lp-qr-frame img { width: 188px; height: 188px; }
.qr-corner {
  position: absolute; width: 16px; height: 16px; z-index: 3;
  border: 0 solid var(--pj-tan-300);
}
.qr-tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 6px; }
.qr-tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 6px; }
.qr-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 6px; }
.qr-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 6px; }
.lp-qr-caption {
  display: flex; align-items: center; gap: 8px;
  font: 600 12px/16px var(--font-sans);
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--pj-ink-700);
}
.qr-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--pj-green); }
.lp-qr-url { font: 400 13px/18px var(--font-sans); color: var(--pj-ink-500); }

/* ─── Pricing ─── */
.lp-pricing { padding: 96px 0; background: #fff; }
.lp-pricing-grid {
  max-width: 1040px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.lp-pricing-text { display: flex; flex-direction: column; gap: 20px; }
.lp-pricing-text .lp-section-title { max-width: none; }
.lp-pricing-text p { font: 400 17px/28px var(--font-sans); color: var(--pj-ink-700); max-width: 440px; }
.lp-pricing-card {
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--pj-navy-800);
  box-shadow: var(--soft-shadow);
}
.lp-pricing-price { font: 700 40px/44px var(--font-serif); color: #fff; letter-spacing: -1px; }
.lp-pricing-divider { height: 1px; background: rgba(255,255,255,0.18); }
.lp-pricing-points { gap: 12px; }
.lp-pricing-points li { font: 500 15px/22px var(--font-sans); color: rgba(255,255,255,0.85); gap: 11px; }
.tick-light { width: 22px; height: 22px; background: rgba(255,255,255,0.16); }
.tick-light svg { width: 12px; height: 12px; stroke-width: 2.8; }

/* ─── FAQ ─── */
.lp-faq { padding: 96px 0; }
.lp-faq-center { max-width: 880px; margin: 0 auto; padding: 0 48px; }
.lp-faq .lp-section-head { margin-bottom: 44px; }
.lp-faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border-soft); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-h { margin: 0; }
.faq-q {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; align-items: center; gap: 16px;
  font: 700 20px/28px var(--font-serif);
  letter-spacing: -0.3px; color: var(--pj-navy-800);
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
  margin-left: auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--pj-ink-900); background: #dbe8fb;
  transition: transform 200ms, background 200ms, color 200ms;
}
.faq-toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--pj-navy-800); color: #fff;
}
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease-out;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  font: 400 16px/26px var(--font-sans); color: var(--pj-ink-700); max-width: 680px;
  transition: padding-bottom 240ms ease-out;
}
.faq-item.is-open .faq-a > p { padding-bottom: 22px; }

/* ─── Final CTA ─── */
.lp-final {
  background: var(--pj-navy-800);
  position: relative; overflow: hidden;
  padding: 116px 0;
}
.lp-final-circle-1 {
  position: absolute; top: -80px; left: -4%;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,244,235,0.08);
}
.lp-final-circle-2 {
  position: absolute; bottom: -120px; right: -6%;
  width: 440px; height: 440px; border-radius: 50%;
  background: rgba(212,180,153,0.12);
}
.lp-final-center {
  max-width: 1000px; margin: 0 auto; padding: 0 48px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.lp-final-logo { width: 152px; height: 36px; }
.lp-final-headline {
  font: 700 60px/66px var(--font-serif);
  letter-spacing: -1.5px; color: #fff;
  max-width: 820px; text-wrap: balance;
}
.lp-final-sub { font: 400 18px/28px var(--font-sans); color: rgba(255,255,255,0.82); max-width: 540px; }

/* ─── Footer ─── */
.lp-footer { background: var(--pj-bone-50); padding: 64px 0 40px; }
.lp-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px;
}
.lp-footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.lp-footer-brand p { font: 400 14px/22px var(--font-sans); color: var(--pj-ink-500); }
.lp-footer-col { display: flex; flex-direction: column; gap: 13px; }
.lp-footer-title {
  font: 700 12px/16px var(--font-sans);
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--pj-ink-900);
}
.lp-footer-col a {
  font: 400 14px/20px var(--font-sans);
  color: var(--pj-ink-700); text-decoration: none;
}
.lp-footer-col a:hover { color: var(--pj-navy-800); text-decoration: underline; }
.lp-footer-bottom {
  border-top: 1px solid var(--border-soft); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font: 400 13px/20px var(--font-sans); color: var(--pj-ink-500);
}

/* ─── Sticky desktop download chip ─── */
.pj-sticky {
  position: fixed; left: 24px; bottom: 24px; z-index: 1200;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .45s ease-out, transform .45s cubic-bezier(.16,.84,.44,1);
}
.pj-sticky[data-show="true"] { opacity: 1; transform: none; pointer-events: auto; }
.pj-sticky-pill {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--gradient-primary); color: #fff;
  padding: 13px 20px 13px 16px; border-radius: 999px; cursor: pointer;
  border: 0; box-shadow: var(--shadow-cta-lift);
  font: 700 12px/14px var(--font-sans); letter-spacing: 1.4px; text-transform: uppercase;
  transition: transform .2s ease-out;
}
.pj-sticky-pill svg { fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pj-sticky-pill:hover { transform: translateY(-2px); }
.pj-sticky-pop {
  background: #fff; border: 1px solid rgba(27,59,90,0.08);
  border-radius: 22px; padding: 18px; box-shadow: var(--soft-shadow-lift);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 196px;
  opacity: 0; transform: translateY(8px) scale(0.98); transform-origin: bottom left;
  pointer-events: none;
  transition: opacity .26s ease-out, transform .26s cubic-bezier(.16,.84,.44,1);
}
.pj-sticky[data-open="true"] .pj-sticky-pop { opacity: 1; transform: none; pointer-events: auto; }
.pj-sticky-pop img { width: 132px; height: 132px; }
.pj-sticky-pop-title { font: 700 12px/16px var(--font-sans); color: var(--pj-navy-800); }
.pj-sticky-pop-sub { font: 400 11px/16px var(--font-sans); color: var(--pj-ink-500); text-align: center; }
@media (max-width: 900px) { .pj-sticky { display: none; } }

/* ─── Mobile sticky CTA bar ─── */
.pj-msticky {
  /* --pj-vvgap: set by main.js from the visualViewport API. iPadOS Safari
     detaches the layout viewport from the visual one while its toolbars
     collapse/expand, leaving fixed bottom:0 elements floating mid-air. */
  position: fixed; left: 0; right: 0; bottom: var(--pj-vvgap, 0px); z-index: 1150;
  transform: translateY(125%);
  transition: transform .42s cubic-bezier(.16,.84,.44,1);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 30px rgba(27,59,90,0.13);
  padding: 11px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
}
.pj-msticky[data-show="true"] { transform: translateY(0); }
.pj-msticky-inner { display: flex; flex-direction: column; gap: 9px; max-width: 520px; margin: 0 auto; }
.pj-msticky-label {
  font: 600 11px/14px var(--font-sans); letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--pj-tan-700); text-align: center;
}
.pj-msticky-badges { width: 100%; gap: 10px; flex-wrap: nowrap; justify-content: center; }
.pj-msticky-badges a { flex: 0 0 auto; justify-content: center; }
.pj-msticky-badges .badge-apple img,
.pj-msticky-badges .badge-play img { height: 40px; }
@media (max-width: 900px) { .pj-msticky { display: block; } }

/* ─── Back-to-top chevron (mobile + tablet) ─── */
.pj-top {
  position: fixed; right: 16px; z-index: 1160;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px) + var(--pj-lift, 0px) + var(--pj-vvgap, 0px));
  width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--border-soft);
  cursor: pointer;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(27,59,90,0.18);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s ease-out, transform .3s cubic-bezier(.16,.84,.44,1), bottom .3s ease-out;
}
.pj-top[data-show="true"] { opacity: 1; transform: none; pointer-events: auto; }
.pj-top svg {
  width: 21px; height: 21px;
  fill: none; stroke: var(--pj-navy-800); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (hover: hover) { .pj-top[data-show="true"]:hover { transform: translateY(-2px); } }
@media (min-width: 1101px) { .pj-top { right: 24px; bottom: 24px; } }

/* ─── Heart divider ───
 * Artistic section break for cream-on-cream junctions: thin golden
 * lines, heart in the middle, curled ends (asset from the app's
 * Wedding-day-card set, native #C59C72 gold). Never full-width. */
.pj-divider { display: flex; justify-content: center; padding: 6px 32px; }
.pj-divider img { width: min(420px, 74%); height: auto; opacity: 0.9; }
@media (max-width: 560px) { .pj-divider img { width: min(300px, 80%); } }

/* ─── Ambient background decorations ───
 * The hero's motif language (hearts, sparkles, the app mark, rings)
 * extended down the page: large low-opacity watermarks, soft tinted
 * glows, small tan accents. All aria-hidden, pointer-events none;
 * main.js drifts anything with [data-drift] on scroll (motion-safe). */
.lp-video, .lp-valueprops, .lp-howitworks, .lp-pricing, .lp-faq, .lp-getapp { position: relative; }
/* content wrappers paint above the decorations (DOM order + positioning) */
.lp-video-center, .lp-valueprops .lp-section-center, .lp-howitworks .lp-section-center,
.lp-pricing-grid, .lp-faq-center { position: relative; }

.pj-deco { position: absolute; pointer-events: none; will-change: transform; }

/* soft radial glows, same family as the hero glow */
.pj-glow { border-radius: 50%; }
.pj-glow--peach { background: radial-gradient(closest-side, rgba(250,226,203,0.55) 0%, rgba(250,226,203,0) 72%); }
.pj-glow--blue  { background: radial-gradient(closest-side, rgba(214,228,248,0.55) 0%, rgba(214,228,248,0) 72%); }
.pj-glow--video  { left: -10%; top: -8%; width: 720px; height: 620px; }
.pj-glow--getapp { right: -14%; top: -30%; width: 760px; height: 700px; }
.pj-glow--faq    { left: -12%; bottom: -18%; width: 680px; height: 620px; }

/* small accents, same voice as the hero motifs */
.pj-motif { fill: var(--pj-tan-300); }
.pj-motif--video-sparkle   { width: 22px; height: 22px; left: 10%; top: 96px; }
.pj-motif--vp-heart        { width: 24px; height: 24px; right: 9%; top: 6px; opacity: 0.85; }
.pj-motif--pricing-sparkle { width: 20px; height: 20px; right: 8%; top: 88px; }
.pj-motif--faq-heart       { width: 22px; height: 22px; left: 8%; top: 120px; fill: var(--pj-navy-600); opacity: 0.4; }

/* feature-block accents live inside .lp-feature-phone (shares .motif base) */
.pj-motif--fb1-heart   { width: 24px; height: 24px; top: 12%; right: 12%; }
.pj-motif--fb1-sparkle { width: 18px; height: 18px; bottom: 14%; left: 10%; fill: var(--pj-navy-600); opacity: 0.45; }
.pj-motif--fb2-heart   { width: 20px; height: 20px; bottom: 16%; right: 10%; fill: var(--pj-navy-600); opacity: 0.45; }
.pj-motif--fb2-sparkle { width: 22px; height: 22px; top: 10%; left: 12%; }

@media (max-width: 860px) {
  /* keep the glows (cheap, still lovely); retire the rest on small screens */
  .pj-motif { display: none; }
}

/* ─── Scroll reveal (motion-safe only) ─── */
@media (prefers-reduced-motion: no-preference) {
  .pj-reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .72s cubic-bezier(.16,.84,.44,1), transform .72s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
  }
  .pj-reveal-in { opacity: 1; transform: none; }
}

/* ──────────────────────────────────────────────────────────────────
 * Responsive
 * ────────────────────────────────────────────────────────────────── */

/* Tablet: ≤1100px */
@media (max-width: 1100px) {
  .lp-nav { padding: 24px 32px 0; }
  .lp-nav-links { gap: 22px; }
  .lp-hero { padding: 40px 32px 56px; gap: 40px; }
  .lp-hero-h1 { font-size: 62px; line-height: 68px; letter-spacing: -1.6px; }
  .lp-hero-sub { font-size: 18px; line-height: 30px; }
  .lp-section-center { padding-left: 32px; padding-right: 32px; }
  .lp-feature-block { padding: 64px 32px; gap: 48px; }
  .lp-feature-title { font-size: 42px; line-height: 48px; letter-spacing: -1px; }
  .lp-section-title { font-size: 40px; line-height: 46px; letter-spacing: -0.9px; }
  .lp-final-headline { font-size: 56px; line-height: 62px; letter-spacing: -1.3px; }
  .lp-video, .lp-valueprops, .lp-howitworks, .lp-pricing, .lp-faq { padding-top: 72px; padding-bottom: 72px; }
  .lp-valueprops { padding-top: 40px; }
  .lp-final { padding: 88px 0; }
  .lp-hero-visual-box { width: 400px; height: 440px; }
  .lp-hero-video-card { width: 320px; height: 320px; top: 56px; }
  .lp-pricing-grid { padding: 0 32px; }
}

/* Large mobile / narrow tablet: ≤860px.
   The hero KEEPS two columns here (iPad portrait) so the mascot sits level
   with the headline instead of below the fold — it only stacks ≤560px. */
@media (max-width: 860px) {
  .lp-nav { padding: 20px 24px 0; }
  .lp-navlink { display: none; }
  .lp-hero { grid-template-columns: 1fr auto; padding: 28px 24px 48px; gap: 28px; }
  .lp-hero-h1 { font-size: 46px; line-height: 51px; letter-spacing: -1.2px; }
  .lp-hero-sub { font-size: 17px; line-height: 27px; }
  .lp-hero-visual-box { width: 264px; height: 288px; }
  .lp-hero-video-card { width: 224px; height: 224px; top: 36px; border-radius: 28px; }
  .motif-heart-1 { top: 10px; left: 26px; width: 22px; height: 22px; }
  .motif-sparkle-1 { top: 34px; right: 22px; }
  .motif-heart-2 { bottom: 30px; right: 14px; }
  .motif-sparkle-2 { bottom: 48px; left: 12px; }
  .lp-valueprops-grid { grid-template-columns: 1fr; }
  .lp-feature-block, .lp-feature-block.is-reverse { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .lp-feature-block.is-reverse .lp-feature-text { order: 1; }
  .lp-feature-block.is-reverse .lp-feature-phone { order: 2; }
  .lp-feature-phone { min-height: 0; }
  .lp-feature-title { font-size: 34px; line-height: 40px; }
  .lp-howitworks-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-howitworks-line { display: none; }
  .lp-pricing-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .lp-section-center { padding-left: 24px; padding-right: 24px; }
  .lp-section-title { font-size: 34px; line-height: 40px; }
  .lp-final-headline { font-size: 42px; line-height: 48px; letter-spacing: -1px; }
  .lp-final-sub { font-size: 17px; line-height: 26px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-getapp-card { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; text-align: center; }
  .lp-getapp-text { align-items: center; }
  .lp-getapp-qrwrap { justify-self: center; }
  .lp-getapp-card .store-badges { justify-content: center; }
}

/* Mobile: ≤560px — the hero stacks here (mascot below the text is fine on phones) */
@media (max-width: 560px) {
  .lp-nav { padding: 16px 20px 0; }
  .lp-nav-cta { padding: 8px 12px; font-size: 11px; }
  .lp-hero { grid-template-columns: 1fr; padding: 24px 20px 40px; gap: 36px; }
  .lp-hero-left { order: 1; }
  .lp-hero-visual { order: 2; }
  .lp-hero-visual-box { width: 400px; height: 440px; }
  .lp-hero-video-card { width: 320px; height: 320px; top: 56px; border-radius: 40px; }
  .motif-heart-1 { top: 24px; left: 60px; width: 26px; height: 26px; }
  .motif-sparkle-1 { top: 70px; right: 64px; }
  .motif-heart-2 { bottom: 60px; right: 40px; }
  .motif-sparkle-2 { bottom: 96px; left: 44px; }
  .lp-hero-h1 { font-size: 40px; line-height: 44px; letter-spacing: -1.1px; }
  .lp-hero-sub { font-size: 16px; line-height: 26px; }
  .lp-hero-stores { gap: 10px; }
  .lp-feature-block, .lp-feature-block.is-reverse { padding: 48px 20px; }
  .lp-feature-title { font-size: 30px; line-height: 36px; letter-spacing: -0.6px; }
  .lp-feature-body { font-size: 16px; line-height: 26px; }
  .lp-section-title { font-size: 29px; line-height: 35px; }
  .lp-section-center { padding-left: 20px; padding-right: 20px; }
  .lp-video, .lp-valueprops, .lp-howitworks, .lp-pricing { padding-top: 60px; padding-bottom: 60px; }
  .lp-faq { padding: 56px 0; }
  .lp-faq-center { padding: 0 20px; }
  .faq-q { font-size: 17px; line-height: 24px; }
  .lp-final { padding: 72px 0; }
  .lp-final-headline { font-size: 34px; line-height: 40px; letter-spacing: -0.8px; }
  .lp-final-sub { font-size: 15px; line-height: 24px; }
  .lp-final-stores { flex-direction: column; width: 100%; max-width: 320px; }
  .lp-footer { padding: 48px 0 32px; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 24px; }
  .lp-video-frame { border-radius: 18px; }
  .lp-video-play { width: 64px; height: 64px; }
  .lp-getapp { padding: 32px 0 64px; }
  .lp-getapp-card { padding: 32px 20px; }
  .lp-getapp-text h2 { font-size: 32px; line-height: 38px; }
  .lp-pricing-card { padding: 28px; }
}

/* Small phones: ≤420px */
@media (max-width: 420px) {
  .lp-hero { padding: 16px 20px 24px; gap: 22px; }
  .lp-hero-visual-box { width: 100%; height: auto; aspect-ratio: 460 / 500; margin: 0 auto; }
  .lp-hero-video-card { width: min(320px, 82vw); height: min(320px, 82vw); top: 10%; }
  .lp-video, .lp-valueprops, .lp-howitworks, .lp-pricing { padding-top: 40px; padding-bottom: 40px; }
  .lp-faq { padding: 38px 0; }
  .lp-getapp { padding: 22px 0 44px; }
  .lp-final { padding: 52px 0; }
  .lp-feature-block, .lp-feature-block.is-reverse { padding: 34px 20px; }
  .lp-footer { padding: 40px 0 28px; }
  .phone { width: 260px; height: 528px; }
}

/* ── Pre-launch mode ─────────────────────────────────────────────────────
   Active while <body data-prelaunch> is set (index.html + app.html).
   Store badges dim and stop being links; a "join the early-access list"
   CTA appears beside them (injected by main.js); the sticky download chip
   hides. LAUNCH DAY: delete the data-prelaunch attribute from both pages
   and all of this becomes inert. */
body[data-prelaunch] .store-badges a { pointer-events: none; cursor: default; }
body[data-prelaunch] .store-badges img { opacity: .38; filter: grayscale(1); }
/* the desktop QR chip stays visible pre-launch: its QR lands on /app, which
   funnels to the early-access list; main.js swaps its labels to match */
.prelaunch-cta, .prelaunch-note { display: none; }
body[data-prelaunch] .prelaunch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;   /* centred label when a flex parent stretches it */
  text-align: center;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b3b5a, #3c5a7b);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26, 28, 28, .12);
}
/* Desktop: hug the label instead of stretching to the column width. */
@media (min-width: 861px) {
  body[data-prelaunch] .prelaunch-cta { align-self: flex-start; width: auto; }
  /* the closing CTA section is centre-aligned — don't hang the button left */
  body[data-prelaunch] .lp-final-center .prelaunch-cta { align-self: center; }
}
body[data-prelaunch] .prelaunch-note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #363838;
}
/* inside the mobile sticky CTA drawer everything sits centred */
body[data-prelaunch] .pj-msticky .prelaunch-note { text-align: center; margin-top: 2px; }
body[data-prelaunch] .pj-msticky .prelaunch-cta { align-self: center; width: auto; margin-top: 4px; }
/* on the navy closing section the ink-grey note is invisible */
body[data-prelaunch] .lp-final-center .prelaunch-note { color: rgba(255,255,255,0.78); }

/* ── Pricing card: the two real plans ────────────────────────────────────
   Prices mirror App Store Connect (pj_yearly £69.99 / pj_monthly £9.99).
   If store pricing ever changes, update here AND the README sync note. */
.lp-pricing-plans { display: flex; flex-direction: column; gap: 14px; }
.lp-plan { display: flex; flex-direction: column; gap: 2px; }
.lp-plan-price { font: 700 26px/32px var(--font-serif); color: #fff; letter-spacing: -0.4px; }
.lp-plan-per { font: 500 15px/22px var(--font-sans); color: rgba(255,255,255,0.75); letter-spacing: 0; }
.lp-plan-meta { font: 500 13px/18px var(--font-sans); color: rgba(255,255,255,0.65); }
