:root {
  color-scheme: dark;
  --bg: #07100c;
  --panel: #0b1812;
  --panel-strong: #102319;
  --line: rgba(117, 143, 119, 0.22);
  --text: #f4f8ef;
  --muted: #b8c8bb;
  --soft: #829487;
  --accent: #d0ff30;
  --accent-dark: #7fa019;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(7, 16, 12, 0.84);
  border-bottom: 1px solid rgba(37, 69, 52, 0.72);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

nav a,
.site-footer a {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.92rem;
  text-decoration: none;
}

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

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 88px;
  position: relative;
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(7, 16, 12, 0.99) 0%,
    rgba(7, 16, 12, 0.95) 42%,
    rgba(7, 16, 12, 0.7) 72%,
    rgba(7, 16, 12, 0.3) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

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

.hero-copy {
  max-width: min(570px, calc(100vw - 48px));
  position: relative;
  width: 100%;
  z-index: 1;
}

.meaning {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 34px;
  max-width: 600px;
}

.meaning span {
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 4px 10px;
  grid-template-columns: auto auto 1fr;
  min-height: 0;
  padding: 12px 0 14px;
}

.meaning strong {
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1;
}

.meaning b {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1;
}

.meaning small {
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(4.2rem, 9vw, 8rem);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.35;
}

.hero p:last-child,
.section > div > p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  margin: 18px 0 0;
  max-width: min(560px, 100%);
  width: 100%;
}

.hero p:last-child {
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  margin-top: 28px;
}

.section {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 96px 24px;
}

.band {
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr);
}

.product-list {
  display: grid;
  gap: 24px;
}

.product {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  padding-top: 32px;
}

.product-image {
  border: 1px solid var(--line);
  display: block;
  max-width: 100%;
}

h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  margin: 0;
}

.product p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px 0 0;
  max-width: 520px;
}

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

dl {
  margin: 0;
}

dl > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 22px 0;
}

dt {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

dd {
  color: var(--text);
  margin: 0;
}

.document {
  margin: 0 auto;
  max-width: 760px;
  padding: 88px 24px 104px;
}

.document h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.2rem);
  overflow-wrap: anywhere;
}

.document h2 {
  font-size: 1.45rem;
  margin: 48px 0 12px;
}

.document p {
  color: var(--muted);
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.updated {
  margin-top: 16px !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--soft);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: var(--max);
  padding: 32px 24px 48px;
}

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

  nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 13px;
    justify-content: flex-start;
    row-gap: 6px;
    width: 100%;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 72px;
    padding-top: 72px;
  }

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

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 16, 12, 0.98), rgba(7, 16, 12, 0.78));
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    opacity: 0.42;
    width: 100%;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.2rem);
  }

  .document h1 {
    font-size: clamp(1.9rem, 8vw, 2rem);
    line-height: 1.12;
  }

  .document {
    margin-left: 0;
    margin-right: 0;
    max-width: 390px;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .section {
    gap: 36px;
    grid-template-columns: 1fr;
    padding-bottom: 72px;
    padding-top: 72px;
  }

  dl > div {
    grid-template-columns: 1fr;
  }

  .meaning {
    gap: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 340px;
  }

  .meaning span {
    grid-template-columns: auto 1fr;
    padding: 10px 0 12px;
  }

  .meaning small {
    grid-column: 1 / -1;
  }

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