/* ============================================================
   Landing — "word-trail · ring" narrative (ported from
   design-mockups/landing-cartridge-v7.html). All rules are
   scoped under .lp so the mockup's generic class names
   (.chip, .ticket, .cart, .plate, .lab, .display, .mono) never
   collide with the app's global component classes.
   ============================================================ */

/* literal dark values (not the --bd-* tokens) + a solid dark backdrop so the
   landing stays the intended dark narrative even when the app is in light
   mode (data-theme="light" flips the tokens, but never these). */
.lp {
  --bg: #0e0e11;
  --white: #f2f0ea;
  --w60: rgba(242, 240, 234, 0.6);
  --w35: rgba(242, 240, 234, 0.35);
  --line: rgba(242, 240, 234, 0.1);
  --cream: #efe9dc;
  --idea: #ff6a1f;
  position: relative;
  color: var(--white);
  background: #0e0e11;
  font: 400 16px/1.6 var(--font-sans-app), sans-serif;
}

.lp .display {
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(180deg, #fbfaf6 0%, #f2f0ea 40%, #a8a49a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lp .display em {
  font-style: normal;
  background: linear-gradient(180deg, #ff8a3d 0%, #ff6a1f 46%, #bd430a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp .mono {
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lp a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------------------------ cta button */
.lp .btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #c8460a, #ff6a1f 60%, #ff8b42);
  box-shadow:
    0 10px 26px -10px rgba(255, 106, 31, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.18s;
}
.lp .btn-ticket:hover {
  filter: brightness(1.07);
}
.lp .btn-ticket:active {
  transform: scale(0.96);
}
.lp .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(242, 240, 234, 0.16);
  background: rgba(242, 240, 234, 0.04);
  transition:
    border-color 0.2s,
    background-color 0.2s;
}
.lp .btn-ghost:hover {
  border-color: rgba(242, 240, 234, 0.4);
}

/* ------------------------------------------------ top bar (scrolls with hero) */
.lp .lp-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(16px, 4vw, 48px);
}
.lp .lp-top .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.lp .lp-top nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lp .lp-top a.link {
  font-size: 14px;
  color: var(--w60);
  transition: color 0.2s;
}
.lp .lp-top a.link:hover {
  color: var(--white);
}

/* ------------------------------------------------ hero */
.lp .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
}
.lp .hero .kicker {
  color: var(--w35);
}
.lp .hero h1 {
  font-size: clamp(58px, 8.6vw, 136px);
  margin: 26px 0 18px;
}
/* the hero title does NOT clip at the h1 level: the animated .loud carries
   its own background-clip:text, and nesting a transformed clipped child in a
   clipped parent makes Chrome paint the word twice. Each static run clips
   itself via .g instead. */
.lp .hero-title {
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}
.lp .hero-title .g {
  background: linear-gradient(180deg, #fbfaf6 0%, #f2f0ea 40%, #a8a49a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lp .loud {
  display: inline-block;
  transform-origin: bottom center;
  will-change: transform;
  background: linear-gradient(180deg, #fbfaf6 0%, #f2f0ea 40%, #a8a49a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: lp-loudstretch 7s cubic-bezier(0.5, 0, 0.15, 1) infinite;
}
@keyframes lp-loudstretch {
  0% { transform: scaleY(1); }
  10% { transform: scaleY(1.7); }
  34% { transform: scaleY(1.7); }
  44% { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .lp .loud { animation: none; }
}
.lp .hero p.sub {
  color: var(--w60);
  font-size: 19px;
  max-width: 42ch;
  margin: 0 auto;
}
.lp .hero .hero-cta {
  margin-top: 34px;
}
.lp .scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--w35);
}
.lp .scroll-cue svg {
  width: 24px;
  height: 38px;
  display: block;
}
.lp .scroll-cue .wheel {
  animation: lp-wheel 1.7s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes lp-wheel {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  70% { transform: translateY(8px); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp .scroll-cue .wheel { animation: none; }
}

/* floating field of "loud" thoughts */
.lp .thought-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: clip;
}
.lp .chip {
  position: absolute;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 13.5px;
  white-space: nowrap;
  will-change: transform;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.85);
}
.lp .chip.lite {
  background: #f4f2ea;
  color: #17130f;
  font-weight: 500;
}
.lp .chip.dark {
  background: rgba(28, 28, 33, 0.6);
  border: 1px solid var(--line);
  color: var(--w60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp .chip.blur1 { filter: blur(1.5px); opacity: 0.75; }
.lp .chip.blur2 { filter: blur(3px); opacity: 0.45; transform: scale(0.9); }
.lp .hero-inner { position: relative; z-index: 2; }

/* ------------------------------------------------ pain (pin) */
.lp .pain {
  position: relative;
  height: 100vh;
  overflow: clip;
  z-index: 2;
}
.lp .pain .line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.lp .pain .line h2 {
  font-size: clamp(34px, 5.6vw, 76px);
  max-width: 18ch;
}
.lp .pain .line .mono {
  position: absolute;
  top: calc(50% - 120px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--idea);
}
.lp .pain .decor { position: absolute; inset: 0; pointer-events: none; }

/* pain 01: mac windows/tabs */
.lp .macwin {
  position: absolute;
  width: 232px;
  border-radius: 12px;
  overflow: hidden;
  will-change: transform;
  background: rgba(28, 28, 33, 0.66);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.9);
}
.lp .macwin .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 234, 0.05);
}
.lp .macwin .bar i { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.lp .macwin .bar i:nth-of-type(1) { background: #ff5f57; }
.lp .macwin .bar i:nth-of-type(2) { background: #febc2e; }
.lp .macwin .bar i:nth-of-type(3) { background: #28c840; }
.lp .macwin .bar span {
  margin-left: 6px;
  font-size: 10.5px;
  color: var(--w35);
  white-space: nowrap;
  overflow: hidden;
}
.lp .macwin .rows { padding: 11px 12px 13px; display: grid; gap: 8px; }
.lp .macwin .rows b { display: block; height: 7px; border-radius: 4px; background: rgba(242, 240, 234, 0.12); }
.lp .macwin .rows b:nth-child(2) { width: 72%; }
.lp .macwin .mailrow {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.05);
}
.lp .macwin .mailrow:last-child { border-bottom: 0; }
.lp .macwin .mailrow i { width: 7px; height: 7px; border-radius: 50%; background: rgba(242, 240, 234, 0.14); flex-shrink: 0; }
.lp .macwin .mailrow.unread i { background: var(--idea); }
.lp .macwin .mailrow div { flex: 1; min-width: 0; }
.lp .macwin .mailrow b { display: block; height: 6px; border-radius: 3px; background: rgba(242, 240, 234, 0.1); margin-bottom: 4px; }
.lp .macwin .mailrow b:last-child { width: 58%; background: rgba(242, 240, 234, 0.07); margin-bottom: 0; }
.lp .macwin .mailrow.unread b:first-child { background: rgba(242, 240, 234, 0.28); }
.lp .macwin .tabstrip { display: flex; gap: 3px; padding: 7px 9px 0; background: rgba(242, 240, 234, 0.04); }
.lp .macwin .tabstrip span {
  flex: 1;
  height: 17px;
  border-radius: 6px 6px 0 0;
  background: rgba(242, 240, 234, 0.06);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  min-width: 0;
}
.lp .macwin .tabstrip span.act { background: rgba(242, 240, 234, 0.14); }
.lp .macwin .tabstrip i { width: 5px; height: 5px; border-radius: 50%; background: rgba(242, 240, 234, 0.28); flex-shrink: 0; }
.lp .macwin .tabstrip span.act i { background: var(--idea); }
.lp .macwin .tabstrip em { font-style: normal; font-size: 8.5px; color: var(--w35); white-space: nowrap; overflow: hidden; }
.lp .macwin .urlbar {
  margin: 7px 10px 4px;
  height: 15px;
  border-radius: 8px;
  background: rgba(242, 240, 234, 0.06);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
}
.lp .macwin .urlbar u { width: 6px; height: 6px; border: 1.2px solid rgba(242, 240, 234, 0.25); border-radius: 2px; flex-shrink: 0; }
.lp .macwin .urlbar b { width: 52%; height: 5px; border-radius: 3px; background: rgba(242, 240, 234, 0.13); }
.lp .mactab {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 10px;
  border-radius: 11px 11px 3px 3px;
  will-change: transform;
  font-size: 11.5px;
  color: var(--w60);
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(33, 32, 39, 0.85), rgba(23, 22, 28, 0.72));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.85);
}
.lp .mactab i { width: 8px; height: 8px; border-radius: 50%; background: rgba(242, 240, 234, 0.3); flex-shrink: 0; }
.lp .mactab b { font-weight: 500; color: var(--w35); margin-left: 6px; }
.lp .mactab.on i { background: var(--idea); }

/* pain 02: bulbs + skulls */
.lp .bulb { position: absolute; width: var(--s, 56px); color: rgba(242, 240, 234, 0.62); will-change: transform; }
.lp .bulb svg { width: 100%; height: auto; display: block; }
.lp .bulb.hot { color: var(--idea); filter: drop-shadow(0 0 18px rgba(255, 106, 31, 0.35)); }
.lp .bulb.faint { color: rgba(242, 240, 234, 0.38); filter: blur(1px); }
.lp .bulb.ghost { color: rgba(242, 240, 234, 0.24); filter: blur(2px); }
.lp .skull { position: absolute; width: var(--s, 44px); color: rgba(242, 240, 234, 0.42); will-change: transform; }
.lp .skull svg { width: 100%; height: auto; display: block; }
.lp .skull.faint { color: rgba(242, 240, 234, 0.3); filter: blur(1px); }
.lp .skull.ghost { color: rgba(242, 240, 234, 0.18); filter: blur(2px); }

/* pain 03: note apps */
.lp .appbox {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  will-change: transform;
  background: #f4f2ea;
  box-shadow:
    0 20px 40px -18px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.lp .appbox svg { width: 26px; height: 26px; color: #1b1712; }

/* ------------------------------------------------ turn */
.lp .turn {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
  z-index: 2;
  background: var(--bg);
}
.lp .turn h2 { font-size: clamp(40px, 6.4vw, 92px); max-width: 16ch; }
.lp .turn h2 em { font-style: normal; color: var(--idea); }
.lp .turn .glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(50% 40% at 50% 55%, rgba(255, 106, 31, 0.14), transparent 70%);
  opacity: 0;
}

/* ------------------------------------------------ trail */
.lp .trail { position: relative; height: 100vh; overflow: clip; z-index: 2; }
.lp .trail svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lp .trail .road { display: none; }
.lp .trail .words {
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 0.02em;
  fill: #f2f0ea;
}
.lp .trail .words .hi { fill: var(--idea); }

/* ------------------------------------------------ demo (pin) */
.lp .demo { position: relative; height: 100vh; overflow: clip; margin-top: -50vh; z-index: 3; }
.lp .demo .stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lp .bigstep { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* no clip at the h2 level — the span/em children carry their own gradients
   and are transformed independently (bigIn/bigOut animate x), which would
   double-paint under a clipped parent. */
.lp .bigstep h2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 60px);
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  font-size: clamp(40px, 7.6vw, 124px);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, filter;
}
.lp .bigstep h2 > * { flex: 1 1 0; min-width: 0; will-change: transform; }
.lp .bigstep h2 > :first-child { text-align: right; padding-right: clamp(230px, 18.5vw, 280px); }
.lp .bigstep h2 > :last-child { text-align: left; padding-left: clamp(230px, 18.5vw, 280px); }
.lp .bigstep h2 span {
  background: linear-gradient(180deg, #fbfaf6 0%, #f2f0ea 40%, #a8a49a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp .bigstep h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ff8a3d 0%, #ff6a1f 46%, #bd430a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 760px) {
  .lp .bigstep h2 {
    font-size: 34px;
    padding: 0 18px;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .lp .bigstep h2 > * { flex: 0 0 auto; text-align: center; padding: 0; }
  .lp .bigstep h2 > :first-child,
  .lp .bigstep h2 > :last-child { text-align: center; padding: 0; }
}

.lp .dock-wrap { width: min(360px, 86vw); will-change: transform, filter; }
.lp .dock { width: 100%; position: relative; will-change: transform; }
.lp .ticket {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 48%;
  bottom: -84px;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(180deg, #5c1c02 0%, #9c3305 34%, #e0540e 66%, #ff7a2e 86%, #ff9a4d 100%);
  box-shadow: 0 30px 60px -18px rgba(255, 106, 31, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transform: translateY(-84px);
}
.lp .ticket::before,
.lp .ticket::after { content: ""; position: absolute; bottom: 66px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); }
.lp .ticket::before { left: -8px; }
.lp .ticket::after { right: -8px; }
.lp .ticket svg { width: 24px; height: 24px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25)); }
.lp .cart {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 26, 31, 0.7) 0%, rgba(26, 26, 31, 0.52) 52%, rgba(30, 24, 20, 0.28) 100%);
  backdrop-filter: blur(26px) saturate(1.25);
  -webkit-backdrop-filter: blur(26px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 44px 90px -30px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.lp .plate {
  margin: 13px;
  border-radius: 20px;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #1d1b21 0%, #141216 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -18px 40px -24px rgba(255, 106, 31, 0.18),
    0 10px 26px -14px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lp #rings { width: 262px; height: 262px; display: block; max-width: 82%; }
.lp .plate .hint {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.38);
}
.lp .plate .hint b { color: var(--idea); font-weight: 700; }
.lp .caption { padding: 16px 24px 40px; }
.lp .caption h3 { font-family: var(--font-sans-app), sans-serif; font-weight: 700; font-size: 23px; }
.lp .caption p { color: rgba(242, 240, 234, 0.66); font-size: 13.5px; margin-top: 4px; }

.lp .snip { position: absolute; color: var(--w60); font-size: 13px; font-style: italic; opacity: 0; will-change: transform; white-space: nowrap; }

.lp .note-out {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(400px, 88vw);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform;
}
.lp .ncart {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 22, 27, 0.96) 0%, rgba(22, 22, 27, 0.92) 62%, rgba(22, 22, 27, 0.88) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 80px -28px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.lp .ncart .in { padding: 22px 24px 24px; position: relative; z-index: 2; }
.lp .ncart .lab {
  display: inline-block;
  background: rgba(255, 106, 31, 0.22);
  color: var(--idea);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-sans-app), sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp .ncart .meta { color: var(--w35); margin-left: 10px; }
.lp .ncart h3 { font-family: var(--font-sans-app), sans-serif; font-weight: 700; font-size: 22px; margin: 12px 0 10px; line-height: 1.2; }
.lp .ncart li { list-style: none; color: var(--w60); font-size: 14px; padding-left: 16px; position: relative; margin-bottom: 8px; }
.lp .ncart li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--idea); }
.lp .ncart .next { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 13px; color: var(--w35); }
.lp .ncart .bgicon { position: absolute; right: -14%; bottom: -26%; width: 56%; aspect-ratio: 1; color: var(--idea); opacity: 0.12; transform: rotate(-12deg); }
.lp .ncart .bgicon svg { width: 100%; height: 100%; }
.lp .nticket {
  position: relative;
  margin: -10px 26px 0;
  height: 46px;
  border-radius: 0 0 16px 16px;
  z-index: 0;
  background: linear-gradient(180deg, #9c3305, #ff6a1f 70%, #ff9a4d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 16px 32px -14px rgba(255, 106, 31, 0.5);
}
.lp .nticket .mono { color: rgba(255, 255, 255, 0.9); font-size: 9px; }
.lp .nticket svg { width: 14px; height: 14px; color: #fff; }

/* ------------------------------------------------ finale */
.lp .finale {
  position: relative;
  height: 100vh;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.lp .finale-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  filter: blur(50px);
  background: radial-gradient(60% 100% at 50% 118%, rgba(255, 122, 44, 0.6), rgba(255, 106, 31, 0.2) 40%, transparent 66%);
}
.lp .calm-wrap h2 { font-size: clamp(46px, 7.6vw, 116px); }
.lp .calm-wrap h2 em { font-style: normal; color: var(--idea); }
.lp .calm-wrap .vals { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-top: 44px; color: var(--w35); }
.lp .calm-wrap .vals span { display: flex; align-items: center; gap: 9px; }
.lp .calm-wrap .vals i { width: 5px; height: 5px; border-radius: 50%; background: var(--idea); }
.lp .beta-card {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  width: min(720px, 94vw);
  border-radius: 999px;
  padding: 12px 12px 12px 30px;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(180deg, rgba(28, 28, 33, 0.82), rgba(22, 22, 27, 0.7));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 70px -26px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.lp .beta-card .lead { flex-shrink: 0; text-align: left; }
.lp .beta-card h2 { font-family: var(--font-sans-app), sans-serif; font-weight: 900; font-size: 21px; line-height: 1.05; letter-spacing: -0.01em; white-space: nowrap; }
.lp .beta-card p { color: var(--w35); font-size: 12.5px; margin-top: 3px; }
.lp .beta-form { display: flex; gap: 8px; position: relative; z-index: 2; flex: 1; }
.lp .beta-form input {
  flex: 1;
  min-width: 0;
  background: rgba(242, 240, 234, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.lp .beta-form input::placeholder { color: var(--w35); }
.lp .beta-form input:focus { border-color: rgba(255, 106, 31, 0.5); }
.lp .beta-form .btn-ticket { flex-shrink: 0; }
@media (max-width: 720px) {
  .lp .beta-card { flex-direction: column; border-radius: 26px; padding: 26px; align-items: stretch; gap: 16px; }
  .lp .beta-card .lead { text-align: center; }
  .lp .beta-card h2 { font-size: 24px; }
  .lp .beta-form { flex-direction: column; }
}

/* ------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp .chip,
  .lp .appbox,
  .lp .snip,
  .lp .pain .decor { display: none; }
  .lp .ticket { transform: translateY(0); }
  .lp .note-out { position: static; transform: none; opacity: 1; margin: 60px auto 0; }
  .lp .demo { height: auto; padding: 90px 0; margin-top: 0; }
  .lp .demo .stage { position: static; display: flex; flex-direction: column; gap: 40px; align-items: center; }
  .lp .bigstep { display: none; }
}
