:root {
  --ink: #10151d;
  --ink-soft: #1b2530;
  --paper: #f1efe9;
  --paper-deep: #dfded7;
  --white: #fffdf8;
  --lime: #c2ef67;
  --coral: #ff836c;
  --blue: #76a8ff;
  --muted: #87909a;
  --line: rgba(16, 21, 29, 0.15);
  --dark-line: rgba(255, 255, 255, 0.16);
  --mono: "DM Mono", monospace;
  --sans: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  width: 100%;
  color: var(--white);
}
.site-banner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 22, 0.55);
}
.site-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-banner-tag {
  flex-shrink: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 7px;
  font: 500 0.6rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-banner p {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}
.site-banner p a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-banner-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font: 500 0.66rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-banner-link:after {
  content: "↗";
  font-size: 1.05em;
}
body[data-page="home"] .hero-grid {
  padding-top: 198px;
}
.nav-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: grid;
  width: fit-content;
  gap: 5px;
  letter-spacing: 0;
  line-height: 1;
}
.brand-name {
  font-family: var(--sans);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 0.82;
  font-feature-settings:
    "ss01" 1,
    "ss02" 1;
}
.brand-period {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1.18em;
  font-weight: 500;
  letter-spacing: 0;
}
.brand-descriptor {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 0.42rem;
  font-weight: 500;
  letter-spacing: 0.31em;
  line-height: 1;
  padding-left: 2px;
}
.accent-lime {
  color: var(--lime);
}
.accent-coral {
  color: var(--coral);
}
.plain-em {
  font-style: normal;
}
.spaced-button {
  margin-top: 35px;
}
.spaced-button-sm {
  margin-top: 25px;
}
.product-button {
  background: var(--ink);
  color: var(--white);
  margin-top: 17px;
}
.section-paper {
  background: var(--paper-deep);
}
.section-flush-top {
  padding-top: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.85rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white) !important;
}
.nav-cta:after,
.text-link:after {
  content: "↗";
  font-size: 1.1em;
  transition: transform 0.2s ease;
}
.nav-cta:hover:after,
.text-link:hover:after {
  transform: translate(3px, -3px);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.6rem;
}

.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-main {
  min-height: 720px;
  display: grid;
  place-items: center;
}
.hero-main:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}
.hero-grid {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding: 150px 5vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 8vw;
  align-items: center;
}
.eyebrow {
  font: 500 0.69rem/1.2 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
  margin: 24px 0 30px;
  font-weight: 600;
  max-width: 800px;
}
h2 {
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 600;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.hero-copy > p {
  color: rgba(255, 255, 255, 0.67);
  max-width: 520px;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}
.button {
  border: 1px solid transparent;
  padding: 14px 19px;
  display: inline-flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: var(--lime);
  color: var(--ink);
}
.button-primary:after {
  content: "↗";
  font-size: 1.2em;
}
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.button-ghost:after {
  content: "↓";
  font-size: 1.2em;
}
.hero-note {
  margin-top: 80px;
  display: flex;
  gap: 14px;
  align-items: center;
  font: 0.68rem var(--mono);
  color: rgba(255, 255, 255, 0.42);
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(194, 239, 103, 0.1);
}

.signal-panel {
  background: #202a33;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 430px;
  padding: 16px;
  box-shadow: 26px 26px 0 rgba(194, 239, 103, 0.09);
}
.panel-top,
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-top {
  border-bottom: 1px solid var(--dark-line);
  padding: 2px 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font: 0.65rem var(--mono);
}
.panel-dots {
  display: flex;
  gap: 5px;
}
.panel-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  background: var(--coral);
}
.panel-dots i:nth-child(2) {
  background: var(--lime);
}
.panel-dots i:nth-child(3) {
  background: var(--blue);
}
.panel-title {
  padding: 30px 10px 20px;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}
.panel-big-stat {
  min-height: 145px;
  margin: 0 10px 24px;
  padding: 17px 0 21px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}
.panel-big-stat strong {
  color: var(--lime);
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
  font-weight: 500;
}
.panel-big-stat sup {
  font-size: 0.35em;
  vertical-align: top;
  letter-spacing: 0;
}
.panel-big-stat span {
  max-width: 145px;
  color: rgba(255, 255, 255, 0.55);
  font: 0.6rem/1.5 var(--mono);
  text-align: right;
}
.chart {
  height: 145px;
  margin: 0 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 35px,
    rgba(255, 255, 255, 0.06) 36px
  );
}
.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart polyline {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.chart circle {
  fill: var(--lime);
}
.panel-row {
  padding: 15px 10px;
  border-top: 1px solid var(--dark-line);
  font: 0.7rem var(--mono);
  color: rgba(255, 255, 255, 0.55);
}
.panel-row strong {
  color: var(--white);
  font-weight: 400;
}
.panel-row strong.green {
  color: var(--lime);
}

.ticker {
  background: var(--lime);
  color: var(--ink);
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
}
.ticker span {
  font: 500 0.7rem var(--mono);
  letter-spacing: 0.08em;
  padding: 13px 22px;
  border-right: 1px solid rgba(16, 21, 29, 0.2);
}
.section {
  padding: 120px 5vw;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 {
  margin-bottom: 0;
  max-width: 740px;
}
.section-heading p {
  max-width: 310px;
  color: #5e6871;
  margin: 0;
}
.kicker {
  color: #657078;
  font: 0.66rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service-card {
  min-height: 330px;
  padding: 28px 28px 25px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.service-card:not(:first-child) {
  padding-left: 28px;
}
.service-card:last-child {
  border-right: 0;
}
.service-index {
  color: #7b858b;
  font: 0.7rem var(--mono);
  margin-bottom: 75px;
}
.service-card h3 {
  margin-bottom: 15px;
}
.service-card p {
  color: #5e6871;
  font-size: 0.9rem;
  max-width: 300px;
}
.service-card .text-link {
  margin-top: auto;
}
.text-link {
  font: 500 0.72rem var(--mono);
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
}
.text-link:after {
  content: "↗";
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}
.dark-band .kicker {
  color: var(--lime);
}
.dark-band .section-heading p,
.dark-band .section-copy {
  color: rgba(255, 255, 255, 0.6);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.split-image {
  aspect-ratio: 1.03;
  overflow: hidden;
  background: var(--ink-soft);
}
.split-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}
.split-copy p {
  max-width: 510px;
  color: #5e6871;
}
.dark-band .split-copy p {
  color: rgba(255, 255, 255, 0.64);
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 38px;
}
.dark-band .mini-stats {
  border-color: var(--dark-line);
}
.stat {
  padding: 18px 12px 0 0;
}
.stat:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.dark-band .stat:nth-child(even) {
  border-color: var(--dark-line);
}
.stat strong {
  display: block;
  font-size: 2.35rem;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font: 0.67rem var(--mono);
  color: #69747b;
}
.dark-band .stat span {
  color: rgba(255, 255, 255, 0.46);
}

.product-band {
  padding: 0 5vw 120px;
  background: var(--paper);
}
.product-shell {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--coral);
  padding: 60px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 8vw;
}
.product-shell h2 {
  margin-bottom: 12px;
}
.product-shell p {
  max-width: 440px;
}
.product-ui {
  background: var(--ink);
  color: var(--white);
  padding: 15px;
  transform: rotate(2deg);
  box-shadow: 10px 10px 0 rgba(16, 21, 29, 0.15);
}
.product-ui-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-line);
  padding-bottom: 12px;
  font: 0.63rem var(--mono);
  color: rgba(255, 255, 255, 0.6);
}
.product-ui-main {
  padding: 34px 12px 14px;
}
.product-ui-main h3 {
  font-size: 2.15rem;
  margin-bottom: 30px;
}
.order-list {
  border-top: 1px solid var(--dark-line);
}
.order {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-line);
  font: 0.68rem var(--mono);
}
.order b {
  color: var(--lime);
  font-weight: 400;
}
.pill {
  background: rgba(194, 239, 103, 0.12);
  color: var(--lime);
  padding: 5px 7px;
  font: 0.57rem var(--mono);
}

.marquee-section {
  padding: 25px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1240px;
  margin: 0 auto;
  color: #768087;
  font-size: 0.8rem;
}
.marquee strong {
  color: var(--ink);
  font-weight: 600;
}
.quote-section {
  background: var(--paper-deep);
}
.quote {
  max-width: 1000px;
  margin: auto;
}
.quote p {
  font-size: clamp(1.7rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}
.quote cite {
  font: 0.67rem var(--mono);
  color: #68727a;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 170px 5vw 85px;
  min-height: 470px;
}
.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  max-width: 900px;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
  font-size: 1.08rem;
}
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 35px;
  padding: 65px 0;
  border-top: 1px solid var(--line);
}
.service-detail:first-child {
  border-top: 0;
}
.service-number {
  font: 0.75rem var(--mono);
  color: #77828a;
}
.service-detail h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  margin: 0;
}
.service-detail-body p {
  color: #5e6871;
  max-width: 420px;
}
.service-detail-body p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 27px 0;
}
.capabilities span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  font: 0.65rem var(--mono);
}
.service-detail:nth-child(even) {
  background: var(--paper-deep);
}
.service-detail:nth-child(even) > *:first-child {
  padding-left: 5vw;
}
.service-detail:nth-child(even) > *:last-child {
  padding-right: 5vw;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dark-line);
}
.process-item {
  padding: 25px 20px 0 0;
  border-right: 1px solid var(--dark-line);
  min-height: 150px;
}
.process-item + .process-item {
  padding-left: 20px;
}
.process-item:last-child {
  border-right: 0;
}
.process-item strong {
  display: block;
  color: var(--lime);
  font: 0.73rem var(--mono);
  margin-bottom: 25px;
}
.process-item h3 {
  margin-bottom: 7px;
}
.process-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}
.work-card {
  display: block;
  min-height: 540px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.work-card.small {
  min-height: 260px;
}
.work-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.work-card:hover img {
  transform: scale(1.04);
  opacity: 0.72;
}
.work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 21, 29, 0.9), transparent 66%);
}
.work-card-content {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 28px;
}
.work-card-content h3 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.work-card-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 430px;
  font-size: 0.88rem;
}
.work-stack {
  display: grid;
  gap: 20px;
}
.work-card.small .work-card-content h3 {
  font-size: 1.8rem;
}
.tag {
  display: inline-block;
  color: var(--lime);
  font: 0.62rem var(--mono);
  margin-bottom: 15px;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.number {
  padding: 25px 0;
}
.number + .number {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.number strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.08em;
  line-height: 1;
}
.number span {
  color: #667079;
  font: 0.65rem var(--mono);
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: saturate(0.7);
}
.image-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--lime);
  padding: 9px 12px;
  font: 0.62rem var(--mono);
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.timeline-row time {
  font: 0.7rem var(--mono);
  color: #707b83;
}
.timeline-row h3 {
  margin: 0 0 6px;
}
.timeline-row p {
  margin: 0;
  color: #657078;
  font-size: 0.9rem;
  max-width: 500px;
}
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.founder {
  background: var(--ink);
  color: white;
  padding: 28px;
  min-height: 260px;
}
.founder:nth-child(2) {
  background: var(--blue);
  color: var(--ink);
}
.founder:nth-child(3) {
  background: var(--lime);
  color: var(--ink);
}
.initials {
  width: 58px;
  height: 58px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 60px;
}
.founder h3 {
  margin-bottom: 5px;
}
.founder p {
  font: 0.67rem var(--mono);
  opacity: 0.65;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.insight-card .category {
  color: #748087;
  font: 0.65rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.insight-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  margin: 45px 0 14px;
}
.insight-card p {
  color: #657078;
  font-size: 0.9rem;
}
.insight-card .text-link {
  margin-top: auto;
}
.featured-insight {
  background: var(--coral);
  padding: 30px;
  border-top: 0;
}
.featured-insight h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}
.insight-card h2 a:hover,
.insight-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.insight-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin: 36px 0 12px;
}

.article-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5.1rem);
  max-width: 980px;
}
.article-hero p {
  max-width: 620px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 32px;
  font: 0.66rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.article-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font: 0.66rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.article-crumb a {
  color: var(--lime);
}
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article-body h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  letter-spacing: -0.045em;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  margin: 28px 0 10px;
}
.article-body p,
.article-body li {
  color: #4d565e;
  font-size: 1.04rem;
  line-height: 1.68;
}
.article-body p {
  margin: 0 0 18px;
}
.article-body ul,
.article-body ol {
  padding-left: 1.2em;
  margin: 0 0 22px;
}
.article-body li {
  margin-bottom: 9px;
}
.article-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--ink);
}
.article-pull {
  border-left: 3px solid var(--lime);
  margin: 36px 0;
  padding: 4px 0 4px 22px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: normal;
  letter-spacing: -0.045em;
  line-height: 1.22;
  color: var(--ink);
}
.article-note {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 24px;
  margin: 28px 0 32px;
}
.article-note strong {
  display: block;
  font: 0.64rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #6d777f;
}
.article-note p {
  margin: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.related-card {
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.related-card .category {
  color: #748087;
  font: 0.65rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.related-card h3 {
  font-size: 1.35rem;
  margin: 18px 0 12px;
}
.related-card .text-link {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.contact-layout h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}
.contact-intro p {
  max-width: 330px;
  color: #657078;
}
.contact-details {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.contact-detail {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail label {
  display: block;
  color: #77828a;
  font: 0.63rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-detail a {
  font-size: 0.92rem;
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font: 0.65rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 11px 0;
  outline: 0;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-note {
  font: 0.63rem var(--mono);
  color: #78828a;
  margin-top: 16px;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.office {
  padding: 25px 25px 0 0;
}
.office + .office {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}
.office .flag {
  color: var(--coral);
  font: 0.7rem var(--mono);
  margin-bottom: 20px;
}
.office h3 {
  margin-bottom: 9px;
}
.office p,
.office address {
  color: #657078;
  font-size: 0.84rem;
  font-style: normal;
}

.cta-band {
  background: var(--lime);
  padding: 75px 5vw;
}
.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  max-width: 730px;
  margin: 0;
}
.cta-band .button {
  background: var(--ink);
  color: var(--white);
}
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 5vw 25px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 0.9fr;
  gap: 50px;
}
.footer-grid p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  margin-top: 22px;
}
.footer-label {
  color: var(--lime);
  font: 0.64rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 17px;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
  margin-bottom: 9px;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid var(--dark-line);
  max-width: 1240px;
  margin: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.38);
  font: 0.62rem var(--mono);
}
.page-hero.compact {
  min-height: 0;
  padding-bottom: 70px;
}
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-switch a {
  padding: 4px 0 14px;
  font: 0.7rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #77828a;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.legal-switch a:hover {
  color: var(--ink);
}
.legal-switch a.is-current {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.legal-switch + .legal-block {
  border-top: 0;
}
.legal-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-block h2 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.legal-block p,
.legal-block li {
  color: #5e6871;
  font-size: 0.95rem;
  max-width: 680px;
}
.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}
.legal-block ul {
  padding-left: 1.15em;
  margin: 0 0 16px;
}
.legal-block li {
  margin-bottom: 8px;
}
.legal-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover {
  color: var(--ink);
}
.cut-hero {
  padding-bottom: 0;
  min-height: 0;
}
.cut-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 7vw;
  align-items: end;
}
.cut-hero h1 {
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  max-width: none;
}
.cut-hero p {
  max-width: 460px;
}
.cut-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.ledger {
  background: #202a33;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 16px 20px;
  margin-bottom: -40px;
  position: relative;
  box-shadow: 22px 22px 0 rgba(194, 239, 103, 0.1);
}
.ledger-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-line);
  padding: 4px 4px 12px;
  font: 0.63rem var(--mono);
  color: rgba(255, 255, 255, 0.55);
}
.ledger-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
}
.ledger-col {
  padding: 18px 12px 8px;
}
.ledger-col + .ledger-col {
  border-left: 1px solid var(--dark-line);
  padding-left: 18px;
}
.ledger-col h3 {
  font: 0.62rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.ledger-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font: 0.72rem var(--mono);
  color: rgba(255, 255, 255, 0.62);
}
.ledger-line.total {
  border-bottom: 0;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.82rem;
}
.ledger-line.struck span:last-child {
  text-decoration: line-through;
  color: var(--coral);
}
.ledger-line.ours span:last-child {
  color: var(--lime);
}
.stamp {
  position: absolute;
  right: 18px;
  bottom: 28px;
  width: 92px;
  height: 92px;
  border: 3px solid var(--lime);
  color: var(--lime);
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
  font: 700 1.15rem/1 var(--sans);
  letter-spacing: -0.04em;
  background: rgba(16, 21, 29, 0.72);
}
.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.workflow-step {
  padding: 28px 22px 8px 0;
  border-right: 1px solid var(--line);
  min-height: 210px;
}
.workflow-step + .workflow-step {
  padding-left: 22px;
}
.workflow-step:last-child {
  border-right: 0;
}
.workflow-step strong {
  display: block;
  color: #77828a;
  font: 0.7rem var(--mono);
  margin-bottom: 28px;
}
.workflow-step p {
  color: #5e6871;
  font-size: 0.9rem;
  max-width: 240px;
}
.gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gate {
  padding: 28px 26px 20px;
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--white);
}
.gate.yes {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.gate.yes .kicker {
  color: var(--lime);
}
.gate ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
}
.gate li {
  margin-bottom: 10px;
  color: #5e6871;
  font-size: 0.92rem;
}
.gate.yes li {
  color: rgba(255, 255, 255, 0.68);
}
.upload {
  border: 1px dashed var(--line);
  padding: 22px 18px;
  background: var(--paper);
}
.upload input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 8px 0 0;
}
.upload-meta {
  font: 0.62rem var(--mono);
  color: #77828a;
  letter-spacing: 0.04em;
}
.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 18px;
  font-size: 0.84rem;
  color: #5e6871;
}
.check-field input {
  margin-top: 4px;
  accent-color: var(--ink);
}
.check-field a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cut-band {
  background: var(--coral);
  padding: 70px 5vw;
}
.cut-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.cut-band .kicker {
  color: var(--ink);
}
.cut-band h2 {
  max-width: 720px;
  margin: 0;
}
.cut-band .button {
  background: var(--ink);
  color: var(--white);
  flex-shrink: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 15px;
  }
  .hero-grid,
  .split,
  .product-shell,
  .contact-layout,
  .cut-hero-grid,
  .gate-grid {
    grid-template-columns: 1fr;
  }
  .hero-main {
    min-height: auto;
  }
  .hero-grid {
    padding-top: 150px;
  }
  body[data-page="home"] .hero-grid {
    padding-top: 198px;
  }
  .signal-panel {
    max-width: 650px;
    width: 100%;
  }
  .product-ui {
    max-width: 620px;
  }
  .product-shell {
    gap: 40px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-stack {
    grid-template-columns: 1fr 1fr;
  }
  .work-card {
    min-height: 450px;
  }
  .work-card.small {
    min-height: 290px;
  }
  .service-detail {
    grid-template-columns: 70px 1fr;
  }
  .service-detail-body {
    grid-column: 2;
  }
  .service-detail:nth-child(even) > *:first-child {
    padding-left: 0;
  }
  .service-detail:nth-child(even) > *:last-child {
    padding-right: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    gap: 55px;
  }
}
@media (max-width: 640px) {
  .nav-wrap {
    padding: 21px 6vw;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 5vw;
    right: 5vw;
    padding: 20px;
    background: var(--ink-soft);
    border: 1px solid var(--dark-line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 10px 0;
  }
  .nav-cta {
    text-align: center;
    justify-content: center;
  }
  .hero-grid {
    padding: 130px 6vw 60px;
  }
  body[data-page="home"] .hero-grid {
    padding-top: 188px;
  }
  body[data-page="home"] .nav-links {
    top: 118px;
  }
  .site-banner-inner {
    padding: 10px 6vw;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .site-banner p {
    flex-basis: 100%;
    order: 3;
    font-size: 0.78rem;
  }
  .hero-main {
    min-height: auto;
  }
  .hero-copy h1,
  h1 {
    font-size: clamp(3.05rem, 16vw, 5rem);
  }
  .hero-copy > p {
    font-size: 0.98rem;
  }
  .hero-note {
    margin-top: 50px;
  }
  .signal-panel {
    min-height: 380px;
  }
  .section {
    padding: 75px 6vw;
  }
  .section-heading {
    display: block;
    margin-bottom: 38px;
  }
  .section-heading p {
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:not(:first-child) {
    padding: 24px 0;
    border-right: 0;
    min-height: 250px;
  }
  .service-index {
    margin-bottom: 45px;
  }
  .product-band {
    padding: 0 6vw 75px;
  }
  .product-shell {
    padding: 32px 24px;
  }
  .product-ui {
    transform: none;
  }
  .marquee {
    flex-wrap: wrap;
    gap: 17px;
  }
  .marquee-section {
    padding: 22px 6vw;
  }
  .split-image {
    order: 2;
  }
  .split-copy {
    order: 1;
  }
  .ledger {
    margin: 30px 0 0;
  }
  .stamp {
    right: 12px;
    bottom: 16px;
  }
  .process-grid,
  .workflow-rail {
    grid-template-columns: 1fr 1fr;
  }
  .process-item:nth-child(2) {
    border-right: 0;
  }
  .process-item:nth-child(n + 3) {
    border-top: 1px solid var(--dark-line);
  }
  .workflow-step:nth-child(2) {
    border-right: 0;
  }
  .workflow-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }
  .cut-band-inner {
    display: block;
  }
  .cut-band .button {
    margin-top: 26px;
  }
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
  .number:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .number:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .work-stack {
    grid-template-columns: 1fr;
  }
  .work-card,
  .work-card.small {
    min-height: 360px;
  }
  .founders,
  .insight-grid,
  .offices,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .founder {
    min-height: 220px;
  }
  .office + .office {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 25px;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta-inner {
    display: block;
  }
  .cta-inner .button {
    margin-top: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
    margin-bottom: 45px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    display: block;
    line-height: 1.8;
  }
  .footer-bottom span {
    display: block;
  }
  .page-hero {
    padding: 135px 6vw 65px;
    min-height: auto;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .legal-block h2 {
    font-size: 1.25rem;
  }
  .service-detail {
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 45px 0;
  }
  .service-detail h2 {
    font-size: 2.2rem;
  }
  .service-detail-body {
    grid-column: 2;
  }
  .timeline-row {
    grid-template-columns: 70px 1fr;
    gap: 15px;
  }
}
