/* ============================================================
   theSMS platform landing - premium product page
   Realistic iPhone frame + editorial, varied sections.
   ============================================================ */
:root {
  --ld-bg: #050507;
  --ld-bg-soft: #0b0b10;
  --ld-panel: #101016;
  --ld-border: rgba(255, 255, 255, 0.08);
  --ld-border-2: rgba(255, 255, 255, 0.14);
  --ld-text: #f6f6f8;
  --ld-muted: #a1a1ad;
  --ld-faint: #6b6b78;
  --ld-p200: #ddd2ff;
  --ld-p300: #c4b5fd;
  --ld-p400: #a78bfa;
  --ld-p500: #8b5cf6;
  --ld-p600: #7c3aed;
  --ld-pink: #f0abfc;
  --ld-nav: rgba(7, 7, 10, 0.72);
  --ld-phone-w: clamp(232px, 26vw, 320px);
  /* Portrait captures are 516×1022 — aspect-ratio on .ld-iphone-screen, not the padded shell. */
  /* Frame insets: must use --ld-phone-w, not % (parent grid is much wider than the phone). */
  --ld-rim: calc(var(--ld-phone-w) * 0.024);
  --ld-bezel: calc(var(--ld-phone-w) * 0.024);
  /* 516×1022 captures are full-screen; island + glare overlay on top. */
  --ld-phone-island-top: 2.6%;
  --ld-phone-island-h: calc(var(--ld-phone-w) * 0.031);
  --ld-tablet-w: clamp(300px, 44vw, 540px);
  --ld-tablet-rim: calc(var(--ld-tablet-w) * 0.019);
  --ld-tablet-bezel: calc(var(--ld-tablet-w) * 0.007);
  --ld-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ld-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ld-page-max: 1200px;
  --ld-gutter: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.85rem;
}
html:has(body.landing-page) {
  background: var(--ld-bg);
}

body.landing-page {
  margin: 0;
  padding-top: 3.85rem;
  font-family: var(--ld-font);
  background: var(--ld-bg);
  color: var(--ld-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.landing-page a { color: inherit; text-decoration: none; }
.landing-page img, .landing-page video { display: block; max-width: 100%; }
.landing-page .ld-iphone-media,
.landing-page .ld-ipad-media,
.landing-page .ld-desktop-media,
.landing-page .ld-showcase-media-stack video { max-width: none; max-height: none; }
.landing-page ::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

.ld-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--ld-page-max);
  min-width: 0;
  margin: 0 auto;
  padding: 0 var(--ld-gutter);
}
.ld-narrow {
  box-sizing: border-box;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 var(--ld-gutter);
}

/* ---- Shared bits ---- */
.ld-grad-text {
  background: linear-gradient(105deg, #fff 0%, var(--ld-p200) 38%, var(--ld-p400) 70%, var(--ld-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.ld-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ld-p300);
}
.ld-eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ld-p500), transparent);
}
.ld-eyebrow-lg {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: 0.12em;
}
.ld-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: var(--ld-p200);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 0.8rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ld-ease), box-shadow 0.25s var(--ld-ease), background 0.2s;
}
.ld-btn-p {
  background: linear-gradient(135deg, var(--ld-p400), var(--ld-p600));
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.6);
}
.ld-btn-p:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(139, 92, 246, 0.75); }
.ld-btn-s {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ld-border-2);
  color: var(--ld-text);
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}
.ld-btn-s:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.ld-btn-lg { padding: 0.95rem 2rem; font-size: 1rem; border-radius: 0.9rem; }

/* ---- Reveal-on-scroll ---- */
.ld-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ld-ease), transform 0.7s var(--ld-ease); }
.ld-reveal.is-in { opacity: 1; transform: none; }
.ld-reveal-2 { transition-delay: 0.08s; }
.ld-reveal-3 { transition-delay: 0.16s; }

/* ============================================================
   NAV
   ============================================================ */
.ld-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: 3.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(var(--ld-gutter), calc((100% - var(--ld-page-max)) / 2 + var(--ld-gutter)));
  padding-right: max(var(--ld-gutter), calc((100% - var(--ld-page-max)) / 2 + var(--ld-gutter)));
  background: var(--ld-nav);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.ld-nav.is-scrolled {
  border-bottom-color: var(--ld-border);
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.ld-nav-logo img { height: 2.4rem; width: auto; }
.ld-nav-right { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }

/* Language switcher (same component as main site; themed for landing nav) */
.ld-nav-right .lang-switcher { position: relative; display: inline-flex; margin-left: 0.2rem; }
.ld-nav-right .lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.6rem;
  color: var(--ld-muted);
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}
.ld-nav-right .lang-switcher-btn:hover { color: var(--ld-text); background: rgba(255, 255, 255, 0.06); }
.ld-nav-right .lang-switcher-flag { font-size: 1.45rem; line-height: 1; margin-left: 0.1rem; }
.ld-nav-right .lang-switcher-menu {
  position: absolute;
  z-index: 500;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 11rem;
  padding: 0.375rem;
  background: var(--ld-panel);
  border: 1px solid var(--ld-border);
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.9);
}
.ld-nav-right .lang-switcher-heading {
  margin: 0.25rem 0.5rem 0.375rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ld-faint);
}
.ld-nav-right .lang-switcher-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.5rem 0.625rem;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 0.875rem;
  color: var(--ld-text);
}
.ld-nav-right .lang-switcher-option:hover { background: rgba(255, 255, 255, 0.06); }
.ld-nav-right .lang-switcher-option.is-active { color: var(--ld-p300); font-weight: 600; }
.ld-nav-right .lang-switcher-name { white-space: nowrap; }
.ld-nav-link {
  color: var(--ld-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 0.6rem;
  transition: color 0.15s, background 0.15s;
}
.ld-nav-link:hover { color: var(--ld-text); background: rgba(255, 255, 255, 0.06); }

/* ============================================================
   BACKGROUND
   ============================================================ */
.ld-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; transform: translateZ(0); contain: paint; }
.ld-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
}
.ld-orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.85; }
.ld-orb-a { width: 720px; height: 720px; top: -220px; right: -140px; background: radial-gradient(circle, rgba(139, 92, 246, 0.34), transparent 68%); }
.ld-orb-b { width: 560px; height: 560px; top: 38%; left: -180px; background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 70%); }
.ld-orb-c { width: 480px; height: 480px; bottom: -120px; right: 10%; background: radial-gradient(circle, rgba(240, 171, 252, 0.12), transparent 70%); }

.landing-page > *:not(.ld-bg):not(.ld-nav) { position: relative; z-index: 1; }

/* ============================================================
   REALISTIC iPHONE FRAME
   ============================================================ */
.ld-iphone {
  position: relative;
  width: var(--ld-phone-w);
  border-radius: 17% / 8.2%;
  padding: var(--ld-rim);
  /* brushed titanium rail */
  background:
    linear-gradient(145deg,
      #d7d4dc 0%, #97929d 9%, #5f5b66 22%,
      #3a373f 38%, #26242a 50%, #3f3c44 63%,
      #6f6b75 80%, #a9a5b0 92%, #e2dfe6 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 2px 1px rgba(0, 0, 0, 0.4),
    0 60px 110px -34px rgba(0, 0, 0, 0.85),
    0 34px 70px -30px rgba(124, 58, 237, 0.45);
  transition: transform 0.7s var(--ld-ease);
  will-change: transform;
}
.ld-iphone-bezel {
  position: relative;
  width: 100%;
  border-radius: 14.6% / 7.1%;
  background: #050506;
  padding: var(--ld-bezel);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.9),
    inset 0 0 10px 2px rgba(0, 0, 0, 0.85);
}
/* Portrait captures are 516×1022 — aspect on screen, not the padded shell. */
.ld-iphone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 516 / 1022;
  border-radius: 11.6% / 5.6%;
  overflow: hidden;
  background: #0a0a0f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
/* Full-screen captures; Dynamic Island is a decorative overlay. */
.ld-iphone-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.ld-iphone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #0a0a0f;
  transform: scale(1.02);
  transform-origin: center;
  pointer-events: none;
}
.ld-ipad-media,
.ld-showcase-media-stack video {
  pointer-events: none;
}
/* dynamic island */
.ld-iphone-island {
  position: absolute;
  top: var(--ld-phone-island-top);
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: var(--ld-phone-island-h);
  background: #000;
  border-radius: 999px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7%;
  box-shadow: inset 0 0 3px rgba(30, 30, 36, 0.9);
}
.ld-iphone-cam {
  width: 26%;
  max-width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2b2b48 0%, #0a0a16 60%, #000 100%);
  box-shadow: inset 0 0 1px rgba(120, 120, 200, 0.5);
}
/* screen glass reflection */
.ld-iphone-glare {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(122deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 20%,
      transparent 42%,
      transparent 72%,
      rgba(255, 255, 255, 0.05) 100%);
}
/* titanium side buttons */
.ld-iphone-btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(90deg, #2b292f, #6a6571 45%, #46434b);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.ld-iphone-btn-action { left: -1.6%; top: 21%; width: 1.8%; height: 5%; }
.ld-iphone-btn-volup { left: -1.6%; top: 29%; width: 1.8%; height: 8%; }
.ld-iphone-btn-voldn { left: -1.6%; top: 39%; width: 1.8%; height: 8%; }
.ld-iphone-btn-power { right: -1.6%; top: 30%; width: 1.8%; height: 11%; background: linear-gradient(270deg, #2b292f, #6a6571 45%, #46434b); }

/* device tilt presets */
.ld-iphone.tilt-l { transform: perspective(1600px) rotateY(13deg) rotateX(4deg); }
.ld-iphone.tilt-r { transform: perspective(1600px) rotateY(-13deg) rotateX(4deg); }

/* ============================================================
   LANDSCAPE iPAD / TABLET FRAME
   ============================================================ */
.ld-ipad {
  position: relative;
  width: var(--ld-tablet-w);
  border-radius: 5.2% / 7.4%;
  padding: var(--ld-tablet-rim);
  background:
    linear-gradient(150deg,
      #2c2c34 0%, #0c0c0f 38%, #1a1a20 68%, #08080a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 60px 120px -34px rgba(0, 0, 0, 0.85),
    0 24px 60px -20px rgba(124, 58, 237, 0.3);
  transition: transform 0.7s var(--ld-ease);
  will-change: transform;
}
.ld-ipad-bezel {
  position: relative;
  width: 100%;
  border-radius: 4.2% / 6%;
  background: #050506;
  padding: var(--ld-tablet-bezel);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.9),
    inset 0 0 10px 2px rgba(0, 0, 0, 0.85);
}
/* Tablet captures are 1000×698 — aspect on screen, not the padded shell. */
.ld-ipad-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 698;
  border-radius: 3.2% / 4.6%;
  overflow: hidden;
  background: #0a0a0f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.ld-ipad-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.ld-ipad-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background-color: #0a0a0f;
  transform: scale(1.02);
  transform-origin: center;
  pointer-events: none;
}
.ld-ipad-cam {
  position: absolute;
  top: 50%;
  left: 1.8%;
  transform: translateY(-50%);
  width: calc(var(--ld-tablet-w) * 0.012);
  height: calc(var(--ld-tablet-w) * 0.012);
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2b2b48 0%, #0a0a16 60%, #000 100%);
  box-shadow: inset 0 0 1px rgba(120, 120, 200, 0.5);
  z-index: 7;
}
.ld-ipad-glare {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(125deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0) 100%);
}
.ld-ipad-btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(180deg, #3a3840, #1a1920);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.ld-ipad-btn-power { top: -1.4%; right: 8%; width: 4.5%; height: 1.6%; }
.ld-ipad-btn-volup { top: 18%; right: -1.2%; width: 1.2%; height: 7%; }
.ld-ipad-btn-voldn { top: 28%; right: -1.2%; width: 1.2%; height: 7%; }
.ld-ipad.tilt-l { transform: perspective(1600px) rotateY(11deg) rotateX(3deg); }
.ld-ipad.tilt-r { transform: perspective(1600px) rotateY(-11deg) rotateX(3deg); }

.ld-device-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  left: -15%;
  top: -12%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.38), transparent 62%);
  filter: blur(28px);
}

/* ============================================================
   HERO
   ============================================================ */
.ld-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  min-height: calc(100vh - 3.85rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: clip;
}
.ld-hero > .ld-container {
  width: 100%;
}
.ld-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
  min-width: 0;
}
.ld-hero-copy { max-width: 36rem; }
.ld-hero-h1 {
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 1.1rem 0 0.4rem;
}
.ld-hero-h1 .ld-line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.ld-hero-h1 .ld-line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: ldRise 0.72s var(--ld-ease) forwards;
  /* gradient must live on the transformed span, not the h1, or it renders transparent */
  background: linear-gradient(105deg, #fff 0%, var(--ld-p200) 38%, var(--ld-p400) 70%, var(--ld-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ld-hero-h1 .ld-line:nth-child(1) > span { animation-delay: 0.05s; }
.ld-hero-h1 .ld-line:nth-child(2) > span { animation-delay: 0.2s; }
.ld-hero-h1 .ld-line:nth-child(3) > span { animation-delay: 0.35s; }
@keyframes ldRise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* static sentence headline needs a smaller scale than the rotating words */
.ld-hero-h1-static {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.ld-hero-h1-static .ld-line {
  overflow: visible;
  padding-bottom: 0.1em;
}
.ld-hero-h1-static .ld-line > span {
  text-wrap: balance;
  animation: none;
  transform: none;
  opacity: 1;
  /* background-clip:text + tight line-height clips descenders (y, g, p) */
  padding-bottom: 0.06em;
}
.ld-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ld-muted);
  line-height: 1.6;
  margin: 1.25rem 0 1.5rem;
  max-width: 30rem;
}
.ld-hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-top: 1.4rem; margin-bottom: 0; }
.ld-hero-actions .ld-countdown-foot { margin: 0; }
.ld-hero-coming-soon { margin: 0.35rem 0 0; }
.ld-hero-notes { display: flex; flex-wrap: wrap; gap: 0.45rem 1.25rem; font-size: 0.82rem; color: var(--ld-faint); }
.ld-hero-notes span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ld-hero-notes span::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--ld-p400); box-shadow: 0 0 8px var(--ld-p400); }

.ld-hero-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
}
.ld-hero-device .ld-iphone { transform: perspective(1600px) rotateY(-14deg) rotateX(5deg) rotateZ(0.5deg); }

/* countdown card */
.ld-countdown-card {
  margin: 0 0 0.25rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--ld-border);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  max-width: 30rem;
}
.ld-countdown-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem; }
.ld-countdown-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--ld-p400); box-shadow: 0 0 10px var(--ld-p400); animation: ldPulse 1.8s ease-in-out infinite; }
@keyframes ldPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.ld-countdown-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ld-p200); }
.ld-countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.ld-countdown-item { text-align: center; padding: 0.7rem 0.35rem; border: 1px solid var(--ld-border); border-radius: 0.8rem; background: rgba(0, 0, 0, 0.28); }
.ld-countdown-value { font-size: clamp(1.4rem, 3.4vw, 1.85rem); font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; }
.ld-countdown-unit { margin-top: 0.35rem; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ld-faint); }
.ld-countdown-foot { margin: 0.95rem 0 0; font-size: 0.82rem; color: var(--ld-muted); }
.ld-countdown-foot a { color: var(--ld-p300); text-decoration: underline; }
/* QR (reuses launch partial markup) */
.ld-countdown-card .launch-signup-qr { margin-top: 1rem; display: flex; align-items: center; gap: 0.9rem; }
.ld-countdown-card .launch-signup-qr-caption { order: 2; margin: 0; font-size: 0.82rem; color: var(--ld-muted); }
.ld-countdown-card .launch-signup-qr-caption a { color: var(--ld-p300); text-decoration: underline; }
.ld-countdown-card .launch-signup-qr-img { border-radius: 0.7rem; border: 1px solid var(--ld-border); background: #fff; padding: 4px; }

/* ============================================================
   MARQUEE STATEMENT BAND
   ============================================================ */
.ld-band {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--ld-border);
  border-bottom: 1px solid var(--ld-border);
  background:
    radial-gradient(ellipse 60% 120% at 50% 50%, rgba(124, 58, 237, 0.16), transparent 70%),
    var(--ld-bg-soft);
  overflow: hidden;
}
.ld-band-statement {
  font-size: clamp(1.9rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-align: center;
  max-width: 16ch;
  margin: 0 auto;
}
.ld-band-statement-line1 { color: var(--ld-text); }
.ld-band-statement-line2 {
  background: linear-gradient(105deg, var(--ld-p200) 0%, var(--ld-p400) 55%, var(--ld-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ld-band-sub {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ld-muted);
  margin: 1.25rem auto 0;
  max-width: 44ch;
  font-size: 1.05rem;
}
.ld-band-devices {
  position: relative;
  width: min(100%, 1120px);
  height: clamp(340px, 46vw, 520px);
  margin: clamp(1.5rem, 3.5vw, 2.5rem) auto 0;
  padding: 0 var(--ld-gutter);
  perspective: 1800px;
}
.ld-band-phone,
.ld-band-desktop,
.ld-band-tablet {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform-style: preserve-3d;
}
.ld-band-phone {
  z-index: 4;
  transform: translateX(calc(-50% - clamp(240px, 33vw, 420px))) translateY(2%);
}
.ld-band-phone .ld-iphone {
  --ld-phone-w: clamp(150px, 17vw, 220px);
  transform: perspective(1600px) rotateY(15deg) rotateX(4deg);
}
.ld-band-desktop {
  z-index: 2;
  transform: translateX(-50%) translateY(-1%);
}
.ld-band-tablet {
  z-index: 3;
  transform: translateX(calc(-50% + clamp(190px, 28vw, 360px))) translateY(8%);
}
.ld-band-tablet .ld-ipad {
  --ld-tablet-w: clamp(270px, 38vw, 480px);
  transform: perspective(1600px) rotateY(-13deg) rotateX(4deg);
}
.ld-desktop {
  position: relative;
  width: clamp(360px, 58vw, 720px);
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.55));
}
.ld-desktop-screen {
  position: relative;
  width: 100%;
  padding: clamp(0.42rem, 1vw, 0.7rem);
  border-radius: clamp(0.7rem, 1.5vw, 1.05rem);
  background:
    linear-gradient(145deg, #3b3942 0%, #121217 32%, #050507 70%, #292730 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 28px 70px -30px rgba(124, 58, 237, 0.48);
}
/* 16:10 on the viewport, not the bezel — padding on .ld-desktop-screen must not skew inner aspect. */
.ld-desktop-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: clamp(0.42rem, 1vw, 0.7rem);
  background: #07070b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.ld-desktop-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  background-color: #07070b;
  transform: scale(1.02);
  transform-origin: center;
  pointer-events: none;
}
.ld-desktop-stand {
  width: 18%;
  height: clamp(1.4rem, 4vw, 3rem);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(66, 62, 76, 0.92), rgba(14, 14, 18, 0.96));
  clip-path: polygon(34% 0, 66% 0, 78% 100%, 22% 100%);
}
.ld-desktop-foot {
  width: 34%;
  height: clamp(0.5rem, 1.4vw, 0.95rem);
  margin: 0 auto;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, #37343f, #111116);
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.9);
}

/* ============================================================
   PINNED SHOWCASE (the Apple beat)
   ============================================================ */
.ld-showcase { position: relative; padding: clamp(2rem, 5vw, 4rem) 0 0; overflow-x: clip; }
.ld-showcase-group + .ld-showcase-group { margin-top: clamp(1rem, 3vw, 2rem); }
.ld-showcase-stage {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.ld-showcase-captions { display: flex; flex-direction: column; }
.ld-showcase-step {
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.ld-showcase-copy {
  max-width: 30rem;
  opacity: 0.25;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ld-ease), transform 0.5s var(--ld-ease);
}
.ld-showcase-step.is-active .ld-showcase-copy { opacity: 1; transform: none; }
.ld-showcase-title { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.12; margin: 0 0 0.9rem; }
.ld-showcase-copy .ld-feature-list { margin-top: 0; }

.ld-showcase-device {
  position: sticky;
  top: 5.4rem;
  height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}
.ld-showcase-device .ld-iphone {
  --ld-phone-w: clamp(220px, 22vw, 290px);
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
}
.ld-showcase-media-stack {
  position: absolute;
  inset: 0;
  background: #0a0a0f;
}
.ld-showcase-media-stack > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #0a0a0f;
  opacity: 0;
  transform: translateZ(0);
  transform-origin: center;
  transition: opacity 0.35s var(--ld-ease);
  will-change: opacity;
}
.ld-showcase-media-stack > .is-visible { opacity: 1; }
.ld-showcase-media-stack > video:not(.is-ready).is-visible {
  /* Hold the poster frame until decode finishes to avoid black flashes. */
  background-size: cover;
  background-position: center;
}
.ld-showcase-progress { display: flex; gap: 0.4rem; margin-top: 1.4rem; }
.ld-showcase-progress span { width: 1.8rem; height: 3px; border-radius: 3px; background: var(--ld-border-2); transition: background 0.3s; }
.ld-showcase-step.is-active ~ .ld-showcase-step .ld-showcase-copy { }

/* mobile per-step device (hidden on desktop) */
.ld-showcase-device-inline { display: none; }

@media (min-width: 981px) {
  .ld-showcase-copy { max-width: 36rem; }
  .ld-showcase-title { font-size: clamp(2.2rem, 3.6vw, 3.4rem); margin: 0 0 1.1rem; }
  .ld-showcase-copy .ld-feature-list { gap: 0.85rem; }
  .ld-showcase-copy .ld-feature-list li { font-size: clamp(1.05rem, 1.15vw, 1.22rem); gap: 0.7rem; }
  .ld-showcase-copy .ld-feature-list li::before {
    width: 1.45rem;
    height: 1.45rem;
    background-size: 0.95rem;
  }
}

/* ============================================================
   EDITORIAL FEATURE ROWS
   ============================================================ */
.ld-feature,
.ld-section,
.ld-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.ld-feature { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.ld-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  min-width: 0;
}
.ld-feature.reverse .ld-feature-media { order: -1; }
.ld-feature-copy { max-width: 30rem; }
.ld-feature-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.07; margin: 0.8rem 0 1rem; }
.ld-feature-body { font-size: 1.06rem; color: var(--ld-muted); line-height: 1.7; margin: 0 0 1.5rem; }
.ld-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.ld-feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--ld-text); font-size: 0.96rem; }
.ld-feature-list li::before {
  content: "";
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23a78bfa'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
}
.ld-feature-media {
  display: flex;
  justify-content: center;
  perspective: 1600px;
  overflow: visible;
  padding-block: 0.5rem 1.5rem;
}

/* ============================================================
   WHY THESMS
   ============================================================ */
.ld-section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.ld-section-head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.ld-section-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; margin: 0.9rem 0 0.9rem; }
.ld-section-sub { color: var(--ld-muted); font-size: 1.08rem; line-height: 1.65; margin: 0; }

/* ============================================================
   LANGUAGE MARQUEE
   ============================================================ */
.ld-langs { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ld-langs-track { display: flex; gap: 0.9rem; width: max-content; animation: ldMarquee 38s linear infinite; }
.ld-langs:hover .ld-langs-track { animation-play-state: paused; }
@keyframes ldMarquee { to { transform: translateX(-50%); } }
.ld-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--ld-border);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}
.ld-lang-pill .ld-flag { font-size: 1.25rem; line-height: 1; }
.ld-langs { margin-top: 0.5rem; }

/* ============================================================
   CTA
   ============================================================ */
.ld-cta { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 8rem) 0; text-align: center; }
.ld-cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 40%, rgba(139, 92, 246, 0.22), transparent 70%); }
.ld-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.ld-cta-title { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.2; margin: 0.9rem 0 1rem; }
.ld-cta-title.ld-grad-text {
  display: inline-block;
  padding: 0.06em 0 0.14em;
}
.ld-cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }
.ld-lotus-wrap {
  margin: 2.6rem auto 0;
  max-width: min(88vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ld-lotus-inner {
  width: 100%;
}
.ld-lotus-inner .connect-lotus {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
@media (prefers-reduced-motion: no-preference) {
  .ld-lotus-wrap .connect-lotus:not(.play) .connect-lotus-draw {
    fill-opacity: 0;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  .ld-lotus-wrap .connect-lotus.play .connect-lotus-draw {
    stroke-dasharray: 100;
    animation: ld-lotus-trace 1.6s ease-in-out both, ld-lotus-fill 0.7s ease-out 1.5s both;
  }
  .ld-lotus-wrap .connect-lotus.play #petalC { animation-delay: 0.15s, 1.65s; }
  .ld-lotus-wrap .connect-lotus.play #petalML,
  .ld-lotus-wrap .connect-lotus.play #petalMR { animation-delay: 0.3s, 1.8s; }
  .ld-lotus-wrap .connect-lotus.play #petalOL,
  .ld-lotus-wrap .connect-lotus.play #petalOR { animation-delay: 0.45s, 1.95s; }
  @keyframes ld-lotus-trace {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
  }
  @keyframes ld-lotus-fill {
    from { fill-opacity: 0; }
    to { fill-opacity: 1; }
  }
}

/* ============================================================
   FOOTER (matches main site legal-page-nav)
   ============================================================ */
.ld-footer.site-docs-footer {
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--ld-border);
}
.ld-footer .legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
  margin-bottom: 0;
  font-size: 0.8125rem;
}
.ld-footer .legal-page-nav-link {
  color: var(--ld-faint);
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  border-radius: 0.35rem;
  transition: color 0.15s;
}
.ld-footer .legal-page-nav-link:hover {
  color: var(--ld-p300);
  text-decoration: underline;
}
.ld-footer .legal-page-nav-sep {
  color: var(--ld-muted);
  margin: 0 0.15rem;
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .ld-hero-grid,
  .ld-feature-grid { grid-template-columns: 1fr; text-align: center; }
  .ld-hero-copy, .ld-feature-copy { max-width: none; margin: 0 auto; }
  .ld-hero-actions, .ld-hero-notes, .ld-cta-actions { justify-content: center; align-items: center; }
  .ld-feature-list { text-align: left; display: inline-flex; }
  .ld-band-devices {
    height: clamp(300px, 58vw, 420px);
    max-width: 760px;
    margin-top: clamp(1.35rem, 3vw, 2rem);
  }
  .ld-band-phone { transform: translateX(calc(-50% - clamp(155px, 33vw, 265px))) translateY(5%); }
  .ld-band-phone .ld-iphone { --ld-phone-w: clamp(140px, 24vw, 190px); }
  .ld-band-tablet { transform: translateX(calc(-50% + clamp(125px, 27vw, 220px))) translateY(10%); }
  .ld-band-tablet .ld-ipad { --ld-tablet-w: clamp(250px, 50vw, 390px); }
  .ld-desktop { width: clamp(330px, 72vw, 560px); }
  .ld-hero-device { order: -1; margin-bottom: 1rem; }
  .ld-feature.reverse .ld-feature-media { order: 0; }
  .ld-hero-device .ld-iphone,
  .ld-feature-media .ld-iphone,
  .ld-feature-media .ld-ipad { transform: none !important; }
  /* showcase falls back to stacked per-step devices */
  .ld-showcase-stage { display: block; }
  .ld-showcase-device { display: none; }
  .ld-showcase-step { min-height: auto; display: block; padding: 2.5rem 0; text-align: center; }
  .ld-showcase-copy { opacity: 1; transform: none; max-width: none; }
  .ld-showcase-copy .ld-feature-list { text-align: left; display: inline-flex; }
  .ld-showcase-device-inline { display: flex; justify-content: center; margin-top: 1.6rem; perspective: 1600px; }
  .ld-showcase-device-inline .ld-iphone {
    --ld-phone-w: clamp(220px, 52vw, 290px);
    transform: none;
  }
}

@media (max-width: 560px) {
  .ld-btn-lg { width: 100%; }
  :root {
    --ld-phone-w: min(74vw, 290px);
    --ld-tablet-w: min(92vw, 360px);
  }
  .ld-band { padding-bottom: clamp(3rem, 12vw, 4.5rem); }
  .ld-band-sub { margin-bottom: 0.35rem; }
  .ld-band-devices {
    height: clamp(228px, 66vw, 296px);
    margin-top: clamp(2.25rem, 8vw, 3rem);
  }
  .ld-band-phone { transform: translateX(calc(-50% - min(36vw, 150px))) translateY(8%); }
  .ld-band-phone .ld-iphone { --ld-phone-w: clamp(140px, 38vw, 180px); }
  .ld-band-desktop { transform: translateX(-50%) translateY(4%); }
  .ld-band-tablet { transform: translateX(calc(-50% + min(25vw, 105px))) translateY(18%); }
  .ld-band-tablet .ld-ipad { --ld-tablet-w: min(66vw, 290px); }
  .ld-desktop { width: min(86vw, 390px); }
}

/* ============================================================
   REFERRAL MARKETING (/refer)
   ============================================================ */
.ld-refer-page .ld-hero { padding-bottom: clamp(2.5rem, 6vw, 4rem); }

.ld-refer-link-card {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ld-border-2);
  max-width: 32rem;
}
.ld-refer-link-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-p300);
}
.ld-refer-link-value {
  margin: 0;
  word-break: break-all;
}
.ld-refer-link-value code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92rem;
  color: var(--ld-p200);
}
.ld-refer-link-actions { margin-top: 1rem; }
.ld-refer-copy-msg {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--ld-muted);
}

.ld-refer-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.ld-refer-step {
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--ld-border);
  min-height: 100%;
}
.ld-refer-step-num {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ld-p400);
}
.ld-refer-step-title {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ld-refer-step-body {
  margin: 0;
  color: var(--ld-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ld-refer-earn-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}
.ld-refer-earn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.ld-refer-earn-card {
  position: relative;
  padding: 1.75rem 1.4rem 1.6rem;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.03) 55%);
  border: 1px solid var(--ld-border-2);
  text-align: center;
}
.ld-refer-earn-card.is-featured {
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.22), rgba(255, 255, 255, 0.04) 60%);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 24px 50px -28px rgba(124, 58, 237, 0.7);
  transform: translateY(-4px);
}
.ld-refer-earn-shops {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ld-p300);
}
.ld-refer-earn-amount {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.ld-refer-earn-period {
  margin: 0.55rem 0 0.85rem;
  font-size: 0.95rem;
  color: var(--ld-muted);
}
.ld-refer-earn-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ld-faint);
}
.ld-refer-earn-disclaimer {
  max-width: 46rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ld-faint);
}
.ld-refer-inline-link {
  color: var(--ld-p300) !important;
  text-decoration: underline !important;
  text-underline-offset: 0.15em;
}
.ld-refer-inline-link:hover { color: var(--ld-p200) !important; }

.ld-refer-product-head { padding-bottom: 0; }
.ld-refer-product-head .ld-section-head { margin-bottom: 0; }

.ld-refer-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.ld-refer-rate-card {
  padding: 1.5rem 1.25rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--ld-border);
  text-align: center;
}
.ld-refer-rate-value {
  margin: 0 0 0.45rem;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ld-p200);
}
.ld-refer-rate-value--text {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ld-refer-rate-label {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ld-muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .ld-refer-steps,
  .ld-refer-earn-grid,
  .ld-refer-rate-grid {
    grid-template-columns: 1fr;
  }
  .ld-refer-earn-card.is-featured { transform: none; }
  .ld-refer-link-card { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .ld-refer-step,
  .ld-refer-earn-card,
  .ld-refer-rate-card { padding-left: 1.15rem; padding-right: 1.15rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ld-reveal { opacity: 1 !important; transform: none !important; }
  .ld-hero-h1 .ld-line > span { animation: none; transform: none; opacity: 1; }
  .ld-countdown-dot, .ld-langs-track { animation: none !important; }
  .ld-iphone { transition: none !important; }
  .ld-ipad { transition: none !important; }
  .ld-showcase-stage { display: block; }
  .ld-showcase-device { display: none; }
  .ld-showcase-step { min-height: auto; display: block; padding: 2rem 0; }
  .ld-showcase-copy { opacity: 1; transform: none; }
  .ld-showcase-device-inline { display: flex; justify-content: center; margin-top: 1.4rem; }
  .ld-showcase-media-stack > * { transition: none; }
  .ld-refer-earn-card.is-featured { transform: none; }
}
