/* frenby marketing landing page.
   Built from design_handoff_frenby_landing/ (section 4a): desktop artboard at 1440px,
   mobile artboard at 390px. One responsive page, mobile layout below 768px. */

/* ---------------------------------------------------------------- tokens */
:root {
  --bg: #fdfbf8;
  --bg2: #f4eee9;
  --surface: #ffffff;
  --ink: #3b2430;
  --ink2: #6b5560;
  --muted: #a08a94;
  --line: rgba(59, 36, 48, .1);
  --pinkText: #c23a6f;
  --pinkSoft: #fdeef4;
  --blueSoft: #eaf3fd;
  --goldSoft: #fdf3dd;
  --badge: #1b1218;
  --badgeInk: #ffffff;

  --grad: linear-gradient(120deg, #f08cb2, #8fbfee);
  --gradText: linear-gradient(120deg, #f8a8c5, #9cc8f2);
  --pad: clamp(20px, 4vw, 56px);
}

/* Default follows the system; a stored override on <html> wins in both directions. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #161218;
    --bg2: #1f1a21;
    --surface: #262028;
    --ink: #f7edf2;
    --ink2: #c5b6be;
    --muted: #9c8b95;
    --line: rgba(255, 255, 255, .1);
    --pinkText: #f8a8c5;
    --pinkSoft: #3a2430;
    --blueSoft: #1e2a38;
    --goldSoft: #3a3020;
    --badge: #ffffff;
    --badgeInk: #1b1218;
  }
}

:root[data-theme="dark"] {
  --bg: #161218;
  --bg2: #1f1a21;
  --surface: #262028;
  --ink: #f7edf2;
  --ink2: #c5b6be;
  --muted: #9c8b95;
  --line: rgba(255, 255, 255, .1);
  --pinkText: #f8a8c5;
  --pinkSoft: #3a2430;
  --blueSoft: #1e2a38;
  --goldSoft: #3a3020;
  --badge: #ffffff;
  --badgeInk: #1b1218;
}

/* ---------------------------------------------------------------- base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

.lp-wrap { max-width: 1200px; margin: 0 auto; }

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

.lp-only-mobile { display: none !important; }

/* ------------------------------------------------------------ keyframes */
@keyframes lpTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes lpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes lpDrift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(14px, -18px); } }
@keyframes chipIn {
  0%   { opacity: 0; transform: translateY(14px) rotate(-4deg) scale(.94); }
  60%  { transform: translateY(-2px) rotate(-1.6deg) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) rotate(-1.6deg) scale(1); }
}
@keyframes sheetUp { from { transform: translateY(102%); } to { transform: translateY(0); } }
@keyframes peekOut {
  from { transform: translateX(96px) rotate(0deg) scale(.96); }
  to   { transform: translateX(0) rotate(-8deg) scale(1); }
}

/* --------------------------------------------------------- scroll reveal */
[data-rv] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2, .7, .3, 1), transform .8s cubic-bezier(.2, .7, .3, 1);
}
[data-rv].rv-in { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- header */
.lp-hdr {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 16px var(--pad);
}

.lp-brand { display: flex; align-items: center; gap: 10px; }
.lp-wordmark { font: 900 25px 'Nunito', sans-serif; letter-spacing: -.03em; color: var(--ink); }

.lp-nav { display: flex; gap: 26px; font: 800 14px 'Nunito', sans-serif; }
.lp-nav a { color: var(--ink2); text-decoration: none; }

.lp-theme-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px;
  position: relative;
}
.lp-theme-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 26px;
  border-radius: 99px;
  background: var(--surface);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  transition: left .22s ease;
}
:root[data-theme="dark"] .lp-theme-knob { left: 32px; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lp-theme-knob { left: 32px; }
}
.lp-theme-slot {
  position: relative;
  width: 28px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.lp-get-app {
  font: 900 14px 'Nunito', sans-serif;
  color: var(--badgeInk);
  background: var(--badge);
  padding: 11px 22px;
  border-radius: 99px;
}

.lp-icon-btn {
  width: 44px;
  height: 44px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 99px;
  background: var(--bg2);
  border: 1px solid var(--line);
  font-size: 15px;
}
.lp-burger span { width: 17px; height: 2px; border-radius: 2px; background: var(--ink); }

/* mobile nav panel */
.lp-mnav-wrap { padding: 0 16px 12px; animation: chipIn .26s cubic-bezier(.2, .8, .3, 1) both; }
.lp-mnav {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-mnav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  font: 800 16px 'Nunito', sans-serif;
  color: var(--ink);
  text-decoration: none;
}
.lp-mnav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 14px;
  background: var(--badge);
  color: var(--badgeInk);
  font: 900 16px 'Nunito', sans-serif;
}

/* ---------------------------------------------------------------- hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px) var(--pad) clamp(52px, 6vw, 84px);
}

.lp-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.lp-blob-pink {
  left: -6%;
  top: -140px;
  width: 760px;
  height: 760px;
  background: radial-gradient(closest-side, rgba(240, 140, 178, .34), transparent 70%);
}
.lp-blob-blue {
  right: 2%;
  bottom: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(143, 191, 238, .26), transparent 70%);
  animation: lpDrift 13s ease-in-out infinite;
}

.lp-hero-inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
}

.lp-hero-left { flex: 1 1 440px; min-width: 340px; }

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 9px 17px;
  border-radius: 99px;
  font: 800 12.5px 'Nunito', sans-serif;
  color: var(--ink2);
}

.lp-h1 {
  font: 900 clamp(44px, 5.4vw, 84px)/1 'Nunito', sans-serif;
  letter-spacing: -.045em;
  margin: 20px 0 0;
  color: var(--ink);
}
.lp-rotor { display: inline-block; animation: chipIn .5s cubic-bezier(.2, .8, .3, 1.2) both; }

/* Above the mobile breakpoint the hero's left column is capped at 524px while the
   headline keeps scaling, so the longest activity ("board games", 528px at 1440)
   would break onto a third line and change the hero's height every rotation.
   Holding it on one line lets it overflow a few px into the empty column gap. */
@media (min-width: 769px) {
  .lp-rotor { white-space: nowrap; }
}
.lp-rotor-emoji { margin-right: .2em; }
.lp-rotor-word {
  background: var(--gradText);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lede {
  font: 600 clamp(16px, 1.4vw, 20px)/1.5 'Nunito', sans-serif;
  color: var(--ink2);
  margin: 20px 0 0;
  max-width: 470px;
}

.lp-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 26px;
}
.lp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--badge);
  color: var(--badgeInk);
  border-radius: 13px;
  padding: 10px 19px 10px 16px;
}
.lp-badge-top { display: block; font: 600 10px 'Nunito', sans-serif; opacity: .75; }
.lp-badge-main { display: block; font: 800 17px 'Nunito', sans-serif; }

.lp-qr-wrap { position: relative; }
.lp-qr-btn {
  width: 64px;
  height: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.lp-qr-btn:hover { border-color: #f08cb2; }

.lp-qr-pop {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  width: 266px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .34);
  animation: chipIn .28s cubic-bezier(.2, .8, .3, 1) both;
  text-align: center;
}
.lp-qr-pop[hidden] { display: none; }
.lp-qr-head { display: flex; align-items: flex-start; gap: 8px; text-align: left; }
.lp-qr-head > div { flex: 1; }
.lp-qr-title { font: 900 15px 'Nunito', sans-serif; color: var(--ink); }
.lp-qr-sub { font: 600 11.5px 'Nunito', sans-serif; color: var(--muted); margin-top: 2px; }
.lp-qr-close {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 99px;
  background: var(--bg2);
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 13px 'Nunito', sans-serif;
}
.lp-qr-plate {
  margin-top: 13px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  justify-content: center;
}
.lp-qr-plate img { width: 190px; height: 190px; display: block; }
.lp-qr-cap { font: 700 11.5px 'Nunito', sans-serif; color: var(--muted); margin-top: 11px; }

.lp-fineprint { font: 700 12.5px 'Nunito', sans-serif; color: var(--muted); margin-top: 13px; }

/* hero right: layered stack */
.lp-hero-right {
  flex: 0 1 640px;
  min-width: 600px;
  display: flex;
  justify-content: flex-start;
  padding-left: 100px;
}
.lp-stack { position: relative; width: 300px; }

.lp-pulse {
  position: absolute;
  left: -96px;
  top: 44px;
  width: 214px;
  transform: rotate(-8deg);
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 16px 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
  animation: peekOut .9s cubic-bezier(.2, .8, .3, 1) 3.2s both;
}
.lp-pulse-title { font: 900 15px 'Nunito', sans-serif; color: var(--ink); }
.lp-pulse-sub { font: 600 10.5px 'Nunito', sans-serif; color: var(--muted); }
.lp-pulse-rows { margin-top: 11px; display: flex; flex-direction: column; gap: 8px; }
.lp-pulse-row {
  border-radius: 14px;
  padding: 10px 12px;
  font: 800 11.5px 'Nunito', sans-serif;
  color: var(--ink);
}
.lp-tone-pink { background: var(--pinkSoft); }
.lp-tone-blue { background: var(--blueSoft); }
.lp-tone-gold { background: var(--goldSoft); }

.lp-phone {
  position: relative;
  z-index: 3;
  width: 300px;
  border-radius: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(240, 140, 178, .3);
}
.lp-phone-title { font: 900 21px 'Nunito', sans-serif; color: var(--ink); }
.lp-phone-sub { font: 600 11.5px 'Nunito', sans-serif; color: var(--muted); }

.lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.lp-tile { position: relative; border-radius: 17px; overflow: hidden; aspect-ratio: 3 / 3.9; }
.lp-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-dist {
  position: absolute;
  left: 7px;
  top: 7px;
  background: rgba(255, 255, 255, .94);
  border-radius: 99px;
  padding: 2px 8px;
  font: 800 9px 'Nunito', sans-serif;
  color: #3b2430;
}
.lp-tile-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 9px 8px;
  background: linear-gradient(180deg, transparent, rgba(18, 10, 16, .85));
}
.lp-tile-name { display: block; font: 800 13px 'Nunito', sans-serif; color: #fff; }
.lp-tile-act { display: block; font: 700 10px 'Nunito', sans-serif; color: #ffd9e7; }

.lp-cta-grad {
  display: block;
  width: 100%;
  background: var(--grad);
  border-radius: 15px;
  text-align: center;
  color: #fff;
}
.lp-upfor-open { margin-top: 14px; padding: 12px 0; font: 900 13px 'Nunito', sans-serif; }
.lp-sheet-share { margin-top: 14px; padding: 12px 0; font: 900 13px 'Nunito', sans-serif; }

.lp-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-radius: 26px 26px 36px 36px;
  padding: 16px 18px 20px;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .28);
  animation: sheetUp .38s cubic-bezier(.2, .8, .3, 1) both;
}
.lp-sheet[hidden] { display: none; }
.lp-sheet-handle { width: 42px; height: 4px; border-radius: 99px; background: var(--line); margin: 0 auto 12px; }
.lp-sheet-head { display: flex; align-items: baseline; gap: 8px; }
.lp-sheet-title { font: 900 17px 'Nunito', sans-serif; color: var(--ink); }
.lp-sheet-close { font: 800 11.5px 'Nunito', sans-serif; color: var(--muted); }
.lp-sheet-sub { font: 600 10.5px 'Nunito', sans-serif; color: var(--muted); margin-top: 2px; }
.lp-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.lp-chip {
  background: var(--bg2);
  border-radius: 99px;
  padding: 7px 11px;
  font: 800 11px 'Nunito', sans-serif;
  color: var(--ink2);
}
.lp-chip-on { background: var(--pinkSoft); color: var(--ink); }

.lp-coffee {
  position: absolute;
  z-index: 5;
  left: 312px;
  top: 104px;
  width: 216px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
  /* Reveal is handled by the parent stack on desktop; this card floats instead. */
  opacity: 1;
  transform: none;
  animation: lpFloat 6s ease-in-out infinite;
}
.lp-coffee img { width: 100%; height: 132px; object-fit: cover; display: block; }
.lp-coffee-body { padding: 10px 13px; }
.lp-coffee-title { font: 900 13px 'Nunito', sans-serif; color: var(--ink); }
.lp-coffee-sub { font: 700 10.5px 'Nunito', sans-serif; color: var(--muted); }

/* ---------------------------------------------------------------- ticker */
.lp-ticker {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
}
.lp-ticker-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lpTicker 26s linear infinite;
  font: 900 16px 'Nunito', sans-serif;
  color: var(--ink2);
}

/* ---------------------------------------------------------- how it works */
.lp-how { padding: clamp(53px, 6.3vw, 90px) var(--pad); scroll-margin-top: 24px; }
.lp-eyebrow { font: 900 11px 'Nunito', sans-serif; color: var(--pinkText); letter-spacing: .12em; }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 44px);
  margin-top: 22px;
}
.lp-step { display: flex; flex-direction: column; gap: 10px; }
.lp-step-head { display: flex; align-items: center; gap: 11px; }
.lp-num {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 15px 'Nunito', sans-serif;
}
.lp-num-1 { background: var(--pinkSoft); color: var(--pinkText); }
.lp-num-2 { background: var(--blueSoft); color: var(--ink); }
.lp-num-3 { background: var(--goldSoft); color: var(--ink); }
.lp-step-title {
  font: 900 clamp(21px, 2vw, 26px) 'Nunito', sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
}
.lp-step-body { font: 600 14.5px/1.6 'Nunito', sans-serif; color: var(--ink2); max-width: 340px; }

/* --------------------------------------------------------- running story */
.lp-band { position: relative; height: 560px; }
.lp-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.lp-band-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 10, 16, .5) 0%, rgba(18, 10, 16, .15) 45%, rgba(18, 10, 16, .85) 100%);
}
.lp-band-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 clamp(20px, 4vw, 64px) clamp(34px, 4vw, 56px);
  text-align: center;
}
.lp-band-eyebrow { font: 900 11px 'Nunito', sans-serif; color: #f8a8c5; letter-spacing: .12em; }
.lp-band-head {
  font: 900 clamp(30px, 3.6vw, 52px)/1.08 'Nunito', sans-serif;
  letter-spacing: -.03em;
  color: #fff;
  margin: 10px auto 0;
  max-width: 780px;
}
.lp-band-sub {
  font: 600 15px 'Nunito', sans-serif;
  color: rgba(255, 255, 255, .82);
  margin: 10px auto 0;
  max-width: 520px;
}

/* ----------------------------------------------------------- catan story */
.lp-split { padding: clamp(46px, 5.5vw, 80px) var(--pad); }
.lp-split-inner { display: flex; gap: clamp(24px, 3.5vw, 52px); align-items: center; flex-wrap: wrap; }
.lp-split-img {
  flex: 1 1 420px;
  min-width: 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(59, 36, 48, .18);
}
.lp-split-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}
.lp-split-text { flex: 1 1 380px; min-width: 300px; }
.lp-split-head {
  font: 900 clamp(28px, 3.2vw, 44px)/1.1 'Nunito', sans-serif;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-top: 10px;
}
.lp-split-body {
  font: 600 15px/1.6 'Nunito', sans-serif;
  color: var(--ink2);
  margin-top: 12px;
  max-width: 420px;
}

/* ---------------------------------------------------------------- safety */
.lp-safe { padding: 0 var(--pad) clamp(46px, 5.5vw, 78px); scroll-margin-top: 24px; }
.lp-safe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.lp-card { border-radius: 26px; padding: 30px; }
.lp-card-emoji { font-size: 26px; }
.lp-card-title { font: 900 23px 'Nunito', sans-serif; color: var(--ink); margin-top: 10px; }
.lp-card-body { font: 600 13.5px/1.55 'Nunito', sans-serif; color: var(--ink2); margin-top: 6px; }
.lp-card-plum { background: linear-gradient(130deg, #3b2430, #6b3550); color: #fff; }
.lp-card-plum .lp-card-title { color: #ffd9e7; }
.lp-card-plum .lp-card-body { color: rgba(255, 255, 255, .82); }
.lp-card-gold { background: var(--goldSoft); border: 1px solid var(--line); }
.lp-card-surface { background: var(--surface); border: 1px solid var(--line); }

/* ------------------------------------------------------------ closing CTA */
.lp-close { padding: 0 var(--pad) clamp(46px, 5.5vw, 72px); }
.lp-close-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  background: var(--grad);
  padding: clamp(36px, 4.5vw, 62px);
  text-align: center;
}
.lp-close-mark { animation: lpFloat 4s ease-in-out infinite; }
.lp-close-head {
  font: 900 clamp(30px, 3.8vw, 50px)/1.1 'Nunito', sans-serif;
  letter-spacing: -.035em;
  color: #fff;
  margin-top: 6px;
}
.lp-close-sub {
  font: 600 16px 'Nunito', sans-serif;
  color: rgba(255, 255, 255, .92);
  margin: 10px auto 0;
  max-width: 520px;
}

.lp-wl-idle { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.lp-wl-idle[hidden] { display: none; }
.lp-wl-join {
  background: #fff;
  color: #3b2430;
  border-radius: 14px;
  padding: 14px 26px;
  font: 900 15px 'Nunito', sans-serif;
}
.lp-wl-how {
  border: 1.5px solid rgba(255, 255, 255, .65);
  color: #fff;
  border-radius: 14px;
  padding: 14px 26px;
  font: 900 15px 'Nunito', sans-serif;
  text-decoration: none;
}

.lp-wl-form {
  max-width: 660px;
  margin: 24px auto 0;
  animation: chipIn .34s cubic-bezier(.2, .8, .3, 1) both;
}
.lp-wl-form[hidden] { display: none; }
.lp-wl-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  padding: 10px;
}
.lp-wl-box input {
  min-width: 0;
  border: none;
  outline: none;
  border-radius: 11px;
  background: #fff;
  color: #3b2430;
  padding: 13px 16px;
  font: 700 15px 'Nunito', sans-serif;
}
.lp-wl-box input[data-wl-email] { flex: 2 1 240px; }
.lp-wl-box input[data-wl-postcode] { flex: 1 1 120px; }
.lp-wl-submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b2430;
  color: #fff;
  border-radius: 11px;
  padding: 13px 24px;
  font: 900 15px 'Nunito', sans-serif;
  opacity: .45;
  transition: opacity .2s ease;
}
.lp-wl-form.is-valid .lp-wl-submit { opacity: 1; }
.lp-wl-help {
  font: 700 12.5px 'Nunito', sans-serif;
  color: rgba(255, 255, 255, .9);
  margin-top: 11px;
}
.lp-wl-error {
  font: 800 12.5px 'Nunito', sans-serif;
  color: #fff;
  background: rgba(59, 36, 48, .55);
  border-radius: 11px;
  padding: 8px 12px;
  margin-top: 10px;
  display: inline-block;
}
.lp-wl-error[hidden] { display: none; }

.lp-wl-done {
  max-width: 560px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, .94);
  border-radius: 20px;
  padding: 24px 28px;
  animation: chipIn .38s cubic-bezier(.2, .8, .3, 1.2) both;
}
.lp-wl-done[hidden] { display: none; }
.lp-wl-done-title { font: 900 22px 'Nunito', sans-serif; color: #3b2430; letter-spacing: -.02em; }
.lp-wl-done-rank { font: 800 15px 'Nunito', sans-serif; color: #c23a6f; margin-top: 6px; }
.lp-wl-done-body { font: 600 13.5px/1.55 'Nunito', sans-serif; color: #6b5560; margin-top: 8px; }

/* ---------------------------------------------------------------- footer */
.lp-foot { background: var(--bg2); border-top: 1px solid var(--line); padding: 36px var(--pad) 28px; }
.lp-foot-inner { display: flex; gap: 50px; flex-wrap: wrap; align-items: flex-start; }
.lp-foot-brand { flex: 1; min-width: 240px; }
.lp-foot-brand .lp-brand { gap: 8px; }
.lp-foot-wordmark { font: 900 19px 'Nunito', sans-serif; color: var(--ink); }
.lp-foot-made { font: 600 12.5px 'Nunito', sans-serif; color: var(--muted); margin-top: 8px; }
.lp-socials { display: flex; gap: 10px; margin-top: 14px; }
.lp-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.lp-foot-cols { display: contents; }
.lp-foot-head { font: 900 11px 'Nunito', sans-serif; color: var(--ink); letter-spacing: .08em; }
.lp-foot-links { display: flex; flex-direction: column; gap: 6px; margin-top: 9px; font: 700 12.5px 'Nunito', sans-serif; }
.lp-foot-links a { color: var(--pinkText); text-decoration: none; }
.lp-foot-links a:hover { text-decoration: underline; }
.lp-foot-rule {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font: 700 11.5px 'Nunito', sans-serif;
  color: var(--muted);
}

/* ============================================================== mobile
   The 390px artboard. Everything below 768px switches to it. */
@media (max-width: 768px) {
  :root { --pad: 18px; }

  .lp-only-desktop { display: none !important; }
  .lp-only-mobile { display: flex !important; }
  .lp-mnav-wrap.lp-only-mobile { display: block !important; }
  .lp-mnav-wrap[hidden] { display: none !important; }

  /* header */
  .lp-hdr { gap: 10px; padding: 12px 16px; }
  .lp-brand { gap: 8px; }
  .lp-wordmark { font-size: 21px; }

  /* hero */
  .lp-hero { padding: 20px 18px 40px; }
  .lp-blob-pink { left: -30%; top: -120px; width: 520px; height: 520px; }
  .lp-blob-blue { display: none; }
  .lp-hero-inner { display: block; max-width: none; }
  .lp-hero-left { min-width: 0; }
  .lp-pill { gap: 8px; padding: 8px 14px; font-size: 11.5px; }
  .lp-h1 { font-size: 44px; margin-top: 16px; }
  .lp-lede { font-size: 16px; margin-top: 16px; max-width: none; }

  .lp-store-row { flex-direction: column; gap: 10px; margin-top: 22px; }
  .lp-badge { justify-content: center; min-height: 54px; border-radius: 14px; padding: 0 16px; }
  .lp-fineprint { margin-top: 12px; text-align: center; }

  .lp-hero-right {
    display: block;
    flex: none;
    min-width: 0;
    padding-left: 0;
  }
  .lp-stack { width: auto; position: static; }
  .lp-pulse { display: none; }

  .lp-phone {
    position: relative;
    margin: 26px auto 0;
    width: 100%;
    max-width: 330px;
    border-radius: 32px;
    padding: 20px 16px;
    box-shadow: 0 24px 60px rgba(240, 140, 178, .3);
  }
  .lp-upfor-open { min-height: 48px; padding: 0; font-size: 14px; }
  .lp-sheet { border-radius: 26px 26px 32px 32px; padding: 16px 16px 20px; }
  .lp-sheet-title { font-size: 18px; }
  .lp-sheet-close { font-size: 12.5px; }
  .lp-sheet-sub { font-size: 11px; }
  .lp-chips { gap: 8px; }
  .lp-chip { padding: 9px 14px; font-size: 12.5px; }
  .lp-sheet-share { min-height: 48px; padding: 0; font-size: 14px; display: flex; align-items: center; justify-content: center; }

  .lp-coffee {
    position: static;
    width: 100%;
    max-width: 330px;
    margin: 16px auto 0;
    animation: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
    /* On mobile this is a normal card in flow, so it reveals on its own. */
    opacity: 0;
    transform: translateY(30px);
  }
  .lp-coffee.rv-in { opacity: 1; transform: none; }
  .lp-coffee img { height: 150px; }
  .lp-coffee-body { padding: 12px 15px; }
  .lp-coffee-title { font-size: 14px; }
  .lp-coffee-sub { font-size: 11.5px; }

  /* ticker */
  .lp-ticker { padding: 13px 0; }
  .lp-ticker-row { gap: 12px; font-size: 14px; }

  /* how it works */
  .lp-how { padding: 38px 18px; }
  .lp-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 18px; }
  .lp-step { gap: 0; }
  .lp-step-title { font-size: 21px; }
  .lp-step-body { max-width: none; margin-top: 8px; }

  /* running story */
  .lp-band { height: 460px; }
  .lp-band-img { object-position: 56% 20%; }
  .lp-band-veil {
    background: linear-gradient(180deg, rgba(18, 10, 16, .45) 0%, rgba(18, 10, 16, .15) 38%, rgba(18, 10, 16, .9) 100%);
  }
  .lp-band-text { padding: 0 18px 28px; text-align: left; }
  .lp-band-eyebrow { font-size: 10.5px; }
  .lp-band-head { font-size: 30px; line-height: 1.1; margin: 9px 0 0; max-width: none; }
  .lp-band-sub { font-size: 14px; line-height: 1.5; margin: 9px 0 0; max-width: none; }

  /* catan story */
  .lp-split { padding: 36px 18px; }
  .lp-split-inner { display: block; }
  .lp-split-img { border-radius: 24px; min-width: 0; box-shadow: 0 20px 50px rgba(59, 36, 48, .18); }
  .lp-split-img img { height: 230px; }
  .lp-split-text { min-width: 0; margin-top: 18px; }
  .lp-eyebrow { font-size: 10.5px; }
  .lp-split-head { font-size: 28px; margin-top: 9px; }
  .lp-split-body { font-size: 14.5px; margin-top: 10px; max-width: none; }

  /* safety */
  .lp-safe { padding: 0 18px 36px; }
  .lp-safe-grid { display: flex; flex-direction: column; gap: 12px; }
  .lp-card { border-radius: 24px; padding: 24px; }
  .lp-card-emoji { font-size: 24px; }
  .lp-card-title { font-size: 21px; margin-top: 8px; }

  /* closing CTA */
  .lp-close { padding: 0 18px 36px; }
  .lp-close-card { border-radius: 28px; padding: 30px 22px; }
  .lp-close-mark { width: 76px; height: 56px; }
  .lp-close-head { font-size: 32px; margin-top: 4px; }
  .lp-close-sub { font-size: 15px; line-height: 1.5; max-width: none; }

  .lp-wl-idle { flex-direction: column; gap: 10px; margin-top: 22px; }
  .lp-wl-join,
  .lp-wl-how {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
  }
  .lp-wl-form { margin-top: 22px; }
  .lp-wl-box { flex-direction: column; gap: 10px; }
  /* 16px minimum: anything smaller makes iOS zoom the page on focus. */
  .lp-wl-box input { width: 100%; border-radius: 12px; padding: 15px 16px; font-size: 16px; }
  .lp-wl-submit { min-height: 52px; padding: 0; border-radius: 12px; font-size: 16px; width: 100%; }
  .lp-wl-help { line-height: 1.5; margin-top: 10px; }
  .lp-wl-done { margin-top: 22px; padding: 22px; text-align: left; }
  .lp-wl-done-title { font-size: 21px; }

  /* footer */
  .lp-foot { padding: 28px 18px 24px; }
  .lp-foot-inner { display: block; }
  .lp-foot-brand { min-width: 0; }
  .lp-socials a { width: 44px; height: 44px; border-radius: 13px; }
  .lp-foot-cols { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 24px; }
  .lp-foot-links { gap: 8px; margin-top: 10px; font-size: 13px; }
  .lp-foot-rule { margin-top: 22px; }
}

/* ================================================== reduced motion
   Nothing animates, moves, auto-advances or auto-plays: every element is
   rendered directly in its end state. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }

  [data-rv],
  .lp-coffee {
    opacity: 1 !important;
    transform: none !important;
  }

  .lp-ticker-row { animation: none; }
  .lp-pulse { animation: none; transform: rotate(-8deg); }
  .lp-coffee { animation: none; }
  .lp-close-mark { animation: none; }
  .lp-blob-blue { animation: none; }
}
