:root {
  color-scheme: dark;
  --bg: #050504;
  --panel: rgba(16, 13, 8, 0.82);
  --panel-strong: rgba(24, 19, 11, 0.94);
  --gold: #f1c85b;
  --gold-deep: #b9852d;
  --line: rgba(241, 200, 91, 0.28);
  --text: #fff7df;
  --muted: #c9bfa9;
  --silver: #d8d3c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(241, 200, 91, 0.16);
  background: rgba(5, 5, 4, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 235, 164, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffe792, #d7a63b 52%, #6d4515 100%);
  color: #1d1408;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(184, 132, 41, 0.32);
}

.brand strong {
  overflow: hidden;
  max-width: 240px;
  font-size: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav nav a:hover {
  background: rgba(241, 200, 91, 0.1);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 74vh;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, #050504 0%, #0b0906 54%, #020202 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 20%, rgba(213, 168, 66, 0.12), transparent 32%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--silver);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, #ffe17a, #bd842c);
  color: #171008;
  box-shadow: 0 20px 42px rgba(186, 130, 36, 0.28);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(12, 10, 7, 0.66);
  color: var(--text);
}

.feature-band,
.split,
.roadmap,
.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 28px 0 74px;
  transform: translateY(-34px);
}

.feature-band article,
.status-grid a,
.roadmap article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.feature-band article {
  padding: 22px;
}

.feature-band span,
.roadmap span {
  color: var(--gold);
  font-weight: 900;
}

.feature-band h2 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.feature-band p,
.split p,
.roadmap p,
.status-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 8px 0 78px;
}

.split h2,
.roadmap h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.status-grid a {
  display: flex;
  min-height: 136px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.status-grid strong {
  color: var(--gold);
  font-size: 20px;
}

.roadmap {
  padding: 74px 0;
  border-top: 1px solid rgba(241, 200, 91, 0.16);
}

.roadmap header {
  max-width: 670px;
  margin-bottom: 24px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.roadmap article {
  padding: 22px;
  background: var(--panel-strong);
}

.roadmap h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(241, 200, 91, 0.16);
  color: var(--muted);
}

.site-footer a {
  color: var(--gold);
}

.content-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) 0 90px;
}

.content-page h1 {
  max-width: 820px;
  font-size: clamp(36px, 6vw, 66px);
}

.content-body {
  margin-top: 34px;
  border-top: 1px solid rgba(241, 200, 91, 0.18);
  padding-top: 26px;
}

.content-body p {
  color: var(--silver);
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero {
    min-height: 72vh;
    padding-top: 52px;
  }

  .hero::before {
    background: radial-gradient(circle at 50% 10%, rgba(213, 168, 66, 0.14), transparent 38%);
  }

  h1 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .feature-band,
  .split,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    transform: none;
    padding-top: 18px;
  }

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