:root {
  color-scheme: light;
  --forest: #13251d;
  --forest-soft: #1d3529;
  --paper: #f1eee5;
  --paper-deep: #dfd9ca;
  --ink: #14221b;
  --muted: #606961;
  --sage: #8eb098;
  --lime: #d8e991;
  --rust: #ad6846;
  --line: rgba(20, 34, 27, 0.17);
  --page: min(1440px, calc(100vw - 72px));
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--lime);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: var(--page);
  height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f9f7ef;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 13px;
}

.site-header nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding: 150px max(36px, calc((100vw - 1440px) / 2)) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 18%, rgba(142, 176, 152, 0.19), transparent 28%),
    linear-gradient(132deg, #102118 0%, #173126 58%, #203d30 100%);
  color: #f9f7ef;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.hero-copy,
.decision-field {
  position: relative;
  z-index: 1;
}

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

.kicker,
.section-number {
  margin: 0;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker {
  color: var(--lime);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 6.6vw, 108px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: rgba(249, 247, 239, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 39px;
  display: flex;
  align-items: center;
  gap: 29px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 224px;
  padding: 18px 21px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--lime);
  color: var(--forest);
}

.button-primary:hover {
  background: #e5f3a9;
}

.text-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.demo-disclosure {
  max-width: 460px;
  margin: 25px 0 0;
  color: rgba(249, 247, 239, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.decision-field {
  --field-x: 0;
  --field-y: 0;
  min-height: 630px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(rgba(13, 31, 23, 0.14), rgba(13, 31, 23, 0.5)),
    radial-gradient(circle at 77% 22%, rgba(216, 233, 145, 0.22), transparent 31%);
  transform: translate(var(--field-x), var(--field-y)) rotate(1.5deg);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.field-label {
  position: absolute;
  inset: 28px 29px auto;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-label span {
  color: var(--lime);
}

.field-label strong {
  font-weight: 600;
}

.field-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.field-lines path {
  fill: none;
  stroke: rgba(216, 233, 145, 0.27);
  stroke-width: 1.2;
  stroke-dasharray: 7 10;
  animation: trace 18s linear infinite;
}

.result-stack {
  position: absolute;
  top: 28%;
  right: 7%;
  left: 9%;
  box-shadow: 0 34px 80px rgba(4, 14, 9, 0.3);
}

.result-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 91px;
  padding: 17px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 31, 23, 0.79);
  backdrop-filter: blur(12px);
  animation: arrive 700ms both;
}

.result-row:nth-child(2) {
  animation-delay: 100ms;
}

.result-row:nth-child(3) {
  animation-delay: 200ms;
}

.result-row.result-lead {
  min-height: 110px;
  background: #f3f0e7;
  color: var(--forest);
}

.result-rank {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.result-row strong,
.result-row small {
  display: block;
}

.result-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.result-row small {
  margin-top: 5px;
  color: currentColor;
  font-size: 10px;
  opacity: 0.55;
}

.result-state {
  color: var(--lime);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-lead .result-state {
  color: #3e7158;
}

.result-state.is-blocked {
  color: #dc9570;
}

.field-rule {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.premise,
.process,
.proof,
.local-first,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.premise {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  padding: 142px 0 110px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: #52705f;
}

.premise h2,
.process h2,
.proof h2,
.local-first h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.premise h2 {
  max-width: 980px;
  font-size: clamp(45px, 5.7vw, 83px);
  line-height: 1.01;
}

.premise div > p {
  max-width: 700px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.method-strip > div {
  min-height: 305px;
  padding: 49px 43px 50px 0;
}

.method-strip > div + div {
  padding-left: 43px;
  border-left: 1px solid var(--line);
}

.method-strip span {
  color: #52705f;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-strip strong {
  display: block;
  max-width: 350px;
  margin-top: 37px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.method-strip p {
  max-width: 320px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 9vw, 150px);
  padding-bottom: 150px;
}

.process-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}

.process h2 {
  max-width: 550px;
  margin: 24px 0 39px;
  font-size: clamp(46px, 4.7vw, 70px);
  line-height: 1;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 32px;
  min-height: 255px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

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

.process-list > li > span {
  color: #52705f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.proof {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 630px;
  background: var(--forest);
  color: #f7f4eb;
}

.proof-copy {
  padding: clamp(52px, 7vw, 96px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof .section-number {
  color: var(--sage);
}

.proof h2 {
  max-width: 530px;
  margin-top: 33px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
}

.proof-copy > p:last-child {
  max-width: 480px;
  margin: 37px 0 0;
  color: rgba(247, 244, 235, 0.63);
  line-height: 1.75;
}

.proof-output {
  align-self: center;
  padding: clamp(52px, 7vw, 96px);
}

.proof-heading span,
.proof-heading strong {
  display: block;
}

.proof-heading span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-heading strong {
  margin-top: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.proof-output dl {
  margin: 48px 0 0;
}

.proof-output dl div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-output dl div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-output dt {
  color: var(--sage);
  font-size: 11px;
  text-transform: uppercase;
}

.proof-output dd {
  margin: 0;
  font-size: 13px;
}

.local-first {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 145px);
  padding: 150px 0;
}

.local-first h2 {
  max-width: 650px;
  margin-top: 30px;
  font-size: clamp(47px, 5.2vw, 76px);
  line-height: 1;
}

.local-copy {
  align-self: end;
}

.local-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.install-command {
  margin: 36px 0 29px;
  padding: 22px 24px;
  border-left: 3px solid var(--sage);
  background: #e5e0d3;
}

.install-command code {
  display: block;
  font-size: 13px;
  line-height: 1.8;
}

.final-cta {
  min-height: 590px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 80px 36px;
  background:
    radial-gradient(circle at 50% 110%, rgba(216, 233, 145, 0.18), transparent 37%),
    var(--forest-soft);
  color: #f7f4eb;
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin: 29px auto 43px;
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 0.95;
}

.button-light {
  background: #f7f4eb;
  color: var(--forest);
}

.site-footer {
  min-height: 148px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 25px;
  font-size: 11px;
}

.site-footer p {
  color: var(--muted);
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
  text-decoration: none;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms ease,
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes trace {
  to {
    stroke-dashoffset: -170;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@media (max-width: 1050px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 160px 24px 65px;
  }

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

  .decision-field {
    width: min(740px, 100%);
    min-height: 580px;
    margin-left: auto;
  }

  .process {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    height: 78px;
  }

  .site-header nav {
    gap: 0;
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .wordmark {
    font-size: 26px;
  }

  .hero {
    padding: 124px 18px 45px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(57px, 18vw, 82px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .decision-field {
    min-height: 490px;
    margin-top: 20px;
  }

  .field-label {
    inset: 21px 20px auto;
  }

  .result-stack {
    right: 4%;
    left: 4%;
  }

  .result-row {
    min-height: 82px;
    padding: 14px;
  }

  .result-row.result-lead {
    min-height: 96px;
  }

  .result-row strong {
    font-size: 19px;
  }

  .field-rule {
    right: 16px;
    bottom: 19px;
    left: 16px;
    font-size: 9px;
  }

  .premise {
    grid-template-columns: 1fr;
    padding: 95px 0 80px;
  }

  .premise div > p {
    margin-left: 0;
  }

  .method-strip {
    grid-template-columns: 1fr;
    margin-bottom: 100px;
  }

  .method-strip > div {
    min-height: auto;
    padding: 39px 0;
  }

  .method-strip > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-bottom: 100px;
  }

  .process-heading {
    position: static;
  }

  .process-list li {
    grid-template-columns: 45px 1fr;
    gap: 19px;
    min-height: auto;
  }

  .proof,
  .local-first {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .local-first {
    gap: 60px;
    padding: 100px 0;
  }

  .final-cta {
    min-height: 540px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer {
    min-height: 180px;
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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