
:root {
  --navy: #1e3484;
  --navy-deep: #0a1736;
  --navy-mid: #13245a;
  --ink: #0a1628;
  --teal: #009e8e;
  --teal-deep: #00796f;
  --ivory: #fbfaf6;
  --paper: #f4efe4;
  --card: #fffdf8;
  --line: #d9d0c1;
  --muted: #596671;
  --white: #ffffff;
  --success: #167c5a;
  --private: #0a1628;
  --product: #1e3484;
  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Spectral", Georgia, serif;
  --max: 1480px;
  --gutter: clamp(18px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

::selection {
  background: rgba(0, 158, 142, 0.24);
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 55%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--ink);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 76px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 23, 54, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-lockup img {
  width: auto;
  height: 60px;
}

.brand-lockup span {
  display: none;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link,
.icon-button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
}

.header-link {
  display: none;
  align-items: center;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.header-link:hover,
.icon-button:hover {
  color: var(--white);
}

.icon-button {
  width: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.header-cta:hover {
  background: #00b2a0;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  padding-top: 76px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -34vw auto;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 158, 142, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 11vw rgba(0, 158, 142, 0.045),
    0 0 0 22vw rgba(0, 158, 142, 0.025);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(min(960px, 100svh) - 76px);
  display: grid;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(82px, 11vw, 150px) 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #5ce5d5;
}

.hero-quote {
  max-width: 980px;
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7.2vw, 7.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-quote em {
  color: #62dfd0;
  font-weight: 500;
}

.hero-answer {
  display: grid;
  gap: 22px;
  max-width: 800px;
  margin-top: clamp(32px, 5vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 26px;
}

.hero-answer h1 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-answer p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 20px;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #00b3a1;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

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

.button.ghost-dark {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-profile {
  position: relative;
  align-self: end;
  min-height: 330px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-profile img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.8) contrast(1.04);
}

.hero-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 23, 54, 0.9));
}

.profile-caption {
  position: absolute;
  z-index: 2;
  inset: auto 20px 22px 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.profile-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
}

.profile-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.profile-caption small {
  max-width: 170px;
  color: #6ee8d9;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-inner {
  display: grid;
}

.signal-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.signal-item:last-child {
  border-bottom: 0;
}

.signal-item strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.signal-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.section {
  padding-block: clamp(82px, 10vw, 148px);
}

.section.warm {
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.section.navy {
  background: var(--navy-deep);
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 26px;
  margin-bottom: clamp(42px, 7vw, 84px);
}

.section-head h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 6.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-head p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.section.navy .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

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

.range-row {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.range-index {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.range-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.range-row p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.range-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.range-link:hover {
  color: var(--ink);
}

.range-outcome {
  align-self: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explorer-shell {
  position: relative;
}

.explorer-toolbar {
  position: sticky;
  z-index: 12;
  top: 76px;
  margin-inline: calc(var(--gutter) * -1);
  padding: 17px var(--gutter);
  border-block: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-meta {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.result-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.copy-view {
  min-height: 40px;
  border: 0;
  padding: 0 12px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.explorer-grid {
  display: grid;
  gap: 34px;
  padding-top: 42px;
}

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

.project-row {
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, padding 150ms ease;
}

.project-row:hover,
.project-row.active {
  margin-inline: -14px;
  padding-inline: 14px;
  background: var(--white);
}

.project-row[hidden] {
  display: none;
}

.project-number {
  align-self: start;
  padding-top: 4px;
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-main {
  min-width: 0;
}

.project-main h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.project-main p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.project-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.project-row:hover .project-arrow,
.project-row.active .project-arrow {
  background: var(--navy);
  color: var(--white);
  transform: translateX(2px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 13%, transparent);
}

.status.private {
  color: var(--private);
}

.status.product {
  color: var(--product);
}

.status.internal {
  color: var(--navy);
}

.status.staged {
  color: #00796f;
}

.status.historical {
  color: #596671;
}

.proof-atlas {
  padding-block: clamp(76px, 9vw, 132px);
  background: var(--navy-deep);
  color: var(--white);
}

.proof-atlas-head {
  display: grid;
  gap: 28px;
  margin-bottom: 48px;
}

.proof-atlas-head h2 {
  max-width: 850px;
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.proof-atlas-head > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.stat-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.stat-card:hover,
.stat-card:focus-visible {
  background: var(--teal);
  color: var(--navy-deep);
}

.stat-source {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.68;
}

.stat-card strong {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.stat-label {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
}

.stat-card small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.stat-card:hover small,
.stat-card:focus-visible small {
  color: rgba(10, 23, 54, 0.72);
}

.stat-open {
  margin-top: auto;
  padding-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.client-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.client-card {
  width: 100%;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.client-card:hover {
  background: var(--paper);
}

.client-image {
  height: 78px;
  overflow: hidden;
  background: var(--paper);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.client-copy {
  min-width: 0;
}

.client-copy > strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.client-copy small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.client-open {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
}

.media-library {
  min-width: 0;
}

.video-selector {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.video-choice {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.video-choice[aria-pressed="true"],
.video-choice:hover {
  color: #62dfd0;
}

.video-choice img {
  width: 86px;
  height: 54px;
  object-fit: cover;
}

.video-choice strong,
.video-choice small {
  display: block;
}

.video-choice strong {
  font-size: 14px;
}

.video-choice small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.35;
}

.drawer-media {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.drawer-media[hidden] {
  display: none;
}

.drawer-media h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.drawer-media article + article {
  margin-top: 26px;
}

.drawer-media video {
  width: 100%;
  background: var(--navy-deep);
}

.drawer-media article > strong {
  display: block;
  margin-top: 12px;
}

.drawer-media article > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.project-preview {
  display: none;
}

.preview-frame {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.preview-image-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #07102a;
}

.preview-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 180ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.preview-image-wrap.logo-mode img {
  object-fit: contain;
  padding: 70px;
  background: var(--white);
}

.preview-index {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 46px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.preview-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.preview-copy h3 {
  max-width: 620px;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.preview-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.preview-chain {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.preview-chain div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.preview-chain span {
  color: #62dfd0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-chain strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.preview-open {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  padding: 0 32px;
}

.preview-open:hover {
  background: rgba(255, 255, 255, 0.06);
}

.no-results {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.no-results[hidden] {
  display: none;
}

.proof-layout {
  display: grid;
  gap: 32px;
}

.video-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #07102a;
  color: var(--white);
}

.video-panel video {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.video-panel-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 42, 0.96));
  pointer-events: none;
}

.video-panel-copy span {
  color: #62dfd0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-panel-copy h3 {
  max-width: 570px;
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.testimonial-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonial footer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.testimonial footer strong {
  color: #62dfd0;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.human-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.human-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.human-item span {
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.human-item h3 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.human-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.closing::before {
  content: "MOE";
  position: absolute;
  inset: auto -0.08em -0.26em auto;
  color: rgba(30, 52, 132, 0.045);
  font-family: var(--font-display);
  font-size: min(46vw, 700px);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 14vw, 210px);
}

.closing h2 {
  max-width: 1050px;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8.6rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.closing p {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-inner {
  display: grid;
  gap: 32px;
  padding-block: 36px;
}

.footer-brand img {
  width: 140px;
}

.footer-brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-meta a:hover {
  color: var(--white);
}

.drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  border: 0;
  background: rgba(4, 10, 26, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.project-drawer {
  position: fixed;
  z-index: 100;
  inset: 0 0 0 auto;
  width: min(860px, 100%);
  overflow-y: auto;
  background: var(--ivory);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(102%);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open .project-drawer {
  transform: translateX(0);
}

.drawer-top {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.drawer-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.drawer-hero {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.drawer-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.drawer-hero.logo-mode img {
  object-fit: contain;
  padding: 90px;
  background: var(--white);
}

.drawer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 54, 0.12) 0%, rgba(10, 23, 54, 0.62) 42%, rgba(10, 23, 54, 0.97) 100%);
}

.drawer-heading {
  position: absolute;
  z-index: 1;
  inset: auto 24px 24px 24px;
  color: var(--white);
}

.drawer-heading h2 {
  max-width: 680px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.drawer-content {
  padding: clamp(28px, 6vw, 68px);
}

.drawer-summary {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.35;
}

.drawer-chain {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.drawer-chain article {
  display: grid;
  gap: 12px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-chain span {
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-chain p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.proof-chip {
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.drawer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.verification-note {
  margin: 28px 0 0;
  border-left: 2px solid var(--teal);
  padding-left: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.search-dialog {
  width: min(700px, calc(100% - 24px));
  max-height: min(720px, calc(100svh - 48px));
  margin: 70px auto;
  border: 0;
  padding: 0;
  background: var(--ivory);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.34);
}

.search-dialog::backdrop {
  background: rgba(4, 10, 26, 0.72);
  backdrop-filter: blur(4px);
}

.search-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.search-head input {
  min-width: 0;
  min-height: 62px;
  border: 0;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.search-head input:focus-visible {
  outline: 0;
}

.search-close {
  width: 62px;
  height: 62px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.search-results {
  max-height: 560px;
  overflow-y: auto;
  padding: 10px;
}

.search-result {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 15px 12px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.search-result:hover,
.search-result:focus-visible {
  background: var(--white);
}

.search-result strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.search-result span {
  color: var(--muted);
  font-size: 12px;
}

.search-result small {
  color: var(--teal-deep);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 200;
  inset: auto 20px 20px auto;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 700px) {
  .proof-atlas-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    align-items: end;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card.feature {
    grid-column: span 2;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--line);
  }

  .client-card {
    border-right: 1px solid var(--line);
    padding-inline: 18px;
  }
  .brand-lockup span,
  .header-link {
    display: inline-flex;
  }

  .hero-answer {
    grid-template-columns: minmax(220px, 0.55fr) minmax(300px, 1fr);
  }

  .hero-profile {
    min-height: 390px;
  }

  .hero-profile img {
    height: 390px;
  }

  .signal-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item {
    padding-inline: 24px;
    border-right: 1px solid var(--line);
  }

  .signal-item:nth-child(even) {
    border-right: 0;
  }

  .signal-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .range-row {
    grid-template-columns: 46px minmax(180px, 0.75fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }

  .range-outcome {
    grid-column: 2 / -1;
  }

  .project-row {
    grid-template-columns: 50px minmax(0, 1fr) 118px 34px;
  }

  .project-row .status {
    display: inline-flex;
  }

  .filter-row {
    flex-wrap: wrap;
    overflow: visible;
  }

  .filter-meta {
    margin-left: 0;
    display: flex;
  }

  .proof-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
  }

  .human-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .human-item {
    min-height: 340px;
    padding: 34px 28px 40px;
    border-right: 1px solid var(--line);
  }

  .human-item:first-child {
    padding-left: 0;
  }

  .human-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-meta {
    justify-content: flex-end;
  }
}

@media (min-width: 1040px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-card.feature {
    grid-column: span 2;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .range-row {
    grid-template-columns: 55px minmax(230px, 0.75fr) minmax(280px, 1fr) 150px;
  }

  .range-outcome {
    grid-column: auto;
  }

  .filter-row {
    flex-wrap: nowrap;
  }

  .filter-meta {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.58fr);
    gap: clamp(40px, 6vw, 100px);
  }

  .hero-profile {
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-profile img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .signal-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .signal-item {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    border-bottom: 0;
  }

  .signal-item:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-right: 0;
  }

  .explorer-grid {
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(42px, 6vw, 88px);
    align-items: start;
  }

  .project-preview {
    position: sticky;
    top: 154px;
    display: block;
  }
}

@media (max-width: 699px) {
  .site-header {
    height: 66px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-layout {
    min-height: calc(100svh - 66px);
  }

  .brand-lockup img {
    height: 50px;
  }

  .header-actions {
    gap: 7px;
  }

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

  .explorer-toolbar {
    top: 66px;
  }

  .project-row .status {
    display: none;
  }

  .preview-frame {
    min-height: 0;
  }

  .video-panel,
  .video-panel video {
    min-height: 420px;
  }

  .search-dialog {
    margin: 12px auto;
    max-height: calc(100svh - 24px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  .site-header,
  .hero-actions,
  .explorer-toolbar,
  .project-preview,
  .project-arrow,
  .proof-actions,
  .closing-actions,
  .drawer-backdrop,
  .project-drawer,
  .search-dialog,
  .toast,
  video {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 10pt;
  }

  .hero {
    min-height: 0;
    padding: 0;
    background: white;
    color: black;
  }

  .hero::before,
  .hero::after,
  .hero-profile {
    display: none;
  }

  .hero-layout {
    min-height: 0;
    display: block;
  }

  .hero-copy {
    padding: 20px 0 30px;
  }

  .hero-quote {
    max-width: none;
    font-size: 34pt;
    color: black;
  }

  .hero-quote em,
  .eyebrow,
  .section.navy .eyebrow {
    color: #00796f;
  }

  .hero-answer {
    display: block;
    color: black;
    border-color: #ccc;
  }

  .hero-answer p,
  .section.navy .section-head p,
  .testimonial footer {
    color: #444;
  }

  .signal-strip,
  .section,
  .section.white,
  .section.warm,
  .section.navy,
  .closing,
  .site-footer {
    background: white;
    color: black;
  }

  .section {
    padding: 34px 0;
    break-inside: avoid;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  .closing h2 {
    font-size: 28pt;
  }

  .project-row {
    min-height: 0;
    break-inside: avoid;
    padding: 12px 0;
  }

  .testimonial-list {
    border-color: #ccc;
  }

  .testimonial {
    border-color: #ccc;
  }

  .testimonial blockquote {
    font-size: 16pt;
  }

  .footer-brand img {
    filter: invert(1);
  }
}
