:root {
  --bg0: #070a14;
  --bg1: #0b1226;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --muted2: rgba(255, 255, 255, 0.55);
  --stroke: rgba(255, 255, 255, 0.14);

  --gold0: #ffe6a6;
  --gold1: #ffcb57;
  --gold2: #c89018;
  --teal: #4ad6c8;

  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 12% 10%, rgba(255, 203, 87, 0.10), transparent 60%),
              radial-gradient(900px 600px at 80% 18%, rgba(74, 214, 200, 0.10), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
}

a { color: inherit; text-decoration: none; }
code { color: var(--gold1); }

.bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.bg__glow { position: absolute; filter: blur(50px); opacity: 0.55; }
.bg__glow--a { width: 520px; height: 520px; left: -120px; top: -120px; background: rgba(255, 203, 87, 0.18); }
.bg__glow--b { width: 520px; height: 520px; right: -160px; top: 40px; background: rgba(74, 214, 200, 0.16); }
.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 34px 34px;
  opacity: 0.35;
  mask-image: radial-gradient(closest-side at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand__name { font-size: 18px; }
.brand__tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 203, 87, 0.14);
  border: 1px solid rgba(255, 203, 87, 0.28);
  color: var(--gold1);
}

.nav__links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav__link:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(90deg, var(--gold2), var(--gold1), var(--gold0));
  color: #101018;
  box-shadow: 0 14px 35px rgba(255, 203, 87, 0.14);
  border-color: rgba(255, 203, 87, 0.45);
}
.btn--primary:hover {
  box-shadow: 0 18px 45px rgba(255, 203, 87, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--stroke);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }

.btn--play { padding: 10px 16px; }
.btn__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(16, 16, 24, 0.12);
}
.btn__text { display: flex; flex-direction: column; line-height: 1.05; }
.btn__kicker { font-size: 10px; font-weight: 800; opacity: 0.75; letter-spacing: 0.4px; }
.btn__label { font-size: 14px; font-weight: 900; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  padding: 48px 0 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--gold0), var(--gold2));
  box-shadow: 0 0 0 3px rgba(255, 203, 87, 0.12);
}

.h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.8px;
}
.h1__accent {
  background: linear-gradient(90deg, var(--teal), var(--gold1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.stats {
  display: flex;
  gap: 26px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 520px;
}
.stat__num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.stat__label {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.phone {
  position: relative;
  margin-left: auto;
  width: min(420px, 100%);
  aspect-ratio: 9 / 11.5;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}
.phone__notch {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 120px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone__screen {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(900px 680px at 20% 10%, rgba(255, 203, 87, 0.14), transparent 62%),
    radial-gradient(600px 480px at 80% 20%, rgba(74, 214, 200, 0.14), transparent 60%),
    linear-gradient(180deg, #070a14, #0b1633);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.screen__top { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.screen__badge {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 203, 87, 0.14);
  border: 1px solid rgba(255, 203, 87, 0.28);
  color: var(--gold1);
}
.screen__dots { display: flex; gap: 7px; }
.screen__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.screen__card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.screen__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(74, 214, 200, 0.18), rgba(255, 203, 87, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.screen__title {
  height: 12px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 8px;
}
.screen__sub {
  height: 10px;
  width: 90%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}
.screen__cta { margin-top: auto; padding-top: 10px; }
.screen__ctaBtn {
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold2), var(--gold1), var(--gold0));
  box-shadow: 0 14px 35px rgba(255, 203, 87, 0.14);
}
.phone__shadow {
  position: absolute;
  inset: auto 24px -18px 24px;
  height: 30px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(10px);
}

.section { padding: 34px 0; }
.h2 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.25px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 16px 16px;
}
.h3 { margin: 0 0 8px; font-size: 16px; }
.p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.step__n {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
  color: #101018;
  background: linear-gradient(90deg, var(--gold2), var(--gold1), var(--gold0));
}
.step__t { color: var(--muted); line-height: 1.6; font-weight: 600; font-size: 14px; }

.faq {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq__q { cursor: pointer; font-weight: 800; color: var(--text); }
.faq__a { padding-top: 10px; color: var(--muted); line-height: 1.6; }

.footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 20px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted2);
  font-weight: 700;
}
.footer__brand { color: var(--text); font-weight: 900; }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__right { order: -1; }
  .phone { margin: 0 auto; width: min(520px, 100%); }
  .grid { grid-template-columns: 1fr; }
  .stats { gap: 18px; }
}

