:root {
  color-scheme: dark;
  --ink: #f4f0e7;
  --muted: #b7bdca;
  --gold: #d7ad5c;
  --line: rgba(215, 173, 92, 0.28);
  --panel: rgba(18, 27, 48, 0.7);
  --night: #070b14;
  --blue: #0b1020;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--night); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(35, 71, 120, 0.34), transparent 34rem),
    radial-gradient(circle at 80% 75%, rgba(117, 75, 22, 0.2), transparent 30rem),
    linear-gradient(145deg, var(--blue), var(--night) 70%);
  font-family: Georgia, "Times New Roman", serif;
}

a { color: inherit; }

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font: 700 0.7rem/1 Arial, sans-serif;
  letter-spacing: 0.12em;
}

.status, .eyebrow, footer {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.status {
  color: var(--muted);
  font-size: 0.68rem;
}

main { flex: 1; }

.hero {
  max-width: 850px;
  padding: clamp(90px, 15vw, 190px) 0 110px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  line-height: 1.7;
}

.rule {
  width: 84px;
  height: 1px;
  margin: 54px 0 36px;
  background: var(--gold);
}

blockquote { margin: 0; }
blockquote p { margin-bottom: 12px; font-size: clamp(1.2rem, 3vw, 1.65rem); line-height: 1.45; }
blockquote cite { color: var(--muted); font: 0.78rem/1.5 Arial, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

.next {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(36px, 8vw, 100px);
  padding: 54px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.next h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.08; }
.next > p { align-self: end; margin-bottom: 0; color: var(--muted); font: 1rem/1.75 Arial, sans-serif; }

footer { padding: 44px 0 32px; color: var(--muted); font-size: 0.62rem; }
footer p { margin: 0; }

@media (max-width: 700px) {
  .page-shell { width: min(100% - 28px, 1120px); }
  .status { display: none; }
  .hero { padding-top: 80px; }
  .next { grid-template-columns: 1fr; padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
