* {
  box-sizing: border-box;
}

:root {
  --bg: #040403;
  --line: rgba(224, 189, 90, 0.34);
  --gold: #e0bd5a;
  --ivory: #f4efe3;
  --muted: #cabea5;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(224, 189, 90, 0.14), transparent 34%),
    radial-gradient(circle at 12% 30%, rgba(224, 189, 90, 0.08), transparent 36%),
    var(--bg);
  color: var(--ivory);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 46px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
}

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

.pills,
.claim-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pills span,
.claim-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(224, 189, 90, 0.06);
  padding: 8px 12px;
  font-size: 12px;
}

.hero,
.boundary {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(28px, 6vw, 68px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.9;
  margin: 12px 0 18px;
}

h1 {
  font-size: clamp(48px, 10vw, 116px);
}

h2 {
  font-size: clamp(28px, 5vw, 56px);
}

.lede,
.grid p,
.boundary-note,
footer {
  color: var(--muted);
  line-height: 1.72;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.grid article span {
  display: inline-flex;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  margin-bottom: 12px;
}

.grid small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.boundary-note {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 13px;
}

@media (max-width: 760px) {
  .topbar {
    display: block;
  }

  .pills {
    margin-top: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
