:root {
  color-scheme: dark;
  --bg: #0f1110;
  --panel: #1d1e1a;
  --panel-soft: #252620;
  --line: rgba(246, 241, 231, 0.12);
  --text: #f6f1e7;
  --muted: rgba(246, 241, 231, 0.68);
  --gold: #d7b765;
  --green: #83a98f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(215, 183, 101, 0.12), transparent 30rem),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto, auto;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  padding: 32px 18px;
}

main {
  width: min(760px, 100%);
  margin: 0 auto;
}

.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--panel), #181916);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(24px, 5vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
}

.brand-mark::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(131, 169, 143, 0.16);
}

.eyebrow {
  margin: 34px 0 8px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(38px, 8vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.intro {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

section {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
}

h2 {
  margin: 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(246, 241, 231, 0.56);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

footer a,
.inline-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

footer a:hover,
.inline-link:hover {
  text-decoration: underline;
}
