:root {
  --bg: #f4f2ec;
  --paper: #faf9f5;
  --text: #151714;
  --muted: #61665e;
  --soft: #868b83;
  --line: #d8d8cf;
  --dark: #151714;
  --dark-muted: #adb3aa;
  --accent: #baff5e;
  --container: 1440px;
  --gutter: clamp(18px, 4vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #2b55ff;
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #000;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(21, 23, 20, .12);
  background: color-mix(in srgb, var(--bg) 91%, transparent);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  width: fit-content;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.055em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-cta:hover {
  text-decoration: underline;
}

.nav-cta {
  justify-self: end;
}

.hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(84px, 9vw, 126px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
  align-items: end;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow,
.section-label,
.note-kicker,
.status,
.fact-label {
  font-size: 11px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 32px;
}

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

h1 {
  max-width: 1100px;
  margin-bottom: 38px;
  font-size: clamp(60px, 8.4vw, 138px);
  line-height: .88;
  letter-spacing: -.072em;
  font-weight: 720;
}

h1 span {
  color: #70756d;
}

.lead {
  max-width: 780px;
  margin-bottom: 0;
  color: #383c36;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #2a2d29;
  text-decoration: none;
}

.button.large {
  min-height: 60px;
  padding-inline: 28px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero-note {
  max-width: 430px;
  justify-self: end;
  padding-top: 20px;
  border-top: 1px solid var(--text);
}

.note-kicker {
  margin-bottom: 38px;
}

.note-quote {
  margin-bottom: 0;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.25;
  letter-spacing: -.04em;
  font-weight: 650;
}

.note-line {
  height: 1px;
  margin: 36px 0 16px;
  background: var(--line);
}

.note-small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(48px, 7vw, 96px);
  padding-top: clamp(82px, 8vw, 116px);
  padding-bottom: clamp(82px, 8vw, 116px);
}

.section-label {
  margin: 0;
  color: #70756d;
}

.section-copy {
  max-width: 980px;
}

.section-copy h2,
.section-heading-row h2,
.cta-inner h2,
.quick-facts h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 650;
}

.section-copy h2 {
  margin-bottom: 42px;
}

.section-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.58;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
  margin-top: 38px;
  margin-bottom: 68px;
}

.section-heading-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.why,
.how,
.principles,
.quick-facts {
  padding: clamp(82px, 8vw, 116px) 0;
}

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

.card {
  min-height: 310px;
  padding: 28px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.card + .card {
  padding-left: 34px;
}

.card:last-child {
  border-right: 0;
}

.card-number {
  display: inline-block;
  margin-bottom: 76px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -.038em;
}

.card p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dark {
  background: var(--dark);
  color: #fff;
}

.want {
  padding: clamp(82px, 8vw, 116px) 0;
}

.section-label.light {
  color: var(--dark-muted);
}

.light-copy p {
  color: var(--dark-muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #353934;
  border-bottom: 1px solid #353934;
}

.pillar {
  min-height: 335px;
  padding: 28px 30px 36px 0;
  border-right: 1px solid #353934;
}

.pillar + .pillar {
  padding-left: 30px;
}

.pillar:last-child {
  border-right: 0;
}

.pillar > span {
  display: block;
  margin-bottom: 86px;
  color: var(--dark-muted);
  font-size: 12px;
}

.pillar h3 {
  margin-bottom: 18px;
  font-size: 32px;
  letter-spacing: -.045em;
}

.pillar p {
  margin-bottom: 0;
  color: var(--dark-muted);
  line-height: 1.62;
}

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

.product-row {
  min-height: 165px;
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}

.product-title h3 {
  margin: 10px 0 0;
  font-size: 34px;
  letter-spacing: -.047em;
}

.status {
  color: #747a71;
}

.product-row p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.arrow {
  font-size: 24px;
}

.principle-list {
  margin-top: 56px;
}

.principle-list p {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 650;
}

.principle-list p:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: var(--soft);
}

.quick-facts {
  background: var(--paper);
}

.quick-facts-header {
  max-width: 880px;
  margin: 0 0 62px auto;
}

.quick-facts-header .section-label {
  margin-bottom: 30px;
}

.quick-facts h2 {
  margin-bottom: 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 26px;
  min-height: 148px;
  padding: 28px 34px 28px 0;
  border-bottom: 1px solid var(--line);
}

.fact:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fact:nth-child(even) {
  padding-left: 34px;
}

.fact-label {
  color: var(--soft);
}

.fact p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.final-cta {
  padding: clamp(96px, 10vw, 146px) 0 clamp(110px, 11vw, 160px);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-inner h2 {
  max-width: 1120px;
  margin: 38px 0 52px;
}

.cta-small {
  max-width: 740px;
  margin: -24px 0 42px;
  color: var(--muted);
  font-size: 17px;
}

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

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner p:last-child {
  justify-self: end;
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-note {
    justify-self: start;
  }

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

  .product-row {
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 28px 0;
  }

  .product-row p {
    grid-column: 1 / -1;
  }

  .fact {
    grid-template-columns: 110px 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .footer-inner p:last-child {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 16px;
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: 66px;
  }

  .nav-cta {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .lead {
    font-size: 19px;
  }

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

  .card,
  .card + .card,
  .pillar,
  .pillar + .pillar {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dark .pillar {
    border-bottom-color: #353934;
  }

  .card-number,
  .pillar > span {
    margin-bottom: 38px;
  }

  .product-title h3 {
    font-size: 28px;
  }

  .fact,
  .fact:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
  }

  .quick-facts-header {
    margin-left: 0;
  }

  .footer-inner {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .final-cta,
  footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .dark {
    background: #fff;
    color: #000;
  }

  .light-copy p,
  .pillar p,
  .pillar > span {
    color: #333;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
