@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

* { box-sizing: border-box; }

:root {
  --bg: #08080a;
  --surface: #111115;
  --surface-2: #17171c;
  --text: #f8f8f5;
  --muted: #a4a4ad;
  --line: rgba(255,255,255,.11);
  --lime: #d8ff45;
  --purple: #9b6cff;
  --pink: #ff5aa7;
  --orange: #ff9b43;
  --green: #57e3a1;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
}

a { color: inherit; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(155,108,255,.16), transparent 30%),
    radial-gradient(circle at 100% 40%, rgba(216,255,69,.07), transparent 25%),
    var(--bg);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .22;
}

.orb-a { width: 280px; height: 280px; background: var(--purple); top: 80px; left: -180px; }
.orb-b { width: 260px; height: 260px; background: var(--pink); top: 680px; right: -160px; }
.orb-c { width: 220px; height: 220px; background: var(--lime); top: 1400px; left: -130px; }

.nav-wrap { position: relative; z-index: 2; padding-top: 22px; }

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.brand-dot {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 4px;
  transform: rotate(45deg);
  background: var(--lime);
  box-shadow: 0 0 25px rgba(216,255,69,.55);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b7b7bf;
  font-size: 11px;
  font-weight: 600;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54e39c;
  box-shadow: 0 0 12px rgba(84,227,156,.8);
}

.nav-country {
  margin-left: 5px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 90px;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.spark { font-size: 15px; }

.hero-title {
  max-width: 780px;
  margin: 15px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .91;
  font-weight: 700;
  letter-spacing: -5px;
}

.gradient-text {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #d8ff45 0%, #a5ffad 35%, #9b6cff 75%, #ff5aa7 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: #a9a9b2;
  font-size: 17px;
  line-height: 1.65;
}

.trend-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 27px;
}

.trend-label {
  color: #6e6e77;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  margin-right: 4px;
}

.trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d4d4d9;
  font-size: 10px;
  font-weight: 600;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #e4e4e7;
  font-size: 11px;
}

.hero-proof small {
  margin-top: 3px;
  color: #76767e;
  font-size: 10px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #111;
  font-size: 10px;
  font-weight: 900;
}

.avatar-1 { background: #d8ff45; }
.avatar-2 { background: #9b6cff; color: #fff; }
.avatar-3 { background: #ff5aa7; }
.avatar-4 { background: #55e1a0; }

.conversion-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(17,17,21,.86);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}

.card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  right: -80px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(65px);
  opacity: .13;
  pointer-events: none;
}

.card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top h2 {
  margin: 5px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.premium-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,255,69,.3);
  border-radius: 14px;
  color: var(--lime);
  background: rgba(216,255,69,.08);
  font-size: 20px;
}

.offer-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #8f8f98;
  font-size: 10px;
}

.offer-line i { color: var(--lime); }

.step-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 21px;
}

.step-progress span {
  height: 3px;
  flex: 1;
  border-radius: 10px;
  background: #292930;
}

.step-progress .active,
.step-progress .done { background: var(--lime); }

.flow-step h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  letter-spacing: -.8px;
}

.step-copy {
  margin: 8px 0 19px;
  color: #888891;
  font-size: 12px;
  line-height: 1.55;
}

.step-copy strong { color: #dddde1; }

.field-label {
  display: block;
  margin-bottom: 7px;
  color: #b5b5bd;
  font-size: 10px;
  font-weight: 700;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #303038;
  border-radius: 14px;
  background: #0d0d10;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.phone-input-group:focus-within {
  border-color: rgba(216,255,69,.6);
  box-shadow: 0 0 0 3px rgba(216,255,69,.07);
}

.country-code {
  padding: 15px 0 15px 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.phone-input-group input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 15px 15px 15px 8px;
  color: #fff;
  background: transparent;
  font-size: 14px;
}

.phone-input-group input::placeholder,
.pin-input::placeholder { color: #55555d; }

.cta-btn {
  min-height: 53px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  background: var(--lime);
  color: #101010;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(216,255,69,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cta-btn:hover {
  color: #101010;
  background: #e1ff67;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(216,255,69,.18);
}

.cta-btn:disabled { opacity: .55; }

.terms-copy {
  margin: 12px 0 0;
  color: #62626a;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.form-error {
  margin-top: 8px;
  color: #ff7777;
  font-size: 10px;
  font-weight: 700;
}

.pin-input {
  width: 100%;
  height: 58px;
  border: 1px solid #303038;
  border-radius: 14px;
  outline: 0;
  background: #0d0d10;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 9px;
}

.pin-input:focus {
  border-color: rgba(216,255,69,.6);
  box-shadow: 0 0 0 3px rgba(216,255,69,.07);
}

.change-btn {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #85858e;
  font-size: 11px;
  font-weight: 700;
}

.change-btn:hover { color: #fff; }

.development-note {
  margin: 10px 0 0;
  color: #7e7e86;
  font-size: 9px;
  text-align: center;
}

.development-note strong { color: #c9ff38; }

.success-step { text-align: center; padding: 8px 0; }

.success-ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 5px auto 17px;
  border: 1px solid rgba(216,255,69,.45);
  border-radius: 50%;
  background: rgba(216,255,69,.08);
  color: var(--lime);
  font-size: 30px;
  box-shadow: 0 0 45px rgba(216,255,69,.12);
}

.success-kicker {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}

.success-step h3 { margin-top: 7px; }

.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  margin-top: 9px;
  border: 1px solid #303038;
  border-radius: 14px;
  color: #e6e6e8;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.secondary-btn:hover { color: #fff; background: rgba(255,255,255,.04); }

.card-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #5f5f67;
  font-size: 9px;
}

.card-security i { color: #77dca7; }

.creator-section,
.spotlight-section,
.information-section {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -2px;
}

.section-heading h2 span { color: var(--lime); }

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: #777780;
  font-size: 12px;
  line-height: 1.6;
}

.trend-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease;
}

.trend-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.22);
}

.trend-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -50px;
  bottom: -60px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .25;
}

.trend-card-purple::after { background: var(--purple); }
.trend-card-orange::after { background: var(--orange); }
.trend-card-green::after { background: var(--green); }

.trend-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #4d4d55;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.trend-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 19px;
}

.trend-card h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  letter-spacing: -1px;
}

.trend-card p {
  max-width: 270px;
  margin: 0;
  color: #85858e;
  font-size: 11px;
  line-height: 1.55;
}

.trend-tag {
  display: inline-block;
  margin-top: 17px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #a5a5ad;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.spotlight-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 55px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 75% 50%, rgba(155,108,255,.3), transparent 28%),
    linear-gradient(120deg, #131317, #0e0e12);
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(216,255,69,.06), transparent 45%);
  pointer-events: none;
}

.spotlight-content {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.spotlight-content h2 {
  margin: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(37px, 5vw, 62px);
  line-height: .97;
  letter-spacing: -3px;
}

.spotlight-content h2 span { color: var(--lime); }

.spotlight-content p {
  max-width: 450px;
  color: #85858e;
  font-size: 13px;
  line-height: 1.6;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.phone-art {
  position: absolute;
  right: 7%;
  bottom: -55px;
  transform: rotate(8deg);
}

.phone-shell {
  width: 245px;
  height: 485px;
  padding: 9px;
  border: 1px solid #44444e;
  border-radius: 37px;
  background: #050506;
  box-shadow: -30px 30px 90px rgba(0,0,0,.65);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 76px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #050506;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 29px;
  background: linear-gradient(160deg, #22153e, #090a0e 65%);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  padding: 28px 16px 0;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.creator-face {
  position: relative;
  width: 170px;
  height: 210px;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 85px 85px 25px 25px;
  background: linear-gradient(160deg, #b8a4ff, #ff6da8 60%, #ffb55b);
}

.face-glow {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  filter: blur(20px);
}

.face-letter {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  font-family: "Space Grotesk", sans-serif;
  font-size: 90px;
  font-weight: 700;
}

.screen-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 67px;
  color: #fff;
}

.screen-copy span {
  display: block;
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1px;
}

.screen-copy strong {
  display: block;
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: .9;
}

.screen-stats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  color: #aaaab3;
  font-size: 7px;
}

.screen-stats i { color: #ff5aa7; }

.section-heading.compact { margin-bottom: 24px; }

.operator-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
}

.operator-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.operator-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #4eacff;
  color: #fff;
  font-weight: 900;
}

.operator-logo.virgin { background: #ef3340; }

.operator-top strong,
.operator-top small { display: block; }

.operator-top strong { font-size: 13px; }
.operator-top small { margin-top: 2px; color: #696970; font-size: 9px; }

.verified {
  margin-left: auto;
  color: #63dda1;
  font-size: 16px;
}

.price {
  margin-top: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -2px;
}

.price small {
  color: #888890;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.operator-meta {
  color: #8a8a92;
  font-size: 10px;
}

.operator-card p {
  margin: 13px 0 0;
  color: #66666e;
  font-size: 9px;
  line-height: 1.5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 25px 0;
  color: #73737b;
  font-size: 10px;
  font-weight: 700;
}

.trust-row i { color: var(--lime); }

.legal-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}

.legal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e4;
  font-size: 12px;
}

.legal-title i { color: var(--lime); }

.legal-panel p {
  margin: 8px 0 15px;
  color: #707078;
  font-size: 9px;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.legal-links a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #8b8b93;
  font-size: 9px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
  border-color: #44444d;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  color: #5d5d65;
  font-size: 9px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8b8be;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.footer-brand .brand-dot { width: 8px; height: 8px; }

@media (max-width: 991.98px) {
  .hero {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .hero-title { letter-spacing: -3.5px; }

  .phone-art {
    right: -20px;
    opacity: .55;
  }

  .spotlight-content { max-width: 60%; }
}

@media (max-width: 767.98px) {
  .nav-meta span:not(.live-dot):not(.nav-country) { display: none; }

  .hero {
    padding-top: 42px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(45px, 13vw, 70px);
    letter-spacing: -3.3px;
  }

  .hero-copy { font-size: 14px; }

  .trend-strip { gap: 6px; }

  .trend-label {
    width: 100%;
    margin-bottom: 2px;
  }

  .hero-proof { margin-top: 24px; }

  .conversion-card { padding: 22px; }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 15px;
  }

  .creator-section,
  .spotlight-section,
  .information-section {
    padding-bottom: 70px;
  }

  .spotlight-card {
    min-height: 560px;
    padding: 32px 25px;
  }

  .spotlight-content { max-width: 100%; }

  .spotlight-content h2 { letter-spacing: -2px; }

  .phone-art {
    right: 50%;
    bottom: -195px;
    transform: translateX(50%) rotate(6deg) scale(.82);
    opacity: 1;
  }

  .footer {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .nav-wrap { padding-top: 14px; }

  .brand { font-size: 25px; }

  .hero {
    padding-top: 35px;
  }

  .hero-title {
    font-size: 47px;
    letter-spacing: -2.8px;
  }

  .hero-copy { font-size: 13px; }

  .conversion-card {
    padding: 19px;
    border-radius: 23px;
  }

  .card-top h2 { font-size: 22px; }

  .offer-line {
    font-size: 9px;
  }

  .spotlight-card {
    min-height: 525px;
  }
}
