:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: #0d1014;
  color: #f4f6f8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #0d1014;
}

a { color: inherit; }

.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 6vw;
  border-bottom: 1px solid #29313a;
  background: #101419;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; object-fit: contain; }

nav { display: flex; gap: 22px; }
nav a { color: #b9c1ca; text-decoration: none; }
nav a:hover { color: #ffffff; }

.hero {
  min-height: min(68vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 64px 6vw;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, .96) 0%, rgba(8, 11, 14, .74) 48%, rgba(8, 11, 14, .2) 100%),
    url("/assets/cover-bg.png") center 42% / cover no-repeat;
}

.hero-copy { max-width: 680px; }

.eyebrow {
  margin: 0 0 10px;
  color: #63d5a4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1, h2 { margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(42px, 8vw, 86px); line-height: 1; }
h2 { font-size: 28px; }

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 28px;
  color: #d2d8de;
  font-size: 18px;
  line-height: 1.6;
}

.primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #63d5a4;
  border-radius: 6px;
  background: #173c31;
  text-decoration: none;
  font-weight: 700;
}

.primary-link:hover { background: #1c4a3b; }

.band {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
  gap: 8vw;
  padding: 72px 6vw;
  border-top: 1px solid #29313a;
  background: #151a20;
}

.band.muted { background: #101419; }
.band > p { margin: 0; color: #b9c1ca; line-height: 1.75; }

footer {
  padding: 28px 6vw;
  border-top: 1px solid #29313a;
  color: #7f8994;
  background: #0b0e12;
}

@media (max-width: 700px) {
  .topbar { padding: 0 18px; }
  .brand span { display: none; }
  .hero { min-height: 620px; padding: 48px 20px; background-position: 62% center; }
  .band { grid-template-columns: 1fr; gap: 24px; padding: 52px 20px; }
}
