:root {
  --bg: #06110d;
  --bg-2: #0a1b14;
  --panel: #10231a;
  --panel-2: #132920;
  --emerald: #1fc47a;
  --emerald-soft: #8ce8bd;
  --gold: #d7b45a;
  --gold-soft: #f1d88b;
  --text: #f7f0df;
  --muted: #c7c0ad;
  --line: rgba(215, 180, 90, 0.28);
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 196, 122, 0.18), transparent 34rem),
    radial-gradient(circle at 78% 12%, rgba(215, 180, 90, 0.14), transparent 30rem),
    linear-gradient(145deg, #030806 0%, var(--bg) 42%, #0b1812 100%);
}

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

a:hover {
  color: var(--emerald-soft);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 180, 90, 0.16);
  background: rgba(3, 8, 6, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.94rem;
}

.hero {
  padding: 78px 0 42px;
}

.eyebrow {
  color: var(--emerald-soft);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.headline {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 16px 34px var(--shadow);
}

.section {
  padding: 42px 0;
}

.band {
  border-top: 1px solid rgba(215, 180, 90, 0.16);
  border-bottom: 1px solid rgba(215, 180, 90, 0.16);
  background: rgba(10, 27, 20, 0.72);
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19, 41, 32, 0.94), rgba(8, 20, 15, 0.94));
  box-shadow: 0 16px 34px var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: 0;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.65;
}

.card p:last-child {
  margin-bottom: 0;
}

.identity {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(16, 35, 26, 0.8);
}

.identity div {
  color: var(--muted);
}

.identity strong {
  color: var(--text);
}

.disclaimer {
  border: 1px solid rgba(215, 180, 90, 0.34);
  background: rgba(8, 20, 15, 0.92);
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-table th,
.status-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(215, 180, 90, 0.18);
  text-align: left;
  vertical-align: top;
}

.status-table th {
  color: var(--gold-soft);
  background: rgba(16, 35, 26, 0.86);
}

.status-table td {
  color: var(--muted);
}

.page-title {
  padding: 54px 0 20px;
}

.page-title h1 {
  font-size: clamp(2.3rem, 7vw, 4.8rem);
}

.legal-copy {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer {
  margin-top: 52px;
  padding: 34px 0;
  border-top: 1px solid rgba(215, 180, 90, 0.18);
  background: rgba(3, 8, 6, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .nav,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}
