@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #050505;
  --card: #111;
  --text: #f6f8fb;
  --muted: #b6c2d1;
  --accent: linear-gradient(120deg, #73ff52, #2df1c2);
  --accent-solid: #6dff52;
  --shadow: 0 20px 30px rgba(37, 255, 153, 0.15);
  --glow-1: #1a4a21;
  --glow-2: #0d5a4f;
  --glow-3: #0d3016;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(115, 255, 82, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(45, 241, 194, 0.3), transparent 40%),
    linear-gradient(160deg, var(--glow-3), var(--glow-1) 40%, var(--glow-2));
  animation: aurora 25s ease-in-out infinite alternate;
  z-index: -1;
}

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

.mobile-only {
  min-height: 100vh;
}

.hero {
  width: min(420px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.logo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.3rem, 7vw, 2.9rem);
  line-height: 1.1;
  margin: 0;
}

.subhead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  background-image: var(--accent);
  color: #041b06;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:active {
  transform: scale(0.98);
}

.bonus {
  margin: 0;
  font-size: 0.85rem;
  color: #9de882;
}

.detected {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.flow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.highlights li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}

.highlights li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--accent-solid);
}

.screens {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 0.5rem 0;
  --screen-width: 220px;
}

.screen-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slide 22s linear infinite;
  animation-delay: -11s;
  will-change: transform;
}

.screen-track img {
  width: var(--screen-width);
  max-width: 46vw;
  flex: 0 0 auto;
  border-radius: 1.25rem;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen-track {
    animation: none;
  }
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.review {
  position: relative;
  padding: 1px;
  border-radius: 1.4rem;
  background: linear-gradient(140deg, rgba(115, 255, 82, 0.75), rgba(45, 241, 194, 0.4));
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(8, 10, 14, 0.92);
  z-index: 0;
}

.review > * {
  position: relative;
  z-index: 1;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0;
}

.name {
  margin: 0;
  font-weight: 600;
}

.date {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.stars span {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  background: var(--accent);
  -webkit-background-clip: text;
  color: transparent;
}

.quote {
  margin: 0.65rem 1rem 0.4rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: #f3ffec;
}

.helpful {
  margin: 0 1rem 1rem;
  font-size: 0.75rem;
  color: rgba(182, 194, 209, 0.85);
}

footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.desktop-guard {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: var(--bg);
  color: var(--text);
}

@media (min-width: 600px) {
  .mobile-only {
    display: none;
  }

  .desktop-guard {
    display: flex;
  }
}

@keyframes aurora {
  0% {
    transform: scale(1);
    filter: hue-rotate(0deg);
  }
  50% {
    transform: scale(1.04) translate3d(-1%, -1%, 0);
    filter: hue-rotate(20deg);
  }
  100% {
    transform: scale(1.02) translate3d(1%, 1%, 0);
    filter: hue-rotate(-15deg);
  }
}
