/* =======================================================================
   Statusful — marketing landing page
   Full-bleed entry view shown to logged-out visitors. Reuses the global
   design tokens (--bg / --ink / --tone / …) from styles.css, so it follows
   the same monochrome theme + per-status tone glyphs and adapts to
   dark/light automatically. All classes are prefixed `lp-` to stay clear of
   the app's own component classes.
   ======================================================================= */

.lp {
  position: relative;
  width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
}

/* cursor-reactive ambient glow + a faint dotted field, both fixed behind
   everything. The glow follows the pointer via --mx/--my (set in JS). */
.lp__atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      40rem 40rem at var(--mx, 50%) var(--my, 0%),
      color-mix(in srgb, var(--accent) 9%, transparent),
      transparent 60%
    );
  transition: background 0.5s linear;
}

.lp__grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(circle at center, var(--line) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
}

/* drifting tone glyphs in the hero backdrop */
.lp__float {
  position: absolute;
  z-index: 0;
  color: var(--tone, var(--faint));
  opacity: 0;
  animation: lp-drift var(--dur, 22s) var(--ease) var(--delay, 0s) infinite;
  will-change: transform, opacity;
}

.lp__float .lp-i {
  width: var(--size, 26px);
  height: var(--size, 26px);
}

@keyframes lp-drift {
  0% { opacity: 0; transform: translateY(24px) rotate(-6deg) scale(0.9); }
  12%, 80% { opacity: 0.22; }
  50% { transform: translateY(-26px) rotate(6deg) scale(1.05); }
  100% { opacity: 0; transform: translateY(-60px) rotate(10deg) scale(1); }
}

.lp__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ---- scroll progress + nav -------------------------------------------- */

.lp-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  background: var(--accent);
  opacity: 0.85;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px clamp(18px, 5vw, 48px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.lp-nav.is-stuck {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
}

.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.lp-nav__brand .brand-mark {
  width: 27px;
  height: 27px;
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.lp-iconbtn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), transform 0.18s var(--ease);
}

.lp-iconbtn:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.lp-iconbtn .lp-i {
  width: 19px;
  height: 19px;
}

.lp-nav__login {
  min-height: 42px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.18s var(--ease);
}

.lp-nav__login:hover { color: var(--ink); }

@media (max-width: 430px) {
  .lp-nav {
    padding-inline: 16px;
  }

  .lp-nav__brand {
    gap: 8px;
    font-size: 1.08rem;
  }

  .lp-nav__brand .brand-mark {
    width: 25px;
    height: 25px;
  }

  .lp-iconbtn {
    width: 40px;
    height: 40px;
  }

  .lp-nav__login {
    font-size: 0.88rem;
  }
}

/* ---- shared buttons --------------------------------------------------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
}

.lp-btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.92rem; }
.lp-btn--lg { min-height: 60px; padding: 0 32px; font-size: 1.06rem; }

.lp-btn--primary {
  color: var(--accent-ink);
  background: var(--ink);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--ink) 55%, transparent);
}

.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px color-mix(in srgb, var(--ink) 60%, transparent);
}

.lp-btn--primary:active { transform: translateY(0) scale(0.99); }

.lp-btn--primary .lp-i { transition: transform 0.2s var(--ease); }
.lp-btn--primary:hover .lp-i { transform: translateX(4px); }

.lp-btn--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.lp-btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.lp-i { width: 1.2em; height: 1.2em; flex: none; }

/* ---- generic section scaffolding -------------------------------------- */

.lp-section {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 11vw, 132px) 0;
}

.lp-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-overline::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--line-strong);
}

.lp-h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.lp-sub {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
}

/* reveal-on-scroll: elements start shifted + transparent, IO adds .is-in */
.lp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--rd, 0s);
}

.lp-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---- hero ------------------------------------------------------------- */

.lp-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: clamp(24px, 5vw, 48px);
  padding: clamp(40px, 9vw, 96px) 0 clamp(48px, 8vw, 90px);
}

.lp-hero__copy,
.lp-hero__preview {
  position: relative;
  z-index: 1;
}

.lp-hero__preview {
  order: -1;
  width: 100%;
}

.lp-hero-card {
  width: min(100%, 25rem);
}

@media (min-width: 880px) {
  .lp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
    align-items: center;
  }

  .lp-hero__preview {
    order: 0;
    justify-self: end;
  }
}

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  align-self: flex-start;
  padding: 7px 14px 7px 11px;
  margin-bottom: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.lp-hero__eyebrow .lp-livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
}

.lp-hero__head {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
  font-size: clamp(2.9rem, 11vw, 6.4rem);
}

.lp-hero__head .lp-dim { color: var(--muted); }

/* the live, cycling status line */
.lp-cycler-row {
  display: flex;
  align-items: center;
  min-height: 1.1em;
  margin-top: 0.1em;
}

.lp-cycler {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
  color: var(--tone, var(--accent));
}

.lp-cycler__glyph {
  display: grid;
  place-items: center;
  flex: none;
  width: 0.92em;
  height: 0.92em;
}

.lp-cycler__glyph .lp-i { width: 100%; height: 100%; }

.lp-cycler__word { white-space: nowrap; }

.lp-cycler.is-out .lp-cycler__glyph,
.lp-cycler.is-out .lp-cycler__word {
  animation: lp-word-out 0.26s var(--ease) forwards;
}

.lp-cycler.is-in .lp-cycler__glyph,
.lp-cycler.is-in .lp-cycler__word {
  animation: lp-word-in 0.34s var(--ease) both;
}

@keyframes lp-word-out {
  to { opacity: 0; transform: translateY(-0.32em); filter: blur(3px); }
}

@keyframes lp-word-in {
  from { opacity: 0; transform: translateY(0.36em); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}

.lp-hero__lede {
  max-width: 33rem;
  margin: clamp(22px, 4vw, 32px) 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.4vw, 1.28rem);
  line-height: 1.5;
}

.lp-hero__lede b { color: var(--ink); font-weight: 600; }

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 40px);
}

.lp-hero__note {
  margin-top: 18px;
  color: var(--faint);
  font-size: 0.84rem;
  font-weight: 500;
}

.lp-hero__scroll {
  position: absolute;
  left: 0;
  bottom: clamp(8px, 3vw, 22px);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
}

.lp-hero__scroll .lp-i {
  width: 16px;
  height: 16px;
  animation: lp-bob 1.8s var(--ease) infinite;
}

@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---- interactive demo ------------------------------------------------- */

.lp-demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-top: clamp(34px, 6vw, 56px);
  align-items: start;
}

@media (min-width: 880px) {
  .lp-demo__grid { grid-template-columns: 22rem minmax(0, 1fr); align-items: stretch; }
}

/* the live status card (mirrors the app's hero/profile card language) */
.lp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(130% 100% at 0% 0%, color-mix(in srgb, var(--tone, var(--accent)) 14%, transparent), transparent 58%),
    var(--surface);
  border-color: color-mix(in srgb, var(--tone, var(--accent)) 22%, var(--line));
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.lp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, color-mix(in srgb, var(--tone, var(--accent)) 12%, transparent) 50%, transparent 70%);
  background-size: 240% 100%;
  animation: lp-sheen 7s var(--ease) infinite;
}

@keyframes lp-sheen {
  0% { background-position: 140% 0; }
  60%, 100% { background-position: -40% 0; }
}

.lp-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
}

.lp-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
  flex: none;
}

.lp-card__avatar svg { display: block; width: 100%; height: 100%; }

.lp-card__id {
  display: block;
  min-width: 0;
}

.lp-card__handle {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-card__url {
  display: block;
  color: var(--faint);
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-card__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--live);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-card__live .lp-livedot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--live) 50%, transparent);
  animation: lp-ping 2.4s var(--ease) infinite;
}

.lp-card__status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 4px;
  position: relative;
  z-index: 1;
}

.lp-card__glyph {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex: none;
  background: color-mix(in srgb, var(--tone, var(--accent)) 16%, var(--surface-2));
  color: var(--tone, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--accent)) 40%, var(--line));
}

.lp-card__glyph .lp-i { width: 28px; height: 28px; }

.lp-card__label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(1.6rem, 4.4vw, 2rem);
  overflow-wrap: anywhere;
}

.lp-card.is-bump .lp-card__glyph { animation: lp-pop 0.4s var(--ease); }
.lp-card.is-bump .lp-card__label { animation: lp-rise 0.34s var(--ease); }

@keyframes lp-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes lp-rise {
  from { opacity: 0.3; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.lp-card__meta {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.lp-card__count strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.lp-card__count span {
  display: block;
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 500;
}

.lp-card__track { display: flex; gap: 5px; }

.lp-seg {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 0.4s var(--ease);
}

.lp-seg.is-on { background: var(--tone, var(--accent)); }

/* the demo's right side: instruction + a live mini timeline + preset tiles */
.lp-demo__play {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-demo__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  align-self: flex-start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.lp-demo__hint .lp-i { width: 17px; height: 17px; color: var(--faint); }

.lp-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 560px) { .lp-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 880px) { .lp-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.lp-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  text-align: left;
  transition: transform 0.16s var(--ease), border-color 0.16s var(--ease), background 0.16s var(--ease);
}

.lp-tile:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tone, var(--accent)) 50%, var(--line-strong));
  background: var(--surface-2);
}

.lp-tile:active { transform: translateY(0) scale(0.98); }

.lp-tile.is-active {
  border-color: color-mix(in srgb, var(--tone, var(--accent)) 65%, var(--line-strong));
  background: color-mix(in srgb, var(--tone, var(--accent)) 12%, var(--surface));
}

.lp-tile__glyph { color: var(--tone, var(--ink)); }
.lp-tile__glyph .lp-i { width: 22px; height: 22px; }

.lp-tile__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* mini timeline strip inside the demo */
.lp-strip {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 60px;
  padding: 6px 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}

.lp-strip__seed {
  flex: none;
  width: 11px;
  height: 11px;
  margin: 0 4px 0 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.lp-strip__line {
  flex: none;
  width: 16px;
  height: 2px;
  background: var(--line-strong);
}

.lp-strip__node {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--tone, var(--accent)) 14%, var(--surface-2));
  color: var(--tone, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--accent)) 38%, var(--line));
}

.lp-strip__node .lp-i { width: 19px; height: 19px; }

.lp-strip__node--new { animation: lp-pop 0.42s var(--ease); }

.lp-strip__empty {
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 500;
  padding-left: 8px;
}

/* ---- feature cards ---------------------------------------------------- */

.lp-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 6vw, 54px);
}

@media (min-width: 620px) { .lp-features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.lp-feature {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.lp-feature:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tone, var(--accent)) 40%, var(--line-strong));
}

.lp-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--tone, var(--accent)) 14%, transparent), transparent 60%);
  transition: opacity 0.3s var(--ease);
}

.lp-feature:hover::before { opacity: 1; }

.lp-feature__glyph {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--tone, var(--accent)) 14%, var(--surface-2));
  color: var(--tone, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--accent)) 36%, var(--line));
}

.lp-feature__glyph .lp-i { width: 24px; height: 24px; }

.lp-feature__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.lp-feature__body {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ---- use cases -------------------------------------------------------- */

.lp-uses {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 6vw, 54px);
}

@media (min-width: 620px) { .lp-uses { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.lp-use {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.lp-use:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tone, var(--accent)) 40%, var(--line-strong));
}

.lp-use::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--tone, var(--accent)) 14%, transparent), transparent 60%);
  transition: opacity 0.3s var(--ease);
}

.lp-use:hover::before { opacity: 1; }

.lp-use__glyph {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--tone, var(--accent)) 14%, var(--surface-2));
  color: var(--tone, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--accent)) 36%, var(--line));
}

.lp-use__glyph .lp-i { width: 24px; height: 24px; }

.lp-use__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.lp-use__body {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* sample status line — shows the real preset output for the scenario */
.lp-use__sample {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.lp-use__sample-k {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-use__sample-v {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lp-use__sample-glyph {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  flex: none;
  background: color-mix(in srgb, var(--tone, var(--accent)) 16%, var(--surface-2));
  color: var(--tone, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--accent)) 38%, var(--line));
}

.lp-use__sample-glyph .lp-i { width: 16px; height: 16px; }

/* ---- privacy checklist ------------------------------------------------ */

.lp-privacy {
  list-style: none;
  margin: clamp(34px, 6vw, 54px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .lp-privacy { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 5vw, 56px); }
}

.lp-privacy__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.lp-privacy__check {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--live) 15%, var(--surface-2));
  color: var(--live);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--live) 38%, var(--line));
}

.lp-privacy__check .lp-i { width: 15px; height: 15px; }

.lp-privacy__text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.lp-privacy__text b {
  color: var(--ink);
  font-weight: 600;
}

/* ---- handle showcase -------------------------------------------------- */

.lp-handle {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  margin-top: clamp(34px, 6vw, 54px);
}

@media (min-width: 820px) { .lp-handle { grid-template-columns: 1fr 22rem; } }

.lp-handle__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 62%),
    var(--surface);
  text-align: center;
}

.lp-handle__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}

.lp-handle__avatar svg { display: block; width: 100%; height: 100%; }

.lp-handle__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 1.15em;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 4.6vw, 1.95rem);
  line-height: 1.05;
}

/* a single rolling slot in the handle */
.lp-tok {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s var(--ease);
}

.lp-sep { color: var(--faint); }

.lp-tok.is-rolling {
  color: var(--tone, var(--muted));
  filter: blur(0.4px);
}

.lp-tok.is-locked {
  animation: lp-tok-lock 0.46s var(--ease);
}

@keyframes lp-tok-lock {
  0% { transform: translateY(-4px) scale(1.14); color: var(--tone, var(--accent)); filter: blur(0); }
  55% { transform: translateY(0) scale(1); }
  100% { transform: none; color: inherit; }
}

.lp-handle__url {
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.lp-handle__url b { color: var(--ink); font-weight: 600; }

.lp-handle__shuffle { margin-top: 6px; }
.lp-handle__shuffle .lp-i { transition: transform 0.5s var(--ease); }
.lp-handle__shuffle:hover .lp-i { transform: rotate(180deg); }

/* while a roll is in flight: the icon spins continuously */
.lp-handle__shuffle.is-rolling { pointer-events: none; }
.lp-handle__shuffle.is-rolling .lp-handle__shuffle-i .lp-i {
  animation: lp-spin360 0.6s linear infinite;
}

@keyframes lp-spin360 {
  to { transform: rotate(360deg); }
}

/* avatar flip on lock */
.lp-handle__avatar.is-flip {
  animation: lp-flip 0.42s var(--ease);
}

@keyframes lp-flip {
  0% { transform: perspective(600px) rotateY(0); }
  50% { transform: perspective(600px) rotateY(90deg); }
  100% { transform: perspective(600px) rotateY(0); }
}

/* ---- steps ------------------------------------------------------------ */

.lp-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 6vw, 54px);
  counter-reset: lp-step;
}

@media (min-width: 760px) { .lp-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.lp-step {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
}

.lp-step__n {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.lp-step__title {
  margin: 0 0 7px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.lp-step__body { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ---- final CTA -------------------------------------------------------- */

.lp-final {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(70px, 12vw, 150px) 0;
}

.lp-final__card {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 64%),
    var(--surface);
  overflow: hidden;
}

.lp-final__head {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

.lp-final__sub {
  max-width: 30rem;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.5;
}

.lp-final__cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ---- footer ----------------------------------------------------------- */

.lp-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.84rem;
}

.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1rem;
}

.lp-footer__brand .brand-mark {
  width: 22px;
  height: 22px;
}

.lp-footer__link {
  color: var(--faint);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s var(--ease);
}

.lp-footer__link:hover,
.lp-footer__link:focus-visible {
  color: var(--ink);
}

/* ---- how it works ------------------------------------------------------ */

.lp-how__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 5vw, 52px);
}

@media (min-width: 760px) {
  .lp-how__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}

.lp-how__step {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  overflow: hidden;
}

.lp-how__step::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tone, var(--accent)), transparent 70%);
  opacity: 0.6;
}

.lp-how__n {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--line-strong);
  letter-spacing: -0.04em;
}

.lp-how__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--tone, var(--ink));
  background: color-mix(in srgb, var(--tone, var(--accent)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--tone, var(--accent)) 26%, transparent);
}

.lp-how__glyph .lp-i { width: 23px; height: 23px; }

.lp-how__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.lp-how__body {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.lp-how__arrow {
  display: none;
}

@media (min-width: 760px) {
  .lp-how__arrow {
    display: grid;
    place-items: center;
    position: absolute;
    top: 38px;
    right: -14px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--faint);
    background: var(--bg);
    border: 1px solid var(--line);
  }
  .lp-how__arrow .lp-i { width: 15px; height: 15px; }
}

/* ---- add-to-home-screen showcase -------------------------------------- */

.lp-os__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 6vw, 64px);
  margin-top: clamp(36px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 880px) {
  .lp-os__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.lp-os__panel { order: 1; }

@media (min-width: 880px) { .lp-os__panel { order: 0; } }

.lp-os__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}

.lp-os__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 8px 18px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lp-os__tab .lp-i { width: 16px; height: 16px; }

.lp-os__tab.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

.lp-os__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.lp-os__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.lp-os__step:hover { background: color-mix(in srgb, var(--surface) 50%, transparent); }

.lp-os__step.is-done { opacity: 0.5; }

.lp-os__step.is-active {
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  border-color: var(--line-strong);
  opacity: 1;
}

.lp-os__step-n {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lp-os__step.is-active .lp-os__step-n {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.lp-os__step-tx { display: grid; gap: 3px; min-width: 0; }
.lp-os__step-tx b {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.lp-os__step-tx span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lp-os__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.lp-os__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.lp-os__badge .lp-i { width: 14px; height: 14px; color: var(--live); }

/* ---- phone mockup (self-contained dark product shot) ------------------- */

.lp-phone {
  position: relative;
  justify-self: center;
  width: clamp(228px, 70vw, 280px);
}

.lp-phone__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  padding: 10px;
  border-radius: 46px;
  background: linear-gradient(160deg, #1a1a1e, #050506);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 80px -28px rgba(0, 0, 0, 0.7),
    0 12px 30px -16px rgba(0, 0, 0, 0.6);
}

.lp-phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 34%;
  height: 22px;
  border-radius: var(--pill);
  background: #000;
}

.lp-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #0a0a0c;
  color: #f4f4f6;
  isolation: isolate;
}

.lp-ph__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  animation: lp-ph-fade 0.4s var(--ease);
}

@keyframes lp-ph-fade { from { opacity: 0; } to { opacity: 1; } }

/* browser chrome */
.lp-ph__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 12px 10px;
  flex: none;
}

.lp-ph__url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-width: 0;
  padding: 7px 10px;
  border-radius: var(--pill);
  background: #18181c;
  color: #b6b6be;
  font-size: 0.6rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-ph__url .lp-i { width: 10px; height: 10px; flex: none; color: #6f6f78; }

.lp-ph__aff {
  flex: none;
  display: grid;
  place-items: center;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #18181c;
  color: #e6e6ea;
}

.lp-ph__aff .lp-i { width: 16px; height: 16px; }

.lp-ph__aff.is-live { color: #fff; background: #2a2a30; }

.lp-ph__aff.is-live::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  border: 2px solid #5fd39a;
  animation: lp-ph-ring 1.5s var(--ease) infinite;
}

@keyframes lp-ph-ring {
  0% { opacity: 0.9; transform: scale(0.7); }
  70% { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* profile card on screen */
.lp-ph__view {
  flex: 1;
  padding: 8px 14px 16px;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.lp-ph__view--dim { filter: brightness(0.5) saturate(0.8); }

.lp-ph__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #161619, #101012);
  padding: 14px;
}

.lp-ph__card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-ph__avatar {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
}
.lp-ph__avatar svg { width: 100%; height: 100%; display: block; }

.lp-ph__id { display: grid; min-width: 0; line-height: 1.2; }
.lp-ph__id b { font-size: 0.66rem; font-weight: 700; color: #f4f4f6; }
.lp-ph__id span { font-size: 0.56rem; color: #67676e; }

.lp-ph__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 3px 7px;
  border-radius: var(--pill);
  background: rgba(95, 211, 154, 0.12);
  color: #5fd39a;
  font-size: 0.52rem;
  font-weight: 700;
}
.lp-ph__live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5fd39a;
  animation: lp-ph-pulse 1.8s var(--ease) infinite;
}

@keyframes lp-ph-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(95, 211, 154, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(95, 211, 154, 0); }
}

.lp-ph__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 8px 12px;
}

.lp-ph__glyph {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #b79ae6;
  background: rgba(183, 154, 230, 0.12);
}
.lp-ph__glyph .lp-i { width: 22px; height: 22px; }

.lp-ph__status p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #f4f4f6;
}

/* iOS share sheet + Android menu rows */
.lp-ph__stage--over { justify-content: flex-end; }

.lp-ph__sheet {
  position: relative;
  margin: 0 6px 6px;
  padding: 10px 10px 14px;
  border-radius: 22px;
  background: #1c1c20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  animation: lp-ph-rise 0.42s var(--ease);
}

@keyframes lp-ph-rise {
  from { transform: translateY(60%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lp-ph__grip {
  display: block;
  width: 34px;
  height: 4px;
  margin: 2px auto 12px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.22);
}

.lp-ph__sheet-app {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-ph__sficon {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #050506;
  overflow: hidden;
}
.lp-ph__sficon svg { width: 80%; height: 80%; display: block; }

.lp-ph__opts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.lp-ph__opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #e6e6ea;
}

.lp-ph__opt .lp-ph__opt-i {
  margin-left: auto;
  display: grid;
  place-items: center;
  color: #9a9aa2;
}
.lp-ph__opt-i .lp-i { width: 16px; height: 16px; }

.lp-ph__opt.is-target {
  position: relative;
  background: #2a2a30;
  color: #fff;
}
.lp-ph__opt.is-target .lp-ph__opt-i { color: #fff; }

.lp-ph__menu {
  list-style: none;
  position: absolute;
  top: 38px;
  right: 10px;
  width: 64%;
  margin: 0;
  padding: 6px;
  border-radius: 14px;
  background: #1c1c20;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
  transform-origin: top right;
  animation: lp-ph-zoom 0.34s var(--ease);
}

@keyframes lp-ph-zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lp-ph__tap {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: lp-ph-tap 1.4s var(--ease) 0.25s infinite;
}

@keyframes lp-ph-tap {
  0% { transform: scale(0); opacity: 0.7; }
  40% { transform: scale(1); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* home screen */
.lp-ph__stage--home {
  background:
    radial-gradient(120% 80% at 50% 0%, #2a2540, #0a0a0c 70%);
  padding: 44px 18px 16px;
  gap: 14px;
}

.lp-ph__home-clock {
  text-align: center;
  display: grid;
  gap: 2px;
  margin-bottom: 4px;
}
.lp-ph__home-clock b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
}
.lp-ph__home-clock span { font-size: 0.62rem; color: #c8c8d0; }

.lp-ph__home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 12px;
  flex: 1;
  align-content: start;
}

.lp-ph__app {
  position: relative;
  aspect-ratio: 1;
  border-radius: 13px;
  background: var(--c, #3a3a40);
}

.lp-ph__app--sf {
  background: transparent;
  overflow: visible;
}
.lp-ph__app--sf .lp-ph__sficon {
  width: 100%;
  height: 100%;
  border-radius: 13px;
}
.lp-ph__app--sf small {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  font-size: 0.52rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.lp-ph__app--sf.is-pop {
  animation: lp-ph-pop 0.6s var(--ease) both;
}
.lp-ph__app--sf.is-pop::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: lp-ph-ring 1.4s var(--ease) 0.3s 2;
}

@keyframes lp-ph-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

.lp-ph__dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lp-ph__dock .lp-ph__app { border-radius: 12px; }

/* ---- faq -------------------------------------------------------------- */

.lp-faq__list {
  max-width: 44rem;
  margin: clamp(28px, 4vw, 44px) auto 0;
  border-top: 1px solid var(--line);
}

.lp-faq__item { border-bottom: 1px solid var(--line); }

.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
}

.lp-faq__chev {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lp-faq__chev .lp-i { width: 16px; height: 16px; }

.lp-faq__item.is-open .lp-faq__chev {
  transform: rotate(180deg);
  color: var(--ink);
  border-color: var(--line-strong);
}

.lp-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s var(--ease);
}
.lp-faq__a > div { overflow: hidden; }
.lp-faq__item.is-open .lp-faq__a { grid-template-rows: 1fr; }

.lp-faq__a p {
  margin: 0;
  padding: 0 4px 24px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---- reduced motion --------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .lp__float,
  .lp-card::after,
  .lp-hero__scroll .lp-i,
  .lp-card__live .lp-livedot { animation: none !important; }

  .lp__float { opacity: 0.18; }

  .lp-reveal { opacity: 1 !important; transform: none !important; }

  .lp-atmos { transition: none; }

  .lp-ph__stage,
  .lp-ph__sheet,
  .lp-ph__menu,
  .lp-ph__app--sf.is-pop,
  .lp-ph__tap,
  .lp-ph__aff.is-live::after,
  .lp-ph__app--sf.is-pop::after,
  .lp-ph__live i { animation: none !important; }

  .lp-ph__tap { display: none; }
}
