/* Morpho Landing (Scroll Story) — scoped via body.landing-page */

:root {
  --lp-max: 1120px;
  --lp-pad: clamp(18px, 4vw, 44px);
  --lp-sidebar-w: 50px;
  --lp-text: rgba(255, 255, 255, 0.92);
  --lp-muted: rgba(255, 255, 255, 0.72);
  --lp-glass: rgba(8, 8, 18, 0.28);
  --lp-glass-border: rgba(255, 255, 255, 0.14);
  --lp-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --story-accent: rgba(216, 10, 56, 0.55);
}

@media (max-width: 800px) {
  :root {
    --lp-sidebar-w: 36px;
  }
}

body.landing-page {
  color: var(--lp-text);
  overflow-x: hidden;
}

body.landing-page .landing-shell {
  position: relative;
  z-index: 2;
  padding-right: calc(var(--lp-sidebar-w) + 18px);
}

body.landing-page .landing-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: var(--lp-sidebar-w);
  z-index: 950;
  padding: 14px var(--lp-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

body.landing-page .topbar-inner {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

body.landing-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-text);
}

body.landing-page .brand-logo {
  width: 140px;
  max-width: 42vw;
  height: auto;
  display: block;
}

body.landing-page .brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  display: none;
}

body.landing-page .topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.landing-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

body.landing-page .pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

body.landing-page .pill.primary {
  background: linear-gradient(135deg, rgba(216, 10, 56, 0.88), rgba(88, 0, 129, 0.88));
  border-color: rgba(255, 255, 255, 0.22);
}

body.landing-page .pill.primary:hover {
  transform: translateY(-1px) scale(1.01);
}

body.landing-page main {
  padding-top: 92px;
}

body.landing-page .hero {
  position: relative;
  min-height: calc(100vh - 30px);
  display: grid;
  align-items: center;
  padding: 90px var(--lp-pad) 70px;
}

body.landing-page .hero-grid {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
}

body.landing-page .hero-kicker {
  color: var(--lp-muted);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

body.landing-page .hero-title {
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
}

body.landing-page .hero-title span {
  display: block;
}

body.landing-page .hero-subtitle {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-muted);
  max-width: 54ch;
}

body.landing-page .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}

body.landing-page .store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

body.landing-page .store-badge:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

body.landing-page .store-badge img {
  height: 34px;
  width: auto;
  display: block;
}

body.landing-page .ghost-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.landing-page .ghost-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

body.landing-page .hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
}

body.landing-page .hero-glass {
  padding: 18px 18px;
  border-radius: 22px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--lp-shadow);
}

body.landing-page .hero-glass h3 {
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

body.landing-page .hero-bullets {
  display: grid;
  gap: 10px;
}

body.landing-page .hero-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

body.landing-page .hero-bullet .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 0 4px rgba(216, 10, 56, 0.14);
}

body.landing-page .scroll-hint {
  position: absolute;
  left: var(--lp-pad);
  bottom: 18px;
  right: calc(var(--lp-sidebar-w) + 18px);
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0.75;
}

body.landing-page .scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

body.landing-page .scroll-hint .chev {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  animation: lp-bounce 1.7s ease-in-out infinite;
}

@keyframes lp-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.75;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }
}

body.landing-page .story {
  padding: 70px var(--lp-pad) 40px;
}

body.landing-page .story-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  gap: clamp(18px, 4vw, 54px);
  align-items: flex-start;
}

body.landing-page .story-stage {
  flex: 0 0 min(420px, 42%);
  position: sticky;
  top: 112px;
}

body.landing-page .phone {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

body.landing-page .phone::after {
  content: '';
  position: absolute;
  inset: -70px;
  background: radial-gradient(circle at 50% 18%, var(--story-accent), transparent 55%);
  filter: blur(18px);
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
}

body.landing-page .phone-shell {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
  background: rgba(10, 10, 20, 0.55);
  min-height: 680px;
  aspect-ratio: 9 / 19.5;
}

body.landing-page .phone-notch {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 44%;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
}

body.landing-page .phone-scenes {
  position: absolute;
  inset: 0;
}

body.landing-page .phone-scene {
  position: absolute;
  inset: 0;
  --scene-pad-top: 26px;
  --scene-pad-x: 18px;
  --scene-pad-bottom: 18px;
  padding: var(--scene-pad-top) var(--scene-pad-x) var(--scene-pad-bottom);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
  display: grid;
  align-content: center;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
}

body.landing-page .scene-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: saturate(1.02) contrast(1.02);
  opacity: 1;
  z-index: 0;
  transition: opacity 800ms ease;
  will-change: opacity;
  pointer-events: none;
}

/* If a scene has multiple screenshots, hide subsequent ones by default.
   JS will crossfade them over time while active. */
body.landing-page .phone-scene .scene-shot + .scene-shot {
  opacity: 0;
}

body.landing-page .scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* Premium scene (icon animation, no screenshot) */
body.landing-page .phone-scene[data-scene='premium'] {
  padding: 0;
}

body.landing-page .premium-anim {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

body.landing-page .premium-bg {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 50% 24%, var(--story-accent), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(216, 10, 56, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

body.landing-page .premium-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.1), transparent 42%),
    radial-gradient(circle at 55% 78%, rgba(255, 255, 255, 0.08), transparent 44%);
  opacity: 0.7;
  animation: lp-premium-spark 4.2s ease-in-out infinite;
}

@keyframes lp-premium-spark {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-6px);
  }
}

@keyframes lp-premium-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes lp-premium-pop {
  0%,
  100% {
    transform: var(--orbit-transform) scale(1);
  }
  50% {
    transform: var(--orbit-transform) scale(1.08);
  }
}

body.landing-page .premium-orbit {
  --orbit-r: clamp(96px, 18vw, 124px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86%, 320px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: lp-premium-orbit 18s linear infinite;
  pointer-events: none;
  opacity: 0.95;
}

body.landing-page .orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  opacity: 0.65;
}

body.landing-page .orbit-item {
  --orbit-angle: 0deg;
  --orbit-transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--orbit-r)) rotate(calc(var(--orbit-angle) * -1));
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: var(--orbit-transform) scale(1);
  animation: lp-premium-pop 3.8s ease-in-out infinite;
}

body.landing-page .orbit-item ion-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

body.landing-page .orbit-item .orbit-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

body.landing-page .orbit-item.i1 ion-icon {
  color: rgba(168, 85, 247, 0.95); /* purple */
}

body.landing-page .orbit-item.i2 ion-icon {
  color: rgba(34, 197, 94, 0.95); /* green */
}

body.landing-page .orbit-item.i4 ion-icon {
  color: rgba(216, 10, 56, 0.95); /* Morpho red */
}

body.landing-page .orbit-item.i5 ion-icon {
  color: rgba(255, 182, 107, 0.95); /* coin gold */
}

/* Even spacing around the orbit (5 items @ 72°) */
body.landing-page .orbit-item.i4 {
  --orbit-angle: -90deg; /* top */
  animation-delay: 0ms;
}
body.landing-page .orbit-item.i5 {
  --orbit-angle: -18deg; /* top-right */
  animation-delay: 180ms;
}
body.landing-page .orbit-item.i1 {
  --orbit-angle: 54deg; /* bottom-right */
  animation-delay: 360ms;
}
body.landing-page .orbit-item.i2 {
  --orbit-angle: 126deg; /* bottom-left */
  animation-delay: 540ms;
}
body.landing-page .orbit-item.i3 {
  --orbit-angle: 198deg; /* top-left */
  animation-delay: 720ms;
}

body.landing-page .premium-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  transform: translateY(-10px);
}

body.landing-page .premium-emblem {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

body.landing-page .premium-logo {
  position: absolute;
  left: 50%;
  top: -240px;
  transform: translateX(-50%);
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

body.landing-page .premium-word {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 24px;
}

body.landing-page .premium-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

body.landing-page .premium-foot {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  justify-items: center;
  z-index: 2;
}

body.landing-page .premium-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
}

body.landing-page .premium-chip ion-icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

body.landing-page .premium-chip .chip-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

body.landing-page .premium-chip ion-icon[name='infinite-outline'] {
  color: rgba(168, 85, 247, 0.95);
}

body.landing-page .premium-chip ion-icon[name='videocam-outline'] {
  color: rgba(216, 10, 56, 0.95);
}

/* Pause Premium animations when scene is not active */
body.landing-page .phone-scene[data-scene='premium']:not(.is-active) .premium-orbit,
body.landing-page .phone-scene[data-scene='premium']:not(.is-active) .orbit-item,
body.landing-page .phone-scene[data-scene='premium']:not(.is-active) .premium-bg::after {
  animation-play-state: paused;
}

body.landing-page .phone-scene > *:not(.scene-shot):not(.scene-overlay):not(.premium-anim) {
  position: relative;
  z-index: 1;
}

body.landing-page .phone-scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.landing-page .scene-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

body.landing-page .scene-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 14px;
}

body.landing-page .scene-title {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.02em;
}

body.landing-page .scene-sub {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

body.landing-page .scene-stack {
  position: relative;
  height: 240px;
}

body.landing-page .mini-card {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

body.landing-page .mini-card:nth-child(1) {
  transform: translateY(18px) scale(0.96) rotate(-1.6deg);
  opacity: 0.7;
}
body.landing-page .mini-card:nth-child(2) {
  transform: translateY(4px) scale(0.985) rotate(1.2deg);
  opacity: 0.85;
}
body.landing-page .mini-card:nth-child(3) {
  transform: translateY(-10px) scale(1) rotate(-0.4deg);
}

body.landing-page .mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.landing-page .mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 10, 56, 0.95), rgba(88, 0, 129, 0.95));
}

body.landing-page .mini-lines {
  flex: 1;
}
body.landing-page .mini-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 8px 0 0 0;
}
body.landing-page .mini-line:first-child {
  width: 68%;
  margin-top: 0;
}
body.landing-page .mini-line:last-child {
  width: 52%;
}

body.landing-page .chat-bubbles {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

body.landing-page .bubble {
  max-width: 86%;
  padding: 12px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

body.landing-page .bubble.me {
  margin-left: auto;
  background: rgba(216, 10, 56, 0.22);
  border-color: rgba(216, 10, 56, 0.35);
}

body.landing-page .call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

body.landing-page .call-tile {
  aspect-ratio: 1 / 1.15;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

body.landing-page .call-tile::before {
  content: '';
  width: 62%;
  height: 62%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body.landing-page .roulette {
  display: grid;
  place-items: center;
  padding: 22px;
}

body.landing-page .wheel {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: conic-gradient(
    from 0deg,
    rgba(216, 10, 56, 0.85),
    rgba(88, 0, 129, 0.85),
    rgba(255, 182, 107, 0.85),
    rgba(216, 10, 56, 0.85)
  );
  -webkit-mask: radial-gradient(circle, transparent 0 42%, #000 43%);
  mask: radial-gradient(circle, transparent 0 42%, #000 43%);
  position: relative;
  animation: lp-spin 6s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body.landing-page .wheel::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes lp-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.landing-page .shield {
  display: grid;
  place-items: center;
  padding: 18px;
}

body.landing-page .shield-icon {
  width: 110px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

body.landing-page .shield-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 34%;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(216, 10, 56, 0.28);
  border: 1px solid rgba(216, 10, 56, 0.35);
}

body.landing-page .coin-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

body.landing-page .coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

body.landing-page .coin .spark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 182, 107, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 182, 107, 0.18);
}

body.landing-page .story-steps {
  flex: 1;
  display: grid;
  gap: 18px;
  padding-bottom: 80px;
}

body.landing-page .story-step {
  min-height: 72vh;
  padding: 26px 22px;
  border-radius: 26px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
  display: grid;
  align-content: center;
  gap: 12px;
}

body.landing-page .story-step.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(8, 8, 18, 0.33);
}

body.landing-page .step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(216, 10, 56, 0.18);
  border: 1px solid rgba(216, 10, 56, 0.26);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

body.landing-page .step-title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

body.landing-page .step-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

body.landing-page .step-list {
  margin-top: 8px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

body.landing-page .cta {
  padding: 80px var(--lp-pad) 90px;
}

body.landing-page .cta-card {
  max-width: var(--lp-max);
  margin: 0 auto;
  border-radius: 30px;
  padding: 34px 26px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 14px;
}

body.landing-page .cta-title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.02em;
}

body.landing-page .cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}

body.landing-page .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}

body.landing-page .footer {
  padding: 18px var(--lp-pad) 22px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 12px;
  position: relative;
  z-index: 10;
}

@media (max-width: 980px) {
  body.landing-page .hero-grid {
    grid-template-columns: 1fr;
  }
  body.landing-page .hero-glass {
    margin-top: 18px;
  }
  body.landing-page .story-inner {
    flex-direction: column;
  }
  body.landing-page .story-stage {
    position: relative;
    top: auto;
    width: 100%;
  }
  body.landing-page .story-step {
    min-height: auto;
    padding: 24px 18px;
  }
  body.landing-page .phone-shell {
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto !important;
  }
  html,
  body {
    animation: none !important;
  }
  body.landing-page .box-area li {
    animation: none !important;
  }
  body.landing-page .wheel {
    animation: none !important;
  }
  body.landing-page .phone-scene {
    transition: none !important;
    transform: none !important;
  }
  body.landing-page .pill,
  body.landing-page .store-badge,
  body.landing-page .ghost-link,
  body.landing-page .story-step {
    transition: none !important;
  }
  body.landing-page .scroll-hint .chev {
    animation: none !important;
  }

  body.landing-page .premium-orbit,
  body.landing-page .orbit-item,
  body.landing-page .premium-bg::after {
    animation: none !important;
  }
}

