:root {
  color-scheme: light;
  --ink: #10100f;
  --paper: #f8f7f3;
  --muted: #595954;
  --line: rgba(16, 16, 15, 0.13);
  --grid: rgba(16, 16, 15, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 42px 42px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(
    rgba(16, 16, 15, 0.09) 0.7px,
    transparent 0.7px
  );
  background-size: 5px 5px;
  opacity: 0.16;
}

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

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

.page {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(20px, 2.7vw, 38px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.page-home {
  height: 100svh;
  overflow: hidden;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}

.site-nav a {
  padding-block: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: currentColor;
}

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

.home-main {
  min-height: 0;
}

.hero {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(20px, 4vh, 48px) 0;
}

.hero-copy {
  min-width: 0;
}

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

h1 {
  max-width: 1040px;
  margin-bottom: 0;
  font-family: "Arial Black", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(48px, min(10.8vw, 15.5vh), 150px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.title-block {
  width: fit-content;
  padding: 0 0.06em 0.035em;
  background: var(--ink);
  color: var(--paper);
}

.intro {
  max-width: 650px;
  margin: clamp(20px, 3.2vh, 34px) 0 0;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.company-details {
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(18px, 2.8vh, 28px);
  display: flex;
  align-items: center;
  border-block: 1px solid var(--ink);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.company-details > * {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
}

.company-details > * + * {
  border-left: 1px solid var(--ink);
}

.company-details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card {
  position: absolute;
  right: 0;
  bottom: clamp(12px, 2vh, 22px);
  width: min(36vw, 450px);
  padding: 18px 20px 20px;
  border: 1px solid var(--ink);
  background: rgba(248, 247, 243, 0.96);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 26px 0 10px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.product-card p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  line-height: 1.35;
}

.card-link {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.content-main {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 130px) 0 clamp(72px, 10vw, 140px);
}

.page-heading {
  max-width: 900px;
  margin-bottom: clamp(52px, 8vw, 100px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-heading h1 {
  font-size: clamp(54px, 9vw, 126px);
  line-height: 0.88;
}

.page-heading p {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.about-item {
  padding: 28px 0 48px;
  border-bottom: 1px solid var(--line);
}

.about-item:nth-child(odd) {
  padding-right: clamp(24px, 5vw, 72px);
}

.about-item:nth-child(even) {
  padding-left: clamp(24px, 5vw, 72px);
  border-left: 1px solid var(--line);
}

.about-item h2 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-item p {
  max-width: 520px;
  margin-bottom: 0;
  color: #2d2d2a;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
}

.jobs-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.jobs-heading h2,
.jobs-heading p {
  margin-bottom: 0;
}

.jobs-heading h2 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jobs-heading p {
  color: var(--muted);
  font-size: 12px;
}

.job-card {
  border: 1px solid var(--ink);
  background: rgba(248, 247, 243, 0.94);
}

.job-summary {
  padding: clamp(24px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(32px, 6vw, 90px);
}

.job-title h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.job-title p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.45;
}

.job-meta {
  margin: 0;
  display: grid;
  align-content: start;
}

.job-meta div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.job-meta div:last-child {
  border-bottom: 1px solid var(--line);
}

.job-meta dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.job-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.job-detail {
  padding: clamp(24px, 4vw, 48px);
}

.job-detail + .job-detail {
  border-left: 1px solid var(--line);
}

.job-detail h3 {
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-detail ul {
  margin: 0;
  padding-left: 18px;
}

.job-detail li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.45;
}

.job-status {
  padding: 16px clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .page-home {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .hero {
    align-items: start;
    padding: 52px 0 64px;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 70px);
  }

  .product-card {
    position: static;
    width: 100%;
    margin-top: 36px;
  }

  .about-grid,
  .job-summary,
  .job-details {
    grid-template-columns: 1fr;
  }

  .about-item,
  .about-item:nth-child(odd),
  .about-item:nth-child(even) {
    padding: 24px 0 36px;
    border-left: 0;
  }

  .job-detail + .job-detail {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 18px;
  }

  .site-header {
    align-items: flex-start;
  }

  .wordmark {
    max-width: 120px;
    line-height: 1.25;
  }

  .site-nav {
    gap: 14px;
    font-size: 10px;
  }

  .intro {
    margin-top: 20px;
  }

  .company-details {
    width: 100%;
    display: grid;
  }

  .company-details > * + * {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.35;
  }

  .site-footer span:last-child {
    text-align: right;
  }

  .content-main {
    padding-top: 52px;
  }

  .page-heading {
    margin-bottom: 48px;
  }

  .page-heading p {
    margin-top: 22px;
  }

  .jobs-heading,
  .job-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 680px) and (min-width: 821px) {
  .hero {
    padding-block: 14px;
  }

  .intro {
    margin-top: 16px;
  }

  .company-details {
    margin-top: 14px;
  }

  .product-card {
    padding: 14px 16px 16px;
  }

  .product-card h2 {
    margin-top: 14px;
  }

  .card-link {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
