:root {
  --black: #04040a;
  --card: #0c0c18;
  --border: rgba(255, 255, 255, 0.07);
  --gold: #f5c842;
  --gold2: #fde68a;
  --purple: #8b5cf6;
  --purple2: #c084fc;
  --muted: #64748b;
  --body: #a1aec2;
  --white: #ffffff;
  --r24: 24px;
  --r16: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  width: 100%;
  max-width: 420px;
  background: #0c0c18;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 28px;
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}

.popup-download {
  display: block;
  background: #f5c842;
  color: #000;
  padding: 16px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  margin: 22px 0 14px;
}

.popup-actions {
  display: flex;
  gap: 12px;
}

.popup-actions a {
  flex: 1;
  padding: 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(245, 200, 66, 0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease-out,
    width 0.2s,
    height 0.2s,
    opacity 0.2s;
}
body:hover #cursor {
  opacity: 1;
}

/* ── NOISE OVERLAY ─────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9997;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(4, 4, 10, 0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--body);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(245, 200, 66, 0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(245, 200, 66, 0.45);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: #6d28d9;
  opacity: 0.18;
  top: -120px;
  right: -80px;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: #f59e0b;
  opacity: 0.1;
  bottom: 60px;
  left: -60px;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: #7c3aed;
  opacity: 0.12;
  top: 40%;
  left: 40%;
}

/* Animated grid lines */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--purple2);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.85;
  color: var(--body);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow:
    0 0 30px rgba(245, 200, 66, 0.35),
    0 8px 30px rgba(0, 0, 0, 0.4);
}
.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 50px rgba(245, 200, 66, 0.5),
    0 16px 40px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.trust-item strong {
  color: #fff;
  font-weight: 700;
}

/* ── PHONE MOCKUP ──────────────────────────────────────── */
.phone-wrap {
  position: relative;
  animation: floatPhone 5s ease-in-out infinite;
}

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

.phone-glow-ring {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 70%,
    rgba(139, 92, 246, 0.4),
    transparent
  );
  animation: spinRing 8s linear infinite;
}
@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.phone-device {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-screen {
  background: #0f0a1e;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/17;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px;
  height: 30px;
  background: #04040a;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Mini game preview inside phone */
.phone-game {
  flex: 1;
  background: linear-gradient(180deg, #0f0728 0%, #150a35 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px 8px;
}

.phone-stars {
  position: absolute;
  inset: 0;
}
.phone-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--t, 2s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: var(--o, 0.3);
  }
  50% {
    opacity: 0.05;
  }
}

.phone-score-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  margin-bottom: 4px;
  z-index: 2;
}
.phone-score-label {
  font-size: 8px;
  color: #9d4edd;
  font-weight: 800;
  letter-spacing: 1px;
}
.phone-score-val {
  font-size: 14px;
  color: #fff;
  font-weight: 900;
}

/* Bubble grid */
.phone-bubbles {
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.bubble-row {
  display: flex;
  gap: 3px;
}
.bub {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.bub::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 18%;
  width: 35%;
  height: 22%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

/* Shooter at bottom */
.phone-shooter {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  padding-bottom: 6px;
}
.shooter-barrel {
  width: 8px;
  height: 22px;
  background: linear-gradient(180deg, #7b5ea7, #4a0080);
  border-radius: 4px;
}
.shooter-bubble {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d8abff, #9d4edd, #4a0080);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.7);
  position: relative;
}
.shooter-bubble::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 18%;
  width: 35%;
  height: 22%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

/* Floating badge on phone */
.phone-badge {
  position: absolute;
  background: rgba(12, 12, 24, 0.9);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
  white-space: nowrap;
}
.phone-badge.badge-top {
  top: -20px;
  right: -30px;
  animation-delay: 0.5s;
}
.phone-badge.badge-bot {
  bottom: 20px;
  left: -30px;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}
.badge-icon {
  font-size: 18px;
}
.badge-text {
  line-height: 1.2;
}
.badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.badge-text span {
  font-size: 11px;
  color: var(--muted);
}

/* ── SECTION COMMONS ───────────────────────────────────── */
.section-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 60px;
}

.s-label {
  display: inline-block;
  color: var(--purple2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s-title {
  font-family: "Syne", sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.s-sub {
  color: var(--body);
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
}

/* ── STATS STRIP ───────────────────────────────────────── */
.stats {
  padding: 0 60px 100px;
}
.stats-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r24);
  overflow: hidden;
}
.stat-cell {
  background: var(--card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-cell:hover {
  background: #111125;
}
.stat-cell::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-cell:hover::before {
  opacity: 1;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

/* ── FEATURES ──────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

.features-header {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
  group: feat;
}
.feat:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
}
/* glowing inner shadow on hover */
.feat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(139, 92, 246, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.feat:hover::before {
  opacity: 1;
}

/* big feature */
.feat.feat-big {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.feat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: transform 0.3s;
}
.feat:hover .feat-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.feat h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feat p {
  color: var(--body);
  line-height: 1.75;
  font-size: 15px;
}

/* Mini visual inside big feature */
.feat-visual {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(245, 200, 66, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-visual-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
}
.feat-visual-row .v-label {
  font-size: 13px;
  color: var(--body);
}
.feat-visual-row .v-val {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.feat-tag {
  display: inline-block;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how {
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  margin-top: 60px;
}
.step {
  background: var(--card);
  padding: 50px 40px;
  position: relative;
  transition: background 0.3s;
}
.step:hover {
  background: #101022;
}

.step-num {
  font-family: "Syne", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 24px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.step:hover .step-num {
  color: rgba(245, 200, 66, 0.06);
}

.step-icon {
  font-size: 42px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.3s;
}
.step:hover .step-icon {
  transform: scale(1.15);
}

.step h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  color: var(--body);
  line-height: 1.75;
  font-size: 15px;
}

.step-connector {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--black);
  z-index: 2;
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testi {
  padding: 100px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}
.testi-text {
  color: var(--body);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
}
.testi-handle {
  color: var(--muted);
  font-size: 13px;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  padding: 80px 60px 120px;
}

.cta-box {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.25) 0%,
    rgba(15, 10, 30, 0.9) 50%,
    rgba(120, 53, 15, 0.15) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 90px 60px;
  text-align: center;
}

.cta-orb1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #7c3aed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  top: -100px;
  left: -80px;
  pointer-events: none;
}
.cta-orb2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #d97706;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  bottom: -80px;
  right: -40px;
  pointer-events: none;
}

.cta-eyebrow {
  color: var(--purple2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-box h2 {
  font-family: "Syne", sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-box h2 .gold {
  color: var(--gold);
}

.cta-box p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 60px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.footer-logo span {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}



/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ───────────────── MOBILE RESPONSIVE FIX ───────────────── */

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }

  nav {
    padding: 16px 18px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px;
  }

  .hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
  }

  .trust-bar {
    gap: 14px;
  }

  .trust-item {
    font-size: 13px;
  }

  .phone-wrap {
    max-width: 320px;
    margin: auto;
  }

  .phone-device {
    border-radius: 34px;
    padding: 12px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .stats {
    padding: 0 20px 70px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    padding: 28px;
  }

  .stat-num {
    font-size: 40px;
  }

  .section-wrap {
    padding: 0 20px;
  }

  .s-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .s-sub {
    font-size: 15px;
  }

  .features {
    padding: 70px 0;
  }

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

  .feat {
    padding: 26px;
    border-radius: 22px;
  }

  .feat.feat-big {
    grid-template-columns: 1fr;
  }

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

  .step {
    padding: 36px 24px;
  }

  .step-num {
    font-size: 54px;
  }

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

  .cta {
    padding: 60px 20px 80px;
  }

  .cta-box {
    padding: 60px 24px;
    border-radius: 28px;
  }

  .cta-box h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-gold,
  .cta-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  footer {
    padding: 40px 20px;
    text-align: center;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    padding: 18px 30px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 120px 30px 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .phone-badge.badge-top {
    display: none;
  }
  .phone-badge.badge-bot {
    display: none;
  }
  .section-wrap,
  .stats,
  .cta {
    padding-left: 30px;
    padding-right: 30px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feat.feat-big {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .s-title {
    font-size: 38px;
  }
  .cta-box h2 {
    font-size: 44px;
  }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 18px 50px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 62px);
    line-height: 0.95;
    letter-spacing: -1.5px;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero h1 em {
    display: block;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .phone-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none !important;
  }

  nav {
    padding: 14px 20px !important;
  }

  .nav-logo {
    font-size: 20px !important;
  }

  .nav-cta {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .hero {
    padding: 105px 20px 45px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero-inner {
    display: block !important;
    width: 100% !important;
  }

  .hero h1 {
    font-size: 48px !important;
    line-height: 1.02 !important;
    letter-spacing: -1px !important;
    word-break: normal !important;
    max-width: 100% !important;
  }

  .hero h1 em {
    display: block !important;
  }

  .hero-desc {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 36px !important;
  }

  .btn-gold,
  .btn-ghost {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px !important;
    font-size: 15px !important;
  }

  .trust-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .trust-item {
    font-size: 12px !important;
  }

  .phone-wrap {
    display: none !important;
  }

  .stats {
    padding: 0 20px 65px !important;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr !important;
  }

  .stat-cell {
    padding: 24px 18px !important;
  }

  .stat-num {
    font-size: 34px !important;
    letter-spacing: -1px !important;
  }

  .section-wrap,
  .cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .s-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }

  .features {
    padding: 65px 0 !important;
  }

  .feat {
    padding: 24px !important;
  }

  .cta-box {
    padding: 50px 22px !important;
  }

  .cta-box h2 {
    font-size: 34px !important;
  }
}
