:root {
  color-scheme: dark;
  --bg: #07100f;
  --bg-2: #0d1716;
  --text: #f4fbf8;
  --muted: #adc2bd;
  --line: rgba(244, 251, 248, 0.14);
  --green: #4cf0a6;
  --teal: #33d6d0;
  --coral: #ff756e;
  --panel: rgba(13, 23, 22, 0.84);
}

* {
  box-sizing: border-box;
}

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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(7, 16, 15, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.96) 0%, rgba(7, 16, 15, 0.72) 38%, rgba(7, 16, 15, 0.16) 76%),
    linear-gradient(0deg, rgba(7, 16, 15, 0.94), transparent 42%);
}

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

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.36;
}

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

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

.button.primary {
  background: var(--green);
  color: #06110d;
  border-color: transparent;
}

.button.secondary {
  background: rgba(244, 251, 248, 0.07);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.compact p,
.card p,
.panel p {
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.panel {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card:nth-child(2),
.panel:nth-child(2) {
  border-color: rgba(255, 117, 110, 0.42);
}

.band {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.compact {
  max-width: 920px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span {
  margin-right: auto;
}

.legal-page {
  max-width: 860px;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 146px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 16, 15, 0.96), rgba(7, 16, 15, 0.54)),
      linear-gradient(0deg, rgba(7, 16, 15, 0.94), transparent 48%);
  }

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