:root {
  --ink: #0a0f1a;
  --bg: #0f172a;
  --card: #151f33;
  --line: #1e293b;
  --muted: #94a3b8;
  --gold: #fbbf24;
  --gold-deep: #d97706;
  --cyan: #38bdf8;
  --max: 520px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1e3a5f 0%, var(--bg) 55%);
  color: #e2e8f0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}

.brand {
  font-family: "Bangers", "Inter", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: #f8fafc;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 14px 120px;
}

.card {
  background: var(--card);
  border: 2px solid #334155;
  border-radius: 18px;
  padding: 18px 16px;
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(90deg, var(--gold) 0%, #fde68a 100%);
}

.hero__row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 480px) {
  .hero__row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero__art {
    flex-shrink: 0;
    width: 44%;
    max-width: 200px;
  }
}

h1 {
  margin: 0;
  font-family: "Bangers", "Inter", sans-serif;
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.lead {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}

.hero__art {
  border-radius: 14px;
  border: 2px solid #475569;
  overflow: hidden;
  background: #1e293b;
}

.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.6);
}

.stat__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cyan);
}

.stat__time {
  font-variant-numeric: tabular-nums;
  color: var(--gold) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  border: 2px solid #0f172a;
}

.btn--outline {
  padding: 8px 14px;
  font-size: 0.78rem;
  background: transparent;
  color: #e2e8f0;
  border-color: #64748b;
}

.btn--mega {
  margin-top: 16px;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fde68a 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #0f172a;
  box-shadow: 0 5px 0 #92400e;
}

.btn--mega:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #92400e;
}

.micro {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.steps__title,
.faq__title {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cbd5e1;
}

.steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #e2e8f0;
  padding: 8px 0;
  border-top: 1px solid #334155;
}

.steps__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.steps__list span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  background: var(--gold);
  color: #0f172a;
}

details {
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.5);
}

details + details {
  margin-top: 8px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.86rem;
}

details p {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: max(10px, env(safe-area-inset-bottom));
  width: calc(100% - 20px);
  max-width: var(--max);
  padding: 10px 12px;
  border-radius: 14px;
  border: 2px solid #334155;
  background: rgba(21, 31, 51, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 40;
}

.dock__text {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: #cbd5e1;
  max-width: 55%;
}

.btn--dock {
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  background: var(--gold);
  color: #0f172a;
  box-shadow: 0 3px 0 #92400e;
}

.foot {
  text-align: center;
  padding: 0 14px 28px;
}

.foot p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.legal {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 380px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .dock__text {
    max-width: 48%;
    font-size: 0.68rem;
  }
}
