:root {
  --bg: #050505;
  --surface: #0c0c0c;
  --text: #f4ede1;
  --muted: #8a8378;
  --gold: #c4a574;
  --line: #2a2723;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
  color: var(--gold);
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.fold {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 56px;
  gap: 28px;
}

.mark {
  margin: 0;
  line-height: 0;
}

.mark img {
  width: min(420px, 72vw);
  height: auto;
  display: block;
}

.dare {
  margin: 0;
  font-size: clamp(1.35rem, 3.6vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.device {
  width: min(980px, 100%);
  aspect-ratio: 16 / 7.2;
  border: 1px solid var(--line);
  background: #070707;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4vw 5vw;
}

.device.compact {
  aspect-ratio: 16 / 8;
  max-width: 640px;
  margin: 22px auto 0;
}

.amount {
  margin: 0;
  font-size: clamp(2.6rem, 11vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.verified {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: clamp(11px, 1.6vw, 15px);
}

.direct {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.get {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.get strong {
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 500;
}

.stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.store {
  min-width: 148px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--text);
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
}

.store[aria-disabled="true"] {
  cursor: default;
}

.soon {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.band {
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 24px;
}

.band.narrow {
  max-width: 640px;
}

.band h2 {
  margin: 0 0 36px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
}

.band h2.plain {
  margin-bottom: 18px;
}

.steps {
  display: grid;
  gap: 48px;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

.step .num {
  display: block;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 400;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

.trust-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 300;
}

.trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trust li {
  color: var(--text);
  font-weight: 300;
  padding-left: 1.1em;
  position: relative;
}

.trust li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.product-line {
  margin: 36px 0 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.45;
}

.counts {
  display: grid;
  gap: 28px;
}

@media (min-width: 720px) {
  .counts {
    grid-template-columns: 1fr 1fr;
  }
}

.counts h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 400;
}

.counts p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.soon-tag {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
}

.fresh h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
}

.fresh .device {
  margin-top: 36px;
}

.one-line {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

.price p {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 300;
}

.price .rate {
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operator {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.shell {
  min-height: 100dvh;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px 40px;
  display: flex;
  flex-direction: column;
}

.wordmark {
  text-align: center;
  margin: 0;
}

.wordmark img {
  width: 148px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.legal {
  gap: 22px;
  padding-bottom: 72px;
}

.legal h1 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.45em;
  font-weight: 500;
  text-transform: uppercase;
}

.legal .updated {
  color: var(--muted);
  font-size: 13px;
}

.legal h2 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
  font-weight: 500;
}

.legal h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.legal p,
.legal li {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal ul,
.legal ol {
  margin: 0;
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 6px;
}

.legal strong,
.legal .principle {
  color: var(--text);
  font-weight: 500;
}

.proof {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.proof .amount {
  margin-top: 48px;
}

.when,
.status {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.proof-foot {
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

.claim {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.claim input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.claim button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 14px 18px;
  cursor: pointer;
}
