:root {
  --ink: #eef1f4;
  --muted: #aeb8c3;
  --night: #070b10;
  --panel: #101820;
  --panel-2: #16212b;
  --line: #2b3945;
  --red: #d84a42;
  --gold: #d4ab57;
  --paper: #efe5cb;
}
* { box-sizing: border-box; }
html { background: var(--night); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(45,82,117,.25), transparent 35rem),
    linear-gradient(180deg, #081019 0%, var(--night) 42%);
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
a { color: inherit; }
.shell { width: min(1100px, calc(100% - 34px)); margin: 0 auto; }
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7,11,16,.93);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.nav { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { text-decoration: none; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.brand span { color: var(--red); }
.navlinks { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--muted); }
.navlinks a { text-decoration: none; }
.navlinks a:hover, .navlinks a:focus { color: #fff; }
.hero { padding: 74px 0 44px; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px; }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(27px, 4vw, 42px); line-height: 1.05; letter-spacing: -.025em; }
h3 { font-size: 20px; }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2.3vw, 23px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  font-weight: 900;
}
.button.secondary { background: transparent; color: var(--paper); border-color: var(--line); }
.button.red { background: var(--red); border-color: var(--red); color: white; }
.section { padding: 36px 0 58px; }
.section.rule { border-top: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22,33,43,.92), rgba(13,20,28,.96));
  padding: 24px;
  min-height: 100%;
}
.card p, .copy { color: var(--muted); font-size: 16px; line-height: 1.65; }
.step { color: var(--red); font-weight: 900; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.equal-choice { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.choice { display: flex; flex-direction: column; }
.choice .button { margin-top: auto; width: 100%; }
.fine { color: #89949f; font-size: 13px; line-height: 1.55; }
.form {
  max-width: 720px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
}
label { display: block; font-size: 13px; color: var(--paper); font-weight: 800; margin-bottom: 7px; }
input, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #42505d;
  background: #081019;
  color: white;
  padding: 12px;
  border-radius: 3px;
  font: inherit;
}
.field { margin-bottom: 15px; }
.status { min-height: 24px; color: var(--gold); font-size: 14px; margin-top: 12px; }
.timeline { border-left: 2px solid var(--red); margin-left: 8px; padding-left: 28px; }
.milestone { position: relative; margin-bottom: 28px; }
.milestone:before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--red); left: -35px; top: 4px; }
.milestone strong { display: block; margin-bottom: 6px; }
.sharebox { display: flex; gap: 10px; }
.sharebox input { flex: 1; }
.sharebox button { min-width: 140px; }
.cover-row { display: grid; grid-template-columns: minmax(190px, 300px) 1fr; gap: 42px; align-items: center; }
.cover { width: 100%; display: block; box-shadow: 0 24px 55px rgba(0,0,0,.5); border: 1px solid #25313c; }
footer { border-top: 1px solid var(--line); padding: 28px 0 42px; color: #7f8a95; font-size: 13px; }
@media (max-width: 780px) {
  .nav { align-items: flex-start; padding: 16px 0; }
  .navlinks { justify-content: flex-end; gap: 9px 13px; }
  .hero { padding-top: 48px; }
  .grid, .grid.two, .equal-choice, .cover-row { grid-template-columns: 1fr; }
  .cover { max-width: 270px; }
  .sharebox { flex-direction: column; }
  .sharebox button { width: 100%; }
}
