:root {
  color-scheme: dark;
  --bg: #07100d;
  --panel: rgba(9, 19, 17, 0.82);
  --panel-strong: rgba(13, 28, 24, 0.94);
  --line: rgba(230, 196, 117, 0.28);
  --gold: #e7c477;
  --gold-soft: #b99752;
  --text: #f6efe0;
  --muted: #c9bd9e;
  --subtle: #8f9d89;
  --danger: #ff9c8c;
  --shadow: rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 196, 119, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(26, 101, 85, 0.32), transparent 30rem),
    linear-gradient(145deg, rgba(6, 12, 11, 0.72), rgba(2, 6, 5, 0.96)),
    #07100d;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(231, 196, 119, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(231, 196, 119, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 45% 28%, black, transparent 76%);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(231, 196, 119, 0.1);
  box-shadow: 0 10px 34px var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 10px 13px;
  border: 1px solid rgba(231, 196, 119, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(231, 196, 119, 0.48);
  text-decoration: none;
}

.hero,
.page {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, var(--panel-strong), rgba(7, 16, 13, 0.76));
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
  min-height: 420px;
  padding: clamp(26px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.025em;
}

h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: 24px;
}

h3 {
  margin: 24px 0 8px;
  color: var(--gold);
  font-size: 17px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

.lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.45;
}

.meta {
  margin-top: 20px;
  color: var(--subtle);
  font-size: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.card,
.notice {
  border: 1px solid rgba(231, 196, 119, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.card strong {
  color: var(--text);
  font-size: 18px;
}

.card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.page {
  padding: clamp(24px, 5vw, 54px);
}

.page h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 68px);
}

.content {
  max-width: 780px;
}

.notice {
  margin: 24px 0;
  padding: 16px 18px;
  color: var(--muted);
}

.notice strong {
  color: var(--gold);
}

.danger {
  color: var(--danger);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  color: var(--subtle);
  font-size: 14px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1060px);
    padding-top: 20px;
  }

  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
