:root {
  --bg-900: #07040c;
  --bg-800: #120819;
  --bg-700: #1b0f24;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text-100: #f9f3ff;
  --text-300: #ceb9dd;
  --primary: #ff3d7f;
  --primary-strong: #ff1f69;
  --accent: #6bf2ff;
  --ring: rgba(255, 61, 127, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-100);
  background: radial-gradient(circle at 10% 10%, #2b1338 0%, var(--bg-900) 45%),
    radial-gradient(circle at 85% 25%, #1d2f47 0%, transparent 35%),
    var(--bg-900);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  z-index: -4;
}

.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -3;
}

.orb-a {
  background: #ff3d7f;
  top: -80px;
  right: -70px;
  animation: driftA 10s ease-in-out infinite;
}

.orb-b {
  background: #4ad9ff;
  bottom: -120px;
  left: -80px;
  animation: driftB 12s ease-in-out infinite;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, 40px);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(45px, -35px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(7, 4, 12, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.12rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), #ff8cb3);
  box-shadow: 0 0 26px rgba(255, 61, 127, 0.48);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--text-300);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-100);
}

.hero {
  padding-top: 64px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: #ffd7e8;
}

.hero-lead {
  margin-top: 22px;
  color: var(--text-300);
  max-width: 620px;
  line-height: 1.7;
}

.cta-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 10px 26px rgba(255, 61, 127, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% {
    transform: translateX(-120%);
  }
  45%,
  100% {
    transform: translateX(120%);
  }
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-300);
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45rem;
  background: linear-gradient(145deg, var(--primary), #ffa3c4);
  box-shadow: 0 0 14px rgba(255, 61, 127, 0.5);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.phone-shell {
  margin-inline: auto;
  width: min(340px, 100%);
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(155deg, #2a2334, #100a16);
  box-shadow: 0 36px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-notch {
  margin: 0 auto 10px;
  width: 120px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: #0a0811;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-screen {
  position: relative;
  height: 590px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a1237 0%, #140a1d 60%, #0e0814 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.mockup-media.active {
  display: block;
}

.mockup-fallback {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fallback-top {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.fallback-card {
  height: 170px;
  border-radius: 16px;
  background: linear-gradient(130deg, rgba(255, 61, 127, 0.42), rgba(107, 242, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulseCard 2.8s ease-in-out infinite;
}

.fallback-card.thin {
  height: 90px;
  animation-delay: 0.5s;
}

@keyframes pulseCard {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.mockup-note {
  margin: 10px 2px 2px;
  color: var(--text-300);
  font-size: 0.75rem;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(17, 14, 26, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.chip-a {
  top: 46px;
  left: -12px;
  color: #ffc4db;
  animation: chipFloat 4s ease-in-out infinite;
}

.chip-b {
  right: -6px;
  top: 215px;
  color: #b5efff;
  animation: chipFloat 4.5s ease-in-out infinite;
}

.chip-c {
  left: 10px;
  bottom: 30px;
  color: #ffd9a6;
  animation: chipFloat 5s ease-in-out infinite;
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.motion-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.motion-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.motion-card h3 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--text-300);
}

.lottie-slot {
  width: 100%;
  height: 130px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.12), rgba(107, 242, 255, 0.08));
  position: relative;
  overflow: hidden;
}

.lottie-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: slotSweep 2.8s linear infinite;
}

.lottie-slot.loaded::before {
  display: none;
}

@keyframes slotSweep {
  to {
    transform: translateX(120%);
  }
}

.features,
.flow,
.waitlist {
  padding-top: 90px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.feature-card {
  border-radius: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 127, 0.42);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--text-300);
  line-height: 1.65;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline li {
  border-radius: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 61, 127, 0.9), rgba(255, 31, 105, 0.8));
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 16px 24px rgba(255, 31, 105, 0.25);
}

.timeline h3 {
  margin: 2px 0 6px;
  font-size: 1.06rem;
}

.timeline p {
  margin: 0;
  color: var(--text-300);
}

.waitlist-inner {
  border-radius: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.12), rgba(107, 242, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
}

.waitlist-inner h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.waitlist-inner p {
  margin-top: 12px;
  color: var(--text-300);
  line-height: 1.7;
}

.site-footer {
  padding: 42px 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-300);
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text-100);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .motion-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .floating-chip {
    display: none;
  }

  .mockup-screen {
    height: 520px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
