:root {
  color-scheme: dark;
  --bg: #05030b;
  --text: #f7f4ff;
  --muted: #c4bfd8;
  --muted-2: #8e88a6;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --purple: #9b5cff;
  --violet: #6d47ff;
  --blue: #2d7cff;
  --cyan: #28e7d0;
  --green: #9cff78;
  --gold: #ffd56a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open,
body.is-loading {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  gap: 18px;
  background: #05030b;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.is-ready .loading-screen {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: #05030b;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 48px rgba(40, 231, 208, 0.42);
}

.loader-bar {
  width: 160px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  animation: loadingMove 0.9s ease-in-out infinite alternate;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(155, 92, 255, 0.4), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(45, 124, 255, 0.36), transparent 34rem),
    radial-gradient(circle at 50% 78%, rgba(40, 231, 208, 0.18), transparent 36rem),
    linear-gradient(180deg, #05030b 0%, #090615 48%, #020105 100%);
}

.aurora {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.52;
  animation: floatGlow 11s ease-in-out infinite alternate;
}

.aurora-one {
  top: 14%;
  left: -11rem;
  background: rgba(155, 92, 255, 0.54);
}

.aurora-two {
  right: -13rem;
  bottom: 10%;
  background: rgba(40, 231, 208, 0.28);
  animation-delay: -3s;
}

.aurora-three {
  top: 40%;
  right: 18%;
  width: 18rem;
  height: 18rem;
  background: rgba(45, 124, 255, 0.2);
  animation-delay: -6s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
}

[data-glass] {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 24px), var(--max));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-logo {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.24));
}

@media (max-width: 640px) {
  .brand-logo {
    width: 118px;
  }
}


.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #03020a;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 32px rgba(40, 231, 208, 0.25);
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav-toggle span + span {
  margin-top: -12px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: 84px 12px auto;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 5, 18, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-open .nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav a {
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: #03020a !important;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  align-items: center;
  gap: 26px;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 9.4vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 8.4vw, 4.65rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 4.4vw, 1.32rem);
}

.hero-clarity {
  max-width: 690px;
  margin-bottom: 22px;
  color: #e9e4ff;
  font-size: clamp(1rem, 3.6vw, 1.14rem);
  font-weight: 720;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-assurance span {
  position: relative;
  padding-left: 20px;
}

.hero-assurance span::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "✓";
}

.hero-social-proof {
  max-width: 560px;
  margin: 12px 0 18px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.hero-benefits {
  display: grid;
  gap: 10px;
  max-width: 650px;
  padding: 12px;
  border-radius: var(--radius);
}

.hero-benefits div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.benefit-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(40, 231, 208, 0.14);
}

.hero-benefits strong {
  color: var(--text);
  font-size: 0.96rem;
}

.hero-mini-evolution {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px;
  border-radius: var(--radius);
}

.hero-mini-evolution span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.hero-mini-evolution b {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 18px rgba(40, 231, 208, 0.36);
}

.mini-avatar {
  display: block;
  width: 34px;
  height: 44px;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(45, 124, 255, 0.34));
  box-shadow: 0 0 22px rgba(45, 124, 255, 0.28);
}

.mini-avatar.mid {
  background: linear-gradient(180deg, #fbfffe, rgba(40, 231, 208, 0.46));
  box-shadow: 0 0 25px rgba(40, 231, 208, 0.35);
}

.mini-avatar.elite {
  background: linear-gradient(180deg, #fff7d6, rgba(155, 92, 255, 0.5));
  box-shadow: 0 0 30px rgba(255, 213, 106, 0.38);
}

.instant-value {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px;
  border-radius: var(--radius);
}

.instant-value div {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.instant-value strong {
  color: var(--text);
  font-size: 0.9rem;
}

.instant-value span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.button-primary {
  color: #03020a;
  background: linear-gradient(135deg, var(--cyan), #8dffb6 45%, var(--purple));
  box-shadow: 0 18px 48px rgba(40, 231, 208, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.trust-row {
  margin-top: 16px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 5%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(155, 92, 255, 0.4);
  filter: blur(58px);
  content: "";
}

.hero-visual img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  animation: imageFloat 7s ease-in-out infinite;
}

.hero-video-visual {
  width: min(100%, 560px);
}

.hero-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(5, 3, 11, 0.72);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.5),
    0 0 72px rgba(40, 231, 208, 0.13);
}

.hero-video-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, 0.18), transparent 38%);
  content: "";
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(680px, calc(100svh - 150px));
  object-fit: cover;
  border-radius: 8px;
}

.video-caption-card {
  right: 4%;
  bottom: 5%;
}

.particle {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: particleDrift 5s ease-in-out infinite;
}

.particle-a {
  top: 12%;
  left: 18%;
}

.particle-b {
  right: 10%;
  top: 36%;
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
  animation-delay: -1.5s;
}

.particle-c {
  bottom: 16%;
  left: 42%;
  animation-delay: -3s;
}

.hero-card {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  padding: 12px;
}

.xp-card {
  top: 7%;
  left: -3%;
  width: min(176px, 46vw);
}

.progress-card {
  right: 2%;
  bottom: 8%;
  width: min(190px, 45vw);
}

.reward-card,
.streak-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reward-card {
  bottom: 27%;
  left: -4%;
}

.streak-card {
  top: 23%;
  right: -3%;
}

.card-label,
.plan-name,
.state-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.22rem;
}

.meter {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  animation: meterPulse 2.6s ease-in-out infinite;
}

.coin,
.streak-flame {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.coin {
  background:
    radial-gradient(circle at 36% 30%, #fff, transparent 16%),
    linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(156, 255, 120, 0.3);
}

.streak-flame {
  border-radius: 60% 60% 60% 20%;
  background: linear-gradient(135deg, var(--gold), #ff6b8d, var(--purple));
  box-shadow: 0 0 28px rgba(255, 213, 106, 0.28);
  transform: rotate(-18deg);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 26px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.steps,
.feature-grid,
.pricing-grid,
.alliance-grid,
.smart-grid {
  display: grid;
  gap: 14px;
}

.step,
.feature,
.price-card,
.concept-card,
.final-cta,
.avatar-stage,
.future-panel,
.world-map,
.ranking-card,
.challenge-card,
.friends-card,
.smart-card {
  border-radius: var(--radius);
}

.step,
.feature,
.price-card,
.ranking-card,
.challenge-card,
.friends-card,
.smart-card {
  padding: 22px;
}

.step,
.feature {
  min-height: 176px;
}

.progress-steps {
  position: relative;
  z-index: 0;
}

.progress-steps::before {
  display: none;
  content: "";
}

.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
}

.progress-steps .step {
  position: relative;
  z-index: 1;
}

.progress-steps .step::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 14%),
    linear-gradient(135deg, rgba(40, 231, 208, 0.52), rgba(155, 92, 255, 0.58));
  box-shadow: 0 0 26px rgba(40, 231, 208, 0.26);
  content: "";
  animation: softPulse 2.8s ease-in-out infinite;
}

.feature {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.feature::after,
.price-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(40, 231, 208, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
  content: "";
}

.feature:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 231, 208, 0.34);
}

.feature:hover::after,
.price-card:hover::after {
  opacity: 1;
}

.smart-section {
  position: relative;
}

.smart-grid {
  align-items: stretch;
}

.smart-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.smart-card::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 22px 20px, rgba(40, 231, 208, 0.2), transparent 32%);
  opacity: 0.82;
  content: "";
}

.smart-card::after {
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 160px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.18), transparent 62%);
  content: "";
}

.smart-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 231, 208, 0.38);
  box-shadow:
    0 24px 86px rgba(40, 231, 208, 0.1),
    var(--shadow);
}

.smart-card h3,
.smart-card p,
.smart-card ul,
.smart-card .smart-icon,
.smart-card .phone-mockup {
  position: relative;
  z-index: 1;
}

.smart-card p {
  margin-bottom: 16px;
}

.smart-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.smart-card li {
  position: relative;
  padding-left: 22px;
}

.smart-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(40, 231, 208, 0.4);
  content: "";
}

.phone-mockup {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 18.7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #07050e;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.035),
    0 28px 82px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(40, 231, 208, 0.15);
}

.phone-mockup::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  transform: translateX(-50%);
  content: "";
}

.phone-mockup::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(40, 231, 208, 0.12), transparent 34%);
  content: "";
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.card-phone {
  width: min(210px, 68vw);
  margin: auto auto 4px;
}

.smart-featured .card-phone {
  width: min(230px, 70vw);
}

.smart-featured {
  border-color: rgba(40, 231, 208, 0.38);
  background:
    linear-gradient(135deg, rgba(40, 231, 208, 0.14), rgba(155, 92, 255, 0.12)),
    var(--glass-strong);
}

.smart-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.8), transparent 13%),
    linear-gradient(135deg, rgba(40, 231, 208, 0.28), rgba(155, 92, 255, 0.26));
  box-shadow: 0 0 34px rgba(40, 231, 208, 0.18);
}

.smart-icon::before,
.smart-icon::after {
  display: block;
  content: "";
}

.gym-icon::before {
  width: 28px;
  height: 10px;
  border: 4px solid #f7f4ff;
  border-right-width: 8px;
  border-left-width: 8px;
  border-radius: 8px;
}

.nutrition-icon::before {
  width: 24px;
  height: 30px;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(180deg, var(--green), var(--cyan));
}

.future-icon::before {
  width: 30px;
  height: 30px;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  box-shadow:
    inset 0 0 14px rgba(40, 231, 208, 0.35),
    0 0 18px rgba(40, 231, 208, 0.35);
}

.avatar-icon::before {
  width: 24px;
  height: 34px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #fff7d6, rgba(155, 92, 255, 0.52));
}

.journey-icon::before {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, var(--cyan) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 32%, var(--purple) 0 3px, transparent 4px),
    radial-gradient(circle at 48% 78%, var(--gold) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.alliance-icon::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow:
    -15px 12px 0 rgba(155, 92, 255, 0.9),
    15px 12px 0 rgba(156, 255, 120, 0.9),
    0 0 22px rgba(40, 231, 208, 0.44);
}

.app-preview-section {
  overflow: hidden;
}

.preview-rail {
  display: grid;
  grid-auto-columns: minmax(230px, 72vw);
  grid-auto-flow: column;
  gap: 18px;
  margin-inline: -16px;
  padding: 8px 16px 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
}

.preview-rail::-webkit-scrollbar {
  height: 8px;
}

.preview-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(40, 231, 208, 0.32);
}

.preview-phone {
  position: relative;
  scroll-snap-align: center;
}

.preview-phone > span {
  display: inline-block;
  margin: 0 0 14px 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 26px rgba(155, 92, 255, 0.16);
}

.floating-phone {
  animation: phoneFloat 7s ease-in-out infinite;
}

.floating-phone:nth-child(2n) {
  animation-delay: -2.4s;
}

.floating-phone:nth-child(3n) {
  animation-delay: -4.2s;
}

.avatar-stage {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.avatar-level {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.avatar-level strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.avatar-level.elite {
  border: 1px solid rgba(255, 213, 106, 0.2);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 213, 106, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.evolution-arrow {
  display: block;
  width: 50px;
  height: 2px;
  margin: auto;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(40, 231, 208, 0.4);
}

.avatar-orbit {
  position: relative;
  display: grid;
  width: min(190px, 54vw);
  aspect-ratio: 1;
  margin: 18px auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(155, 92, 255, 0.28), transparent 52%),
    rgba(255, 255, 255, 0.04);
}

.avatar-orbit::before,
.avatar-orbit::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(40, 231, 208, 0.22);
  border-radius: inherit;
  content: "";
  animation: spin 12s linear infinite;
}

.avatar-orbit::after {
  inset: 31%;
  border-color: rgba(155, 92, 255, 0.36);
  animation-duration: 8s;
  animation-direction: reverse;
}

.avatar-orbit span {
  display: block;
  width: 43%;
  height: 66%;
  border-radius: 999px 999px 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(45, 124, 255, 0.34));
  box-shadow: 0 0 45px rgba(45, 124, 255, 0.38);
}

.avatar-soft span {
  opacity: 0.72;
}

.avatar-orbit.upgraded {
  border-color: rgba(40, 231, 208, 0.45);
  background:
    radial-gradient(circle, rgba(40, 231, 208, 0.24), transparent 52%),
    radial-gradient(circle at 50% 100%, rgba(156, 255, 120, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.05);
}

.avatar-orbit.upgraded span {
  background: linear-gradient(180deg, #fbfffe, rgba(40, 231, 208, 0.46));
  box-shadow: 0 0 54px rgba(40, 231, 208, 0.46);
}

.avatar-orbit.ascended {
  border-color: rgba(255, 213, 106, 0.55);
  background:
    radial-gradient(circle, rgba(255, 213, 106, 0.24), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(155, 92, 255, 0.24), transparent 52%),
    rgba(255, 255, 255, 0.06);
}

.avatar-orbit.ascended span {
  background: linear-gradient(180deg, #fff7d6, rgba(155, 92, 255, 0.5));
  box-shadow: 0 0 64px rgba(255, 213, 106, 0.48);
}

.future-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.future-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.future-avatar {
  text-align: center;
}

.timeline {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.timeline span {
  position: relative;
  padding: 12px 12px 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.timeline span::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(40, 231, 208, 0.45);
  transform: translateY(-50%);
  content: "";
}

.future-stats {
  display: grid;
  gap: 10px;
}

.future-stats div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.future-stats strong {
  display: block;
  font-size: 1.45rem;
}

.future-stats span {
  color: var(--muted);
}

.world-map {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
}

.world-map::before {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), rgba(255, 255, 255, 0.12));
  opacity: 0.55;
  content: "";
}

.world {
  position: relative;
  z-index: 1;
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 3, 11, 0.76);
}

.world strong {
  display: block;
  margin-top: 14px;
  font-size: 1.1rem;
}

.world p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.world.current {
  border-color: rgba(40, 231, 208, 0.48);
  box-shadow: 0 0 34px rgba(40, 231, 208, 0.12);
}

.world.locked {
  opacity: 0.72;
}

.world-icon {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(40, 231, 208, 0.18);
}

.forest {
  background: radial-gradient(circle at 40% 30%, #d8ffba, transparent 16%), linear-gradient(135deg, #46f0a5, #135e4f);
}

.volcano {
  background: radial-gradient(circle at 40% 30%, #fff1a8, transparent 16%), linear-gradient(135deg, #ff735b, #7333ff);
}

.ocean {
  background: radial-gradient(circle at 40% 30%, #ffffff, transparent 16%), linear-gradient(135deg, #28e7d0, #2d7cff);
}

.elite-world {
  background: radial-gradient(circle at 40% 30%, #fff, transparent 16%), linear-gradient(135deg, #ffd56a, #9b5cff);
}

.ascension {
  background: radial-gradient(circle at 40% 30%, #fff, transparent 16%), linear-gradient(135deg, #f7f4ff, #28e7d0, #6d47ff);
}

.split {
  display: grid;
  gap: 22px;
}

.alliance-grid {
  align-items: stretch;
}

.rank-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row strong {
  color: var(--cyan);
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
}

.rank-row.self {
  margin: 4px 0;
  padding: 14px 10px;
  border: 1px solid rgba(40, 231, 208, 0.28);
  border-radius: 8px;
  background: rgba(40, 231, 208, 0.08);
}

.week-dots,
.friend-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.week-dots span {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.week-dots .done {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 22px rgba(40, 231, 208, 0.24);
}

.friend-stack span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  font-weight: 850;
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.65), transparent 13%),
    linear-gradient(135deg, rgba(40, 231, 208, 0.2), rgba(155, 92, 255, 0.22));
}

.progress-section {
  overflow: hidden;
}

.concept-card {
  display: grid;
  gap: 20px;
  padding: 18px;
}

.avatar-state {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.progress-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.progress-path span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 22px rgba(40, 231, 208, 0.35);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.price-card h3 {
  margin: 10px 0;
  font-size: 2.35rem;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.price-card .button {
  margin-top: auto;
}

.featured {
  border-color: rgba(40, 231, 208, 0.45);
  background:
    linear-gradient(135deg, rgba(40, 231, 208, 0.17), rgba(155, 92, 255, 0.16)),
    var(--glass-strong);
  box-shadow:
    0 28px 96px rgba(40, 231, 208, 0.12),
    var(--shadow);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #05130f;
  font-size: 0.78rem;
  font-weight: 850;
  background: var(--cyan);
}

.final-cta {
  position: relative;
  max-width: var(--max);
  overflow: hidden;
  padding: 34px 22px;
  text-align: left;
}

.final-cta::after {
  position: absolute;
  inset: auto -10% -30% 30%;
  height: 220px;
  background: radial-gradient(circle, rgba(40, 231, 208, 0.2), transparent 62%);
  content: "";
}

.final-cta h2,
.final-cta p,
.final-cta a,
.final-cta .eyebrow {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 840px;
}

.final-cta p {
  max-width: 680px;
}

.footer {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0 44px;
  color: var(--muted);
}

.footer .brand {
  color: var(--text);
}

.disclaimers {
  display: grid;
  gap: 8px;
}

.disclaimers p {
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (min-width: 720px) {
  .section {
    padding: 92px 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    padding-top: 24px;
  }

  .instant-value {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps,
  .pricing-grid,
  .alliance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-featured {
    grid-column: span 2;
  }

  .smart-featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.58fr);
    column-gap: 24px;
    align-items: center;
  }

  .smart-featured .smart-icon,
  .smart-featured h3,
  .smart-featured p,
  .smart-featured ul {
    grid-column: 1;
  }

  .smart-featured .card-phone {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .avatar-stage {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    padding: 26px;
  }

  .future-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(120px, 0.7fr) minmax(0, 0.8fr);
    align-items: center;
    padding: 26px;
  }

  .future-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .world-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 26px;
  }

  .preview-rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .concept-card {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    padding: 26px;
  }

  .progress-path {
    width: 70px;
  }

  .final-cta {
    padding: 56px;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    padding: 10px 11px;
  }

  .progress-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .progress-steps::before {
    position: absolute;
    top: 54px;
    left: 7%;
    z-index: -1;
    display: block;
    width: 86%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
    box-shadow: 0 0 24px rgba(40, 231, 208, 0.36);
  }

  .split {
    grid-template-columns: 0.76fr 1.24fr;
    align-items: start;
  }

  .sticky-heading {
    position: sticky;
    top: 110px;
  }

  .footer {
    grid-template-columns: 1fr 1.7fr auto;
    align-items: start;
  }
}

@media (max-width: 420px) {
  h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 8.5vw, 2.25rem);
  }

  .hero-subtitle {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-clarity {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-mini-evolution {
    padding: 8px;
  }

  .hero-mini-evolution span {
    font-size: 0.7rem;
  }

  .mini-avatar {
    width: 28px;
    height: 36px;
  }

  .instant-value {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .instant-value div {
    padding: 8px 6px;
  }

  .instant-value strong,
  .instant-value span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurance {
    gap: 8px 12px;
    font-size: 0.86rem;
  }

  .hero-social-proof {
    margin: 10px 0 12px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-benefits {
    gap: 8px;
    padding: 10px;
  }

  .hero-benefits div {
    gap: 8px;
    padding: 8px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  .hero-benefits strong {
    font-size: 0.9rem;
  }

  .card-phone {
    width: min(184px, 58vw);
  }

  .smart-card {
    min-height: auto;
  }

  .xp-card {
    top: 4%;
    left: 0;
  }

  .reward-card {
    left: 0;
  }

  .progress-card {
    right: 0;
  }

  .streak-card {
    top: 20%;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes loadingMove {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(145%);
  }
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3rem, -2rem, 0) scale(1.12);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes particleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate3d(16px, -18px, 0);
    opacity: 1;
  }
}

@keyframes meterPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.45);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
