:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --paper: #f4efe6;
  --ink: #171b18;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: #626a64;
  --line: rgba(255, 255, 255, 0.24);
  --line-dark: #d6cec0;
  --pill: rgba(23, 23, 23, 0.9);
  --olive: #56675c;
  --brass: #b68a4b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Readex Pro", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 42%, rgba(0, 0, 0, 0.92));
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.pill,
.start-button,
.contact-button {
  border-radius: 999px;
}

.pill {
  background: var(--pill);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
}

.nav a {
  border-radius: 999px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.16s ease;
}

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

.start-button,
.contact-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.16s ease;
}

.start-button:hover,
.start-button:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  background: rgb(229, 229, 229);
}

.hero-content {
  position: relative;
  min-height: 100svh;
}

.hero-title {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: var(--white);
  font-size: clamp(64px, 12.7vw, 184px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: lowercase;
}

.word-one {
  left: 4vw;
  top: 18%;
}

.word-two {
  right: 5vw;
  top: 37%;
}

.word-three {
  left: 18vw;
  top: 58%;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: 4vw;
  top: 48%;
  max-width: 292px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.35;
  text-transform: lowercase;
}

.hero-stat {
  position: absolute;
  z-index: 4;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat strong {
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: lowercase;
}

.stat-line {
  display: block;
  width: 96px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.line-down {
  rotate: 20deg;
}

.line-up {
  rotate: -20deg;
}

.stat-top {
  right: 8vw;
  top: 14%;
  text-align: right;
}

.stat-left {
  left: 6vw;
  bottom: 11%;
}

.stat-right {
  right: 6vw;
  bottom: 9%;
  text-align: right;
}

main {
  background: var(--paper);
  color: var(--ink);
}

.section,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1;
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
}

h3 {
  font-size: 25px;
}

.section-heading p,
.kit-card p,
.buyer-grid p,
.sourcing-section p,
.contact-panel p {
  color: var(--muted-dark);
}

.section-heading p,
.sourcing-section .section-heading p,
.contact-panel p {
  font-size: 18px;
  line-height: 1.55;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.kit-card,
.buyer-grid article {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.68);
}

.featured-card {
  background: var(--ink);
  color: var(--white);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.72);
}

.kit-card span {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.featured-card span {
  color: rgba(255, 255, 255, 0.78);
}

.kit-card p {
  min-height: 86px;
  margin: 18px 0 28px;
  line-height: 1.55;
}

.kit-card a {
  display: inline-flex;
  color: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.large-copy h2 {
  max-width: 610px;
}

.buyer-grid {
  display: grid;
  gap: 14px;
}

.buyer-grid article {
  background: transparent;
}

.buyer-grid p {
  margin: 12px 0 0;
  line-height: 1.55;
}

.sourcing-section {
  padding-bottom: 74px;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
}

.steps span {
  color: var(--brass);
  font-size: 20px;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  padding: 36px;
  margin-bottom: 78px;
}

.contact-panel div {
  max-width: 720px;
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.site-footer {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    padding: 20px 20px 0;
  }

  .nav {
    display: none;
  }

  .brand {
    max-width: calc(100vw - 180px);
  }

  .hero-title {
    font-size: clamp(52px, 15vw, 96px);
  }

  .word-one {
    left: 20px;
    top: 19%;
  }

  .word-two {
    right: 20px;
    top: 35%;
  }

  .word-three {
    left: 20px;
    top: 51%;
  }

  .hero-copy {
    left: 20px;
    top: 67%;
    max-width: min(330px, calc(100vw - 40px));
  }

  .stat-line {
    display: none;
  }

  .stat-top {
    right: 20px;
    top: 12%;
  }

  .stat-left {
    left: 20px;
    bottom: 86px;
  }

  .stat-right {
    right: 20px;
    bottom: 36px;
  }

  .kit-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .brand span:last-child {
    display: none;
  }

  .start-button,
  .contact-button {
    min-height: 42px;
    padding: 10px 16px;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .section {
    padding: 72px 0;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-panel {
    padding: 26px;
  }
}
