/* ── Intime — the landing site ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/*
 * Intime's palette, from the app's constants/colors.ts.
 *
 * Flare's accent was #ff4500, a flame's orange, and the name it belonged to is
 * gone. Intime has no accent colour at all: the brand is black and white, and
 * the accent is whichever of the two the background is not. This site is dark,
 * so --accent is white and --on-accent is the ground it sits on — a white pill
 * with black text, the same button the app draws.
 *
 * The five tones are not decoration and are not rotated for variety. Each has
 * one job, and appears here only where that job appears: moon for warmth (a
 * like), dusk for Intime+ and Moments, sky for the Verified badge and nothing
 * else, green for presence, clay for caution. If a colour is not doing its
 * job it is not on the page.
 */
:root {
  --accent:    #ffffff;
  --on-accent: #0a0a0a;
  --accent-2:  #ffffff;   /* kept so old gradient rules resolve; no second hue */
  --bg:        #0a0a0a;
  --bg-2:      #101010;
  --bg-3:      #161616;
  --card:      #161616;
  --border:    #272727;
  --border-2:  #323232;
  --white:     #ffffff;
  --text:      #ffffff;
  --muted:     #8a8a8a;
  --dim:       #565656;

  /* Meaning, not brand. */
  --moon:  #E4D9C6;   /* warmth: a like */
  --dusk:  #A596C4;   /* Intime+ and Moments */
  --sky:   #8CAED2;   /* the Verified badge, and nothing else */
  --green: #86B79B;   /* presence */
  --clay:  #D09A74;   /* caution */

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  /* Sacramento is the wordmark and nothing else. It is a signature, not a
     typeface for copy. */
  --script: 'Sacramento', 'Brush Script MT', cursive;
}

.lp-body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Nav ── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s;
}
.lp-nav.scrolled,
.lp-nav.lp-nav-dark {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.lp-nav-left  { display: flex; align-items: center; gap: 32px; }
.lp-nav-right { display: flex; align-items: center; gap: 28px; justify-content: flex-end; }

.lp-nav-left a,
.lp-nav-right a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.lp-nav-left a:hover,
.lp-nav-right a:hover,
.lp-nav-left a.active,
.lp-nav-right a.active { color: var(--white); }

.lp-logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  justify-content: center;
}
/*
 * The mark and the wordmark.
 *
 * Sacramento is a monoline signature script whose letters join, which is the
 * whole point of it: "in" is written, then "time" runs out of the tail of the
 * n, and the two words end as one word. It has one weight, no bold, and it is
 * the wordmark and nothing else — never used for anything anyone has to read
 * quickly.
 *
 * --lp-mark-gap is the colour painted into the cut where the two strokes
 * cross, so it has to match whatever sits behind the mark. The nav is
 * transparent over the hero photo until it scrolls, so the gap is left
 * transparent there and set to the ground everywhere else.
 */
.lp-logo-mark {
  width: 24px; height: 24px;
  color: var(--white);
  --lp-mark-gap: transparent;
  flex-shrink: 0;
}
.lp-nav.scrolled .lp-logo-mark,
.lp-nav.lp-nav-dark .lp-logo-mark { --lp-mark-gap: #0a0a0a; }

.lp-logo-word {
  font-family: var(--script);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1;
  /* The script sits high in its box; this drops it onto the mark's centre. */
  transform: translateY(2px);
}

/* Download dropdown */
.lp-download-wrap { position: relative; }
.lp-download-btn {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  font-family: var(--sans);
}
.lp-download-btn:hover { background: #d8d8d8; }

.lp-download-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1e1e1e;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 170px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 200;
}
.lp-download-dropdown.open { display: flex; }

.lp-store-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  text-decoration: none;
  transition: background .12s !important;
}
.lp-store-link:hover { background: var(--card) !important; }
.lp-store-link svg { flex-shrink: 0; color: var(--text); }

/* ── Section Labels ── */
.lp-section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.lp-label-muted { color: var(--muted); }

/* ── Pills / Buttons ── */
.lp-pill-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, background .15s, color .15s;
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  width: fit-content;
}
.lp-pill-btn:hover { transform: translateY(-1px); }

.lp-pill-dark  { background: var(--white); color: var(--bg); }
.lp-pill-dark:hover { background: #e8e8e8; }

.lp-pill-light { background: var(--card); color: var(--white); border: 1px solid var(--border-2); }
.lp-pill-light:hover { background: #222; }

.lp-pill-orange { background: var(--accent); color: var(--on-accent); }
.lp-pill-orange:hover { background: #d8d8d8; }

.lp-pill-outline { border: 1.5px solid rgba(255,255,255,.3); color: var(--white); background: transparent; }
.lp-pill-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }

/* ── Hero ── */
.lp-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.lp-hero-img { position: absolute; inset: 0; }
.lp-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (max-width: 600px) {
  .lp-hero-img img { object-position: center 20%; }
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 50%, rgba(10,10,10,.6) 100%);
}
.lp-hero-text {
  position: relative; z-index: 2;
  padding: 0 60px 80px;
}
.lp-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
}
.lp-hero-text h1 em { font-style: italic; color: var(--accent); }

/* ── Approach ── */
.lp-approach { padding: 120px 60px; background: var(--bg); }
.lp-approach-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lp-approach-h {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
}
.lp-circle-word {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--accent);
}
.lp-circle-word::after {
  content: '';
  position: absolute;
  inset: -6px -10px;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
}
.lp-approach-right p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 420px;
}

/* ── How It Works ── */
.lp-how { padding: 120px 60px; background: var(--bg-2); }
.lp-how-inner { max-width: 1100px; margin: 0 auto; }
.lp-how h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 64px;
}
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.lp-step {
  background: var(--card);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.lp-step:first-child { border-radius: 20px 0 0 20px; }
.lp-step:last-child  { border-radius: 0 20px 20px 0; }
.lp-step-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 900;
  color: var(--accent);
  opacity: .12;
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  letter-spacing: -4px;
}
.lp-step-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.lp-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.lp-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Split Sections ── */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.lp-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lp-split-text {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-3);
}
.lp-split-alt .lp-split-text { background: var(--bg-2); }
.lp-split-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  color: var(--white);
}
.lp-split-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── Stats ── */
.lp-stats { padding: 80px 60px; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.lp-stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat-label { font-size: 14px; color: var(--muted); }

/* ── Quotes ── */
.lp-quotes { background: var(--bg-2); padding: 120px 60px; border-top: 1px solid var(--border); }
.lp-quotes-inner { max-width: 900px; margin: 0 auto; }
.lp-quotes-slider { min-height: 260px; margin: 0 0 40px; }
.lp-quote { display: none; animation: fadeIn .4s ease; }
.lp-quote.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.lp-quote-mark { font-family: var(--serif); font-size: 72px; color: var(--accent); line-height: .6; margin-bottom: 24px; }
.lp-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
  font-style: normal;
}
.lp-quote cite { font-size: 15px; color: var(--muted); font-style: normal; }
.lp-quotes-dots { display: flex; gap: 12px; }
.lp-dot { width: 40px; height: 3px; background: var(--border-2); border: none; border-radius: 2px; cursor: pointer; transition: background .2s; padding: 0; }
.lp-dot.active { background: var(--accent); }

/* ── Values ── */
.lp-values { padding: 120px 60px; background: var(--bg); }
.lp-values-inner { max-width: 1100px; margin: 0 auto; }
.lp-values h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -.5px;
}
.lp-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.lp-value-card { background: var(--card); padding: 40px 32px; border: 1px solid var(--border); }
.lp-value-card:first-child { border-radius: 16px 0 0 16px; }
.lp-value-card:last-child  { border-radius: 0 16px 16px 0; }
.lp-value-num { font-size: 42px; font-weight: 900; color: var(--accent); opacity: .4; letter-spacing: -2px; margin-bottom: 14px; }
.lp-value-name { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.lp-value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Careers ── */
.lp-careers { padding: 120px 60px; background: var(--bg-2); border-top: 1px solid var(--border); }
.lp-careers-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lp-careers-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
  color: var(--white);
}
.lp-careers-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.lp-careers-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ── Press ── */
.lp-press { padding: 120px 60px; background: var(--bg); border-top: 1px solid var(--border); }
.lp-press-inner { max-width: 1100px; margin: 0 auto; }
.lp-press h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--white);
}
.lp-press p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

/* ── Waitlist ── */
.lp-waitlist { padding: 100px 60px; background: var(--bg-2); border-top: 1px solid var(--border); }
.lp-waitlist-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.lp-waitlist h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.lp-waitlist p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.lp-waitlist-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 16px; }
.lp-waitlist-form input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 40px;
  padding: 14px 22px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--sans);
  outline: none;
  transition: border-color .15s;
}
.lp-waitlist-form input::placeholder { color: var(--muted); }
.lp-waitlist-form input:focus { border-color: var(--accent); }
.lp-waitlist-form button {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 40px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.lp-waitlist-form button:hover { background: #d8d8d8; }
.lp-waitlist-form button:active { transform: scale(.97); }
.lp-waitlist-note { font-size: 13px; color: var(--muted); }
.lp-waitlist-success { display: none; font-size: 18px; font-weight: 700; color: var(--accent); padding: 20px; }

/* ── Download CTA ── */
.lp-download-cta {
  background: linear-gradient(160deg, #1a0802 0%, var(--bg) 60%);
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.lp-download-cta-inner { max-width: 700px; margin: 0 auto; }
.lp-cta-mark { margin-bottom: 22px; display: flex; justify-content: center; }
.lp-cta-mark-svg { width: 52px; height: 52px; color: var(--white); --lp-mark-gap: #0a0a0a; }
.lp-download-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.lp-download-cta p { font-size: 17px; color: var(--muted); margin-bottom: 40px; }
.lp-store-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border-2);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  transition: background .15s, transform .15s, border-color .15s;
}
.lp-store-btn:hover { background: #222; border-color: var(--accent); transform: translateY(-2px); }
.lp-store-btn svg { flex-shrink: 0; }
.lp-store-btn span { display: flex; flex-direction: column; text-align: left; }
.lp-store-btn small { font-size: 11px; color: var(--muted); }
.lp-store-btn span > :last-child { font-size: 17px; font-weight: 700; margin-top: 1px; }

/* ── Footer ── */
.lp-footer { background: var(--bg-2); padding: 80px 60px 40px; border-top: 1px solid var(--border); }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; }
.lp-footer-top { display: grid; grid-template-columns: auto 1fr; gap: 80px; margin-bottom: 60px; }
.lp-footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--script);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.lp-footer-mark { width: 26px; height: 26px; color: var(--white); --lp-mark-gap: #0a0a0a; flex-shrink: 0; }
.lp-footer-logo span { transform: translateY(2px); }
.lp-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.lp-footer-col-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 16px;
}
.lp-footer-col a {
  display: block; font-size: 14px; color: var(--muted);
  text-decoration: none; margin-bottom: 10px; transition: color .15s;
}
.lp-footer-col a:hover { color: var(--white); }
.lp-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px; font-size: 13px; color: #444;
  display: flex; justify-content: space-between; align-items: center;
}

/* ── Sub-page layout ── */
.lp-page { padding-top: 68px; min-height: 100vh; background: var(--bg); }
.lp-page-hero { background: var(--bg-2); padding: 100px 60px 80px; border-bottom: 1px solid var(--border); }
.lp-page-hero-inner { max-width: 900px; margin: 0 auto; }
.lp-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}
.lp-page-hero p { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 560px; }

.lp-page-body { max-width: 900px; margin: 0 auto; padding: 80px 60px; }
.lp-page-body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -.5px;
  margin: 48px 0 16px;
  color: var(--white);
}
.lp-page-body h2:first-child { margin-top: 0; }
.lp-page-body p  { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.lp-page-body ul { font-size: 16px; color: var(--muted); line-height: 1.75; padding-left: 24px; margin-bottom: 20px; }
.lp-page-body ul li { margin-bottom: 8px; }
.lp-page-body a { color: var(--accent); text-decoration: none; }
.lp-page-body a:hover { text-decoration: underline; }
.lp-page-body strong { color: var(--text); }

.lp-divider { height: 1px; background: var(--border); margin: 48px 0; }

/* Cards */
.lp-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; margin: 40px 0; }
.lp-card { background: var(--card); border: 1px solid var(--border); padding: 32px 28px; }
.lp-card:first-child { border-radius: 16px 0 0 16px; }
.lp-card:last-child  { border-radius: 0 16px 16px 0; }
.lp-card:only-child  { border-radius: 16px; }
.lp-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.lp-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Timeline */
.lp-timeline { list-style: none; padding: 0; margin: 32px 0 32px 20px; }
.lp-timeline li { padding: 0 0 32px 36px; border-left: 2px solid var(--border); position: relative; }
.lp-timeline li::before {
  content: ''; position: absolute; left: -7px; top: 6px;
  width: 12px; height: 12px; background: var(--accent); border-radius: 50%;
}
.lp-timeline-year { font-weight: 800; color: var(--accent); font-size: 18px; margin-bottom: 6px; }
.lp-timeline li h3 { font-weight: 700; margin-bottom: 6px; color: var(--white); font-size: 16px; }
.lp-timeline li p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Pull quote */
.lp-pull-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px 32px;
  margin: 40px 0;
  line-height: 1.4;
  background: var(--card);
  border-radius: 0 12px 12px 0;
}

/* FAQ */
.lp-faq { list-style: none; padding: 0; margin: 32px 0; }
.lp-faq-item { border-bottom: 1px solid var(--border); }
.lp-faq-item:first-child { border-top: 1px solid var(--border); }
.lp-faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-family: var(--sans);
}
.lp-faq-icon { font-size: 22px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.lp-faq-item.open .lp-faq-icon { transform: rotate(45deg); color: var(--accent); }
.lp-faq-a {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
}
.lp-faq-item.open .lp-faq-a { max-height: 300px; padding-bottom: 20px; }

/* Success stories */
.lp-story-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; margin-bottom: 2px; }
.lp-story-card:first-of-type { border-radius: 16px 16px 0 0; }
.lp-story-card:last-of-type  { border-radius: 0 0 16px 16px; margin-bottom: 0; }
.lp-story-names { font-weight: 800; font-size: 20px; color: var(--white); margin-bottom: 6px; }
.lp-story-location { font-size: 13px; color: var(--accent); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.lp-story-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Download page */
.lp-download-page { text-align: center; padding: 16px 60px 80px; }
.lp-download-page h1 { font-family: var(--serif); font-size: clamp(36px, 4vw, 60px); font-weight: 900; margin-bottom: 16px; letter-spacing: -.5px; color: var(--white); }
.lp-download-page > p { font-size: 17px; color: var(--muted); margin-bottom: 48px; }
.lp-download-stores { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.lp-download-store-card {
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: 20px; padding: 40px; flex: 1;
  min-width: 260px; max-width: 340px; text-align: center;
  text-decoration: none; color: var(--white);
  transition: transform .15s, border-color .15s;
}
.lp-download-store-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.lp-download-store-icon { font-size: 56px; margin-bottom: 16px; }
.lp-download-store-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.lp-download-store-card p { font-size: 14px; color: var(--muted); }

/* News */
.lp-news-item {
  border-bottom: 1px solid var(--border); padding: 28px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start;
}
.lp-news-item:first-child { border-top: 1px solid var(--border); }
.lp-news-date { font-size: 13px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.lp-news-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.lp-news-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.lp-news-tag { font-size: 12px; font-weight: 600; background: var(--card); border: 1px solid var(--border-2); padding: 5px 12px; border-radius: 20px; color: var(--muted); white-space: nowrap; }

/* Jobs */
.lp-job-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
}
.lp-job-item:first-child { border-top: 1px solid var(--border); }
.lp-job-item h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.lp-job-item p  { font-size: 13px; color: var(--muted); margin: 0; }
.lp-job-dept { font-size: 12px; background: rgba(255,255,255,.06); color: var(--muted); padding: 4px 12px; border-radius: 20px; font-weight: 600; white-space: nowrap; border: 1px solid var(--border-2); }

/* Cookie banner */
.lp-cookie {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 560px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 14px;
  z-index: 999;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  animation: slideUp .3s ease;
}
.lp-cookie.hidden { display: none; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.lp-cookie p { font-size: 12.5px; color: var(--muted); flex: 1; line-height: 1.45; margin: 0; }
.lp-cookie p a { color: var(--accent); }
.lp-cookie-btn {
  background: var(--accent); color: var(--on-accent); border: none;
  border-radius: 20px; padding: 9px 20px; font-size: 13px;
  font-weight: 700; cursor: pointer; font-family: var(--sans);
  white-space: nowrap; transition: background .15s;
}
.lp-cookie-btn:hover { background: #d8d8d8; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .lp-nav-left { gap: 18px; }
  .lp-nav-right { gap: 14px; }
  .lp-nav-left a, .lp-nav-right a { font-size: 13px; }

  .lp-hero-text { padding: 0 28px 60px; }
  .lp-approach { padding: 80px 28px; }
  .lp-approach-inner { grid-template-columns: 1fr; gap: 40px; }

  .lp-how { padding: 80px 28px; }
  .lp-steps { grid-template-columns: 1fr; gap: 2px; }
  .lp-step:first-child { border-radius: 16px 16px 0 0; }
  .lp-step:last-child  { border-radius: 0 0 16px 16px; }

  .lp-split { grid-template-columns: 1fr; }
  .lp-split-img { height: 380px; }
  .lp-split-img-right .lp-split-img { order: -1; }
  .lp-split-text { padding: 60px 28px; }

  .lp-stats { padding: 60px 28px; }
  .lp-stats-inner { grid-template-columns: repeat(2, 1fr); }

  .lp-quotes { padding: 80px 28px; }
  .lp-values { padding: 80px 28px; }
  .lp-values-grid { grid-template-columns: 1fr; gap: 2px; }
  .lp-value-card:first-child { border-radius: 16px 16px 0 0; }
  .lp-value-card:last-child  { border-radius: 0 0 16px 16px; }

  .lp-careers { padding: 80px 28px; }
  .lp-careers-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-careers-stats { grid-template-columns: repeat(3,1fr); }

  .lp-waitlist { padding: 80px 28px; }
  .lp-waitlist-form { flex-direction: column; }
  .lp-press { padding: 80px 28px; }
  .lp-download-cta { padding: 80px 28px; }

  .lp-footer { padding: 60px 28px 32px; }
  .lp-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }

  .lp-page-hero { padding: 80px 28px 60px; }
  .lp-page-body { padding: 60px 28px; }
  .lp-download-page { padding: 12px 20px 60px; }

  /* Kept as a row: stacked, the notice took up a third of a phone screen for
     a sentence nobody wants to read. */
  .lp-cookie { left: 10px; right: 10px; bottom: 10px; padding: 11px 13px; gap: 11px; border-radius: 13px; }
  .lp-cookie p { font-size: 12px; line-height: 1.4; }
  .lp-cookie-btn { padding: 8px 15px; font-size: 12px; }
}

@media (max-width: 600px) {
  .lp-nav-left { display: none; }
  .lp-nav-right > a { display: none; }
  .lp-nav-inner {
    grid-template-columns: auto 1fr;
    padding: 0 16px;
  }
  .lp-nav-right { gap: 0; justify-content: flex-end; }
  .lp-stats-inner { grid-template-columns: repeat(2,1fr); }
  .lp-careers-stats { grid-template-columns: 1fr 1fr; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
  .lp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lp-card-grid { grid-template-columns: 1fr; gap: 2px; }
  .lp-card:first-child { border-radius: 16px 16px 0 0; }
  .lp-card:last-child  { border-radius: 0 0 16px 16px; }
}

/* ── The opening ──────────────────────────────────────────────────────────
 *
 * Black, the mark writing itself on, then the black sliding up off the top.
 * See includes/lp-intro.php for why it runs once a visit and not at all for
 * a viewer who has asked for less motion.
 *
 * The curtain is in the markup on every page but only covers anything while
 * html carries .lp-intro-on, which the inline script adds before first paint.
 * With no JavaScript that class is never added, so this is all inert and the
 * site is simply there.
 */
/*
 * Everything but `display` sits on the element itself, and only `display` is
 * gated. The curtain has to outlive .lp-intro-on: that class is taken off the
 * moment the slide begins, so that the page underneath can be scrolled again,
 * and if it were the thing keeping the curtain on screen the curtain would
 * vanish instead of sliding.
 */
.lp-intro {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  will-change: transform;
}

.lp-intro-on .lp-intro,
.lp-intro.is-leaving { display: flex; }

/* Nothing scrolls behind the curtain. */
.lp-intro-on,
.lp-intro-on body { overflow: hidden; }

.lp-intro-mark-svg {
  width: clamp(72px, 14vw, 116px);
  height: clamp(72px, 14vw, 116px);
  color: #ffffff;
  --lp-mark-gap: #0a0a0a;   /* the cut where the strokes cross, in the ground */
}

.lp-intro .lp-intro-mark {
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.lp-intro.is-fading .lp-intro-mark { opacity: 0; }

/* Up and away. The curtain keeps its own black to the last frame, so what
   arrives underneath is the site rather than a fade to white. */
.lp-intro.is-leaving {
  transform: translateY(-100%);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

@media (prefers-reduced-motion: reduce) {
  .lp-intro, .lp-intro-on .lp-intro { display: none; }
  .lp-intro-on, .lp-intro-on body { overflow: auto; }
}

/* ── Icons ────────────────────────────────────────────────────────────────
 *
 * The app's own, taken out of the same Ionicons font it draws them from — see
 * includes/lp-icon.php. They inherit the text colour, so an icon is never a
 * different colour from the words beside it.
 */
.lp-icon, .lp-h-icon { fill: currentColor; flex: none; }

.lp-icon { width: 24px; height: 24px; }

/* In a heading, set on the text's own baseline rather than floated above it. */
.lp-h-icon {
  width: 1.05em; height: 1.05em;
  vertical-align: -0.14em;
  margin-right: 0.5em;
  opacity: .85;
}

/* The three steps on the homepage carry a bigger one. */
.lp-step-icon .lp-icon { width: 30px; height: 30px; }

/* ══ 24 September 2026 ══════════════════════════════════════════════════════
 * Put right in one pass: the nav button is a plain link, the store badges are
 * the stores' own, a grid never leaves one card alone on a row, and two new
 * pieces of the homepage: the sentence that fills in as you scroll, and the
 * phone you can try.
 */

/* "Get the app" is a link straight to the download page, not a menu. */
a.lp-download-btn { display: inline-block; text-decoration: none; line-height: 1.2; }

/* The stores' own badges. */
.lp-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lp-badge { display: inline-block; line-height: 0; border-radius: 9px; transition: transform .15s; }
.lp-badge:hover { transform: translateY(-2px); }
.lp-badge img { height: 48px; width: auto; display: block; }
.lp-badges-stack { flex-direction: column; align-items: flex-start; gap: 10px; }
.lp-badges-stack .lp-badge img { height: 40px; }
.lp-download-cta { background: var(--bg); }

/* Grids: the rounded corners belong to the grid, not to whichever card
   happens to be first or last, and four cards sit two by two rather than
   three and one. */
.lp-values-grid { border-radius: 16px; overflow: hidden; }
.lp-value-card, .lp-value-card:first-child, .lp-value-card:last-child { border-radius: 0; }
.lp-values-grid:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }

/* The circled word: two strokes that start apart, cross and finish apart,
   like the mark. The plain ring stays as the fallback without script. */
.lp-circle-word.lp-drawn-loop::after { display: none; }
.lp-loop { position: absolute; left: -10%; top: -16%; width: 120%; height: 132%; overflow: visible; pointer-events: none; }
.lp-loop path {
  fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round;
  vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1;
}
.lp-loop path.b { stroke-width: 1.8; }
.lp-loop.drawn path.a { transition: stroke-dashoffset .7s cubic-bezier(.215,.61,.355,1); stroke-dashoffset: 0; }
.lp-loop.drawn path.b { transition: stroke-dashoffset .7s cubic-bezier(.215,.61,.355,1) .26s; stroke-dashoffset: 0; }

/* ── The sentence ── */
.lp-statement { padding: 140px 60px; background: var(--bg); border-top: 1px solid var(--border); }
.lp-statement-inner { max-width: 1100px; margin: 0 auto; }
.lp-statement p {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(30px, 4.4vw, 60px); line-height: 1.16; letter-spacing: -.5px;
  color: var(--white); max-width: 21em;
}
.lp-statement .w { color: #3a3a3a; transition: color .24s ease; }
.lp-statement .w.lit { color: var(--white); }

/* ── Try it ── */
.lp-try .lp-approach-inner { align-items: center; }
.lp-try-p { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 28px 0 18px; max-width: 440px; }
.lp-try-hint { font-size: 14px; color: var(--muted); opacity: .8; }
.lp-text-btn {
  appearance: none; background: none; border: 0; padding: 0; margin-left: 6px; cursor: pointer;
  font: inherit; color: var(--muted); text-decoration: underline; text-underline-offset: 3px;
}
.lp-text-btn:hover { color: var(--white); }
.lp-try-phone { display: flex; justify-content: center; }

.lp-phone {
  position: relative; width: 318px; max-width: 100%; aspect-ratio: 318 / 640;
  border-radius: 46px; padding: 10px; background: #1c1c1c;
  box-shadow: 0 0 0 1px #2c2c2c, 0 40px 80px -30px rgba(0,0,0,.8);
}
.lp-screen {
  position: relative; height: 100%; border-radius: 37px; overflow: hidden;
  background: #fff; color: #0a0a0a; font-family: var(--sans); font-size: 12px; line-height: 1.45;
  display: flex; flex-direction: column; text-align: left;
}
.lp-screen p { margin: 0; }
.lp-status { display: flex; justify-content: space-between; align-items: center; padding: 13px 24px 4px; font-size: 11px; font-weight: 600; }
.lp-status span:last-child { font-size: 8px; letter-spacing: 1px; }
.lp-island { width: 84px; height: 24px; border-radius: 20px; background: #0a0a0a; }
.lp-app-top { padding: 4px 18px 10px; }
.lp-app-word { font-family: var(--script); font-size: 30px; line-height: 1; }
.lp-feed { flex: 1; overflow: hidden; padding: 0 12px; display: flex; flex-direction: column; gap: 10px; }
.lp-photo {
  position: relative; height: 150px; flex: none; border-radius: 18px; overflow: hidden;
  background: #777 url("../images/opt/profile-jordan.jpg") center 28% / cover;
}
.lp-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,.45)); }
.lp-photo-dots { position: absolute; top: 9px; left: 12px; right: 12px; display: flex; gap: 4px; z-index: 1; }
.lp-photo-dots i { flex: 1; height: 2.5px; border-radius: 2px; background: rgba(255,255,255,.45); }
.lp-photo-dots i:first-child { background: #fff; }
.lp-photo-who { position: absolute; left: 12px; bottom: 10px; color: #fff; display: flex; align-items: baseline; gap: 6px; z-index: 1; }
.lp-photo-who b { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1; }
.lp-verified {
  display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%;
  background: #45688E; color: #fff; font-size: 9px; font-weight: 700; transform: translateY(-2px);
}
.lp-photo-miles { position: absolute; right: 12px; bottom: 11px; color: #fff; font-size: 10.5px; font-weight: 500; z-index: 1; }

.lp-dcard { position: relative; flex: none; border: 1px solid #e6e6e6; border-radius: 18px; padding: 13px 14px 14px; background: #fff; transition: border-color .26s; }
.lp-dq { font-size: 10.5px; font-weight: 500; color: #6a6a6a; }
.lp-da { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 17px; line-height: 1.25; margin-top: 4px !important; padding-right: 34px; }
.lp-like {
  position: absolute; right: 9px; bottom: 9px; width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid #e3e3e3; padding: 7px; cursor: pointer; color: #0a0a0a;
  transition: transform .2s, border-color .2s;
}
.lp-like:hover { transform: scale(1.06); border-color: #0a0a0a; }
.lp-like svg { width: 100%; height: 100%; display: block; overflow: visible; }
.lp-like use { fill: currentColor; }
.lp-like-wait { opacity: .2; }
.lp-like-yours { opacity: 0; }
.lp-dcard.liked { border-color: #0a0a0a; }
.lp-dcard.liked .lp-like-yours { animation: lp-yours .52s cubic-bezier(.34,1.3,.64,1) both; }
@keyframes lp-yours {
  from { opacity: 0; transform: translate(-3px, 9px) scale(.88); }
  30%  { opacity: 1; }
  to   { opacity: 1; transform: none; }
}
.lp-dcard.pulse .lp-like { animation: lp-nudge .9s ease 2; }
@keyframes lp-nudge { 0%,100% { box-shadow: 0 0 0 0 rgba(10,10,10,.3); } 60% { box-shadow: 0 0 0 9px rgba(10,10,10,0); } }
.lp-dnote { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.34,1.56,.64,1); }
.lp-dnote > div { overflow: hidden; }
.lp-dcard.liked .lp-dnote { grid-template-rows: 1fr; }
.lp-dnote p {
  margin-top: 10px !important; padding: 8px 10px; border-radius: 12px 12px 12px 4px; background: #0a0a0a; color: #fff;
  font-size: 11px; width: fit-content; max-width: 88%;
}
.lp-dnote small { display: block; margin-top: 5px; font-size: 10px; color: #7a7a7a; }

.lp-scrim { position: absolute; inset: 0; z-index: 2; background: rgba(0,0,0,.28); opacity: 0; pointer-events: none; transition: opacity .26s; }
.lp-scrim.on { opacity: 1; }
.lp-sheet {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; background: #fff;
  border-radius: 24px 24px 0 0; padding: 8px 16px 20px; box-shadow: 0 -12px 40px rgba(0,0,0,.18);
  transform: translateY(105%); transition: transform .42s cubic-bezier(.34,1.3,.64,1);
}
.lp-sheet.up { transform: none; }
.lp-sheet.down { transition: transform .26s cubic-bezier(.55,.055,.675,.19); }
.lp-sheet-handle { width: 36px; height: 4px; border-radius: 2px; background: #d6d6d6; margin: 0 auto 12px; }
.lp-sheet-title { font-size: 11px; color: #6a6a6a; }
.lp-sheet blockquote {
  margin: 8px 0 12px; padding: 10px 12px; border-radius: 12px; background: #f4f4f4;
  font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 15px; line-height: 1.25;
}
.lp-sheet-field { border: 1px solid #0a0a0a; border-radius: 12px; padding: 9px 11px; min-height: 38px; font-size: 12px; }
.lp-caret { display: inline-block; width: 1px; height: 13px; background: #0a0a0a; vertical-align: -2px; animation: lp-blink 1s steps(1) infinite; }
@keyframes lp-blink { 50% { opacity: 0; } }
.lp-sheet-send {
  margin-top: 12px; width: 100%; border: 0; border-radius: 999px; padding: 11px; font: inherit;
  font-size: 12.5px; font-weight: 600; background: #0a0a0a; color: #fff; cursor: pointer; transition: transform .14s;
}
.lp-sheet-send.pressed { transform: scale(.97); }

@media (max-width: 900px) {
  .lp-statement { padding: 90px 28px; }
  .lp-try-phone { margin-top: 40px; }
}
@media (max-width: 600px) {
  .lp-values-grid:has(> :nth-child(4):last-child) { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-statement .w { color: var(--white); }
  .lp-loop path { stroke-dashoffset: 0; transition: none !important; }
  .lp-dcard.liked .lp-like-yours { animation: none; opacity: 1; }
  .lp-sheet, .lp-scrim, .lp-dnote { transition: none; }
}

/* The inner pages' card grids: two by two on a wide screen, one column on a
   phone, never three and a lonely fourth. The corners belong to the grid. */
.lp-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 16px; overflow: hidden; }
.lp-card, .lp-card:first-child, .lp-card:last-child, .lp-card:only-child { border-radius: 0; }
.lp-card-grid > .lp-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 700px) { .lp-card-grid { grid-template-columns: 1fr; } }

/* The download page: the badges shown faded until the store links exist. */
.lp-badges-waiting .lp-badge { opacity: .45; cursor: default; }
.lp-badges-waiting .lp-badge:hover { transform: none; }
.lp-download-note { margin: 56px auto 0; max-width: 560px; padding: 28px 32px; border: 1px solid var(--border); border-radius: 18px; background: var(--card); text-align: left; }
.lp-download-note strong { display: block; font-size: 18px; color: var(--white); margin-bottom: 6px; }
.lp-download-note p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* The nav colours its links white; the one that is a white pill keeps black text. */
.lp-nav .lp-nav-right a.lp-download-btn, .lp-nav .lp-nav-right a.lp-download-btn:hover { color: var(--on-accent); }

/* Legal pages: a notice, a plain-English summary, and a list of sections. */
.lp-legal h2 { scroll-margin-top: 90px; }
.lp-legal a { color: var(--white); text-underline-offset: 3px; }
.lp-legal strong { color: var(--white); }
.lp-legal-notice { border: 1px solid var(--border-2); background: var(--card); border-radius: 16px; padding: 22px 26px; margin-bottom: 40px; }
.lp-legal-notice strong { display: block; margin-bottom: 6px; font-size: 16px; }
.lp-legal-notice p { margin: 0; }
.lp-legal-short { border-left: 2px solid var(--white); padding-left: 24px; margin-bottom: 48px; }
.lp-legal-short h2, .lp-legal-toc h2 { margin-top: 0; }
.lp-legal-toc { margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.lp-legal-toc ol { columns: 2; column-gap: 40px; padding-left: 22px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.lp-legal-toc a { color: var(--muted); text-decoration: none; }
.lp-legal-toc a:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 700px) { .lp-legal-toc ol { columns: 1; } }
.lp-legal h3.lp-legal-h3 { font-size: 17px; font-weight: 700; color: var(--white); margin: 28px 0 12px; }

/* ── The phone menu ──
   Only on narrow screens, where the top bar has no room for its links. A
   sheet that rises from the bottom, like every pop-up in the app. */
.lp-menu-btn { display: none; }
.lp-menu, .lp-menu-scrim { display: none; }
@media (max-width: 600px) {
  .lp-menu-btn {
    display: grid; place-items: center; width: 40px; height: 40px; margin-left: 6px;
    background: none; border: 0; padding: 0; color: var(--white); cursor: pointer;
  }
  .lp-menu-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
  .lp-menu-scrim {
    display: block; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.55);
    opacity: 0; pointer-events: none; transition: opacity .26s ease;
  }
  .lp-menu {
    display: flex; flex-direction: column; position: fixed; left: 0; right: 0; bottom: 0; z-index: 301;
    background: #161616; border-top: 1px solid var(--border-2); border-radius: 24px 24px 0 0;
    padding: 10px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateY(105%); transition: transform .26s cubic-bezier(.55,.055,.675,.19);
    max-height: 85vh; overflow-y: auto;
  }
  .lp-menu-handle { width: 36px; height: 4px; border-radius: 2px; background: #3a3a3a; margin: 0 auto 10px; }
  .lp-menu > a {
    display: block; padding: 14px 2px; font-size: 17px; font-weight: 500; color: var(--white);
    text-decoration: none; border-bottom: 1px solid var(--border);
  }
  .lp-menu-badges { justify-content: flex-start; margin-top: 20px; }
  .lp-menu-badges .lp-badge img { height: 42px; }
  .lp-menu-open .lp-menu { transform: none; transition: transform .42s cubic-bezier(.34,1.3,.64,1); }
  .lp-menu-open .lp-menu-scrim { opacity: 1; pointer-events: auto; }
  .lp-menu-open { overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) { .lp-menu, .lp-menu-scrim { transition: none !important; } }
.lp-menu > a:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 6px; }
