:root {
  --bg: #060606;
  --panel: rgba(18, 18, 18, 0.92);
  --gold: #d8aa43;
  --gold-bright: #f0cf72;
  --text: #f8f5ec;
  --muted: #b8b0a1;
  --line: rgba(216, 170, 67, 0.35);
  --danger: #ff8a8a;
  --success: #9fe6b8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 170, 67, 0.18), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #030303 0%, #101010 54%, #050505 100%);
  color: var(--text);
}

.announcement-bar {
  width: 100%;
  padding: 11px 16px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 6vw, 64px);
  background: linear-gradient(145deg, rgba(12, 12, 12, 0.96), rgba(26, 23, 18, 0.88));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.hero-card::after {
  content: "1976";
  position: absolute;
  right: -18px;
  bottom: -40px;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(216, 170, 67, 0.06);
  pointer-events: none;
}

.brand-mark {
  width: min(360px, 100%);
  min-height: 140px;
  display: grid;
  place-items: center;
  margin: 0 auto 34px;
}

.brand-mark img {
  display: block;
  width: min(340px, 100%);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.brand-fallback {
  display: none;
  padding: 28px;
  border: 2px solid var(--gold);
  border-radius: 26px;
  color: var(--gold-bright);
  background: #050505;
  box-shadow: inset 0 0 0 8px rgba(216, 170, 67, 0.06), 0 18px 45px rgba(0, 0, 0, 0.42);
  font-size: clamp(2rem, 10vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-align: center;
  text-transform: uppercase;
}

.lede {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.28rem);
  line-height: 1.7;
  text-align: center;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 36px auto 0;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.42);
}

.form-grid { display: grid; gap: 16px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

label span { font-size: 0.92rem; }

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(216, 170, 67, 0.35);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(216, 170, 67, 0.14);
}

select option { color: #111; }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

.consent-row input {
  min-height: auto;
  margin-top: 2px;
}

button {
  min-height: 56px;
  border: none;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  color: #070707;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-message {
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

.status-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 24px auto 0;
}

.status-panel div {
  padding: 18px;
  border: 1px solid rgba(216, 170, 67, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.status-panel strong,
.status-panel span { display: block; }
.status-panel strong {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-panel span {
  margin-top: 4px;
  color: var(--muted);
}

footer {
  padding: 18px 16px 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

footer p { margin: 4px 0; }

@media (max-width: 720px) {
  .two-col,
  .status-panel { grid-template-columns: 1fr; }
  .hero-card { border-radius: 24px; }
  .announcement-bar { font-size: 0.68rem; line-height: 1.5; }
}
