@font-face {
  font-family: "Archivo";
  src: url("/assets/Archivo-Variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --red: #8e1b1b;
  --red-bright: #b22222;
  --carbon: #0b0b0c;
  --charcoal: #151517;
  --graphite: #1f2023;
  --line: #2b2c30;
  --steel: #7f8187;
  --grey: #b6b7ba;
  --silver: #d9dadc;
  --white: #f4f4f3;
  --page: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--carbon);
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(255, 255, 255, 0.025) 50%, transparent calc(50% + 1px)),
    var(--carbon);
  color: var(--grey);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(-26deg, transparent 0 68px, rgba(255, 255, 255, 0.018) 69px 70px);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--carbon);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  gap: 30px;
}

.brand img {
  width: 218px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}

.nav-links a,
.mono,
.eyebrow,
.section-index,
.metric-label,
.chip,
.image-label,
.step-number,
.footer-meta {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--red-bright);
  background: var(--red-bright);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--carbon);
}

.hero {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 118px) 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
  gap: 12px;
  color: var(--silver);
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--red);
  content: "";
}

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

h1,
h2,
h3 {
  color: var(--white);
  font-stretch: expanded;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 860;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

h1 .muted {
  color: #77797e;
}

h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 13px;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--silver);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

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

.hero-visual,
.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.hero-visual::before,
.image-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 12, 0.92) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual::after,
.image-panel::after {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-top: 2px solid var(--steel);
  border-right: 2px solid var(--steel);
  content: "";
}

.hero-visual img,
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.image-label {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  color: var(--silver);
}

.image-label::before {
  color: var(--red-bright);
  content: "\25B8  ";
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 132px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

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

.metric-value {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.metric-label {
  display: block;
  color: var(--steel);
  line-height: 1.5;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 150px) 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  margin-bottom: 52px;
  gap: 24px;
}

.section-index {
  padding-top: 10px;
  color: var(--steel);
}

.section-lead {
  max-width: 720px;
  color: var(--silver);
  font-size: 1.12rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(21, 21, 23, 0.56);
}

.chip {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--steel);
}

.card p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(36px, 6vw, 78px);
}

.split-copy {
  align-self: center;
}

.split-copy p {
  max-width: 600px;
  color: var(--silver);
  font-size: 1.08rem;
}

.image-panel {
  min-height: 520px;
}

.steps {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--red-bright);
}

.step-copy {
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
  text-transform: uppercase;
}

.statement {
  position: relative;
  overflow: hidden;
  width: var(--page);
  margin: 40px auto 100px;
  padding: clamp(56px, 8vw, 96px);
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.statement::after {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(142, 27, 27, 0.22);
  border-radius: 50%;
  content: "";
}

.statement > * {
  position: relative;
  z-index: 1;
}

.statement p {
  max-width: 650px;
  color: var(--silver);
  font-size: 1.12rem;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: var(--page);
  margin: 0 auto;
  padding: 44px 0;
  gap: 32px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.footer-meta {
  margin: 0;
  color: var(--steel);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--grey);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid > *,
  .split > * {
    min-width: 0;
  }

  .hero-visual {
    min-height: 480px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .card {
    min-height: auto;
  }

  .chip {
    margin-bottom: 34px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 168px;
  }

  .nav .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 9px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    overflow-wrap: break-word;
    font-size: clamp(2.4rem, 10vw, 3rem);
  }

  h2 {
    overflow-wrap: break-word;
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .hero-visual,
  .image-panel {
    min-height: 360px;
  }

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

  .metric,
  .metric:last-child {
    min-height: 104px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .metric:first-child {
    border-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .statement {
    margin-bottom: 60px;
    padding: 38px 26px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
