:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #14171c;
  --text: #f3f5f7;
  --muted: #a8adb7;
  --line: #2a2f37;
  --accent: #43d17c;
  --accent-2: #4aa3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  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;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  backdrop-filter: blur(18px);
}

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

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

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(22px, 5vw, 72px) clamp(52px, 8vw, 96px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.96) 0%, rgba(8, 10, 13, 0.72) 46%, rgba(8, 10, 13, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 1) 0%, rgba(8, 10, 13, 0.2) 36%, rgba(8, 10, 13, 0.08) 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  opacity: 0.8;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.85rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy p:last-child {
  max-width: min(520px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.band {
  padding: 58px clamp(22px, 5vw, 72px) 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

article {
  min-width: 0;
  min-height: 190px;
  padding: 28px;
  background: var(--panel);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

article p,
.legal-note p,
.document p {
  color: var(--muted);
}

.legal-note {
  max-width: 920px;
  padding: 18px clamp(22px, 5vw, 72px) 72px;
}

.document {
  max-width: 820px;
  padding: 128px clamp(22px, 5vw, 48px) 80px;
}

.document h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.document h2 {
  margin-top: 34px;
}

.updated {
  margin-top: 10px;
}

.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  background: var(--accent-2);
  color: #04111f;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
}

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

  .hero {
    min-height: 82vh;
    padding-top: 132px;
  }

  .hero img {
    object-position: 68% center;
  }

  .hero-copy {
    width: min(100%, 340px);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(8, 10, 13, 1) 0%, rgba(8, 10, 13, 0.78) 54%, rgba(8, 10, 13, 0.4) 100%);
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 2.6rem);
    line-height: 1.06;
  }

  .hero-copy p:last-child {
    font-size: 0.98rem;
  }

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