:root {
  color-scheme: dark;
  --ink: #f3f0e8;
  --muted: #b6b0a4;
  --line: rgba(243, 240, 232, 0.24);
  --line-strong: rgba(243, 240, 232, 0.72);
  --black: #080807;
  --graphite: #141412;
  --stone: #8d877b;
  --accent: #d8ff3f;
  --shadow: rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(130px, 1fr);
  align-items: stretch;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: stretch;
  width: fit-content;
  min-width: 190px;
  border-right: 1px solid var(--line);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  min-height: 72px;
  border-right: 1px solid var(--line);
  background: var(--ink);
  color: var(--black);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 0 18px;
  text-transform: uppercase;
  font-weight: 900;
}

.brand-text span {
  font-size: 18px;
}

.brand-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-links a,
.nav-action {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:last-child {
  border-right: 1px solid var(--line);
}

.nav-action {
  justify-self: end;
  min-width: 160px;
  border-right: 0;
  color: var(--black);
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

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

.hero-image {
  object-position: 66% 50%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.54) 44%, rgba(8, 8, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.68) 0%, rgba(8, 8, 7, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  padding: 144px 0 54px 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(76px, 15vw, 208px);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.02;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.text-button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-button {
  background: var(--ink);
  color: var(--black);
}

.text-button {
  color: var(--ink);
}

.hero-spec {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  border: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.72);
}

.hero-spec span {
  min-height: 38px;
  padding: 12px 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-spec span:first-child {
  border-left: 0;
  color: var(--ink);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-strong);
}

.ticker span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

.system-section,
.drop-section {
  padding: 76px 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
}

.system-grid article {
  min-height: 310px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--graphite);
}

.system-grid article:last-child {
  border-right: 0;
}

.system-number {
  display: block;
  margin-bottom: 72px;
  color: var(--stone);
  font-size: 12px;
  font-weight: 900;
}

.system-grid h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 950;
  text-transform: uppercase;
}

.system-grid p {
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.feature-tile {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.feature-tile.large {
  border-left: 0;
}

.feature-tile img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.feature-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding-top: 160px;
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0));
}

.feature-tile h2 {
  max-width: 650px;
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  border: 1px solid var(--line-strong);
}

.product-visual {
  min-height: 620px;
  border-right: 1px solid var(--line);
  background: #1a1916;
}

.product-visual img {
  height: 100%;
  object-fit: cover;
}

.product-list {
  display: grid;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 155px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--graphite);
}

.product-row:last-child {
  border-bottom: 0;
}

.product-row p {
  margin-bottom: 10px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 900;
}

.product-row h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3.5vw, 54px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.product-row span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
}

.manifesto {
  padding: 88px 28px;
  border-top: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--black);
}

.manifesto p {
  width: min(1180px, 100%);
  margin: 0;
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  min-height: 88px;
}

.footer-brand .brand-mark {
  min-height: 88px;
}

.footer-links {
  display: flex;
}

.footer-links a {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .brand-lockup {
    min-width: 0;
  }

  .nav-action {
    min-width: 122px;
    padding: 0 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 70% 50%;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 120px 0 54px 18px;
  }

  .hero-spec {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
    max-width: calc(100% - 24px);
  }

  .hero-spec span {
    padding: 10px;
  }

  .ticker,
  .system-grid,
  .image-band,
  .product-layout,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ticker span,
  .system-grid article,
  .feature-tile,
  .product-visual {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-section,
  .drop-section,
  .manifesto {
    padding: 56px 16px;
  }

  .section-heading {
    gap: 10px;
  }

  .system-grid article {
    min-height: 250px;
  }

  .system-number {
    margin-bottom: 42px;
  }

  .feature-tile {
    min-height: 520px;
  }

  .product-visual {
    min-height: 520px;
  }

  .footer-links {
    border-top: 1px solid var(--line);
  }

  .footer-links a {
    flex: 1;
    min-height: 64px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 58px;
  }

  .brand-text {
    padding: 0 12px;
  }

  .brand-text span {
    font-size: 15px;
  }

  .nav-action {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 17vw, 66px);
    line-height: 0.84;
  }

  .hero-copy {
    width: calc(100vw - 56px);
    font-size: 18px;
    line-height: 1.08;
  }

  .primary-button,
  .text-button {
    width: 100%;
  }

  .hero-spec {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin: 0 12px 12px;
  }

  .hero {
    align-items: end;
  }

  .product-row {
    grid-template-columns: 1fr;
    min-height: 140px;
  }
}
