:root {
  color-scheme: dark;
  --bg: #071112;
  --bg-soft: #0d1918;
  --panel: #13201f;
  --text: #f5f0e6;
  --muted: #c9d2c7;
  --subtle: #93a49e;
  --line: rgba(245, 240, 230, 0.16);
  --gold: #e7bf67;
  --teal: #5fb8ae;
  --shadow: rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(7, 17, 18, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.wordmark,
.site-nav {
  display: flex;
  align-items: center;
}

.wordmark {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  gap: clamp(16px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-block: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.96) 0%, rgba(7, 17, 18, 0.72) 38%, rgba(7, 17, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 17, 18, 0.5) 0%, rgba(7, 17, 18, 0.05) 48%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 13vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-split,
.status-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.status-band {
  background:
    linear-gradient(90deg, rgba(95, 184, 174, 0.12), transparent 45%),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--subtle);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 14px;
  }

  .hero {
    min-height: 84svh;
    padding-top: 152px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 18, 0.94) 0%, rgba(7, 17, 18, 0.68) 76%, rgba(7, 17, 18, 0.3) 100%),
      linear-gradient(180deg, rgba(7, 17, 18, 0.5) 0%, rgba(7, 17, 18, 0.14) 46%, var(--bg) 100%);
  }

  .section-split,
  .status-band {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
