:root {
  --ink: #090909;
  --paper: #f2e9c9;
  --muted: #b7ae91;
  --line: rgba(242, 233, 201, 0.18);
  --gold: #f4c431;
  --hot: #ffdd55;
  --white: #fff9e6;
  --green: #3cff74;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 196, 49, 0.16) 0 1px, transparent 1px);
  background-size: 13px 17px, 19px 23px;
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid rgba(244, 196, 49, 0.18);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
}

nav a {
  color: rgba(255, 249, 230, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 6vw, 78px) 86px;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 196, 49, 0.28);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.05) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.96) 0%, rgba(9, 9, 9, 0.76) 43%, rgba(9, 9, 9, 0.14) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.95) 0%, transparent 34%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: clamp(68px, 13vw, 178px);
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.7);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 7vw, 92px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: rgba(255, 249, 230, 0.84);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.copy {
  min-width: 116px;
  border: 2px solid rgba(255, 249, 230, 0.86);
  padding: 14px 20px;
  background: rgba(9, 9, 9, 0.7);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(244, 196, 49, 0.46);
}

.button.disabled,
.copy:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.ticker-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 12px;
  overflow: hidden;
  border-top: 1px solid rgba(244, 196, 49, 0.34);
  border-bottom: 1px solid rgba(244, 196, 49, 0.34);
  background: rgba(244, 196, 49, 0.94);
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(20px, 4vw, 46px);
  white-space: nowrap;
}

.ticker-strip span {
  padding: 10px 8px;
}

.proof-band,
.clue-wall,
.contract-panel {
  padding: clamp(54px, 9vw, 110px) clamp(18px, 6vw, 78px);
}

.proof-band {
  background:
    linear-gradient(180deg, #090909 0%, #16120a 100%);
}

.proof-head {
  max-width: 980px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 230, 0.045);
}

.index {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 34px;
}

.proof-grid p,
.wall-copy p,
footer {
  color: rgba(255, 249, 230, 0.72);
  line-height: 1.58;
}

.proof-grid strong {
  color: var(--gold);
}

.clue-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.wall-copy p {
  color: rgba(9, 9, 9, 0.72);
  font-size: 19px;
  font-weight: 800;
}

.clue-stack {
  display: grid;
  gap: 12px;
}

.clue {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 3px solid var(--ink);
  background: #fff6d5;
  box-shadow: 7px 7px 0 #090909;
}

.clue span {
  color: rgba(9, 9, 9, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.clue small {
  color: rgba(9, 9, 9, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.clue strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 0.98;
  text-transform: uppercase;
}

.clue.active,
.clue.final {
  background: var(--gold);
}

.contract-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: #0e0d0b;
  border-top: 1px solid rgba(244, 196, 49, 0.28);
  border-bottom: 1px solid rgba(244, 196, 49, 0.28);
}

.contract-panel h2 {
  overflow-wrap: anywhere;
  color: var(--gold);
  font-size: clamp(30px, 5vw, 64px);
  text-transform: none;
}

.copy {
  flex: 0 0 auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 78px);
  background: #080808;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 820px) {
  .topbar {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 96svh;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.5) 0%, rgba(9, 9, 9, 0.94) 55%, #090909 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.84), rgba(9, 9, 9, 0.2));
  }

  .proof-grid,
  .clue-wall {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: auto;
  }

  .contract-panel,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .copy {
    width: 100%;
  }
}
