:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0c0c0b;
  --panel: #141412;
  --panel-2: #1b1b18;
  --line: #30302c;
  --line-soft: #22221f;
  --white: #f4f3ee;
  --muted: #aaa9a2;
  --dim: #74736d;
  --acid: #f7dde2;
  --blue: #9eb7ff;
  --max: 1880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
a {
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 10px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  translate: 0 -160%;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 88px;
  max-width: var(--max);
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  padding: 0 44px;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.wordmark img {
  width: 27px;
  height: 27px;
}

.primary-nav,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 34px;
}

.primary-nav a,
.text-link,
.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d1d0cb;
  font-size: 0.9rem;
}

.primary-nav a:hover,
.text-link:hover,
.site-footer nav a:hover,
.underlined-link:hover {
  color: var(--acid);
}

.header-actions {
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 500;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:active {
  transform: scale(0.96);
}

.button-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  transition: filter 180ms ease;
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--black);
}

.button-light:hover .button-icon {
  filter: invert(1);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover {
  color: var(--black);
  background: transparent;
}

.button-dark .button-icon {
  filter: invert(1);
}

.button-dark:hover .button-icon {
  filter: none;
}

.button-muted {
  color: var(--white);
  background: var(--panel-2);
  border-color: var(--panel-2);
}

.button-muted:hover {
  background: #292926;
  border-color: #292926;
}

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.text-arrow-link:focus-visible,
.underlined-link:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.lead {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 44px 130px;
}

.lead-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(270px, 1fr);
  gap: 18px;
}

.lead-visual-grid > *,
.mission-grid > *,
.visual-channel article > div {
  min-width: 0;
}

.mission-image {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border-radius: 8px;
}

.mission-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.mission-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-topline,
.visual-title-row,
.visual-roster > header,
.visual-channel > header,
.execution-visual > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-topline {
  min-height: 35px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.visual-brand img {
  width: 20px;
  height: 20px;
}

.run-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.run-status i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
}

.visual-title-row {
  align-items: flex-end;
  gap: 28px;
  padding: 65px 0 24px;
}

.visual-label,
.section-index {
  display: block;
  color: var(--dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-title-row h2 {
  max-width: 790px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.round-count {
  flex: 0 0 auto;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(430px, 1.55fr);
  min-height: 312px;
  border: 1px solid var(--line);
}

.visual-roster {
  border-right: 1px solid var(--line);
}

.visual-roster > header,
.visual-channel > header,
.execution-visual > header {
  min-height: 45px;
  padding: 0 14px;
  color: var(--dim);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.68rem;
}

.visual-roster ul {
  padding: 0;
  list-style: none;
}

.visual-roster li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  min-height: 53px;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.visual-roster li:last-child {
  border-bottom: 0;
}

.visual-roster li > b,
.agent-code {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--muted);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.57rem;
  font-weight: 500;
}

.visual-roster strong,
.visual-roster small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-roster strong {
  font-size: 0.68rem;
  font-weight: 500;
}

.visual-roster small {
  margin-top: 3px;
  color: var(--dim);
  font-size: 0.59rem;
}

.visual-roster li > i {
  color: var(--dim);
  font-size: 0.56rem;
  font-style: normal;
  text-transform: uppercase;
}

.visual-roster li.is-active > i {
  color: var(--acid);
}

.visual-channel article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid var(--line-soft);
}

.visual-channel article:last-child {
  border-bottom: 0;
}

.visual-channel article small,
.visual-channel article strong,
.visual-channel article p {
  display: block;
}

.visual-channel article small {
  color: var(--dim);
  font-size: 0.59rem;
}

.visual-channel article strong {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 500;
}

.visual-channel article p {
  max-width: 590px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.48;
}

.visual-channel time {
  color: var(--dim);
  font-size: 0.57rem;
  font-variant-numeric: tabular-nums;
}

.mission-progress {
  height: 3px;
  margin-top: 23px;
  background: #2a2a26;
}

.mission-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--acid);
}

.mission-visual figcaption {
  margin-top: 13px;
  color: var(--dim);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.mode-panel {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
}

.mode-panel > span,
.mode-panel > strong {
  display: block;
}

.mode-panel > span {
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mode-panel > strong {
  max-width: 300px;
  font-size: clamp(1.3rem, 2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.mode-panel-light {
  color: var(--black);
  background: var(--white);
}

.mode-panel-accent {
  color: var(--black);
  background: var(--acid);
}

.prompt-line {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 5px 5px 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 0.69rem;
}

.prompt-line b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 3px;
  font-weight: 400;
}

.mode-mark {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.mode-mark span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: 60px;
  align-items: end;
  padding-top: 42px;
}

.lead-copy h1 {
  font-size: clamp(4.3rem, 9.1vw, 11rem);
  line-height: 0.82;
}

.lead-summary {
  padding-bottom: 8px;
}

.lead-summary > p {
  max-width: 500px;
  color: #cac9c3;
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  line-height: 1.35;
}

.lead-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 27px;
}

.underlined-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
}

.product-video-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 44px 150px;
  border-top: 1px solid var(--line);
}

.product-video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--panel);
  border-radius: 8px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(540px, 1.2fr);
  gap: 10vw;
  max-width: var(--max);
  min-height: 760px;
  align-items: center;
  margin: 0 auto;
  padding: 90px 8vw;
  background: var(--white);
  color: var(--black);
}

.feature-copy h2 {
  max-width: 690px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 4.8vw, 5.7rem);
  line-height: 0.98;
}

.feature-copy > p:not(.section-index) {
  max-width: 600px;
  margin-top: 28px;
  color: #4e4d48;
  font-size: 1.05rem;
  line-height: 1.55;
}

.feature-copy .underlined-link {
  margin-top: 30px;
}

.feature-image {
  width: min(100%, 520px);
  min-width: 0;
  overflow: hidden;
  justify-self: end;
  background: #fff;
  border-radius: 7px;
}

.feature-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.execution-visual {
  color: var(--white);
  background: var(--ink);
  border: 1px solid #33332f;
  border-radius: 7px;
}

.execution-visual ol {
  padding: 0;
  list-style: none;
}

.execution-visual li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  min-height: 88px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #292925;
}

.execution-visual li:last-child {
  border-bottom: 0;
}

.execution-visual li > span {
  color: var(--dim);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.execution-visual strong,
.execution-visual small {
  display: block;
}

.execution-visual strong {
  font-size: 1rem;
  font-weight: 400;
}

.execution-visual small {
  margin-top: 5px;
  color: var(--dim);
  font-size: 0.72rem;
}

.execution-visual li > i {
  color: var(--muted);
  font-size: 0.65rem;
  font-style: normal;
  text-transform: uppercase;
}

.execution-visual li:nth-child(-n + 2) > i {
  color: #b8d75b;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(360px, auto));
  max-width: var(--max);
  gap: 18px;
  margin: 0 auto;
  padding: 130px 44px;
}

.capability {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 8px;
}

.capability-large {
  grid-row: 1 / 3;
  min-height: 820px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.capability h2 {
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.92;
}

.capability h3 {
  max-width: 570px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 0.96;
}

.capability > p:not(.section-index) {
  max-width: 520px;
  color: #494943;
  line-height: 1.5;
}

.capability-neutral {
  color: var(--black);
  background: #d7d5ce;
}

.capability-blue {
  color: var(--black);
  background: var(--blue);
}

.timeline-art {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 90px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 95px;
  width: 1px;
  background: var(--line);
}

.timeline-art div {
  position: relative;
  display: grid;
  grid-template-columns: 70px 20px 1fr;
  min-height: 90px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.timeline-art b {
  color: var(--dim);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

.timeline-art i {
  z-index: 1;
  width: 9px;
  height: 9px;
  justify-self: center;
  background: var(--panel);
  border: 1px solid var(--acid);
  border-radius: 50%;
}

.timeline-art p {
  font-size: clamp(1.1rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.gate-mark {
  display: flex;
  margin: 28px 0 auto;
}

.gate-mark span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  font-size: 0.8rem;
}

.gate-mark span + span {
  margin-left: -10px;
  background: var(--blue);
}

.workflow-section {
  width: min(92vw, 1880px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.workflow-heading {
  display: block;
  margin-bottom: 110px;
}

.workflow-heading h2 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.7vw, 7rem);
  line-height: 0.94;
}

.workflow-list {
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 64px minmax(260px, 0.8fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 5vw, 100px);
  align-items: baseline;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list li > span {
  color: var(--dim);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.workflow-list h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
}

.workflow-list p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.5;
}

.closing-section {
  display: grid;
  min-height: 620px;
  align-content: space-between;
  justify-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 44px 54px;
  color: var(--black);
  background: var(--acid);
}

.closing-section .section-index {
  color: rgba(0, 0, 0, 0.58);
}

.closing-section h2 {
  max-width: 1420px;
  font-size: clamp(4rem, 8vw, 10rem);
  line-height: 0.88;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  max-width: var(--max);
  align-items: end;
  gap: 70px;
  margin: 0 auto;
  padding: 85px 44px 45px;
}

.site-footer > div > p,
.site-footer > p {
  margin-top: 13px;
  color: var(--dim);
  font-size: 0.74rem;
}

.site-footer nav {
  gap: 28px;
}

.site-footer > p {
  white-space: nowrap;
}

/* About */
.about-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 44px;
}

.about-hero {
  display: flex;
  min-height: 550px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 110px;
  text-align: center;
}

.about-hero .section-index {
  color: #d0cfc8;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.about-hero h1 {
  margin-top: 34px;
  font-size: clamp(4.2rem, 7vw, 8.5rem);
  line-height: 0.88;
}

.about-hero > p:last-child {
  max-width: 700px;
  margin-top: 36px;
  color: #d0cfc8;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.5;
}

.company-story {
  display: grid;
  width: min(82vw, 1700px);
  min-width: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 820px;
  align-items: center;
  gap: clamp(90px, 7vw, 150px);
  margin-right: auto;
  margin-left: auto;
  padding: 90px 0 140px;
}

.company-story-copy {
  min-width: 0;
  align-self: center;
  padding-left: clamp(32px, 5vw, 96px);
}

.company-story-copy h2 {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 4vw, 5.2rem);
  line-height: 0.98;
}

.company-story-copy > p:not(.section-index) {
  max-width: 600px;
  margin-top: 28px;
  color: #c2c1bb;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.company-story-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.text-arrow-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: #dddcd5;
  font-size: 0.9rem;
}

.text-arrow-link:hover {
  color: var(--acid);
}

.company-product-image {
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
  background: var(--panel);
  border-radius: 8px;
}

.company-product-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 42% center;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.company-belief {
  width: min(82vw, 1700px);
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 0 150px;
}

.company-belief h2 {
  max-width: 1280px;
  margin: 0 auto;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.1;
  text-align: center;
}

.company-team-image {
  min-width: 0;
  overflow: hidden;
  margin-top: 130px;
  background: var(--panel);
  border-radius: 8px;
}

.company-team-image picture {
  display: block;
}

.company-team-image img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  object-position: center;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.founder-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 760px;
  align-items: stretch;
  gap: 9vw;
  padding: 120px 0;
}

.founder-portrait {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--black);
  background: var(--blue);
  border-radius: 8px;
}

.founder-portrait span {
  align-self: center;
  margin: auto 0;
  font-size: clamp(7rem, 15vw, 17rem);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.founder-portrait small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy {
  align-self: center;
}

.founder-copy h2 {
  max-width: 640px;
  margin-top: 22px;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  line-height: 0.92;
}

.role-line {
  margin-top: 22px;
  color: var(--acid);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.founder-copy > p:last-child {
  max-width: 650px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.team-section,
.values-section,
.roles-section {
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading-row h2,
.values-intro h2,
.roles-section h2 {
  margin-top: 20px;
  font-size: clamp(3.5rem, 6vw, 7.2rem);
  line-height: 0.9;
}

.section-heading-row > p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.person-card {
  min-height: 480px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.person-card:last-child {
  border-right: 0;
}

.person-index {
  color: var(--dim);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.person-monogram {
  display: grid;
  width: 100%;
  height: 220px;
  place-items: center;
  margin: 24px 0 30px;
  color: var(--black);
  background: #d7d5ce;
  border-radius: 5px;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.person-card:nth-child(2) .person-monogram {
  background: var(--acid);
}

.person-card:nth-child(3) .person-monogram {
  background: var(--blue);
}

.person-card > p {
  color: var(--dim);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-card h3 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
}

.person-card small {
  display: block;
  max-width: 420px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.values-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.values-list {
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.values-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 110px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.values-list span {
  color: var(--dim);
  font-size: 0.7rem;
}

.values-list strong {
  font-size: clamp(1.4rem, 2.5vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.roles-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.open-role-list {
  border-top: 1px solid var(--line);
}

.open-role-list article {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.open-role-list span {
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.open-role-list p {
  color: var(--muted);
  line-height: 1.5;
}

.open-role-list i {
  color: var(--acid);
  font-size: 0.66rem;
  font-style: normal;
  text-transform: uppercase;
}

.about-closing {
  margin-right: -44px;
  margin-left: -44px;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 24px;
  }

  .primary-nav {
    gap: 18px;
  }

  .lead-visual-grid,
  .lead-copy,
  .editorial-feature,
  .company-story {
    grid-template-columns: 1fr;
  }

  .lead-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(280px, auto);
  }

  .lead-copy {
    align-items: start;
  }

  .workflow-section {
    width: 100%;
    padding-right: 44px;
    padding-left: 44px;
  }

  .workflow-heading h2 {
    margin-left: 0;
  }

  .product-video-section {
    padding: 90px 44px 110px;
  }

  .editorial-feature {
    gap: 80px;
  }

  .feature-image {
    justify-self: center;
  }

  .about-hero {
    min-height: 520px;
  }

  .company-story {
    width: 100%;
    gap: 70px;
    padding-top: 30px;
  }

  .company-story-copy {
    align-self: auto;
    padding-left: 0;
  }

  .company-belief {
    width: 100%;
  }

  .company-product-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .person-card:nth-child(2) {
    border-right: 0;
  }

  .person-card:nth-child(3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
    gap: 12px;
    padding: 0 18px;
  }

  .primary-nav,
  .header-actions .text-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
    min-width: 0;
  }

  .site-header .wordmark {
    font-size: 1.16rem;
  }

  .site-header .wordmark img {
    width: 24px;
    height: 24px;
  }

  .site-header .button {
    white-space: nowrap;
  }

  .button {
    min-height: 42px;
    padding-right: 14px;
    padding-left: 16px;
  }

  .lead {
    padding: 14px 18px 90px;
  }

  .mission-visual {
    width: 100%;
    min-height: 560px;
    padding: 18px;
  }

  .mission-image {
    width: 100%;
  }

  .visual-title-row {
    align-items: start;
    flex-direction: column;
    padding: 42px 0 20px;
  }

  .mission-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .visual-roster {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-roster li:nth-child(n + 4),
  .visual-channel article:nth-child(n + 3) {
    display: none;
  }

  .visual-channel article p {
    display: none;
  }

  .visual-channel article small,
  .visual-channel article strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lead-side {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(290px, auto));
  }

  .lead-copy {
    gap: 32px;
    padding-top: 30px;
  }

  .lead-copy h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 17vw, 5.5rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    text-wrap: initial;
  }

  .lead-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .editorial-feature,
  .capability-grid,
  .workflow-section {
    padding: 90px 18px;
  }

  .product-video-section {
    padding: 70px 18px 90px;
  }

  .product-video {
    border-radius: 5px;
  }

  .editorial-feature {
    margin: 0;
  }

  .execution-visual li {
    grid-template-columns: 28px 1fr;
  }

  .execution-visual li > i {
    display: none;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .capability-large {
    grid-row: auto;
    min-height: 680px;
  }

  .capability-neutral,
  .capability-blue {
    min-height: 420px;
  }

  .workflow-heading,
  .workflow-list li,
  .site-footer,
  .founder-section,
  .section-heading-row,
  .values-section,
  .roles-section {
    grid-template-columns: 1fr;
  }

  .workflow-heading {
    gap: 34px;
    margin-bottom: 55px;
  }

  .workflow-list li {
    gap: 14px;
  }

  .closing-section {
    min-height: 560px;
    padding: 32px 18px 38px;
  }

  .site-footer {
    align-items: start;
    gap: 32px;
    padding: 65px 18px 35px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .about-main {
    padding: 0 18px;
  }

  .about-hero {
    min-height: 500px;
    padding: 55px 0 85px;
  }

  .about-hero h1 {
    margin-top: 24px;
  }

  .about-hero > p:last-child {
    margin-top: 28px;
  }

  .company-story {
    gap: 48px;
    padding: 30px 0 90px;
  }

  .company-story-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .company-product-image img {
    aspect-ratio: 1 / 1.1;
  }

  .company-belief {
    padding: 80px 0 100px;
  }

  .company-belief h2 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
  }

  .company-team-image {
    margin-top: 70px;
  }

  .company-team-image img {
    aspect-ratio: 4 / 3;
  }

  .founder-section,
  .team-section,
  .values-section,
  .roles-section {
    padding: 90px 0;
  }

  .founder-section,
  .section-heading-row,
  .values-section,
  .roles-section {
    gap: 55px;
  }

  .founder-portrait {
    min-height: 440px;
  }

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

  .person-card,
  .person-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .person-card:nth-child(3) {
    border-top: 0;
    border-bottom: 0;
  }

  .open-role-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-closing {
    margin-right: -18px;
    margin-left: -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
