:root {
  color-scheme: dark;
  --bg: #07090a;
  --surface: #101314;
  --surface-2: #171a1b;
  --text: #f6f1e9;
  --muted: #aaa8a4;
  --gold: #e5bd82;
  --gold-soft: #f3d8ae;
  --line: rgba(229, 189, 130, 0.2);
  --success: #7bd39b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% -10%, rgba(229, 189, 130, 0.12), transparent 34rem),
    linear-gradient(160deg, #050607 0%, var(--bg) 58%, #0b0d0e 100%);
  line-height: 1.65;
}

a { color: var(--gold-soft); }
a:hover { color: #fff2dc; }

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.34em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.47em;
  text-align: center;
}

nav { display: flex; gap: 18px; }
nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
nav a:hover, nav a[aria-current="page"] { color: var(--gold-soft); }

main { padding: 72px 0 96px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { margin: 0; font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.05; }
h2 { margin: 2.4rem 0 0.65rem; color: var(--gold-soft); font-size: 1.55rem; }

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #d7d3cd;
  font-size: 1.12rem;
}

.meta { margin: 16px 0 0; color: var(--muted); font-size: 0.88rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.card, .document, .status-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(23, 26, 27, 0.95), rgba(12, 14, 15, 0.95));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.card { padding: 28px; text-decoration: none; }
.card h2 { margin: 0 0 7px; color: var(--text); }
.card p { margin: 0; color: var(--muted); }
.card .arrow { display: inline-block; margin-top: 18px; color: var(--gold); }

.document { margin-top: 42px; padding: clamp(24px, 6vw, 56px); }
.document p, .document li { color: #d3d0cb; }
.document strong { color: var(--text); }
.document ul { padding-left: 1.25rem; }

.status-card { max-width: 660px; margin: 54px auto 0; padding: 38px; text-align: center; }
.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071109;
  background: var(--success);
  font-size: 1.7rem;
  font-weight: 800;
}
.status-card h1 { font-size: clamp(2rem, 6vw, 3.4rem); }

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #17110b;
  background: var(--gold-soft);
  text-decoration: none;
  font-weight: 700;
}

footer {
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; }

@media (max-width: 620px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; gap: 12px; }
  .cards { grid-template-columns: 1fr; }
  main { padding-top: 48px; }
}
