:root {
  --ink: #17201d;
  --paper: #f2efe6;
  --green: #1f6555;
  --orange: #dd6845;
  --line: rgba(23, 32, 29, 0.16);
  --muted: #64706b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1440px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-size: 23px; font-weight: 700; letter-spacing: -0.04em; }
.wordmark svg { width: 30px; height: 30px; }
.wordmark path { fill: none; stroke: currentColor; stroke-width: 1.5; }
.wordmark circle { fill: var(--orange); stroke: var(--paper); stroke-width: 2; }
nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 550; }
nav > a:not(.nav-cta) { color: var(--muted); }
.nav-cta { padding: 12px 17px; border: 1px solid var(--ink); border-radius: 999px; transition: .2s ease; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }

main, footer { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}
.kicker { margin: 0 0 24px; color: var(--green); font-size: 12px; line-height: 1; font-weight: 750; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; font-weight: 560; }
h1 { max-width: 800px; margin-bottom: 30px; font-size: clamp(62px, 7.3vw, 118px); line-height: .88; }
h1 em, h2 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.lede { max-width: 650px; color: var(--muted); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.5; letter-spacing: -.02em; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; gap: 20px; padding: 17px 22px; border-radius: 4px; font-size: 14px; font-weight: 680; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #fff; }
.button-primary:hover { background: #174e42; }
.button-dark { background: var(--ink); color: #fff; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 650; }

.weave { position: relative; width: min(520px, 100%); aspect-ratio: 1; justify-self: end; }
.weave-grid {
  position: absolute;
  inset: 11%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.75%, rgba(23,32,29,.12) 50%, transparent 50.25%),
    linear-gradient(transparent 49.75%, rgba(23,32,29,.12) 50%, transparent 50.25%);
}
.thread { position: absolute; display: block; background: var(--green); opacity: .9; }
.thread-a, .thread-b, .thread-c { top: -10%; bottom: -10%; width: 2px; transform: rotate(32deg); }
.thread-a { left: 31%; }
.thread-b { left: 50%; background: var(--orange); }
.thread-c { left: 69%; }
.thread-d, .thread-e, .thread-f { left: -10%; right: -10%; height: 2px; transform: rotate(-28deg); }
.thread-d { top: 31%; }
.thread-e { top: 50%; background: var(--orange); }
.thread-f { top: 69%; }
.weave-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font: 48px/1 Georgia, serif;
}
.weave-label { position: absolute; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.weave-label-top { top: 0; left: 50%; transform: translateX(-50%); }
.weave-label-right { right: -12px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.weave-label-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.weave-label-left { left: 5px; top: 50%; transform: translateY(-50%) rotate(-90deg); }

.manifesto { padding: 150px 8%; border-bottom: 1px solid var(--line); }
.manifesto > p { color: var(--orange); font-size: 14px; font-weight: 700; }
.manifesto h2 { max-width: 1110px; margin: 0; font-size: clamp(38px, 5.1vw, 76px); line-height: 1.04; }

.work, .principles { padding: 130px 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin: 0; font-size: clamp(40px, 4.5vw, 66px); line-height: 1.02; }
.capabilities { display: grid; }
.capabilities article { display: grid; grid-template-columns: 48px 170px 1fr; gap: 20px; align-items: baseline; padding: 34px 0; border-top: 1px solid var(--line); }
.capabilities article:last-child { border-bottom: 1px solid var(--line); }
.capabilities span { color: var(--orange); font: italic 16px Georgia, serif; }
.capabilities h3 { margin: 0; font-size: 25px; letter-spacing: -.03em; }
.capabilities p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }

.product {
  margin: 90px 0;
  padding: clamp(40px, 6vw, 86px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: #f8f5ed;
}
.product .kicker { color: #a9d9ca; }
.product-title { display: flex; align-items: baseline; gap: 15px; }
.product-title h2 { margin-bottom: 25px; font-size: clamp(58px, 6vw, 92px); line-height: .9; }
.product-title span { color: #a9d9ca; font: italic 20px Georgia, serif; }
.product-copy > p:not(.kicker) { color: #cbe1da; font-size: 19px; line-height: 1.55; }
.product-copy ul { margin: 35px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.product-copy li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 14px; }
.product-copy li span { margin-right: 18px; color: #a9d9ca; font: italic 12px Georgia, serif; }
.product-copy .button-dark { margin-top: 10px; }
.product-visual { align-self: center; min-width: 620px; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: #121b19; box-shadow: 0 30px 80px rgba(0,0,0,.22); transform: rotate(1.5deg); }
.visual-topline { display: flex; align-items: center; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); color: #7ee0bf; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.visual-topline span { margin-right: auto; }
.visual-topline i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.2); }
.visual-metrics { padding: 25px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.visual-metrics span { padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 4px; }
.visual-metrics small { display: block; margin-bottom: 10px; color: #7f9991; font-size: 8px; letter-spacing: .12em; }
.visual-metrics strong { font-size: 23px; }
.visual-chart { position: relative; height: 190px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: repeating-linear-gradient(0deg, transparent, transparent 37px, rgba(255,255,255,.06) 38px); }
.bars { position: absolute; inset: auto 16px 0; height: 70%; display: flex; align-items: flex-end; justify-content: space-between; }
.bars i { width: 7%; height: 30%; background: rgba(126,224,191,.23); }
.bars i:nth-child(2) { height: 45%; }.bars i:nth-child(3) { height: 40%; }.bars i:nth-child(4) { height: 61%; }.bars i:nth-child(5) { height: 57%; }.bars i:nth-child(6) { height: 73%; }.bars i:nth-child(7) { height: 68%; }.bars i:nth-child(8) { height: 88%; }.bars i:nth-child(9) { height: 82%; }
.chart-line { position: absolute; left: 7%; right: 7%; height: 2px; z-index: 2; transform-origin: left center; }
.line-one { top: 45%; background: var(--orange); transform: rotate(-8deg); }
.line-two { top: 61%; background: #7ee0bf; transform: rotate(-5deg); }
.visual-sources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 20px; }
.visual-sources span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; color: #aebbb7; font-size: 10px; }
.visual-sources i { width: 7px; height: 7px; border-radius: 50%; background: #7ee0bf; }
.visual-sources .source-meta { background: var(--orange); }
.visual-sources .source-organic { background: #e2bd69; }
.visual-sources strong { color: #fff; }

.principle-list { border-top: 1px solid var(--line); }
.principle-list article { padding: 29px 0; display: grid; grid-template-columns: 210px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.principle-list span { font-size: 18px; font-weight: 680; letter-spacing: -.02em; }
.principle-list p { margin: 0; color: var(--muted); line-height: 1.5; }
.closing { padding: 170px 0; text-align: center; }
.closing h2 { margin-bottom: 45px; font-size: clamp(52px, 7vw, 105px); line-height: .92; }
footer { min-height: 150px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.wordmark-footer { color: var(--ink); font-size: 18px; }
footer > p { margin: 0; text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 20px; }

@media (max-width: 980px) {
  .site-header, main, footer { width: min(100% - 36px, 760px); }
  nav > a:not(.nav-cta) { display: none; }
  .hero { padding: 90px 0; grid-template-columns: 1fr; gap: 80px; }
  .weave { justify-self: center; width: min(520px, 90%); }
  .work, .principles { grid-template-columns: 1fr; gap: 70px; }
  .product { grid-template-columns: minmax(0, 1fr); }
  .product-copy { min-width: 0; }
  .product-visual { width: 100%; min-width: 0; transform: rotate(1deg); }
  footer { grid-template-columns: 1fr auto; }
  footer > p { display: none; }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  .wordmark { font-size: 20px; }
  .nav-cta { padding: 10px 13px; }
  .hero { min-height: 0; padding: 90px 0 70px; }
  h1 { font-size: clamp(56px, 18vw, 76px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .weave { width: 100%; }
  .manifesto { padding: 100px 0; }
  .work, .principles { padding: 95px 0; gap: 50px; }
  .capabilities article { grid-template-columns: 35px 1fr; }
  .capabilities article p { grid-column: 2; }
  .product { margin: 60px -18px; padding: 55px 24px; border-radius: 0; }
  .product-visual { width: 100%; min-width: 0; padding: 16px; transform: rotate(.5deg); }
  .principle-list article { grid-template-columns: 1fr; gap: 10px; }
  .closing { padding: 110px 0; }
  footer { padding: 40px 0; gap: 28px; }
  footer > div { flex-wrap: wrap; justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
