/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }

/* ── Tokens ── */
:root {
  --brand:        #D97757;
  --brand-hover:  #c4633e;
  --bg:           #0F0F0C;
  --surface:      #181814;
  --border:       #2D2E26;
  --text:         #F0EDE4;
  --text-muted:   rgba(240, 237, 228, 0.5);
  --radius:       6px;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

/* ── Layout ── */
.page {
  width: 100%;
  max-width: 480px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 44px;
}

@media (max-width: 520px) {
  .card { padding: 36px 24px; }
}

/* ── Logo ── */
.logo {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 40px;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

/* ── Eyebrow pills ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.pill--live {
  border-color: rgba(229, 53, 53, 0.35);
  color: #ff7070;
  background: rgba(229, 53, 53, 0.08);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E53535;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ── Title ── */
.title {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.title em {
  color: var(--brand);
  font-style: italic;
  font-size: 1.5em;
}

.title .subtitle-line {
  font-size: 0.75em;
  display: block;
}

/* ── Meta ── */
.date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.field-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-top: 4px;
}

/* ── Input ── */
.input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  width: 100%;
  display: block;
  transition: border-color 0.15s;
  margin-bottom: 12px;
}

.input::placeholder { color: rgba(240, 237, 228, 0.25); }
.input:focus        { border-color: var(--brand); }

/* ── Checkbox ── */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 12px;
  padding: 2px 0;
}

.checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--brand);
  cursor: pointer;
}

.checkbox-label {
  font-size: 10px;
  color: rgba(240, 237, 228, 0.3);
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Error ── */
.error {
  font-size: 13px;
  color: #ff6b6b;
  display: none;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ── Button ── */
.btn {
  display: block;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
  border: none;
  background: var(--brand);
  color: #fff;
  margin-top: 8px;
}

.btn:hover   { background: var(--brand-hover); transform: translateY(-1px); }
.btn:active  { transform: translateY(0); }
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Confirmation ── */
.confirm {
  text-align: center;
  padding: 8px 0;
}

.confirm__check {
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 20px;
  line-height: 1;
}

.confirm__heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.confirm__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
