

:root {
  --ink: #fff8df;
  --muted: #b5acd2;
  --deep: #090622;
  --panel: #171035;
  --panel-2: #21134d;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #ffd43b;
  --gold-2: #ff9f1c;
  --violet: #8d46ff;
  --cyan: #45d8ff;
  --danger: #ff6b7a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 72% 10%, rgba(141, 70, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 20% 55%, rgba(69, 216, 255, 0.08), transparent 28rem),
    var(--deep);
  background-size: 88px 88px, 88px 88px, auto, auto, auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 6, 34, 0.84);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 212, 59, 0.8);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 18%, #fff7a8 0 12%, transparent 13%),
    linear-gradient(135deg, #ff681f 0%, #ffd43b 42%, #8d46ff 43%, #41d7ff 100%);
  box-shadow: 0 12px 38px rgba(141, 70, 255, 0.38);
  color: #fff8df;
  font-size: 10px;
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 2px 0 #651075, 0 3px 8px rgba(0, 0, 0, 0.55);
  transform: rotate(-2deg);
}

.logo strong,
.logo span {
  display: block;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(255, 212, 59, 0.88);
  background: linear-gradient(135deg, var(--gold), #ffc123);
  box-shadow: 0 18px 44px rgba(255, 196, 35, 0.18);
  color: #130822;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.hero,
.inner-hero {
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 70px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 64px;
  align-items: center;
}

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

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 212, 59, 0.14);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-copy > p:not(.eyebrow):not(.risk),
.inner-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.risk,
.micro {
  color: #968ab8;
  font-size: 12px;
}

.hero-art {
  min-height: 480px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone-card {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1.35;
  border: 2px solid rgba(255, 212, 59, 0.54);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.28), transparent 12%),
    linear-gradient(150deg, #7f35ff 0%, #a841ff 45%, #58239e 100%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45), inset 0 -18px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(2deg);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.coin {
  position: absolute;
  top: 54px;
  right: 88px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff7a8, var(--gold) 45%, var(--gold-2));
  color: #7b3b00;
  font-size: 48px;
  font-weight: 900;
  box-shadow: 0 12px 0 #b96a00, 0 24px 42px rgba(0, 0, 0, 0.22);
}

.dice {
  position: absolute;
  left: 54px;
  bottom: 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 88px;
  height: 88px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3f37, #ce172f);
  transform: rotate(-13deg);
  box-shadow: 0 12px 0 #8d0d25;
}

.dice span {
  border-radius: 50%;
  background: var(--ink);
}

.win-word {
  position: absolute;
  left: 108px;
  right: 34px;
  top: 124px;
  color: #fff8df;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 1000;
  line-height: 0.83;
  text-shadow: 0 5px 0 #651075, 0 9px 0 #ff7d13, 0 16px 24px rgba(0, 0, 0, 0.35);
}

.win-word span,
.win-word strong {
  display: block;
}

.win-word strong {
  color: #53dcff;
  text-shadow: 0 5px 0 #174f89, 0 9px 0 #fff8df, 0 16px 24px rgba(0, 0, 0, 0.28);
}

.status {
  position: absolute;
  right: 26px;
  bottom: 28px;
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(9, 6, 34, 0.76);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.band {
  background: rgba(255, 255, 255, 0.025);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}

.split > p,
.split > div > p {
  max-width: 650px;
}

.card-grid,
.page-grid,
.content-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.card-grid,
.content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.info-card,
.page-card,
.quick-box,
.final-cta,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.info-card,
.page-card,
.quick-box {
  padding: 26px;
}

.info-card h2 {
  font-size: 28px;
  line-height: 1.08;
}

.page-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  transition: transform 160ms ease, border-color 160ms ease;
}

.page-card:hover {
  border-color: rgba(255, 212, 59, 0.52);
  transform: translateY(-3px);
}

.page-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-card strong {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.page-card p,
.info-card p {
  margin-bottom: 0;
}

.quick-box {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.quick-box a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  color: var(--muted);
  font-weight: 800;
}

.quick-box a:hover {
  color: var(--gold);
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 24px;
}

.step-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.step-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--violet);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 900;
}

.step-list p,
.step-list h3 {
  margin-bottom: 0;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  justify-self: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.inner-hero {
  padding: 112px 0 82px;
  background: linear-gradient(135deg, rgba(141, 70, 255, 0.16), transparent 55%);
}

.inner-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 6.2vw, 80px);
}

.narrow {
  width: min(840px, calc(100% - 40px));
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body p {
  color: #d6ceec;
  font-size: 19px;
}

.article-note {
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  background: rgba(255, 212, 59, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.final-cta {
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(141, 70, 255, 0.24), rgba(255, 212, 59, 0.04)),
    rgba(255, 255, 255, 0.04);
}

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

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

.footer {
  padding: 54px 0 28px;
  background: rgba(5, 3, 18, 0.46);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer h2 {
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p {
  max-width: 430px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #82779e;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .card-grid,
  .content-grid,
  .page-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header .btn {
    display: none;
  }

  .brand-text {
    display: none;
  }

  nav {
    gap: 16px;
  }

  nav a {
    min-width: max-content;
  }

  .hero,
  .section,
  .inner-hero {
    padding: 58px 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-art {
    min-height: 320px;
  }

  .phone-card {
    border-radius: 22px;
  }

  .coin {
    top: 34px;
    right: 48px;
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .dice {
    left: 28px;
    bottom: 48px;
    width: 66px;
    height: 66px;
    padding: 14px;
  }

  .win-word {
    left: 74px;
    top: 92px;
    font-size: 52px;
  }

  .status {
    right: 18px;
    bottom: 18px;
  }

  .card-grid,
  .content-grid,
  .page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .final-cta {
    padding: 28px;
  }

  .copyright {
    flex-direction: column;
  }
}
