:root {
  --black: #000;
  --ink: #070709;
  --white: #fff;
  --paper: #f4f4f1;
  --soft: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.22);
  --page-pad: clamp(20px, 3vw, 48px);
  --section-pad: clamp(92px, 10vw, 168px);
  --display: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.panel-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #a8b5ff;
  outline-offset: 3px;
}

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

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

.site-header,
.ref-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px var(--page-pad);
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, min-height 180ms ease;
}

.home-page .site-header:not(.is-scrolled):not(.has-panel) {
  color: var(--ink);
}

.site-header.is-scrolled,
.site-header.has-panel,
.ref-header.is-scrolled,
.ref-header.has-panel {
  min-height: 70px;
  background: var(--black);
  color: var(--white);
}

.site-brand {
  position: relative;
  z-index: 2;
  font-size: 1.02rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.site-actions,
.utility-nav,
.ref-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
}

.site-actions button,
.utility-nav button,
.utility-nav a {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 540;
}

.header-call,
.dark-pill,
.light-pill,
.copy-cta,
.ghost-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 680;
}

.home-page .site-header:not(.is-scrolled):not(.has-panel) .header-call {
  background: var(--black);
  color: var(--white);
}

.ghost-pill {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.mega-panel {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  min-height: min(64vh, 720px);
  padding: 112px var(--page-pad) 42px;
  transform: translateY(-105%);
  background: var(--black);
  color: var(--white);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 260ms;
}

.mega-panel.is-open {
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.panel-inner {
  display: grid;
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.panel-heading p,
.panel-heading button {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-close {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
}

.panel-copy {
  max-width: 820px;
  padding: 34px 0;
}

.panel-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 6.2rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.panel-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.language-options button,
.panel-primary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 22px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 650;
}

.language-options button.is-active {
  background: var(--white);
  color: var(--ink);
}

.legal-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 64px;
}

.panel-link-list {
  display: grid;
  align-content: center;
}

.panel-link-list a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.panel-primary {
  margin-top: 12px;
  background: var(--white);
  color: var(--ink);
}

.home-hero {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  background: #d6d7e2;
  color: var(--ink);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  min-height: 88svh;
  margin: 0 auto;
  place-content: center;
  justify-items: center;
  padding: 110px 0 140px;
  text-align: center;
}

.hero-kicker,
.section-kicker,
.eyebrow {
  margin-bottom: 18px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 8vw, 9.2rem);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.home-thesis {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.portal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.portal-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 17px;
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 650;
  transition: transform 150ms ease, background-color 150ms ease;
}

.portal-pill:hover {
  transform: translateY(-2px);
  background: #222;
}

.hero-bridge {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  left: var(--page-pad);
  z-index: 1;
  color: var(--white);
}

.hero-bridge h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 7rem);
  font-weight: 450;
  letter-spacing: -0.058em;
  line-height: 0.95;
}

.dark-section,
.black-band {
  padding: var(--section-pad) var(--page-pad);
  background: var(--black);
  color: var(--white);
}

.home-intro {
  padding-top: clamp(110px, 13vw, 210px);
}

.centered-intro,
.black-heading,
.section-intro,
.section-heading {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.centered-intro h2,
.black-heading h2,
.section-intro h2,
.section-heading h2,
.proof-heading h2,
.index-heading h2,
.final-contact-heading h2,
.contact-copy h2,
.feature-copy h2,
.feature-copy h3 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 7.3rem);
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.centered-intro > p:last-child,
.black-heading > p:last-child,
.section-intro > p:last-child,
.section-heading > p:last-child,
.index-heading > p:last-child,
.contact-copy > p:last-of-type,
.feature-copy > p,
.identity-note > p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.proof-heading {
  width: min(1400px, 100%);
  margin: clamp(110px, 13vw, 210px) auto 42px;
}

.proof-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.proof-reel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 10px;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.proof-tile {
  position: relative;
  min-height: clamp(320px, 42vw, 660px);
  overflow: hidden;
  background: #111;
}

.proof-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-tile span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  background: var(--black);
  font-size: 0.85rem;
  font-weight: 650;
}

.contact-section {
  padding-top: 40px;
}

.contact-layout,
.feature-split,
.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 6.3rem);
}

.light-pill,
.copy-cta {
  margin-top: 24px;
}

.contact-card {
  background: #101012;
  color: var(--white);
}

.static-contact-card {
  width: 100%;
  padding: clamp(24px, 4vw, 54px);
}

.lucy-form {
  display: grid;
  gap: 18px;
}

.lucy-form label {
  display: grid;
  gap: 8px;
}

.lucy-form label > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lucy-form input,
.lucy-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  resize: vertical;
}

.lucy-form input:focus,
.lucy-form textarea:focus {
  border-color: var(--white);
}

.lucy-form input::placeholder,
.lucy-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-privacy,
.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-privacy a,
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
}

.contact-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 680;
}

.contact-actions button[disabled] {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
}

.form-status.is-error {
  color: #ffaaa5;
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.index-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 9vw, 160px);
  align-items: end;
}

.index-heading h2,
.final-contact-heading h2 {
  font-size: clamp(3rem, 5vw, 6.2rem);
}

.index-list {
  display: grid;
}

.index-list > a,
.index-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.index-list > :last-child {
  border-bottom: 1px solid var(--line);
}

.index-list span {
  font-size: clamp(1.4rem, 3vw, 3rem);
}

.index-list em {
  color: var(--soft);
  font-size: 0.84rem;
  font-style: normal;
}

.final-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
  padding-top: 40px;
}

.final-contact-heading,
.final-form-card {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px var(--page-pad) 52px;
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--soft);
}

.subpage-body {
  min-height: 100vh;
  background: var(--black);
}

.subpage-hero {
  min-height: 100svh;
  padding: 96px var(--page-pad) var(--page-pad);
  background: var(--black);
}

.video-hero {
  position: relative;
  min-height: calc(100svh - 128px);
  overflow: hidden;
  background: #17171a;
}

.video-hero > img,
.video-hero > video,
.video-hero .hero-bg,
.video-hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.video-title,
.service-hero__copy {
  position: absolute;
  right: clamp(24px, 5vw, 74px);
  bottom: clamp(28px, 6vw, 88px);
  left: clamp(24px, 5vw, 74px);
  z-index: 1;
  max-width: 1160px;
}

.video-title > p:first-child {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-title h1 {
  max-width: 1150px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 8.8rem);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero-lede,
.hero-summary,
.hero-intro {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.subpage-band {
  padding-top: clamp(100px, 11vw, 180px);
}

.service-grid,
.principle-grid,
.audit-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  width: min(1400px, 100%);
  margin: clamp(80px, 10vw, 150px) auto 0;
}

.service-card,
.principle-card {
  min-height: 280px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
}

.service-card > span,
.card-number,
.service-card__number,
.process-list__index,
.audit-question-list__index,
.response-lever__index {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 650;
}

.service-card h3,
.principle-card h3,
.audit-deliverable h3,
.deliverable-card h3,
.response-lever h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
  font-weight: 480;
  letter-spacing: -0.04em;
}

.service-card p,
.principle-card p:last-child,
.audit-deliverable p,
.response-lever p,
.scope-note p,
.proof-placeholder p {
  color: var(--soft);
  line-height: 1.58;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  width: min(1400px, 100%);
  margin: 0 auto 48px;
}

.section-heading-row h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.proof-disclaimer {
  max-width: 360px;
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.work-card {
  position: relative;
  min-height: clamp(380px, 52vw, 720px);
  overflow: hidden;
  background: #111;
}

.work-card-wide {
  grid-column: 1 / -1;
  min-height: clamp(500px, 58vw, 840px);
}

.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-meta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px 17px;
  background: var(--black);
}

.work-meta h3,
.work-meta p {
  margin: 0;
}

.work-meta h3 {
  font-size: 1rem;
}

.work-meta p {
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.8rem;
}

.editorial-split {
  grid-template-columns: 1.05fr 0.95fr;
}

.collaboration-copy p + p {
  margin-top: 22px;
}

.feature-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #151519;
}

.feature-visual > img,
.feature-visual > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
}

.floating-card.contact-card {
  padding: clamp(24px, 4vw, 46px);
}

.floating-card > p:first-child {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 650;
}

.floating-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--soft);
  line-height: 1.5;
}

.process-section,
.use-cases-section,
.audit-questions,
.audit-deliverable,
.response-levers,
.consulting-bridge,
.identity-note,
.proof-placeholder,
.scope-note,
.gop-scope,
.deliverables-section,
.continuation-section,
.commercial-note,
.consulting-content > .proof-section,
.assistant-content > .proof-section {
  width: min(1400px, 100%);
  margin: clamp(110px, 14vw, 220px) auto 0;
}

.process-list,
.audit-question-list {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.audit-question-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
}

.process-list li:last-child,
.audit-question-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list h3,
.audit-question-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 460;
  letter-spacing: -0.04em;
}

.process-list p,
.audit-question-list p {
  max-width: 820px;
  margin: 0;
  color: var(--soft);
  line-height: 1.58;
}

.deliverable-card,
.scope-note,
.proof-placeholder,
.identity-note,
.consulting-bridge,
.commercial-note {
  padding: clamp(30px, 6vw, 80px);
  border-top: 1px solid var(--line);
  background: #0d0d0f;
}

.deliverable-card {
  width: min(900px, 100%);
  margin: 70px auto 0;
}

.deliverable-card ul {
  display: grid;
  gap: 15px;
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--soft);
}

.identity-note h2,
.proof-placeholder h2,
.scope-note h2,
.consulting-bridge h2,
.commercial-note h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 6.1rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.response-levers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 66px;
}

.route-card {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
}

.route-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.7rem);
  font-weight: 480;
  letter-spacing: -0.04em;
}

.route-card p:last-child,
.commercial-note > p:last-child {
  max-width: 820px;
  color: var(--soft);
  line-height: 1.58;
}

.response-lever {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-page .site-header:not(.is-scrolled):not(.has-panel) {
  color: var(--ink);
}

.legal-page .site-header:not(.is-scrolled):not(.has-panel) .header-call {
  background: var(--black);
  color: var(--white);
}

.legal-main {
  width: min(1080px, calc(100% - (2 * var(--page-pad))));
  margin: 0 auto;
  padding: clamp(150px, 17vw, 240px) 0 130px;
}

.legal-main > p:first-child {
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-main > h1 {
  max-width: 900px;
  margin-bottom: 80px;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.legal-main section {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 70px;
  padding: 32px 0 46px;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
}

.legal-main section:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.legal-main h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
}

.legal-main section > div p,
.legal-main section > p {
  margin-bottom: 16px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .legal-panel-grid,
  .contact-layout,
  .feature-split,
  .editorial-split,
  .index-section,
  .final-contact {
    grid-template-columns: 1fr;
  }

  .proof-reel,
  .service-grid,
  .principle-grid,
  .audit-deliverable-grid,
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-tile:last-child,
  .service-card:last-child,
  .principle-card:last-child,
  .audit-deliverable:last-child {
    grid-column: 1 / -1;
  }

  .contact-layout,
  .feature-split {
    gap: 50px;
  }

  .contact-section,
  .final-contact {
    padding-top: 80px;
  }

  .section-heading-row {
    display: grid;
  }

  .proof-disclaimer {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 18px;
    --section-pad: 90px;
  }

  .site-header,
  .ref-header {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-brand {
    font-size: 0.9rem;
  }

  .site-actions,
  .utility-nav {
    gap: 10px;
  }

  .site-actions button,
  .utility-nav button,
  .utility-nav a {
    font-size: 0.78rem;
  }

  .header-call {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .mega-panel {
    min-height: 70svh;
    padding-top: 92px;
  }

  .panel-copy {
    padding: 26px 0;
  }

  .language-options {
    grid-template-columns: 1fr;
  }

  .panel-primary {
    min-height: 54px;
  }

  .home-hero {
    min-height: 108svh;
  }

  .home-hero-content {
    min-height: 78svh;
    padding: 100px 0 120px;
  }

  .home-hero h1 {
    font-size: clamp(3.45rem, 14.5vw, 4rem);
    white-space: nowrap;
  }

  .home-thesis {
    font-size: 1.15rem;
  }

  .portal-row {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 0 10px;
  }

  .portal-pill {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 15px;
  }

  .hero-bridge {
    bottom: 28px;
  }

  .hero-bridge h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .centered-intro h2,
  .black-heading h2,
  .section-intro h2,
  .section-heading h2,
  .proof-heading h2,
  .index-heading h2,
  .final-contact-heading h2,
  .contact-copy h2,
  .feature-copy h2,
  .feature-copy h3 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .proof-reel,
  .service-grid,
  .principle-grid,
  .audit-deliverable-grid,
  .work-grid,
  .response-levers__grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .proof-tile,
  .proof-tile:last-child,
  .service-card:last-child,
  .principle-card:last-child,
  .audit-deliverable:last-child,
  .work-card-wide {
    grid-column: auto;
  }

  .proof-tile {
    min-height: 500px;
  }

  .contact-card,
  .static-contact-card {
    padding: 24px 20px;
  }

  .index-list > a,
  .index-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .subpage-hero {
    padding: 78px 0 0;
  }

  .video-hero {
    min-height: calc(100svh - 78px);
  }

  .video-title,
  .service-hero__copy {
    right: 20px;
    bottom: 30px;
    left: 20px;
  }

  .video-title h1 {
    font-size: clamp(3.25rem, 15vw, 5.8rem);
  }

  .work-card,
  .work-card-wide {
    min-height: 540px;
  }

  .feature-visual {
    min-height: 690px;
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .process-list li,
  .audit-question-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li > span,
  .audit-question-list__index {
    margin-bottom: 10px;
  }

  .legal-main section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

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

  video[autoplay] {
    display: none;
  }

  .home-hero,
  .video-hero {
    background: #8e99db url("design/video/above-the-fold/hero-poster.png") center / cover no-repeat;
  }
}
