:root {
  --paper: #f1efe7;
  --paper-bright: #faf9f4;
  --ink: #11120f;
  --muted: #66665f;
  --line: rgba(17, 18, 15, 0.2);
  --blue: #2447ff;
  --orange: #f1532f;
  --acid: #d7ff4a;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --frame: min(1440px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #d8d6cf;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-frame {
  width: var(--frame);
  margin: 16px auto;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(24, 25, 22, .15);
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 800;
}
.brand small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--muted);
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 2px;
  align-items: end;
  width: 19px;
  height: 18px;
}
.brand-mark i { display: block; background: var(--ink); }
.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 12px; }

.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }
.site-header nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--blue);
  transition: right .25s ease;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { right: 0; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  min-height: 720px;
  border-bottom: 1px solid var(--line);
}
.hero > * { min-width: 0; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 126px) clamp(28px, 5vw, 80px) clamp(56px, 7vw, 100px);
}
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow > span { width: 22px; height: 2px; background: var(--orange); }
.hero h1, .section-heading h2, .contact-heading h2 {
  margin: 0;
  font-size: clamp(58px, 6.3vw, 104px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 700;
}
.hero h1 em, .section-heading h2 em, .contact-heading h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.06em;
}
.hero-intro {
  max-width: 610px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.5;
  letter-spacing: -.025em;
  color: #35362f;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px 0 22px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button i { font-style: normal; font-size: 18px; }
.button:hover { transform: translateY(-3px); }
.button-primary { min-width: 228px; color: white; background: var(--blue); box-shadow: 8px 8px 0 var(--ink); }
.button-primary:hover { background: var(--ink); }
.text-link { font-size: 13px; font-weight: 700; text-underline-offset: 5px; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(4px); }
.system-board {
  position: relative;
  align-self: stretch;
  margin: 34px 34px 34px 0;
  min-height: 650px;
  overflow: hidden;
  color: #f6f4ec;
  background-color: #151711;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  box-shadow: 12px 12px 0 var(--orange);
}
.system-board::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -200px;
  top: 60px;
  border: 1px solid rgba(215, 255, 74, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(215,255,74,.025), 0 0 0 90px rgba(215,255,74,.018);
}
.board-topline, .board-footer {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}
.board-topline { top: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.18); }
.board-state { display: flex; align-items: center; gap: 7px; color: var(--acid); }
.board-state i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.board-footer { bottom: 23px; justify-content: flex-start; gap: 20px; color: rgba(255,255,255,.55); }
.board-footer span:last-child { margin-left: auto; }
.key { display: inline-block; width: 7px; height: 7px; margin-right: 4px; }
.key-blue { background: #7890ff; }
.key-orange { background: var(--orange); }

.system-flow { position: absolute; inset: 84px 50px 67px; }
.flow-node {
  position: absolute;
  z-index: 2;
  width: 210px;
  padding: 20px;
  background: #f5f3eb;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 5px 5px 0 rgba(255,255,255,.14);
}
.flow-node::after { content: ""; position: absolute; width: 8px; height: 8px; background: var(--blue); border: 3px solid #f5f3eb; border-radius: 50%; }
.node-index { position: absolute; right: 12px; top: 10px; font-family: var(--mono); font-size: 9px; color: #77776e; }
.flow-node small { display: block; margin-bottom: 16px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; color: var(--blue); }
.flow-node strong { display: block; font-size: 16px; letter-spacing: -.03em; }
.flow-node p, .flow-node li { margin: 8px 0 0; font-family: var(--mono); font-size: 9px; line-height: 1.5; color: #65655f; }
.flow-node ul { margin: 9px 0 0; padding: 0; list-style: none; }
.flow-node li { display: flex; justify-content: space-between; border-top: 1px solid #d8d6ce; padding-top: 4px; }
.flow-node li::after { content: "✓"; color: var(--blue); }
.node-input { left: 0; top: 25px; }
.node-input::after { right: -7px; top: 50%; }
.node-process { right: 0; top: 105px; background: var(--acid); transform: rotate(1.2deg); box-shadow: 5px 5px 0 var(--blue); }
.node-process::after { left: -7px; top: 35%; border-color: var(--acid); }
.node-process small { color: #4c570d; }
.node-review { left: 40px; bottom: 88px; border: 2px solid var(--orange); transform: rotate(-1deg); }
.node-review::after { right: -8px; top: 40%; background: var(--orange); }
.node-output { right: 12px; bottom: 18px; }
.node-output::after { left: -7px; top: 50%; }
.flow-line { position: absolute; z-index: 1; border: 1px dashed rgba(255,255,255,.5); }
.flow-line span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); animation: travel 3.2s linear infinite; }
.line-one { left: 180px; right: 180px; top: 120px; border-width: 1px 0 0; }
.line-one span { top: -4px; animation-delay: -.4s; }
.line-two { right: 140px; top: 210px; bottom: 180px; border-width: 0 0 0 1px; }
.line-two span { left: -4px; animation-name: travel-y; animation-delay: -1.5s; }
.line-three { left: 200px; right: 150px; bottom: 122px; border-width: 1px 0 0; }
.line-three span { top: -4px; animation-delay: -2.4s; }
@keyframes travel { from { left: 0; } to { left: calc(100% - 7px); } }
@keyframes travel-y { from { top: 0; } to { top: calc(100% - 7px); } }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.principles article { min-height: 235px; padding: 38px clamp(26px, 3vw, 48px); border-right: 1px solid var(--line); }
.principles article:last-child { border-right: 0; }
.principles article > span, .work-number, .process-index, .process-output, .agency-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  color: var(--muted);
}
.principles h2 { margin: 42px 0 10px; font-size: 20px; letter-spacing: -.035em; }
.principles p { max-width: 350px; margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.section { padding: clamp(90px, 10vw, 150px) clamp(28px, 5vw, 80px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); column-gap: 70px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { font-size: clamp(52px, 6vw, 88px); }
.section-heading > p:last-child { margin: 0 0 8px; font-size: 17px; line-height: 1.65; color: var(--muted); }

.work-list { margin-top: 90px; border-top: 1px solid var(--ink); }
.work-item {
  display: grid;
  grid-template-columns: 60px 1.1fr 1fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 156px;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, padding .25s ease;
}
.work-item:hover { padding: 0 18px; background: var(--paper-bright); }
.work-title { display: flex; align-items: center; gap: 18px; }
.work-title h3 { margin: 0; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.045em; }
.work-item > p { max-width: 380px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.work-item ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.work-item li { padding: 7px 9px; border: 1px solid var(--line); font-family: var(--mono); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.work-icon { position: relative; flex: 0 0 32px; width: 32px; height: 32px; }
.icon-leads { border: 2px solid var(--blue); border-radius: 50%; box-shadow: inset 0 0 0 6px var(--paper), inset 0 0 0 8px var(--blue); }
.icon-leads::after { content: ""; position: absolute; right: -6px; bottom: 1px; width: 12px; height: 2px; background: var(--blue); transform: rotate(45deg); }
.icon-reporting { border-left: 5px solid var(--orange); border-bottom: 5px solid var(--orange); }
.icon-reporting::before, .icon-reporting::after { content: ""; position: absolute; bottom: 0; width: 5px; background: var(--orange); }
.icon-reporting::before { left: 9px; height: 16px; }.icon-reporting::after { left: 20px; height: 25px; }
.icon-knowledge { border: 2px solid var(--ink); transform: rotate(45deg); }
.icon-knowledge::after { content: ""; position: absolute; inset: 6px; border: 2px solid var(--blue); }
.icon-custom { background: linear-gradient(90deg, var(--ink) 2px, transparent 2px) 0 0/8px 8px, linear-gradient(var(--ink) 2px, transparent 2px) 0 0/8px 8px; }

.agency-band {
  display: grid;
  grid-template-columns: .45fr 1.05fr .7fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 76px clamp(28px, 5vw, 80px);
  background: var(--blue);
  color: white;
}
.agency-label { color: rgba(255,255,255,.65); }
.agency-band h2 { margin: 0; font-size: clamp(42px, 5vw, 74px); line-height: .95; letter-spacing: -.06em; }
.agency-band p { max-width: 650px; margin: 28px 0 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.74); }
.agency-band ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.agency-band li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 13px; }
.agency-band li span { display: inline-block; width: 32px; font-family: var(--mono); font-size: 9px; color: var(--acid); }

.process { background: var(--paper-bright); }
.process-heading { align-items: start; }
.process-list { margin: 90px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 80px 1fr 180px; gap: 30px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.035em; }
.process-list p { max-width: 620px; margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.process-output { align-self: center; justify-self: end; padding: 8px 10px; border: 1px solid var(--line); color: var(--ink); }

.fit-section { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; background: #dbd9d1; }
.fit-card { position: relative; min-height: 530px; padding: clamp(34px, 5vw, 70px); overflow: hidden; }
.fit-card .eyebrow { margin-bottom: 55px; }
.fit-card h2 { max-width: 550px; margin: 0; font-size: clamp(38px, 4.2vw, 62px); line-height: 1; letter-spacing: -.06em; }
.fit-card ul { margin: 60px 0 0; padding: 0; list-style: none; }
.fit-card li { padding: 14px 0; border-top: 1px solid currentColor; font-size: 13px; }
.fit-symbol { position: absolute; right: 30px; top: 18px; font-family: var(--serif); font-size: 110px; line-height: 1; opacity: .15; }
.fit-good { background: var(--acid); }
.fit-good .eyebrow > span { background: var(--ink); }
.fit-bad { background: var(--ink); color: white; }
.fit-bad .eyebrow, .fit-bad li { color: rgba(255,255,255,.7); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(28px, 5vw, 80px);
  background: var(--orange);
  color: var(--ink);
}
.contact-heading h2 { font-size: clamp(50px, 5.4vw, 82px); }
.contact-heading > p:not(.eyebrow) { max-width: 650px; margin: 32px 0; font-size: 17px; line-height: 1.6; }
.contact-email { display: inline-flex; gap: 12px; font-family: var(--mono); font-size: 13px; font-weight: 700; text-underline-offset: 5px; }
.contact-form { align-self: end; padding: 34px; background: var(--ink); color: white; box-shadow: 12px 12px 0 rgba(255,255,255,.33); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label > span { display: block; margin-bottom: 9px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  color: white;
  background: transparent;
  font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--acid); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.32); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.form-footer p { max-width: 220px; margin: 0; font-family: var(--mono); font-size: 8px; line-height: 1.5; color: rgba(255,255,255,.45); }
.button-light { color: var(--ink); background: var(--acid); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 30px;
  min-height: 210px;
  padding: 50px clamp(28px, 5vw, 80px);
  color: white;
  background: var(--ink);
}
.brand-footer { align-self: start; color: white; }
.brand-footer .brand-mark i { background: white; }
.brand-footer small { color: rgba(255,255,255,.45); }
.site-footer p { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); }
.site-footer > div { display: flex; flex-direction: column; gap: 8px; }
.site-footer a:not(.brand) { font-size: 12px; text-underline-offset: 4px; }
.site-footer > small { font-family: var(--mono); font-size: 8px; color: rgba(255,255,255,.4); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1fr); overflow: hidden; }
  .system-board { min-height: 620px; margin: 0 34px 46px; }
  .hero-copy { min-height: 650px; }
  .work-item { grid-template-columns: 50px 1fr 1fr; padding: 28px 0; }
  .work-item ul { grid-column: 2 / -1; }
  .agency-band { grid-template-columns: .35fr 1fr; }
  .agency-band ul { grid-column: 2; }
  .contact { grid-template-columns: 1fr; }
  .contact-form { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --frame: calc(100vw - 12px); }
  .site-frame { margin: 6px auto; }
  .site-header { min-height: 72px; }
  .site-header nav a:not(:last-child) { display: none; }
  .site-header nav a:last-child { padding: 10px 12px; border: 1px solid var(--ink); font-size: 10px; }
  .hero-copy { min-height: 610px; padding-top: 85px; }
  .hero h1 { font-size: clamp(55px, 17vw, 82px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .system-board { min-height: 670px; margin: 0 12px 30px; box-shadow: 7px 7px 0 var(--orange); }
  .system-flow { inset: 77px 22px 57px; }
  .flow-node { width: 185px; }
  .node-input { top: 15px; }
  .node-process { top: 157px; }
  .node-review { left: 0; bottom: 100px; }
  .node-output { right: 0; bottom: 0; }
  .line-one { left: 90px; right: 90px; top: 150px; transform: rotate(28deg); }
  .line-two { right: 50%; top: 280px; bottom: 210px; }
  .line-three { left: 100px; right: 80px; bottom: 122px; transform: rotate(18deg); }
  .board-footer span:not(:last-child) { display: none; }
  .board-footer span:last-child { margin-left: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles h2 { margin-top: 34px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: clamp(48px, 14vw, 68px); }
  .section-heading > p:last-child { margin-top: 28px; }
  .work-list { margin-top: 60px; }
  .work-item { grid-template-columns: 34px 1fr; gap: 12px; }
  .work-title { gap: 14px; }
  .work-item > p, .work-item ul { grid-column: 2; }
  .agency-band { grid-template-columns: 1fr; }
  .agency-band ul { grid-column: auto; }
  .process-list { margin-top: 60px; }
  .process-list li { grid-template-columns: 42px 1fr; }
  .process-output { grid-column: 2; justify-self: start; }
  .fit-section { grid-template-columns: 1fr; }
  .fit-card { min-height: 500px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; align-items: start; }
  .site-footer > small { align-self: end; }
}

@media (max-width: 430px) {
  .brand small { display: none; }
  .system-board { min-height: 710px; }
  .flow-node { width: 170px; padding: 16px; }
  .node-process { top: 175px; }
  .node-review { bottom: 115px; }
  .site-footer { grid-template-columns: 1fr; }
}

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