:root {
  --paper: #f8f7f3;
  --ink: #11110f;
  --muted: #68665f;
  --soft: #4f4d47;
  --line: #d8d5ca;
  --line-strong: #b9b4a8;
  --blue: #1557d8;
  --green: #149958;
  --amber: #c49a46;
  --red: #a3302a;
  --white: #ffffff;
  --pad: 100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 96px 96px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.wrap { max-width: 1240px; }
.idx {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px; font-weight: 700; color: var(--blue);
  margin-bottom: 28px; letter-spacing: 0.02em;
}
.btn {
  display: inline-block; padding: 15px 26px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); font-size: 15px;
}
.btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

header {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 0 var(--pad); height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: saturate(140%) blur(6px);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-name { font-family: Georgia, ui-serif, serif; font-size: 20px; letter-spacing: -0.01em; }
.brand-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 32px; }
nav a { font-size: 14px; color: var(--soft); border-bottom: 1px solid transparent; padding-bottom: 2px; }
nav a:hover { border-color: var(--ink); color: var(--ink); }
nav a.btn { padding: 10px 18px; border: 1px solid var(--ink); color: var(--paper); }
nav a.btn:hover { color: var(--white); }

section { padding: 88px var(--pad); border-bottom: 1px solid var(--line); }
.hero { padding-top: 96px; }
.hero h1 { font-size: 68px; line-height: 1.06; max-width: 900px; margin-bottom: 32px; }
.hero .lede { font-size: 20px; line-height: 1.6; color: var(--soft); max-width: 720px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted); }

h2 { font-size: 40px; margin-bottom: 16px; }
.section-lede { font-size: 17px; color: var(--soft); max-width: 680px; margin-bottom: 52px; }

.steps { border-top: 1px solid var(--ink); }
.step {
  display: grid; grid-template-columns: 200px 1fr 150px; gap: 40px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.step.next { background: rgba(196, 154, 70, 0.07); }
.step-date { font-size: 15px; font-weight: 700; }
.step-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 15px; color: var(--muted); }
.step-desc strong { font-weight: 600; color: var(--ink); }
.step-desc .fine { color: var(--red); font-weight: 600; }
.status { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-align: right; }
.status.live { color: var(--green); }
.status.soon { color: var(--amber); }
.status.later { color: var(--muted); font-weight: 400; }

.split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.split > div { padding: 88px var(--pad); }
.split > div:first-child { border-right: 1px solid var(--line); padding-right: 60px; }
.split > div:last-child { padding-left: 60px; }
.split h2 { font-size: 38px; line-height: 1.15; margin-bottom: 26px; }
.split p { font-size: 17px; line-height: 1.65; color: var(--soft); }
.split p + p { margin-top: 20px; }

.callout { margin-top: 32px; padding: 22px 24px; border: 1px solid var(--line-strong); background: var(--white); }
.callout-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.callout p { font-size: 15px; line-height: 1.6; color: var(--ink); }

.ledger { border-top: 1px solid var(--ink); margin: 28px 0; }
.ledger-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.ledger-row span:first-child { font-size: 14px; }
.tag { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
.tag.ok { color: var(--green); }
.tag.no { color: var(--red); }

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tier { background: var(--white); padding: 36px 32px; }
.tier-num { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 20px; }
.tier h3 { font-size: 26px; margin-bottom: 16px; }
.tier p { font-size: 16px; line-height: 1.6; color: var(--soft); }
.tier strong { font-weight: 600; color: var(--ink); }
.tier-block { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 24px; }
.tier-block-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 8px; }
.tier-block-label.grey { color: var(--muted); }
.tier-block p { font-size: 15px; line-height: 1.55; }

.who-list { border-top: 1px solid var(--ink); }
.who-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.who-item strong { display: block; font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.who-item span { font-size: 16px; color: var(--muted); }

.contact { background: var(--ink); color: var(--paper); border-bottom: none; }
.contact .idx { color: #7ea6f0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact h2 { font-size: 44px; line-height: 1.12; color: var(--paper); margin-bottom: 28px; }
.contact .lede { font-size: 19px; line-height: 1.6; color: #c9c6bd; }
.form { border: 1px solid #3a3a35; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.field-label { font-size: 11px; letter-spacing: 0.08em; color: #97948b; margin-bottom: 8px; }
.form input, .form textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #4f4d47;
  color: var(--paper); font-family: inherit; font-size: 16px; padding: 8px 0 10px;
  min-height: 44px;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--paper); }
.form button {
  margin-top: 10px; padding: 16px; background: var(--paper); color: var(--ink);
  border: none; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer;
}
.form button:hover { background: var(--white); }
.form-alt { font-size: 12px; color: #97948b; text-align: center; }
.form-alt a { color: #c9c6bd; text-decoration: underline; }

footer { padding: 36px var(--pad) 40px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row .mono { font-size: 12px; color: var(--muted); }
.legal { font-size: 12px; color: var(--muted); max-width: 720px; line-height: 1.55; margin-top: 20px; }

@media (max-width: 1080px) {
  :root { --pad: 40px; }
  .hero h1 { font-size: 52px; }
  h2 { font-size: 34px; }
  .split { grid-template-columns: 1fr; }
  .split > div:first-child { border-right: none; border-bottom: 1px solid var(--line); padding-right: var(--pad); }
  .split > div:last-child { padding-left: var(--pad); }
  .tiers { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 720px) {
  :root { --pad: 20px; }
  body { background-size: 64px 64px; }
  header { height: 60px; }
  .brand-sub { display: none; }
  nav { gap: 16px; }
  nav a { display: none; }
  nav a.mono { display: inline-block; font-size: 13px; }
  nav a.btn { display: none; }
  section { padding: 44px var(--pad); }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 36px; line-height: 1.1; }
  .hero .lede { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn { text-align: center; padding: 16px; }
  .hero-note { text-align: center; }
  h2 { font-size: 27px; }
  .split h2 { font-size: 27px; }
  .split > div { padding: 44px var(--pad); }
  .section-lede { margin-bottom: 32px; font-size: 16px; }
  .step { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .status { text-align: left; }
  .contact h2 { font-size: 28px; }
  .contact .lede { font-size: 16px; }
  .form { padding: 0; border: none; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}
