:root {
  color-scheme: light;
  --ink: #141920;
  --muted: #6f7376;
  --paper: #fff8eb;
  --paper-2: #f5ebdc;
  --line: #d9cfbd;
  --green: #8bbe3f;
  --green-dark: #4f8428;
  --orange: #ff8a00;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(139, 190, 63, 0.13), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #fff6e7 52%, #f7ebd9 100%);
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(20, 25, 32, 0.9);
  border-radius: 12px;
  background: var(--ink);
  color: var(--green);
  box-shadow: 5px 5px 0 rgba(20, 25, 32, 0.18);
  font-weight: 950;
}

.dot {
  color: var(--green);
}

.run {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 253, 247, 0.72);
  color: #4d514f;
  font-size: 0.86rem;
  font-weight: 850;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  width: min(1440px, 100%);
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  align-items: center;
}

.hero-art {
  position: relative;
  min-height: 680px;
  align-self: stretch;
}

.hero-art::after {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: 46%;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 25, 32, 0.16);
  content: "";
  filter: blur(14px);
}

.hero-art img {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(1020px, 66vw);
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, calc(100% - 28px));
  margin: 0 auto;
  padding: 52px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  display: grid;
  margin-bottom: 22px;
  font-size: clamp(4rem, 7.8vw, 8.2rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: lowercase;
}

h1 span {
  width: fit-content;
}

h1 span:nth-child(1),
h1 span:nth-child(3) {
  color: var(--white);
  text-shadow:
    3px 0 0 var(--ink),
    -3px 0 0 var(--ink),
    0 3px 0 var(--ink),
    0 -3px 0 var(--ink),
    6px 6px 0 var(--ink);
}

h1 span:nth-child(2) {
  color: var(--ink);
}

h1 span:nth-child(3) {
  color: var(--green);
}

.lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: #4a4d4e;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  line-height: 1.32;
  font-weight: 720;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

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

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

.workflow,
.manifesto {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.workflow {
  border-top: 4px solid var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.steps article {
  min-height: 220px;
  padding: 24px;
}

.steps article + article {
  border-left: 3px solid var(--ink);
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1;
}

.steps p,
.manifesto p {
  color: #585d5d;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 720;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
}

.manifesto p {
  margin-bottom: 0;
  font-size: clamp(1.18rem, 2vw, 1.56rem);
  line-height: 1.28;
}

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

  .hero-art {
    min-height: 52vh;
    order: 2;
  }

  .hero-art img {
    width: 100%;
    object-position: 38% center;
  }

  .hero-copy {
    width: min(720px, calc(100% - 32px));
    padding: 40px 0 8px;
  }

  .section-head,
  .manifesto {
    grid-template-columns: 1fr;
  }

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

  .steps article:nth-child(3) {
    border-left: 0;
  }

  .steps article:nth-child(n + 3) {
    border-top: 3px solid var(--ink);
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1320px);
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-copy,
  .workflow,
  .manifesto {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(3.75rem, 20vw, 5.8rem);
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .steps article + article,
  .steps article:nth-child(3) {
    border-left: 0;
    border-top: 3px solid var(--ink);
  }
}
