:root {
  --paper: #ffffff;
  --ink: #050505;
  --muted: #606060;
  --line: #d8d8d8;
  --blue: #2458d8;
  --blue-soft: #eef3ff;
  --red: #e3322a;
  --red-soft: #fff0ef;
  --gray: #f6f6f4;
  --font-ledger: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.42;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
}

.brand strong,
.brand small,
.eyebrow,
.metric-value,
.case-number,
.button,
nav a {
  font-family: var(--font-ledger);
  font-stretch: condensed;
  font-weight: 300;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-stretch: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--ink);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
}

.icon-link:hover {
  border-color: var(--ink);
  background: var(--gray);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-cutout {
  fill: var(--paper);
}

.icon-link:nth-child(2):hover {
  color: var(--blue);
}

.icon-link:nth-child(3):hover {
  color: var(--red);
}

.hero {
  min-height: calc(92vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: end;
  gap: clamp(20px, 4vw, 54px);
  padding: clamp(34px, 5vw, 62px) clamp(18px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding-bottom: clamp(18px, 4vw, 48px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(42px, 6.4vw, 94px);
  line-height: 0.9;
}

.hero-line {
  max-width: 580px;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.25vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 10px 16px;
  font-size: 14px;
  text-transform: uppercase;
}

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

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.ca-copy {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.ca-copy span,
.ca-copy button {
  font-family: var(--font-ledger);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.ca-copy span {
  padding: 9px 10px;
  color: var(--blue);
  border-right: 1px solid var(--line);
}

.ca-copy code {
  min-width: 0;
  padding: 8px 10px;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy button {
  min-height: 34px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--gray);
  color: var(--ink);
  cursor: pointer;
}

.ca-copy button:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(0px, 0.9vw, 10px);
  min-height: clamp(390px, 58vh, 620px);
  align-self: end;
}

.hero-person {
  width: 100%;
  max-height: clamp(390px, 58vh, 620px);
  object-fit: contain;
  object-position: center bottom;
}

.ticker-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-ledger);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
}

.ticker-strip span {
  flex: 0 0 auto;
  border-right: 1px solid var(--line);
  padding: 13px 22px;
}

.ticker-strip span:nth-child(odd) {
  color: var(--blue);
}

.ticker-strip span:nth-child(even) {
  color: var(--red);
}

.section {
  padding: clamp(44px, 6vw, 82px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 0.98;
}

.answer-copy {
  max-width: 760px;
}

.big-quote {
  margin-bottom: 18px;
  font-family: var(--font-ledger);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.06;
}

.answer-copy p:last-child,
.operation-copy p,
.team-card p,
.video-grid p,
.site-footer p {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.metrics article {
  min-height: 124px;
  border-right: 1px solid var(--line);
  padding: 18px clamp(14px, 2.4vw, 26px);
}

.metrics article:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 0.95;
}

.metrics article:nth-child(2n) .metric-value {
  color: var(--red);
}

.metric-label {
  display: block;
  max-width: 240px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(22px, 4vw, 40px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.team-card {
  min-width: 0;
  background: var(--paper);
  padding: 14px;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 22px;
  background: var(--paper);
}

.role,
.case-number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.team-card h3,
.operation-copy h3,
.video-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
}

.operations {
  padding-bottom: 0;
}

.operation-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(22px, 4vw, 50px);
  padding: clamp(26px, 4.6vw, 54px) 0;
  border-top: 1px solid var(--line);
}

.operation-row.flip {
  grid-template-columns: minmax(0, 1.26fr) minmax(280px, 0.74fr);
}

.operation-row.flip .operation-copy {
  order: 2;
}

.operation-copy {
  max-width: 470px;
}

.operation-row img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: var(--paper);
}

.handbook {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(90deg, transparent 0 23px, rgba(36, 88, 216, 0.08) 23px 24px, transparent 24px),
    linear-gradient(0deg, transparent 0 23px, rgba(227, 50, 42, 0.07) 23px 24px, transparent 24px),
    var(--paper);
  background-size: 24px 24px;
}

.memo-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.memo-list li {
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  color: var(--ink);
}

.memo-list li:nth-child(even) {
  border-left-color: var(--red);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.video-grid article {
  background: var(--paper);
  padding: 14px;
}

.video-player {
  position: relative;
  margin-bottom: 16px;
  background: var(--ink);
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: 560px;
  background: var(--ink);
  object-fit: cover;
  cursor: pointer;
}

.video-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-toggle:hover {
  background: var(--paper);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
}

.video-player.is-playing .play-icon {
  width: 18px;
  height: 20px;
  margin-left: 0;
  border: 0;
  border-left: 6px solid currentColor;
  border-right: 6px solid currentColor;
}

.video-player.is-playing .video-toggle {
  opacity: 0;
}

.video-player.is-playing:hover .video-toggle,
.video-player.is-playing .video-toggle:focus-visible {
  opacity: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-family: var(--font-ledger);
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-board {
    min-height: 500px;
  }

  .team-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics article:nth-child(2) {
    border-right: 0;
  }

  .metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .operation-row,
  .operation-row.flip,
  .split,
  .handbook {
    grid-template-columns: 1fr;
  }

  .operation-row.flip .operation-copy {
    order: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-right {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-board {
    min-height: auto;
    margin-inline: -18px;
  }

  .hero-person {
    max-height: 360px;
  }

  .section-heading {
    display: block;
  }

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

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

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

  .team-card img {
    height: 280px;
  }

  .operation-row {
    padding: 42px 0;
  }

  .video-grid video {
    max-height: none;
  }
}
