:root {
  --navy: #111536;
  --navy-2: #090d2d;
  --purple: #6d35f2;
  --purple-dark: #5420ca;
  --purple-soft: #8a5cff;
  --lavender: #f1ebff;
  --lavender-2: #faf8ff;
  --green: #169a50;
  --muted: #666b88;
  --line: #e6e1f2;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(51, 24, 120, .15);
  --shadow-sm: 0 10px 28px rgba(38, 21, 88, .09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body, button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button, input { min-width: 0; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad { padding: 76px 0; }
.section-pad-sm { padding: 52px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 225, 242, .85);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
}

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

.brand {
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -.05em;
}

.brand span { color: var(--purple); }

.store-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid #d9cdf8;
  border-radius: 12px;
  color: var(--purple-dark);
  background: #fff;
  font-size: .9rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.store-link:hover {
  transform: translateY(-1px);
  border-color: var(--purple-soft);
  background: #fbf9ff;
}

.store-link svg { width: 18px; height: 18px; }

.ad-section {
  position: relative;
  background: #fff;
}

.ad-section-top { padding: 22px 0 10px; }
.ad-section-inline { padding: 8px 0 18px; background: #fcfbff; }

.ad-slot {
  min-height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 18px;
  border: 1px dashed #cfc4ea;
  border-radius: 16px;
  color: #7b7197;
  background:
    linear-gradient(135deg, rgba(248,245,255,.92), rgba(255,255,255,.96)),
    repeating-linear-gradient(45deg, rgba(109,53,242,.035) 0 10px, transparent 10px 20px);
  text-align: center;
}

.ad-slot strong {
  color: #4f466b;
  font-size: .95rem;
}

.ad-slot small { font-size: .78rem; }

.ad-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid #ddd4f4;
  border-radius: 999px;
  color: #6f6391;
  background: #fff;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ad-slot-leaderboard,
.ad-slot-inline {
  max-width: 1040px;
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(165,122,255,.20), transparent 27%),
    radial-gradient(circle at 86% 6%, rgba(207,184,255,.30), transparent 31%),
    linear-gradient(135deg, #f5f1ff 0%, #fbf9ff 51%, #f1eaff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(124, 76, 244, .09);
  border-radius: 50%;
}

.hero::before { width: 520px; height: 520px; left: -320px; top: -180px; }
.hero::after { width: 580px; height: 580px; right: -390px; bottom: -300px; }

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(.2px);
}

.hero-decoration-one {
  width: 16px;
  height: 16px;
  left: 7%;
  top: 36%;
  background: #c4a9ff;
  box-shadow: 0 0 28px rgba(109,53,242,.35);
}

.hero-decoration-two {
  width: 10px;
  height: 10px;
  right: 8%;
  top: 22%;
  background: #8e61fb;
  box-shadow: 0 0 24px rgba(109,53,242,.28);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: 72px;
}

.hero-copy { max-width: 650px; }

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid #d9ccfb;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(255,255,255,.75);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(109,53,242,.10);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 6.3vw, 6.45rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 950;
}

h1 em {
  color: var(--purple);
  font-style: normal;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

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

.feature-pill {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(225, 218, 241, .92);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}

.feature-pill strong,
.feature-pill small { display: block; }
.feature-pill strong { font-size: .84rem; line-height: 1.2; }
.feature-pill small { margin-top: 4px; color: var(--muted); font-size: .69rem; }

.icon-tile,
.step-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: linear-gradient(135deg, #f2ebff, #e7dcff);
}

.icon-tile { width: 48px; height: 48px; border-radius: 14px; }
.icon-tile.mini { width: 36px; height: 36px; border-radius: 10px; }
.icon-tile svg { width: 24px; height: 24px; }
.icon-tile.mini svg { width: 19px; height: 19px; }

.claim-card {
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(224, 216, 241, .9);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.card-heading h2,
.status-copy h2,
.growth-card h2 {
  margin-bottom: 0;
}

.card-heading h2 { font-size: clamp(1.65rem, 2.3vw, 2.15rem); }
.kicker {
  margin-bottom: 3px;
  color: var(--purple);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.claim-form > label:first-of-type {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 900;
}

.input-wrap {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid #dcd7e9;
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.input-wrap:focus-within {
  border-color: var(--purple-soft);
  box-shadow: 0 0 0 4px rgba(109,53,242,.10);
}

.input-wrap svg {
  width: 20px;
  height: 20px;
  color: #9a96aa;
}

.fill-dot { fill: currentColor; stroke: none; }

.input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: .92rem;
}

.input-wrap input::placeholder { color: #a6a2b5; }

.field-message {
  min-height: 20px;
  margin: 5px 0 2px;
  color: #c72d45;
  font-size: .76rem;
}

.captcha-demo {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 8px 0 14px;
  padding: 14px;
  border: 1px dashed #d4cde5;
  border-radius: 13px;
  background: #fbfaff;
  cursor: pointer;
}

.captcha-demo input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-box {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid #bcb5ce;
  border-radius: 5px;
  background: #fff;
}

.captcha-demo input:checked + .check-box {
  border-color: var(--purple);
  background: var(--purple);
}

.captcha-demo input:checked + .check-box::after {
  content: "✓";
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
}

.captcha-label strong,
.captcha-label small { display: block; }
.captcha-label strong { font-size: .82rem; }
.captcha-label small { margin-top: 2px; color: var(--muted); font-size: .68rem; }

.captcha-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--purple);
}

.captcha-mark svg { width: 25px; height: 25px; }

.captcha-real {
  grid-template-columns: 1fr;
  align-items: start;
  cursor: default;
}

.captcha-real .captcha-label {
  margin-bottom: 4px;
}

.captcha-real .cf-turnstile {
  max-width: 100%;
  overflow: hidden;
}

.captcha-real iframe {
  max-width: 100%;
}

.primary-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7b38f7, #5b20d8);
  box-shadow: 0 13px 28px rgba(94, 34, 216, .26);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(94,34,216,.30);
}

.primary-button:disabled { opacity: .62; cursor: wait; }
.primary-button svg { width: 19px; height: 19px; }

.trust-list { margin-top: 14px; }
.trust-list p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .78rem;
}
.trust-list p:last-child { margin-bottom: 0; }
.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #bc9dff;
  border-radius: 50%;
  color: var(--purple);
  font-size: .67rem;
  font-weight: 950;
}

.how { background: #fff; }

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.035em;
}

.section-heading > span {
  width: 52px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--purple));
}
.section-heading > span:last-child { transform: rotate(180deg); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-icon { width: 54px; height: 54px; border-radius: 15px; }
.step-icon svg { width: 28px; height: 28px; }

.step-copy > span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-bottom: 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--purple);
  font-size: .67rem;
  font-weight: 950;
}

.step-copy h3 { margin-bottom: 5px; font-size: 1rem; }
.step-copy p { margin: 0; color: var(--muted); font-size: .81rem; }
.step-arrow { color: #aaa3bd; font-size: 1.4rem; }

.results { background: linear-gradient(180deg, #fcfbff 0%, #fff 100%); }
.results-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }

.status-card,
.growth-card {
  min-height: 240px;
  border-radius: var(--radius-md);
}

.status-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid #dcefe4;
  background: linear-gradient(135deg, #fbfffc, #f4fcf7);
}

.status-art { display: grid; place-items: center; }
.status-circle {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #4cd184, #159a50);
  box-shadow: 0 18px 35px rgba(22,154,80,.22);
}
.status-circle svg { width: 48px; height: 48px; stroke-width: 2.3; }
.status-label { margin: 0 0 8px; color: var(--green); font-weight: 900; }
.status-label span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}
.status-copy h2 { font-size: 1.45rem; }
.status-copy > p:not(.status-label) { margin: 5px 0 0; color: var(--muted); }
.countdown-wrap { margin-top: 14px; }
.countdown-wrap small { color: var(--muted); }
.countdown { display: flex; align-items: flex-start; gap: 11px; margin-top: 6px; color: var(--green); }
.countdown div { min-width: 58px; text-align: center; }
.countdown strong { display: block; font-size: 2.1rem; line-height: 1; letter-spacing: .02em; }
.countdown span { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.countdown b { margin-top: 2px; font-size: 1.75rem; }

.growth-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid #e3d9fb;
  background: linear-gradient(135deg, #fcfaff, #f3ecff);
}
.growth-icon {
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  color: var(--purple);
  background: linear-gradient(135deg, #efe6ff, #ded0ff);
}
.growth-icon svg { width: 55px; height: 55px; }
.growth-card h2 { margin-top: 1px; color: var(--purple-dark); font-size: clamp(1.6rem, 2.5vw, 2.05rem); }
.growth-card p:not(.kicker) { margin: 8px 0 18px; color: var(--muted); }

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid #aa83fb;
  border-radius: 12px;
  color: var(--purple-dark);
  background: #fff;
  font-weight: 900;
  transition: .2s ease;
}
.secondary-button:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: translateY(-1px); }

.info-section { background: #fff; }
.info-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 24px 28px;
  border: 1px solid #e3d8fb;
  border-radius: var(--radius-md);
  background: #faf7ff;
}
.info-title { display: flex; align-items: center; gap: 10px; color: var(--purple-dark); }
.info-title svg { width: 27px; height: 27px; }
.info-title h2 { margin: 0; font-size: 1.12rem; white-space: nowrap; }
.info-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-strip li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: .8rem;
}
.info-strip li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: .55em;
  border-radius: 50%;
  background: var(--purple);
}

.site-footer {
  margin-top: 18px;
  color: rgba(255,255,255,.84);
  background: linear-gradient(135deg, #090d2e, #17134d);
}
.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-inner p { margin: 0; font-size: .83rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-inner a { color: rgba(255,255,255,.88); font-size: .82rem; }
.footer-inner a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 42px; }
  .feature-pills { grid-template-columns: 1fr; max-width: 430px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .step-card { min-height: auto; }
  .info-strip { grid-template-columns: 1fr; gap: 16px; }
  .info-strip ul { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .section-pad { padding: 58px 0; }
  .hero-grid,
  .results-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; text-align: center; }
  .hero-text { margin-inline: auto; }
  .eyebrow { margin-inline: auto; }
  .feature-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; }
  .feature-pill { flex-direction: column; text-align: center; }
  .claim-card { max-width: 700px; margin-inline: auto; }
  .status-card,
  .growth-card { min-height: 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 66px; }
  .store-link { min-height: 40px; padding: 0 13px; font-size: .82rem; }
  .store-link svg { display: none; }
  .ad-section-top { padding-top: 14px; }
  .ad-slot { min-height: 112px; padding: 15px; }
  .section-pad { padding: 48px 0; }
  .section-pad-sm { padding: 38px 0; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.05rem); }
  .hero-text { font-size: .98rem; }
  .feature-pills { grid-template-columns: 1fr; }
  .feature-pill { flex-direction: row; text-align: left; }
  .claim-card { padding: 22px; border-radius: 22px; }
  .card-heading { align-items: flex-start; }
  .captcha-demo { align-items: flex-start; }
  .captcha-mark { display: none; }
  .step-card { align-items: flex-start; padding: 19px; }
  .status-card,
  .growth-card { grid-template-columns: 1fr; text-align: center; }
  .status-circle,
  .growth-icon { width: 92px; height: 92px; margin-inline: auto; }
  .status-circle svg,
  .growth-icon svg { width: 42px; height: 42px; }
  .countdown { justify-content: center; }
  .growth-card .secondary-button { width: 100%; }
  .info-strip { padding: 20px; }
  .info-title { align-items: flex-start; }
  .info-title h2 { white-space: normal; }
  .info-strip ul { grid-template-columns: 1fr; }
  .footer-inner { padding: 24px 0; flex-direction: column; align-items: flex-start; }
  .footer-inner nav { gap: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
