:root {
  --paper: #f3f1e8;
  --paper-bright: #fbfaf5;
  --ink: #101310;
  --muted: #5c615c;
  --line: rgba(16, 19, 16, 0.18);
  --acid: #c6ff36;
  --acid-soft: #e3ff9a;
  --orange: #ff6a3d;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.wordmark strong {
  padding: 2px 5px 3px;
  margin-left: 2px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 750;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.header-cta {
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a {
  position: relative;
  color: var(--muted);
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--paper-bright);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  padding: clamp(72px, 9vw, 132px) var(--pad) 40px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(16, 19, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 16, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -8vw;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(16, 19, 16, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 5vw rgba(198, 255, 54, 0.08),
    0 0 0 10vw rgba(198, 255, 54, 0.04);
  content: "";
}

.hero-kicker,
.hero-title,
.hero-after,
.growth-system {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 61, 0.12);
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 0.19em;
  min-height: 1.18em;
  margin-top: clamp(38px, 6vw, 76px);
  margin-bottom: 0;
  font-size: clamp(62px, 10.4vw, 164px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero-prefix,
.hero-rotator {
  display: inline-block;
}

.hero-prefix {
  white-space: nowrap;
  transition: letter-spacing 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-rotator {
  position: relative;
  width: 11.1ch;
  height: 1em;
  color: transparent;
  transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-word {
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--ink);
  opacity: 0;
  transform: translateY(0.52em) rotate(2deg);
  filter: blur(10px);
  transition:
    opacity 380ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.hero-word::after {
  position: absolute;
  right: -0.12em;
  bottom: -0.08em;
  left: 0;
  z-index: -1;
  height: 0.15em;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 540ms 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-word.is-active {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}

.hero-word.is-active::after {
  transform: scaleX(1);
}

.hero-word.is-leaving {
  opacity: 0;
  transform: translateY(-0.35em) rotate(-1deg);
  filter: blur(8px);
}

.hero-title.is-final .hero-rotator {
  width: 3.55ch;
  color: var(--ink);
}

.hero-title.is-final .hero-word-final::after {
  height: 0.72em;
  right: -0.08em;
  bottom: 0.02em;
  left: -0.04em;
}

.hero-after {
  display: grid;
  grid-template-columns: minmax(280px, 620px) auto;
  gap: 48px;
  align-items: end;
  margin-top: clamp(44px, 6vw, 78px);
}

.hero-after p {
  max-width: 650px;
  margin: 0;
  color: #353a35;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 238px;
  padding: 17px 19px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, 3px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 7px 7px 0 var(--ink);
}

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

.growth-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(80px, 10vw, 142px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.growth-system article {
  position: relative;
  min-height: 196px;
  padding: 28px 26px 30px 0;
}

.growth-system article + article {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.system-index,
.areas-list > article > span,
.approach-steps > li > span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.growth-system h2 {
  margin: 38px 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.growth-system p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.system-rail {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
}

.system-rail span {
  display: block;
  width: 24%;
  height: 100%;
  background: var(--orange);
}

.statement {
  padding: clamp(104px, 13vw, 180px) var(--pad);
  color: var(--paper-bright);
  background: var(--ink);
}

.statement p {
  width: min(100%, var(--max));
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(38px, 6.4vw, 90px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.section-shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.areas,
.team {
  padding-top: clamp(100px, 12vw, 164px);
  padding-bottom: clamp(100px, 12vw, 164px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: clamp(62px, 8vw, 102px);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.approach-copy h2,
.closing h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.areas-list {
  border-top: 1px solid var(--ink);
}

.areas-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.areas-list article:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--acid-soft);
}

.areas-list article > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1.22fr;
  gap: 52px;
  align-items: start;
}

.areas-list h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 620;
  letter-spacing: -0.05em;
}

.areas-list p {
  max-width: 610px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.approach {
  padding: clamp(104px, 12vw, 170px) 0;
  background: var(--paper-bright);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(72px, 10vw, 152px);
}

.approach-copy .eyebrow {
  margin-bottom: 34px;
}

.approach-copy > p:last-child {
  max-width: 600px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.approach-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.approach-steps h3 {
  margin: 0 0 9px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.approach-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 30px);
}

.member-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) 1.22fr;
  min-height: 410px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.member-photo {
  position: relative;
  min-height: 100%;
  background: var(--acid);
}

.member-card-alt .member-photo {
  background: var(--orange);
}

.member-photo img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.member-photo span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.member-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.7vw, 52px);
}

.member-role {
  margin: 0 0 20px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.team-members h3 {
  max-width: 360px;
  margin: 0 0 24px;
  font-size: clamp(30px, 2.8vw, 44px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.team-members .member-bio {
  max-width: 470px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.member-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.member-content li {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}

.closing {
  padding: clamp(92px, 10vw, 150px) 0;
  color: var(--paper-bright);
  background: var(--orange);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.closing h2 {
  color: var(--ink);
}

.button-inverse {
  color: var(--paper-bright);
  background: var(--ink);
}

.button-inverse:hover,
.button-inverse:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 116px;
  padding: 24px var(--pad);
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.wordmark-footer {
  color: var(--paper-bright);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-footer p:last-child {
  justify-self: end;
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-title {
    display: block;
    min-height: 1.84em;
    font-size: clamp(59px, 15vw, 112px);
  }

  .hero-rotator {
    display: block;
    margin-top: 0.08em;
  }

  .hero-after,
  .section-heading,
  .approach-grid,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .hero-after {
    align-items: start;
  }

  .button {
    width: min(100%, 330px);
  }

  .growth-system {
    grid-template-columns: 1fr 1fr;
  }

  .growth-system article:nth-of-type(3) {
    border-left: 0;
  }

  .growth-system article:nth-of-type(n+3) {
    border-top: 1px solid var(--line);
  }

  .areas-list article > div {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .closing-inner {
    align-items: start;
  }

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

  .site-footer p:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    min-height: 74px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero::after {
    top: 3%;
    right: -35vw;
    width: 78vw;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero-title {
    min-height: 1.9em;
    margin-top: 34px;
    font-size: clamp(52px, 16.5vw, 78px);
  }

  .hero-after {
    gap: 30px;
    margin-top: 30px;
  }

  .hero-after p {
    font-size: 18px;
  }

  .growth-system {
    grid-template-columns: 1fr;
    margin-top: 78px;
  }

  .growth-system article {
    min-height: 0;
    padding: 24px 0 28px;
  }

  .growth-system article + article,
  .growth-system article:nth-of-type(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .growth-system h2 {
    margin-top: 22px;
  }

  .section-heading {
    gap: 24px;
  }

  .areas-list article {
    grid-template-columns: 46px 1fr;
    padding: 24px 0;
  }

  .areas-list article:hover {
    padding-right: 8px;
    padding-left: 8px;
  }

  .areas-list p {
    font-size: 15px;
  }

  .approach-grid {
    gap: 64px;
  }

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

  .member-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .member-photo {
    min-height: 280px;
  }

  .member-photo img {
    height: 280px;
    min-height: 280px;
    object-position: center 34%;
  }

  .member-content {
    padding: 30px 24px 34px;
  }

  .team-members .member-bio {
    margin-bottom: 28px;
  }

  .closing h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
