:root {
  --bg: #110b08;
  --panel: #1c120d;
  --panel-2: #281913;
  --text: #f8ead0;
  --muted: #c9ad80;
  --gold: #d7ad5f;
  --gold-2: #f1cf83;
  --red: #7f2a1d;
  --border: rgba(215, 173, 95, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 173, 95, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(127, 42, 29, 0.28), transparent 30rem),
    linear-gradient(135deg, #100a07 0%, #1b0f0a 50%, #100a07 100%);
}

a { color: inherit; }

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 10px 30px rgba(215, 173, 95, 0.2);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 4px;
  height: 22px;
  background: #3b1d12;
  border-radius: 3px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 9px;
  width: 15px;
  height: 11px;
  background: #7f2a1d;
  clip-path: polygon(0 0, 100% 0, 72% 50%, 100% 100%, 0 100%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a { text-decoration: none; }
.nav a:hover { color: var(--gold-2); }

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 200px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: center;
  padding: 64px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.055em; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; margin-top: 18px; }

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--border);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #201107;
  box-shadow: 0 14px 36px rgba(215, 173, 95, 0.22);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card,
.features article,
.alpha-panel {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(40, 25, 19, 0.92), rgba(21, 13, 9, 0.88));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 36px;
  border-radius: 28px;
}

.sigil {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(215, 173, 95, 0.12);
  color: var(--gold-2);
  font-size: 3rem;
  margin-bottom: 24px;
}

.hero-card h2 { font-size: 1.8rem; }
.hero-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
  margin: 18px 0 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 72px;
}

.features article {
  padding: 28px;
  border-radius: 24px;
}

.icon { font-size: 2.2rem; }
.features p,
.alpha-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.alpha-panel {
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px;
}

.alpha-panel div { max-width: 680px; }

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--gold-2); text-decoration: none; }

.legal {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
  color: var(--muted);
  line-height: 1.75;
}

.legal h1,
.legal h2 { color: var(--text); margin-top: 28px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.legal a { color: var(--gold-2); }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 34px; }
  .features { grid-template-columns: 1fr; }
  .alpha-panel { align-items: flex-start; flex-direction: column; }
}
