:root {
  color-scheme: dark;
  --bg: #101111;
  --text: #eeeeee;
  --muted: #adadad;
  --line: #2d3434;
  --accent: #8fbfc0;
  --accent-strong: #558f8f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #d7ffff;
  text-decoration: underline;
}

.site-header,
main,
.site-footer {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 18px;
  align-items: center;
}

nav a {
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  min-width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 0 18px 36px rgb(0 0 0 / 30%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 8px;
}

.hero {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 9vw, 92px) 0 52px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

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

.hero p {
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 900px;
  font-size: clamp(1.14rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.hero-shot {
  margin: 0;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #1d1d1d;
}

.intro-points {
  max-width: 900px;
  margin-top: 28px;
}

.intro-points p {
  margin-bottom: 1rem;
}

.meta-line {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-strong);
  padding: 0 18px;
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 750;
  white-space: nowrap;
}

.button:hover {
  background: #669e9e;
  color: #ffffff;
  text-decoration: none;
}

.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 24px;
}

.section {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.split-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-line > div,
.support-band,
.company-intro {
  max-width: 720px;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 34px;
}

.facts {
  margin: 0;
}

.facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.facts dt {
  font-size: 0.9rem;
}

.facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.feature-list ul {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.45rem;
}

.screen-gallery {
  margin-top: 20px;
}

.screen-gallery figure {
  margin: 0 0 36px;
}

.screen-gallery a {
  display: flex;
  justify-content: center;
}

.screen-gallery img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border: 1px solid var(--line);
  background: #1d1d1d;
}

.screen-gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 48px 0 72px;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.legal-page h2 {
  margin-top: 38px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.legal-updated {
  margin-bottom: 34px;
  font-weight: 650;
}

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

  nav {
    width: 100%;
  }

  .hero,
  .intro-points,
  .split-line,
  .company-section {
    grid-template-columns: 1fr;
  }

  .hero-shot {
    max-width: 420px;
  }

  .action-stack {
    justify-items: stretch;
  }

  .button {
    width: 100%;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
