:root {
  --bg: #101211;
  --bg-2: #181d1c;
  --ink: #171816;
  --text: #f6f7f2;
  --muted: #cbd2ca;
  --paper: #f6f3ea;
  --paper-2: #ebe6da;
  --muted-dark: #555e59;
  --line: rgba(255, 255, 255, .18);
  --line-dark: #d4cdbc;
  --teal: #29c7b8;
  --amber: #f0b64a;
  --coral: #e46f5d;
  --green: #77b36a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 18px;
}

ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 18px;
}

h1 {
  font-size: 5rem;
  max-width: 860px;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.25rem;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 18, 17, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  font-weight: 800;
  color: var(--text);
}

.navlinks,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.navlinks a,
.footer-links a {
  color: var(--muted);
  font-size: .96rem;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(16, 18, 17, .98) 0%, rgba(16, 18, 17, .9) 46%, rgba(16, 18, 17, .42) 100%),
    url("fusion-consortium-network.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 76px 0 88px;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
}

.page-hero {
  padding: 82px 0 58px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.lead {
  font-size: 1.35rem;
  color: var(--text);
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--amber);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--teal);
  color: #061210;
  border-color: var(--teal);
}

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

.band {
  padding: 70px 0;
}

.band.light {
  color: var(--ink);
  background: var(--paper);
}

.band.light p,
.band.light li {
  color: var(--muted-dark);
}

.band.dark {
  color: var(--text);
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band.dark p,
.band.dark li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.tile-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.tile-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.tile-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.tile {
  min-height: 220px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
}

.band.light .tile {
  background: #fffaf0;
  border-color: var(--line-dark);
}

.tile h3 {
  color: inherit;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  background: #fffaf0;
  border: 1px solid var(--line-dark);
}

.step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--text);
  font-weight: 900;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric {
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
}

.metric span {
  color: var(--muted);
}

.contact-panel,
.notice {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

.contact-panel a,
.legal a {
  color: var(--teal);
  font-weight: 700;
}

.legal {
  padding: 72px 0;
  color: var(--text);
}

.legal h1 {
  font-size: 3.8rem;
}

.legal h2 {
  margin-top: 38px;
  font-size: 1.55rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.notice {
  color: var(--text);
}

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

.site-footer {
  padding: 34px 0;
  background: var(--bg-2);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .split,
  .timeline,
  .tile-grid.four,
  .tile-grid.three {
    grid-template-columns: 1fr;
  }

  .tile,
  .step {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .navlinks {
    gap: 12px;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-copy {
    padding: 58px 0 64px;
  }

  h1,
  .legal h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .band {
    padding: 54px 0;
  }
}
