/* ============================================================
   Choisy landing page — public homepage only (.html-home-page)
   Brand tokens mirror choisy-mobile/src/theme/variables.scss
   Motion rules: transform/opacity only; everything gated behind
   .ld-anim (JS + motion allowed) or prefers-reduced-motion.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand palette (single source: mobile variables.scss) */
  --ld-ink: #4B1B5A;
  --ld-ink-shade: #42184f;
  --ld-ink-tint: #5d326b;
  --ld-ink-mid: #2d1848;
  --ld-teal: #0B8E87;
  --ld-teal-shade: #0a7d78;
  --ld-teal-tint: #239993;
  --ld-lime: #A6FF2E;
  --ld-lime-shade: #92e029;
  --ld-lime-tint: #b0ff4d;
  --ld-cta-text: #1a1a2e;
  --ld-cta-gradient: linear-gradient(135deg, #A6FF2E 0%, #7ed321 45%, #5cb818 100%);
  --ld-cta-gradient-hover: linear-gradient(135deg, #8be025 0%, #6bc41a 50%, #4da614 100%);
  --ld-cta-shadow: 0 6px 20px rgba(126, 211, 33, 0.25);
  --ld-cta-shadow-hover: 0 8px 28px rgba(126, 211, 33, 0.38);

  /* surfaces & text */
  --ld-bg: #120820;
  --ld-bg-deep: #0d0517;
  --ld-paper: #f5f2ea;
  --ld-text: #f4eff7;
  --ld-text-dim: rgba(244, 239, 247, 0.66);
  --ld-text-faint: rgba(244, 239, 247, 0.42);
  --ld-ink-text: #33203f;
  --ld-line: rgba(244, 239, 247, 0.12);

  /* type */
  --ld-font-display: 'Clash Display', 'Clash Display Fallback', ui-sans-serif, system-ui, sans-serif;
  --ld-font-body: 'General Sans', 'General Sans Fallback', ui-sans-serif, system-ui, sans-serif;
  --ld-fs-hero: clamp(2.75rem, 8vw, 6.75rem);
  --ld-fs-h2: clamp(2.1rem, 4.8vw, 4rem);
  --ld-fs-h3: clamp(1.6rem, 2.8vw, 2.4rem);
  --ld-fs-lead: clamp(1.05rem, 1.4vw, 1.25rem);
  --ld-fs-body: 1rem;
  --ld-fs-small: 0.875rem;
  --ld-fs-tiny: 0.75rem;

  /* layout */
  --ld-max: 1220px;
  --ld-nav-h: 76px;
  --ld-r-lg: 28px;
  --ld-r-md: 18px;
  --ld-r-sm: 12px;
  --ld-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Host page overrides (homepage only) ---------- */
html.html-home-page {
  background: var(--ld-bg);
  scroll-behavior: smooth;
  scroll-padding-top: var(--ld-nav-h);
}
html.html-home-page body {
  margin: 0;
  background: var(--ld-bg);
  color: var(--ld-text);
  font-family: var(--ld-font-body);
}
.html-home-page .master-wrapper-page > .header,
.html-home-page .header-menu {
  display: none !important;
}
.html-home-page .master-wrapper-content,
.html-home-page .master-column-wrapper,
.html-home-page .center-1,
.html-home-page .page.home-page,
.html-home-page .page-body {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  float: none;
  background: transparent;
}
@media (prefers-reduced-motion: reduce) {
  html.html-home-page { scroll-behavior: auto; }
}

/* ---------- 3. Landing base ---------- */
.landing {
  position: relative;
  font-family: var(--ld-font-body);
  font-size: var(--ld-fs-body);
  line-height: 1.6;
  color: var(--ld-text);
  text-align: left; /* the store theme centers text at narrow widths — be explicit */
  overflow-x: clip;
}
.landing *,
.landing *::before,
.landing *::after { box-sizing: border-box; }
.landing h1, .landing h2, .landing h3 {
  /* color inherits from .landing (or a light panel's own color context) */
  font-family: var(--ld-font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
.landing p { margin: 0; }
.landing a { color: inherit; text-decoration: none; }
.landing ul { margin: 0; padding: 0; list-style: none; }
.landing img, .landing svg { max-width: 100%; display: block; }

.ld-wrap {
  width: min(100% - 48px, var(--ld-max));
  margin-inline: auto;
}
.ld-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--ld-lime);
  color: var(--ld-cta-text);
  font-weight: 500;
  border-radius: 0 0 var(--ld-r-sm) 0;
}
.ld-skip:focus { left: 0; }

/* section labels speak the product's own video language: a timecode chip
   (same family as the clip-length badge in the phone mock) with a looping
   hairline progress bar underneath — the page reads as one continuous tape */
.ld-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ld-fs-tiny);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-text-dim);
}
.ld-eyebrow__tc {
  position: relative;
  overflow: hidden;
  flex: none;
  font-family: var(--ld-font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ld-lime);
  font-variant-numeric: tabular-nums;
  padding: 4px 9px 6px;
  border: 1px solid rgba(166, 255, 46, 0.32);
  border-radius: 8px;
  background: rgba(166, 255, 46, 0.07);
}
.ld-eyebrow__tc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: left;
}
.ld-anim .ld-eyebrow__tc::after { animation: ld-progress 3.25s linear infinite; }
.ld-lime { color: var(--ld-lime); }

/* ---------- 4. Buttons ---------- */
.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--ld-font-body);
  font-size: var(--ld-fs-body);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ld-ease), box-shadow 0.35s var(--ld-ease),
              background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.ld-btn--lime {
  background: var(--ld-cta-gradient);
  color: var(--ld-cta-text);
  box-shadow: var(--ld-cta-shadow);
}
.ld-btn--lime:hover {
  background: var(--ld-cta-gradient-hover);
  box-shadow: var(--ld-cta-shadow-hover);
  transform: translateY(-2px);
}
.ld-btn--ghost {
  border-color: var(--ld-line);
  color: var(--ld-text);
  background: rgba(244, 239, 247, 0.04);
}
.ld-btn--ghost:hover {
  border-color: var(--ld-teal-tint);
  color: var(--ld-lime);
  transform: translateY(-2px);
}
.ld-btn--teal {
  background: var(--ld-teal);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(11, 142, 135, 0.3);
}
.ld-btn--teal:hover {
  background: var(--ld-teal-shade);
  transform: translateY(-2px);
}
.ld-btn--pill {
  min-height: 42px;
  padding: 10px 22px;
  font-size: var(--ld-fs-small);
}

/* ---------- 5. Fixed backdrop layers ---------- */
.ld-bgwash,
.ld-bgwash__teal {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ld-bgwash {
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(75, 27, 90, 0.55) 0%, transparent 55%),
    radial-gradient(110% 80% at 85% 8%, rgba(45, 24, 72, 0.6) 0%, transparent 60%),
    radial-gradient(120% 100% at 50% 115%, rgba(11, 142, 135, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, var(--ld-bg) 0%, var(--ld-bg-deep) 100%);
}
.ld-bgwash__teal {
  opacity: 0;
  background:
    radial-gradient(120% 90% at 20% -5%, rgba(11, 142, 135, 0.34) 0%, transparent 55%),
    radial-gradient(130% 90% at 80% 110%, rgba(11, 142, 135, 0.3) 0%, transparent 60%),
    linear-gradient(200deg, #0e1d26 0%, var(--ld-bg-deep) 70%);
}
.ld-canvas-mount {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ld-canvas-mount canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.ld-canvas-mount.is-ready canvas { opacity: var(--ld-canvas-o, 1); }
.ld-grain {
  position: fixed;
  inset: -50%;
  z-index: 950;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* content sits above the fixed layers */
.ld-smooth { position: relative; z-index: 2; }
.ld-smooth-on .ld-smooth {
  position: fixed;
  inset: 0;
  overflow: hidden;
}
.ld-smooth-on .ld-smooth__content { will-change: transform; }

/* ---------- 6. Preloader ---------- */
.ld-preloader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--ld-bg-deep);
  transition: transform 0.9s var(--ld-ease), visibility 0s 0.9s;
}
.ld-preloader.is-active { display: flex; }
.ld-preloader.is-done {
  transform: translateY(-101%);
  visibility: hidden;
  pointer-events: none;
}
.ld-preloader__word {
  display: flex;
  overflow: hidden;
  font-family: var(--ld-font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-bottom: 0.12em;
}
.ld-preloader__word span {
  display: inline-block;
  transform: translateY(115%);
}
.is-active .ld-preloader__word span {
  animation: ld-rise 0.7s var(--ld-ease) forwards;
}
.ld-preloader__word span:nth-child(2) { animation-delay: 60ms; }
.ld-preloader__word span:nth-child(3) { animation-delay: 120ms; }
.ld-preloader__word span:nth-child(4) { animation-delay: 180ms; }
.ld-preloader__word span:nth-child(5) { animation-delay: 240ms; }
.ld-preloader__word span:nth-child(6) { animation-delay: 300ms; }
.ld-preloader__word span:nth-child(7) { animation-delay: 380ms; }
.ld-preloader__bar {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(220px, 40vw);
  height: 2px;
  transform: translateX(-50%);
  background: rgba(244, 239, 247, 0.12);
  overflow: hidden;
}
.ld-preloader__bar i {
  position: absolute;
  inset: 0;
  background: var(--ld-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s linear;
}
.ld-preloader__count {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: clamp(20px, 5vw, 48px);
  font-family: var(--ld-font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--ld-text-dim);
  font-variant-numeric: tabular-nums;
}
@keyframes ld-rise {
  to { transform: translateY(0); }
}
/* safety net: even if JS dies mid-preload, never trap the page */
.is-active.ld-preloader { animation: ld-preloader-bail 0.5s ease 4s forwards; }
.is-active.ld-preloader.is-done { animation: none; }
@keyframes ld-preloader-bail {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* while preloader is covering, hold hero intro animations */
.ld-intro-hold .ld-hero [class*="ld-intro"] { animation-play-state: paused !important; }

/* ---------- 7. Nav ---------- */
.ld-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ld-nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.ld-nav.is-scrolled {
  background: rgba(13, 5, 23, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--ld-line);
}
.ld-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ld-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--ld-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ld-text);
}
.ld-wordmark img {
  width: 30px;
  height: 30px;
  flex: none;
  margin-right: 9px;
}
.ld-wordmark i {
  font-style: normal;
  color: var(--ld-lime);
}
.ld-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}
.ld-nav__link {
  position: relative;
  font-size: var(--ld-fs-small);
  font-weight: 500;
  color: var(--ld-text-dim);
  padding: 10px 2px;
  transition: color 0.25s ease;
}
.ld-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--ld-lime);
  transition: right 0.35s var(--ld-ease);
}
.ld-nav__link:hover { color: var(--ld-text); }
.ld-nav__link:hover::after { right: 0; }
@media (max-width: 859px) {
  .ld-nav__links { display: none; }
}

/* ---------- 8. Hero ---------- */
.ld-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--ld-nav-h) + 40px) 0 80px;
}
.ld-hero__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ld-hero__glow::before,
.ld-hero__glow::after {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: none;
}
.ld-hero__glow::before {
  left: -18vmax;
  top: -22vmax;
  background: radial-gradient(circle, rgba(75, 27, 90, 0.5) 0%, transparent 62%);
  animation: ld-drift-a 46s ease-in-out infinite alternate;
}
.ld-hero__glow::after {
  right: -24vmax;
  bottom: -30vmax;
  background: radial-gradient(circle, rgba(11, 142, 135, 0.3) 0%, transparent 60%);
  animation: ld-drift-b 52s ease-in-out infinite alternate;
}
@keyframes ld-drift-a {
  to { transform: translate3d(9vmax, 6vmax, 0) scale(1.12); }
}
@keyframes ld-drift-b {
  to { transform: translate3d(-8vmax, -7vmax, 0) scale(1.08); }
}
.ld-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.ld-hero__copy { max-width: 640px; }
.ld-hero__title {
  font-size: var(--ld-fs-hero);
  margin: 22px 0 26px;
}
.ld-hero__title em { font-style: normal; }
.ld-hero__title .ld-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.09em;
  margin-bottom: -0.09em;
}
.ld-hero__title .ld-w > span { display: inline-block; }
.ld-anim .ld-hero__title .ld-w > span {
  transform: translateY(112%);
  animation: ld-rise 0.85s var(--ld-ease) forwards;
}
.ld-anim .ld-hero__title .ld-w--1 > span { animation-delay: 0.12s; }
.ld-anim .ld-hero__title .ld-w--2 > span { animation-delay: 0.19s; }
.ld-anim .ld-hero__title .ld-w--3 > span { animation-delay: 0.26s; }
.ld-anim .ld-hero__title .ld-w--4 > span { animation-delay: 0.33s; }
.ld-anim .ld-hero__title .ld-w--5 > span { animation-delay: 0.46s; }
.ld-anim .ld-hero__title .ld-w--6 > span { animation-delay: 0.53s; }
.ld-hero__sub {
  font-size: var(--ld-fs-lead);
  color: var(--ld-text-dim);
  max-width: 46ch;
}
.ld-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}
.ld-anim .ld-intro-fade {
  opacity: 0;
  animation: ld-fade-up 0.9s var(--ld-ease) forwards;
}
.ld-anim .ld-hero__sub.ld-intro-fade { animation-delay: 0.55s; }
.ld-anim .ld-hero__cta.ld-intro-fade { animation-delay: 0.7s; }
.ld-anim .ld-hero__eyebrow.ld-intro-fade { animation-delay: 0.05s; }
.ld-anim .ld-phone-wrap.ld-intro-fade { animation-delay: 0.45s; animation-duration: 1.1s; }
@keyframes ld-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.ld-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 1px;
  height: 56px;
  transform: translateX(-50%);
  overflow: hidden;
  background: rgba(244, 239, 247, 0.14);
}
.ld-scrollcue::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--ld-lime);
  animation: ld-cue 2.1s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes ld-cue {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* phone mockup */
.ld-phone-wrap {
  perspective: 1400px;
  justify-self: center;
}
.ld-phone {
  position: relative;
  width: clamp(240px, 24vw, 330px);
  aspect-ratio: 9 / 19.2;
  border-radius: 46px;
  background: linear-gradient(160deg, #241333, #120a1e);
  border: 1px solid rgba(244, 239, 247, 0.16);
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.7),
    0 0 90px -18px rgba(11, 142, 135, 0.38),
    0 0 140px -40px rgba(166, 255, 46, 0.22);
  transform: rotateY(-14deg) rotateX(5deg) rotateZ(1.5deg);
}
.ld-anim .ld-phone {
  animation: ld-float 7.5s ease-in-out infinite;
}
@keyframes ld-float {
  0%, 100% { transform: rotateY(-14deg) rotateX(5deg) rotateZ(1.5deg) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(4deg) rotateZ(1deg) translateY(-14px); }
}
.ld-phone::before {
  /* dynamic island */
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  border-radius: 999px;
  background: #08030d;
  z-index: 3;
}
.ld-phone::after {
  /* side button */
  content: "";
  position: absolute;
  right: -3px;
  top: 22%;
  width: 3px;
  height: 64px;
  border-radius: 2px;
  background: rgba(244, 239, 247, 0.22);
}
.ld-phone__screen {
  position: absolute;
  inset: 9px;
  border-radius: 38px;
  overflow: hidden;
  background: #0b0512;
}
.ld-feed { height: 100%; }
.ld-feed__track { height: 100%; }
.ld-anim .ld-feed__track {
  animation: ld-feed 13s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}
@keyframes ld-feed {
  0%, 21% { transform: translateY(0); }
  25%, 46% { transform: translateY(-100%); }
  50%, 71% { transform: translateY(-200%); }
  75%, 96% { transform: translateY(-300%); }
  100% { transform: translateY(-400%); }
}
.ld-clip {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 14px 18px;
  background: linear-gradient(200deg, var(--ld-ink) 0%, var(--ld-ink-mid) 55%, #10212b 100%);
}
.ld-clip--a { background: linear-gradient(200deg, #3a1f4e 0%, var(--ld-ink-mid) 50%, #0e2c33 100%); }
.ld-clip--b { background: linear-gradient(210deg, #5a2a45 0%, #33184a 55%, #101d3a 100%); }
.ld-clip--c { background: linear-gradient(195deg, #17323e 0%, #123a44 45%, #1c1233 100%); }
.ld-clip--d { background: linear-gradient(205deg, #45204f 0%, #232045 50%, #0f3336 100%); }
.ld-clip::before {
  /* simulated video shimmer */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(244, 239, 247, 0.07) 46%, transparent 62%);
  background-size: 260% 100%;
}
.ld-anim .ld-clip::before {
  animation: ld-shimmer 4.5s ease-in-out infinite;
}
@keyframes ld-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -60% 0; }
}
.ld-clip::after {
  /* bottom legibility scrim */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(8, 3, 13, 0.78));
}
.ld-clip__top,
.ld-clip__bottom { position: relative; z-index: 2; }
.ld-clip__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}
.ld-clip__avatar {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--ld-teal), var(--ld-ink-tint));
  border: 1px solid rgba(244, 239, 247, 0.35);
}
.ld-clip__name { font-weight: 500; line-height: 1.25; }
.ld-clip__name small {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--ld-text-dim);
}
.ld-clip__len {
  margin-left: auto;
  font-size: 0.6rem;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(8, 3, 13, 0.55);
  color: var(--ld-text-dim);
}
.ld-clip__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.ld-clip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 70%;
}
.ld-clip__tags i {
  font-style: normal;
  font-size: 0.62rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 247, 0.28);
  background: rgba(8, 3, 13, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.ld-clip__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 0.62rem;
  text-align: center;
}
.ld-clip__vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ld-lime);
  font-weight: 600;
}
.ld-clip__vote::before {
  content: "▲";
  font-size: 0.9rem;
}
.ld-clip__heart { color: var(--ld-text-dim); }
.ld-clip__heart::before { content: "♥"; font-size: 0.95rem; }
.ld-clip__bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: rgba(244, 239, 247, 0.18);
  overflow: hidden;
  z-index: 2;
}
.ld-clip__bar i {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: var(--ld-lime);
  transform: scaleX(0.35);
}
.ld-anim .ld-clip__bar i { animation: ld-progress 3.25s linear infinite; }
@keyframes ld-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- 9. Problem section ---------- */
.ld-problem {
  position: relative;
  padding: clamp(90px, 14vh, 150px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 5, 23, 0.72) 18%, rgba(13, 5, 23, 0.72) 82%, transparent 100%);
}
.ld-problem__stage {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ld-problem__rows {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}
.ld-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.ld-anim .ld-marquee { animation: ld-marquee 48s linear infinite; }
.ld-anim .ld-marquee--rev { animation-name: ld-marquee-rev; }
.ld-anim .ld-marquee--s1 { animation-duration: 52s; }
.ld-anim .ld-marquee--s2 { animation-duration: 38s; }
.ld-anim .ld-marquee--s3 { animation-duration: 62s; }
@keyframes ld-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ld-marquee-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.ld-marquee__seg {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
.ld-review {
  flex: none;
  width: 300px;
  padding: 16px 18px;
  border-radius: var(--ld-r-md);
  border: 1px solid var(--ld-line);
  background: rgba(24, 12, 36, 0.55);
  font-size: 0.82rem;
  color: var(--ld-text-dim);
  line-height: 1.45;
}
.ld-review__stars {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #c9a24a;
  margin-bottom: 8px;
}
.ld-review__stars b {
  letter-spacing: 0;
  font-weight: 500;
  color: var(--ld-text-faint);
}
.ld-review__meta {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  color: var(--ld-text-faint);
}
.ld-problem__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}
.ld-problem__copy::before {
  /* soft scrim so the pinned copy stays readable over the review wall */
  content: "";
  position: absolute;
  inset: -22% -14%;
  z-index: -1;
  background: radial-gradient(58% 58% at 50% 50%, rgba(13, 5, 23, 0.86) 0%, rgba(13, 5, 23, 0.55) 55%, transparent 100%);
  pointer-events: none;
}
.ld-problem__lead {
  font-size: var(--ld-fs-lead);
  color: var(--ld-text-dim);
  max-width: 54ch;
  margin: 18px auto 0;
}
.ld-problem__punch {
  font-size: var(--ld-fs-h2);
  margin-top: 34px;
}
.ld-problem__punch .ld-lime { display: inline-block; }

/* ---------- 10. Modes (horizontal on desktop) ---------- */
.ld-modes { position: relative; }
.ld-modes__head {
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 7vh, 80px);
  max-width: 820px;
}
.ld-modes__head h2 { font-size: var(--ld-fs-h2); margin: 22px 0 18px; }
.ld-modes__head p {
  font-size: var(--ld-fs-lead);
  color: var(--ld-text-dim);
  max-width: 52ch;
}
.ld-modes__track { display: flex; flex-direction: column; }
.ld-panel {
  position: relative;
  padding: clamp(48px, 8vh, 90px) 0;
}
.ld-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 1024px) {
  .ld-panel__inner--flip .ld-mock { order: -1; }
}
.ld-panel__num {
  font-family: var(--ld-font-display);
  font-size: var(--ld-fs-small);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ld-text-faint);
}
.ld-panel h3 {
  font-size: var(--ld-fs-h3);
  margin: 14px 0 6px;
}
.ld-panel__tag {
  font-family: var(--ld-font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  margin-bottom: 18px;
}
.ld-panel__body {
  color: var(--ld-text-dim);
  max-width: 44ch;
  font-size: var(--ld-fs-lead);
}
.ld-panel--show .ld-panel__tag { color: var(--ld-teal-tint); }
.ld-panel--decide .ld-panel__tag { color: var(--ld-ink-tint); }
.ld-panel--walk .ld-panel__tag { color: var(--ld-lime); }

/* desktop horizontal mode (JS adds .is-h) */
@media (min-width: 1024px) {
  .ld-modes.is-h .ld-modes__pin {
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .ld-modes.is-h .ld-modes__track {
    flex-direction: row;
    width: max-content;
    will-change: transform;
  }
  .ld-modes.is-h .ld-panel {
    width: 100vw;
    flex: none;
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 100vh;
    min-height: 100svh;
  }
}
.ld-modes__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 5;
}
.ld-modes.is-h .ld-modes__dots { display: flex; }
.ld-modes__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 239, 247, 0.22);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.ld-modes__dots i.is-on {
  background: var(--ld-lime);
  transform: scale(1.25);
}

/* chat bubble enters first, then the moment cards */
.ld-anim .ld-panel--show .ld-chat__q {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.6s var(--ld-ease);
}
.ld-anim .ld-panel--show.is-active .ld-chat__q {
  opacity: 1;
  transform: none;
}

/* mode mocks — shared card look */
.ld-mock {
  position: relative;
  border-radius: var(--ld-r-lg);
  border: 1px solid var(--ld-line);
  background: linear-gradient(170deg, rgba(36, 19, 51, 0.75), rgba(13, 5, 23, 0.85));
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.65);
}
.ld-mock__label {
  font-size: var(--ld-fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-text-faint);
  margin-bottom: 18px;
}

/* chat mock (Show Me) */
.ld-chat__q {
  margin-left: auto;
  width: fit-content;
  max-width: 90%;
  padding: 12px 18px;
  border-radius: 18px 18px 4px 18px;
  background: var(--ld-teal);
  color: #ffffff;
  font-size: 0.95rem;
}
.ld-chat__moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ld-moment {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: var(--ld-r-sm);
  overflow: hidden;
  background: linear-gradient(190deg, var(--ld-ink-tint), var(--ld-ink-mid));
  border: 1px solid rgba(244, 239, 247, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  transition: transform 0.6s var(--ld-ease), opacity 0.6s ease;
}
.ld-moment::before {
  content: "▶";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.55rem;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 3, 13, 0.5);
  color: var(--ld-text);
}
.ld-moment::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 3, 13, 0.8));
}
.ld-moment b, .ld-moment small { position: relative; z-index: 2; }
.ld-moment b {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}
.ld-moment small {
  font-size: 0.62rem;
  color: var(--ld-text-dim);
  line-height: 1.35;
}
.ld-moment--a { background: linear-gradient(190deg, #4a2a5c, #232045); }
.ld-moment--b { background: linear-gradient(200deg, #14424b, #1c1233); }
.ld-moment--c { background: linear-gradient(185deg, #52355c, #123a44); }
.ld-anim .ld-panel--show .ld-moment {
  opacity: 0;
  transform: translateY(26px) rotate(2deg);
}
.ld-anim .ld-panel--show.is-active .ld-moment {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}
.ld-anim .ld-panel--show.is-active .ld-moment:nth-child(2) { transition-delay: 0.32s; }
.ld-anim .ld-panel--show.is-active .ld-moment:nth-child(3) { transition-delay: 0.46s; }

/* compare mock (Help Me Decide) */
.ld-compare { overflow: hidden; }
.ld-compare__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  font-size: 0.85rem;
}
.ld-compare__grid > div {
  padding: 12px 10px;
  border-bottom: 1px solid var(--ld-line);
}
.ld-compare__grid > div:nth-child(3n + 1) {
  color: var(--ld-text-faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  align-self: center;
}
.ld-compare__head {
  font-family: var(--ld-font-display);
  font-weight: 600;
  font-size: 0.95rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ld-text) !important;
}
.ld-compare__thumb {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: linear-gradient(150deg, var(--ld-ink-tint), var(--ld-teal-shade));
}
.ld-compare__thumb--a { background: linear-gradient(150deg, #6b3a2a, #45204f); }
.ld-compare__thumb--b { background: linear-gradient(150deg, #2a4a5c, #33203f); }
.ld-compare__row-win { color: var(--ld-lime); font-weight: 500; }
.ld-compare__verdict {
  margin: 18px -6px -6px;
  padding: 13px 18px;
  border-radius: var(--ld-r-sm);
  background: var(--ld-cta-gradient);
  color: var(--ld-cta-text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.7s var(--ld-ease), opacity 0.5s ease;
}
.ld-anim .ld-panel--decide .ld-compare__verdict {
  opacity: 0;
  transform: translateX(-110%);
}
.ld-anim .ld-panel--decide.is-active .ld-compare__verdict {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

/* walk mock (Walk With Me) */
.ld-walk { min-height: 320px; }
.ld-walk svg { width: 100%; height: auto; }
.ld-walk__path {
  fill: none;
  stroke: var(--ld-lime);
  stroke-width: 2.5;
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  opacity: 0.9;
}
.ld-walk__path--draw {
  fill: none;
  stroke: rgba(166, 255, 46, 0.35);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
/* vertical (stacked) mode draws the path with a class transition;
   horizontal mode scrubs stroke-dashoffset from JS instead */
.ld-modes:not(.is-h) .ld-panel--walk.is-active .ld-walk__path--draw {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.8s var(--ld-ease) 0.3s;
}
.ld-walk__dot { fill: var(--ld-lime); }
.ld-walk__pin { fill: var(--ld-teal-tint); }
.ld-walk__ping {
  position: absolute;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--ld-line);
  background: rgba(13, 5, 23, 0.88);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ld-text);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
  transition: transform 0.55s var(--ld-ease), opacity 0.45s ease;
}
.ld-walk__ping b { color: var(--ld-lime); font-weight: 600; }
.ld-walk__ping[data-ping="1"] { left: 8%; bottom: 34%; }
.ld-walk__ping[data-ping="2"] { left: 38%; top: 18%; }
.ld-walk__ping[data-ping="3"] { right: 4%; top: 34%; }
.ld-anim .ld-panel--walk .ld-walk__ping {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
}
.ld-anim .ld-panel--walk.is-active .ld-walk__ping {
  opacity: 1;
  transform: none;
}
.ld-anim .ld-panel--walk.is-active .ld-walk__ping:nth-of-type(2) { transition-delay: 0.5s; }
.ld-anim .ld-panel--walk.is-active .ld-walk__ping:nth-of-type(3) { transition-delay: 1s; }

/* ---------- 11. Taste Twins ---------- */
.ld-twins {
  position: relative;
  padding: clamp(100px, 15vh, 170px) 0;
  text-align: center;
}
.ld-twins h2 { font-size: var(--ld-fs-h2); margin: 22px auto 18px; max-width: 16ch; }
.ld-twins__sub {
  font-size: var(--ld-fs-lead);
  color: var(--ld-text-dim);
  max-width: 52ch;
  margin: 0 auto;
}
.ld-twins__viz {
  position: relative;
  max-width: 720px;
  margin: clamp(40px, 6vh, 70px) auto 0;
}
.ld-twins__viz svg { width: 100%; height: auto; }
.ld-twins__link-line {
  fill: none;
  stroke: var(--ld-lime);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.85;
}
.ld-anim .ld-twins.is-active .ld-twins__link-line {
  transition: stroke-dashoffset 1.4s var(--ld-ease) 0.2s;
  stroke-dashoffset: 0;
}
.ld-twins__dot { fill: var(--ld-ink-tint); }
.ld-twins__dot--t { fill: var(--ld-teal-tint); }
.ld-twins__dot--l { fill: var(--ld-lime); }
.ld-twins__cluster { transition: transform 1.4s var(--ld-ease) 0.15s; }
.ld-anim .ld-twins:not(.is-active) #ld-twins-a { transform: translateX(-26px); }
.ld-anim .ld-twins:not(.is-active) #ld-twins-b { transform: translateX(26px); }
.ld-twins__match {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(166, 255, 46, 0.5);
  background: rgba(13, 5, 23, 0.9);
  font-family: var(--ld-font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ld-lime);
  white-space: nowrap;
  box-shadow: 0 0 60px -10px rgba(166, 255, 46, 0.35);
}
.ld-twins__match small {
  display: block;
  font-family: var(--ld-font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-text-dim);
}

/* ---------- 12. Stats strip ---------- */
.ld-stats {
  border-top: 1px solid var(--ld-line);
  border-bottom: 1px solid var(--ld-line);
  background: rgba(13, 5, 23, 0.5);
}
.ld-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(44px, 7vh, 72px) 0;
  text-align: center;
}
.ld-stat b {
  display: block;
  font-family: var(--ld-font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--ld-lime);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.ld-stat span {
  display: block;
  margin-top: 6px;
  font-size: var(--ld-fs-small);
  color: var(--ld-text-dim);
}

/* ---------- 13. For businesses (light) ---------- */
.ld-business { padding: clamp(90px, 13vh, 150px) 0; }
.ld-business__panel {
  position: relative;
  border-radius: calc(var(--ld-r-lg) + 8px);
  background: var(--ld-paper);
  color: var(--ld-ink-text);
  padding: clamp(44px, 6vw, 90px);
  overflow: hidden;
}
.ld-business__panel::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 142, 135, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.ld-business__panel > * { position: relative; } /* keep content above the decorative orb */
.ld-business .ld-eyebrow { color: rgba(51, 32, 63, 0.62); }
.ld-business .ld-eyebrow__tc {
  color: var(--ld-teal-shade);
  border-color: rgba(11, 142, 135, 0.35);
  background: rgba(11, 142, 135, 0.08);
}
.ld-business h2 {
  color: var(--ld-ink-mid);
  font-size: var(--ld-fs-h2);
  margin: 20px 0 16px;
  max-width: 14ch;
}
.ld-business__sub {
  font-size: var(--ld-fs-lead);
  max-width: 52ch;
  color: rgba(51, 32, 63, 0.78);
}
.ld-business__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: clamp(36px, 5vh, 56px) 0;
}
.ld-bizcard {
  border-radius: var(--ld-r-md);
  background: #ffffff;
  border: 1px solid rgba(51, 32, 63, 0.1);
  padding: 26px 24px;
  box-shadow: 0 20px 45px -30px rgba(51, 32, 63, 0.35);
}
.ld-bizcard i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 142, 135, 0.12);
  color: var(--ld-teal-shade);
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.ld-bizcard b {
  display: block;
  font-family: var(--ld-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ld-ink-mid);
  margin-bottom: 8px;
}
.ld-bizcard p { font-size: 0.92rem; line-height: 1.55; color: rgba(51, 32, 63, 0.72); }
.ld-business__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.ld-business__cta small { color: rgba(51, 32, 63, 0.6); font-size: var(--ld-fs-small); }

/* ---------- 14. Final CTA ---------- */
.ld-cta {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.ld-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 50% 110%, rgba(11, 142, 135, 0.35) 0%, transparent 60%),
    radial-gradient(70% 55% at 50% -10%, rgba(75, 27, 90, 0.5) 0%, transparent 65%);
  pointer-events: none;
}
.ld-cta__inner {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: 120px 0;
}
.ld-cta h2 {
  font-size: var(--ld-fs-h2);
  max-width: 20ch;
  margin: 22px auto 18px;
}
.ld-cta__sub {
  font-size: var(--ld-fs-lead);
  color: var(--ld-text-dim);
}
.ld-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.ld-cta__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.ld-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--ld-line);
  color: var(--ld-text-dim);
  font-size: 0.8rem;
  line-height: 1.2;
  transition: border-color 0.25s ease, color 0.25s ease;
  cursor: default;
}
.ld-badge b {
  display: block;
  font-size: 0.95rem;
  color: var(--ld-text);
  font-weight: 500;
}
.ld-badge svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.ld-badge:hover { border-color: rgba(244, 239, 247, 0.3); }
.ld-badge small { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- 15. Footer ---------- */
.ld-footer {
  position: relative;
  background: var(--ld-bg-deep);
  border-top: 2px solid var(--ld-lime);
  padding: clamp(56px, 8vh, 90px) 0 36px;
  font-size: var(--ld-fs-small);
}
.ld-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.ld-footer__brand p {
  margin-top: 14px;
  color: var(--ld-text-dim);
  max-width: 26ch;
}
.ld-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.ld-footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ld-line);
  color: var(--ld-text-dim);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ld-footer__social a:hover {
  border-color: var(--ld-lime);
  color: var(--ld-lime);
  transform: translateY(-2px);
}
.ld-footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.ld-footer__col b {
  display: block;
  font-family: var(--ld-font-display);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--ld-text);
}
.ld-footer__col li { margin-bottom: 10px; }
.ld-footer__col a {
  color: var(--ld-text-dim);
  transition: color 0.2s ease;
}
.ld-footer__col a:hover { color: var(--ld-lime); }
.ld-footer__lang { margin-top: 24px; }
.ld-footer__lang select,
.ld-footer .language-selector select {
  background: rgba(244, 239, 247, 0.06);
  border: 1px solid var(--ld-line);
  color: var(--ld-text);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--ld-font-body);
  font-size: var(--ld-fs-small);
}
.ld-footer .language-selector ul { display: flex; gap: 10px; }
.ld-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(40px, 6vh, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--ld-line);
  color: var(--ld-text-faint);
  font-size: var(--ld-fs-tiny);
}

/* ---------- 16. Reveal-on-scroll primitives ---------- */
.ld-anim [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
.ld-anim [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.9s var(--ld-ease);
  transition-delay: var(--rd, 0s);
}
.ld-anim .ld-business__cards [data-reveal]:nth-child(2),
.ld-anim .ld-stats__grid [data-reveal]:nth-child(2) { --rd: 0.12s; }
.ld-anim .ld-business__cards [data-reveal]:nth-child(3),
.ld-anim .ld-stats__grid [data-reveal]:nth-child(3) { --rd: 0.24s; }

/* ---------- 17. Custom cursor ---------- */
.ld-cursor-on,
.ld-cursor-on a,
.ld-cursor-on button { cursor: none; }
.ld-cursor-dot,
.ld-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  pointer-events: none;
  border-radius: 50%;
  display: none;
}
.ld-cursor-on .ld-cursor-dot,
.ld-cursor-on .ld-cursor-ring { display: block; }
.ld-cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--ld-lime);
}
.ld-cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1.5px solid rgba(166, 255, 46, 0.55);
  transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}
.ld-cursor-ring.is-hot {
  background: rgba(166, 255, 46, 0.16);
  transform: scale(1.45);
}

/* ---------- 18. Responsive ---------- */
@media (max-width: 1023px) {
  .ld-hero__grid { grid-template-columns: 1fr; }
  .ld-hero__copy {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }
  .ld-hero__cta { justify-content: center; }
  .ld-phone-wrap { margin-top: 12px; }
  .ld-modes__head { text-align: center; margin-inline: auto; }
  .ld-modes__head p { margin-inline: auto; }
  .ld-panel__inner { grid-template-columns: 1fr; }
  .ld-business__cards { grid-template-columns: 1fr; }
  .ld-footer__grid { grid-template-columns: 1fr 1fr; }
  .ld-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 599px) {
  .ld-stats__grid { grid-template-columns: 1fr; gap: 34px; }
  .ld-chat__moments { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ld-phone { width: min(74vw, 300px); }
  .ld-hero { padding-bottom: 56px; }
  .ld-footer__grid { grid-template-columns: 1fr; }
  .ld-review { width: 240px; }
}

/* ---------- 19. Reduced motion: static, fully readable ---------- */
@media (prefers-reduced-motion: reduce) {
  .landing *,
  .landing *::before,
  .landing *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .ld-scrollcue { display: none; }
  .ld-preloader { display: none !important; }
}
