@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-vietnamese.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #07090d;
  --ink-soft: #0e131d;
  --ink-raised: #151b27;
  --cobalt: #174dff;
  --cobalt-bright: #4874ff;
  --acid: #c8ff2e;
  --orange: #ff5c35;
  --steel: #9da7b9;
  --mist: #d8dde6;
  --paper: #f2f0e9;
  --white: #fff;
  --line-dark: rgb(7 9 13 / 18%);
  --line-light: rgb(255 255 255 / 16%);
  --sans: "Vietlinker Sans", "Segoe UI", Arial, sans-serif;
  --serif: "Vietlinker Serif", Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(calc(100% - 72px), 1520px);
  --demo-h: 34px;
  --header-h: 82px;
  --hero-p: 0;
  --dossier-x: 0%;
  --dossier-pct: 0%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--demo-h) + var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
blockquote,
figure,
fieldset {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.demo-bar {
  position: relative;
  z-index: 70;
  min-height: var(--demo-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 7px 26px;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-bar__lead,
.demo-bar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.demo-bar__lead i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 92 53 / 18%);
}

.demo-bar p {
  justify-self: center;
  opacity: 0.72;
}

.demo-bar a {
  border-bottom: 1px solid currentcolor;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  padding-inline: 28px;
  border-bottom: 1px solid var(--line-light);
  background: rgb(7 9 13 / 92%);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  position: relative;
  width: 41px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 1px;
  left: 7px;
  top: 19px;
  transform: rotate(-24deg);
  background: var(--acid);
}

.brand-mark i {
  display: block;
  height: 9px;
  background: var(--cobalt-bright);
}

.brand-mark i:nth-child(2) {
  height: 16px;
  background: var(--acid);
}

.brand-mark i:nth-child(3) {
  height: 23px;
  background: var(--orange);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--steel);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
}

.desktop-nav a {
  display: grid;
  place-items: center;
  padding-inline: 19px;
  border-left: 1px solid var(--line-light);
  color: #d7dce5;
  font-size: 11px;
  font-weight: 650;
}

.desktop-nav a:last-child {
  border-right: 1px solid var(--line-light);
}

.desktop-nav a:hover {
  background: var(--acid);
  color: var(--ink);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 8px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-inline: 15px;
  color: var(--steel);
  font-size: 9px;
  font-weight: 800;
}

.language-switch button {
  min-width: 36px;
  min-height: 44px;
  padding: 8px 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--acid);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 20px;
  background: var(--cobalt);
  font-size: 11px;
  font-weight: 750;
}

.header-cta:hover {
  background: var(--acid);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 52px;
  place-content: center;
  gap: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-button i {
  width: 22px;
  height: 1px;
  background: currentcolor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 55;
  inset: calc(var(--demo-h) + var(--header-h)) 0 0;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  border-top: 1px solid var(--line-light);
}

.mobile-menu__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding: 10px 0 15px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu__controls > span {
  color: #c8cfda;
  font: 700 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switch--mobile {
  min-height: 48px;
  padding: 0 8px;
  border: 1px solid rgb(255 255 255 / 28%);
  color: #dfe4eb;
}

.language-switch--mobile button {
  min-width: 44px;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  padding-block: 17px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(24px, 8vw, 40px);
  font-weight: 650;
}

.mobile-menu nav a:focus-visible,
.language-switch--mobile button:focus-visible {
  outline-offset: -3px;
}

.mobile-menu nav b {
  color: var(--acid);
  font: 10px/1 var(--mono);
}

.mobile-menu > p {
  margin-top: 24px;
  color: var(--steel);
  font: 9px/1.5 var(--mono);
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100svh - var(--header-h)));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(540px, 1.18fr);
  grid-template-rows: 1fr auto;
  gap: 30px 44px;
  padding: clamp(58px, 7vw, 106px) max(36px, calc((100vw - 1520px) / 2)) 0;
  background:
    radial-gradient(circle at 20% 22%, rgb(23 77 255 / 24%), transparent 27%),
    radial-gradient(circle at 84% 70%, rgb(200 255 46 / 7%), transparent 24%),
    var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(72 116 255 / 28%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  width: 46vw;
  aspect-ratio: 1;
  top: -30vw;
  left: -10vw;
}

.hero-orbit--two {
  width: 36vw;
  aspect-ratio: 1;
  right: -18vw;
  bottom: -24vw;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: 62px;
  transform: translate3d(0, calc(var(--hero-p) * -28px), 0);
  opacity: calc(1 - var(--hero-p) * 0.3);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #535d6d;
  font: 750 9px/1.3 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 5px rgb(23 77 255 / 12%);
}

.eyebrow b {
  color: var(--cobalt);
  font-weight: inherit;
}

.eyebrow--light {
  color: var(--steel);
}

.eyebrow--light::before {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgb(200 255 46 / 10%);
}

.eyebrow--light b {
  color: var(--acid);
}

.hero-copy .eyebrow {
  color: var(--steel);
}

.hero-copy .eyebrow::before {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgb(200 255 46 / 11%);
}

.hero-copy .eyebrow b {
  color: var(--acid);
}

.hero h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(62px, 6.8vw, 116px);
  font-weight: 680;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 0.18em;
  color: var(--acid);
  font-family: var(--serif);
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-deck {
  max-width: 580px;
  margin-top: 34px;
  color: #c9cfd9;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.button--acid:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 38px;
  padding-block: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 44%);
  font-size: 11px;
  font-weight: 700;
}

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

.hero-micro {
  margin-top: 21px;
  color: #b7c0ce;
  font: 10px/1.55 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: min(59vw, 640px);
  max-height: 650px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 20%);
  background: var(--ink-soft);
  clip-path: polygon(0 0, 96% 0, 100% 7%, 100% 100%, 0 100%);
  transform: translate3d(0, calc(var(--hero-p) * 24px), 0) scale(calc(1 - var(--hero-p) * 0.025));
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 7;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(7 9 13 / 10%), transparent 42%, rgb(7 9 13 / 72%)),
    linear-gradient(90deg, rgb(23 77 255 / 18%), transparent 34%);
  pointer-events: none;
}

.media-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 380ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.media-frame[data-active="true"] {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-shared-video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shared-video {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.media-frame img {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity 400ms ease;
}

.media-frame.is-playing img {
  opacity: 0;
}

.hero-playback {
  position: absolute;
  z-index: 10;
  top: 42px;
  right: 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 42%);
  background: rgb(7 9 13 / 78%);
  color: var(--white);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.hero-playback:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.hero-playback span {
  width: 15px;
  color: var(--acid);
  font-size: 13px;
}

.hero-playback b {
  font: 750 9px/1.2 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.media-hud,
.media-caption {
  position: absolute;
  z-index: 8;
}

.media-hud {
  inset: 16px 18px auto;
  display: flex;
  justify-content: space-between;
  color: rgb(255 255 255 / 76%);
  font: 8px/1 var(--mono);
  letter-spacing: 0.13em;
}

.hud-live {
  color: var(--acid);
}

.media-caption {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: end;
}

.media-caption > span {
  color: var(--acid);
  font: 12px/1 var(--mono);
}

.media-caption p {
  padding-left: 18px;
  border-left: 1px solid rgb(255 255 255 / 46%);
}

.media-caption b,
.media-caption small {
  display: block;
}

.media-caption b {
  font-size: 13px;
  letter-spacing: 0.15em;
}

.media-caption small {
  margin-top: 6px;
  color: #d7dce5;
  font-size: 10px;
}

.industry-tabs {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.industry-tabs button {
  position: relative;
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 8px 15px;
  padding: 16px 22px 22px;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.industry-tabs button:first-child {
  border-left: 1px solid var(--line-light);
}

.industry-tabs button span {
  color: var(--steel);
  font: 9px/1 var(--mono);
}

.industry-tabs button b {
  font-size: 13px;
  font-weight: 650;
}

.industry-tabs button i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--acid);
  transition: transform 400ms ease;
}

.industry-tabs button::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 17px;
  color: var(--steel);
  font-size: 11px;
}

.industry-tabs button:hover,
.industry-tabs button.is-active {
  background: rgb(255 255 255 / 5%);
}

.industry-tabs button.is-active span,
.industry-tabs button.is-active::after {
  color: var(--acid);
}

.industry-tabs button.is-active i {
  transform: scaleX(1);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 3px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  color: var(--steel);
  font: 8px/1 var(--mono);
  letter-spacing: 0.16em;
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 25%);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--acid);
  animation: scan-line 1.8s ease-in-out infinite;
}

@keyframes scan-line {
  0%,
  100% { transform: translateX(-100%); }
  50% { transform: translateX(200%); }
}

.signal-strip {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  background: var(--orange);
  color: var(--ink);
  scroll-padding-inline: 18px;
}

.signal-strip:focus-visible {
  outline-offset: -4px;
}

.signal-strip > * {
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 22px;
  border-right: 1px solid rgb(7 9 13 / 23%);
  font: 9px/1.3 var(--mono);
  letter-spacing: 0.08em;
}

.signal-strip b {
  margin-left: 6px;
  font-family: var(--sans);
  font-weight: 750;
}

.signal-strip > span:last-child {
  font-size: 17px;
}

.dossier-scroll {
  position: relative;
  height: 275svh;
  background: var(--ink);
  color: var(--white);
}

.dossier-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 670px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding-top: var(--header-h);
  background:
    radial-gradient(circle at 82% 20%, rgb(23 77 255 / 18%), transparent 24%),
    var(--ink);
}

.dossier-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.42fr);
  gap: 40px;
  align-items: end;
  padding: 24px max(36px, calc((100vw - 1520px) / 2)) 18px;
  border-bottom: 1px solid var(--line-light);
}

.dossier-header h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(28px, 3.3vw, 56px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.dossier-header > p {
  max-width: 520px;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.6;
}

.dossier-viewport {
  min-height: 0;
  overflow: hidden;
}

.dossier-track {
  width: 400%;
  height: 100%;
  display: flex;
  transform: translate3d(var(--dossier-x), 0, 0);
  will-change: transform;
}

.dossier-panel {
  position: relative;
  width: 25%;
  flex: 0 0 25%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.66fr);
  gap: 0;
  padding-inline: max(36px, calc((100vw - 1520px) / 2));
}

.dossier-photo {
  position: relative;
  min-height: 0;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.dossier-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgb(7 9 13 / 68%)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgb(255 255 255 / 6%) 79px 80px);
  pointer-events: none;
}

.dossier-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transform: scale(1.08) translateX(-2%);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dossier-panel.is-active .dossier-photo img {
  transform: scale(1.02) translateX(0);
}

.dossier-photo > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  color: var(--acid);
  font: 10px/1.25 var(--mono);
  letter-spacing: 0.14em;
}

.dossier-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 21px;
  padding: 28px 12px 28px clamp(28px, 4vw, 70px);
  border-right: 1px solid var(--line-light);
}

.dossier-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line-light);
}

.stage-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--steel);
  font: 8px/1 var(--mono);
  letter-spacing: 0.16em;
}

.stage-kicker b {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font-weight: 500;
}

.dossier-copy h3 {
  max-width: 540px;
  font-size: clamp(30px, 3.2vw, 58px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.dossier-copy > p:not(.stage-kicker) {
  max-width: 540px;
  color: #b7bfcc;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.65;
}

.dossier-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.dossier-copy dl div {
  padding: 13px 12px 0 0;
}

.dossier-copy dt,
.dossier-copy dd {
  font-size: 9px;
}

.dossier-copy dt {
  color: var(--steel);
  text-transform: uppercase;
}

.dossier-copy dd {
  margin-top: 4px;
  color: var(--acid);
  font-weight: 700;
}

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

.signal-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
}

.signal-list span {
  color: var(--orange);
  font: 9px/1.5 var(--mono);
}

.signal-list b {
  font-weight: 600;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.coverage-tags span {
  padding: 8px 10px;
  border: 1px solid var(--cobalt-bright);
  color: #bfcaff;
  font: 8px/1 var(--mono);
  letter-spacing: 0.08em;
}

.ready-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.ready-card span,
.ready-card small {
  font: 8px/1.45 var(--mono);
  letter-spacing: 0.09em;
}

.ready-card strong {
  font-size: 32px;
  line-height: 1;
}

.dossier-progress {
  height: 4px;
  background: var(--ink-raised);
}

.dossier-progress i {
  display: block;
  width: var(--dossier-pct);
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--acid));
  will-change: width;
}

.dossier-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.dossier-steps li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
  border-right: 1px solid var(--line-light);
  color: #606a79;
  font: 8px/1 var(--mono);
  letter-spacing: 0.14em;
}

.dossier-steps li.is-active {
  background: var(--cobalt);
  color: var(--white);
}

.dossier-steps li.is-past {
  color: var(--acid);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-intro {
  padding-top: clamp(76px, 9vw, 142px);
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 54px;
  align-items: end;
}

.section-intro h2 {
  max-width: 950px;
  margin-top: 17px;
  font-size: clamp(42px, 5.2vw, 86px);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-intro > p {
  color: #646d7b;
  font-size: 13px;
  line-height: 1.7;
}

.section-intro--light h2 {
  color: var(--white);
}

.section-intro--light > p {
  color: var(--steel);
}

.industry-lab {
  padding-bottom: clamp(96px, 10vw, 160px);
}

.industry-picker {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 0.72fr);
  min-height: 590px;
  margin-top: 58px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.industry-picker__tabs {
  border-right: 1px solid var(--line-dark);
  background: var(--ink-soft);
  color: var(--white);
}

.industry-picker__tabs button {
  position: relative;
  width: 100%;
  min-height: 25%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.industry-picker__tabs button span {
  color: var(--steel);
  font: 9px/1 var(--mono);
}

.industry-picker__tabs button b {
  font-size: 15px;
  font-weight: 650;
}

.industry-picker__tabs button i {
  color: var(--steel);
  font-style: normal;
}

.industry-picker__tabs button.is-active {
  background: var(--acid);
  color: var(--ink);
}

.industry-picker__tabs button.is-active span,
.industry-picker__tabs button.is-active i {
  color: var(--cobalt);
}

.industry-picker__panels,
.industry-detail {
  min-height: 0;
}

.industry-detail {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.industry-detail[hidden] {
  display: none;
}

.industry-detail img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.industry-detail > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 74px);
}

.industry-detail > div > p {
  color: var(--cobalt);
  font: 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.industry-detail h3 {
  margin-top: 26px;
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.industry-detail ul {
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  counter-reset: question;
}

.industry-detail li {
  counter-increment: question;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: #4e5766;
  font-size: 12px;
}

.industry-detail li::before {
  content: "0" counter(question);
  color: var(--orange);
  font: 9px/1.6 var(--mono);
}

.coverage-section {
  padding-bottom: clamp(90px, 10vw, 150px);
  background: var(--ink-soft);
  color: var(--white);
}

.matrix-wrap {
  margin-top: 58px;
  overflow-x: auto;
  border: 1px solid var(--line-light);
  background: var(--ink);
  scrollbar-color: var(--acid) var(--ink-raised);
}

.coverage-matrix {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
}

.coverage-matrix th,
.coverage-matrix td {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.coverage-matrix thead th {
  height: 82px;
  padding: 20px;
  background: var(--cobalt);
  color: var(--white);
  font: 8px/1.4 var(--mono);
  letter-spacing: 0.11em;
}

.coverage-matrix thead th:first-child {
  background: var(--acid);
  color: var(--ink);
}

.coverage-matrix tbody th {
  padding: 20px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 700;
}

.coverage-matrix tbody td {
  position: relative;
  padding: 20px 20px 38px;
  color: #bdc5d1;
  font-size: 11px;
}

.coverage-matrix tbody td::after {
  content: "?";
  position: absolute;
  right: 11px;
  bottom: 8px;
  color: var(--orange);
  font: 14px/1 var(--mono);
}

.coverage-matrix tbody tr:hover td,
.coverage-matrix tbody tr:hover th {
  background: var(--ink-raised);
}

.matrix-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-top: 18px;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.55;
}

.matrix-note > span:first-child {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font: 10px/1 var(--mono);
}

.coi-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: center;
  padding-block: clamp(96px, 11vw, 174px);
}

.coi-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 70px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    var(--cobalt);
  background-size: 38px 38px;
  color: var(--white);
}

.coi-visual::before,
.coi-visual::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: var(--acid);
  border-style: solid;
}

.coi-visual::before {
  top: 25px;
  left: 25px;
  border-width: 2px 0 0 2px;
}

.coi-visual::after {
  right: 25px;
  bottom: 25px;
  border-width: 0 2px 2px 0;
}

.coi-stamp {
  position: absolute;
  z-index: 4;
  top: 30px;
  right: 30px;
  display: grid;
  gap: 4px;
  padding: 11px 15px;
  transform: rotate(4deg);
  border: 2px solid var(--acid);
  color: var(--acid);
  font: 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.coi-paper {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 0.78;
  padding: 42px 36px;
  transform: rotate(-5deg);
  border: 1px solid rgb(7 9 13 / 20%);
  background: var(--paper);
  box-shadow: 34px 40px 0 rgb(7 9 13 / 26%);
  color: var(--ink);
}

.coi-paper > span {
  font: 800 12px/1 var(--mono);
  letter-spacing: 0.08em;
}

.coi-paper i {
  display: block;
  height: 8px;
  margin-top: 21px;
  background: #cfd3d9;
}

.coi-paper i.short { width: 46%; }
.coi-paper i.medium { width: 72%; }

.coi-paper div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px;
  padding-block: 22px;
  border-block: 1px solid #bfc5ce;
}

.coi-paper div i {
  height: 68px;
  margin: 0;
  background: #dfe2e6;
}

.coi-paper b {
  position: absolute;
  right: 20px;
  bottom: 34px;
  padding: 12px;
  transform: rotate(-7deg);
  border: 3px solid var(--orange);
  color: var(--orange);
  font: 800 18px/1 var(--mono);
}

.coi-visual > p {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  color: #c8d2ff;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.09em;
  text-align: center;
}

.coi-copy h2 {
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.coi-copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: #636c7b;
  font-size: 13px;
  line-height: 1.7;
}

.coi-copy ol {
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.coi-copy li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-dark);
}

.coi-copy li > span {
  color: var(--cobalt);
  font: 9px/1.5 var(--mono);
}

.coi-copy li b {
  font-size: 13px;
}

.coi-copy li p {
  margin-top: 4px;
  color: #4f5967;
  font-size: 12px;
}

.video-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.55fr);
  min-height: 780px;
  background: var(--ink);
  color: var(--white);
}

.video-story__media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.video-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgb(7 9 13 / 52%));
  pointer-events: none;
}

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

.video-story__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 50%;
  background: rgb(7 9 13 / 35%);
  color: var(--white);
  backdrop-filter: blur(9px);
  cursor: pointer;
}

.video-story__play:hover {
  background: var(--acid);
  color: var(--ink);
}

.video-story__play span {
  font-size: 18px;
}

.video-story__play b {
  font: 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.video-story__play[hidden] {
  display: none;
}

.video-story__index {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font: 8px/1 var(--mono);
}

.video-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
  border-left: 1px solid var(--line-light);
}

.video-story__copy h2 {
  margin-top: 20px;
  font-size: clamp(48px, 5.8vw, 94px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.video-story__copy > p:not(.eyebrow) {
  margin-top: 28px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.7;
}

.film-timeline {
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
}

.film-timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
}

.film-timeline span {
  color: var(--orange);
  font: 9px/1.4 var(--mono);
}

.film-timeline b {
  font-weight: 600;
}

.video-story details {
  margin-top: 24px;
  color: var(--steel);
  font-size: 10px;
}

.video-story summary {
  width: max-content;
  cursor: pointer;
  color: var(--acid);
  font-weight: 700;
}

.video-story details p {
  margin-top: 10px;
  max-width: 520px;
  line-height: 1.65;
}

.stories {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.story-card {
  min-height: 680px;
  display: grid;
  grid-template-rows: 0.94fr 1.06fr;
  background: var(--white);
}

.story-card--wide {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(0.83);
}

.story-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
}

.story-card > div > p:first-child {
  display: flex;
  gap: 13px;
  color: var(--cobalt);
  font: 8px/1 var(--mono);
  letter-spacing: 0.13em;
}

.story-card h3 {
  margin-top: 18px;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.story-card > div > p:not(:first-child) {
  margin-top: 22px;
  color: #636c7a;
  font-size: 12px;
  line-height: 1.65;
}

.story-card a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 13px;
  border-top: 1px solid var(--line-dark);
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 750;
}

.feedback {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--cobalt);
  color: var(--white);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.feedback-header h2 {
  font-size: clamp(48px, 6.4vw, 100px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgb(255 255 255 / 25%);
}

.quote-grid figure {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.5vw, 52px);
  background: var(--cobalt);
}

.quote-grid figure::before {
  content: "“";
  color: var(--acid);
  font: italic 72px/0.5 var(--serif);
}

.quote-grid blockquote {
  margin-top: 40px;
  font: italic clamp(22px, 2.2vw, 34px)/1.25 var(--serif);
}

.quote-grid figcaption {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 35%);
}

.quote-grid figcaption b {
  font-size: 10px;
}

.quote-grid figcaption span {
  color: #d7dfff;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.08em;
}

.resources {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.resource-grid article {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.7vw, 54px);
  background: var(--white);
}

.resource-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--acid);
  transition: transform 280ms ease;
}

.resource-grid article:nth-child(2) {
  background: var(--ink-soft);
  color: var(--white);
}

.resource-grid article:nth-child(2)::after {
  background: var(--orange);
}

.resource-grid article:hover::after {
  transform: scaleX(1);
}

.resource-grid article > span {
  color: var(--cobalt);
  font: 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.resource-grid article:nth-child(2) > span {
  color: var(--acid);
}

.resource-grid h3 {
  margin-top: 34px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1;
}

.resource-grid p {
  margin-top: 20px;
  color: #697281;
  font-size: 12px;
  line-height: 1.65;
}

.resource-grid article:nth-child(2) p {
  color: var(--steel);
}

.resource-grid a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 750;
}

.resource-grid article:nth-child(2) a {
  border-color: var(--line-light);
  color: var(--acid);
}

.review-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(78px, 10vw, 150px) max(36px, calc((100vw - 1520px) / 2));
  background: var(--ink);
  color: var(--white);
}

.review-copy h2 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(48px, 6vw, 94px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.review-copy > p:not(.eyebrow) {
  margin-top: 28px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.7;
}

.privacy-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgb(255 92 53 / 55%);
  background: rgb(255 92 53 / 8%);
  color: #d7dce5;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note > span {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font: 800 12px/1 var(--mono);
}

.privacy-note b {
  color: var(--orange);
}

.review-form {
  display: grid;
  gap: 28px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line-light);
  background: var(--ink-raised);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-form label,
.review-form fieldset {
  display: grid;
  gap: 9px;
}

.review-form label > span,
.review-form legend {
  font-size: 10px;
  font-weight: 700;
}

.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
}

.review-form select {
  height: 52px;
  padding-inline: 13px;
  cursor: pointer;
}

.review-form textarea {
  min-height: 116px;
  padding: 13px;
  resize: vertical;
}

.review-form select:focus-visible,
.review-form textarea:focus-visible {
  border-color: var(--acid);
  outline: 3px solid var(--acid);
  outline-offset: 2px;
}

.review-form fieldset {
  padding: 0;
  border: 0;
}

.review-form legend {
  margin-bottom: 11px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.check-grid label {
  min-height: 50px;
  display: flex;
  grid-template-columns: unset;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--ink);
  cursor: pointer;
}

.check-grid input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--acid);
}

.check-grid input:checked + span {
  color: var(--acid);
}

.textarea-label small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--steel);
  font: 10px/1.5 var(--mono);
}

.textarea-label small b {
  flex: none;
  color: var(--acid);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit p {
  color: var(--steel);
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.05em;
}

.form-status {
  padding: 18px;
  border-left: 4px solid var(--acid);
  background: rgb(200 255 46 / 10%);
}

.form-status[hidden] {
  display: none;
}

.form-status b {
  color: var(--acid);
  font-size: 12px;
}

.form-status p {
  margin-top: 6px;
  color: #c5ccd6;
  font-size: 12px;
}

.site-footer {
  padding: 50px max(36px, calc((100vw - 1520px) / 2)) 30px;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.65fr) auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top > p {
  color: var(--steel);
  font-size: 11px;
}

.footer-up {
  display: inline-flex;
  gap: 24px;
  padding: 13px 15px;
  border: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
}

.footer-up:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.footer-disclaimer {
  padding-top: 30px;
}

.footer-disclaimer > p {
  max-width: 1380px;
  color: #adb6c4;
  font-size: 11px;
  line-height: 1.75;
}

.footer-disclaimer > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  color: #929cab;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 48px), 1120px);
  }

  .desktop-nav {
    display: none;
  }

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

  .menu-button {
    display: grid;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
    padding-inline: 32px;
  }

  .hero h1 {
    font-size: clamp(60px, 7.7vw, 90px);
  }

  .dossier-header,
  .dossier-panel {
    padding-inline: 32px;
  }

  .dossier-panel {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .dossier-copy {
    padding-left: 30px;
  }

  .industry-detail {
    grid-template-columns: 1fr 1fr;
  }

  .coi-section {
    gap: 50px;
  }

  .coi-visual {
    padding: 50px;
  }

  .video-story {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .story-card--wide {
    grid-template-columns: 1fr;
    grid-template-rows: 0.95fr 1.05fr;
  }

  .review-section {
    padding-inline: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --demo-h: 40px;
    --header-h: 70px;
    --shell: calc(100% - 36px);
  }

  .demo-bar {
    min-height: var(--demo-h);
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .demo-bar p {
    display: none;
  }

  .site-header {
    min-height: var(--header-h);
    padding-inline: 17px;
  }

  .header-cta,
  .header-actions > .language-switch {
    display: none;
  }

  .hero {
    min-height: 960px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(430px, 1fr) auto;
    gap: 28px;
    padding: 54px 18px 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 96px);
  }

  .hero-deck {
    max-width: 660px;
  }

  .hero-media {
    width: 100%;
    min-height: 460px;
  }

  .industry-tabs button {
    min-height: 78px;
    padding-inline: 13px;
  }

  .industry-tabs button b {
    font-size: 11px;
  }

  .industry-tabs button::after {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

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

  .signal-strip > span {
    min-height: 70px;
  }

  .signal-strip > span:last-child {
    display: none;
  }

  .dossier-scroll {
    height: 235svh;
  }

  .dossier-sticky {
    min-height: 700px;
    padding-top: var(--header-h);
  }

  .dossier-header {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px;
  }

  .dossier-header > p {
    display: none;
  }

  .dossier-header h2 {
    font-size: clamp(26px, 6vw, 40px);
  }

  .dossier-viewport {
    position: relative;
  }

  .dossier-track {
    position: relative;
    width: 100%;
    transform: none !important;
  }

  .dossier-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(230px, 0.9fr) minmax(280px, 1.1fr);
    padding: 0 18px;
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    transition: opacity 360ms ease, transform 500ms ease;
    pointer-events: none;
  }

  .dossier-panel.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
  }

  .dossier-photo {
    margin: 12px 0 0;
  }

  .dossier-photo img {
    min-height: 230px;
  }

  .dossier-copy {
    gap: 11px;
    padding: 19px 8px 14px;
    border: 0;
  }

  .dossier-copy::before {
    display: none;
  }

  .dossier-copy h3 {
    font-size: clamp(29px, 6vw, 45px);
  }

  .dossier-copy > p:not(.stage-kicker) {
    font-size: 11px;
  }

  .dossier-copy dl,
  .signal-list,
  .coverage-tags,
  .ready-card {
    margin-top: 0;
  }

  .dossier-steps li {
    justify-content: center;
    padding-inline: 7px;
  }

  .dossier-steps li b {
    display: none;
  }

  .section-intro--split {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .section-intro h2 {
    font-size: clamp(44px, 10vw, 72px);
  }

  .industry-picker {
    grid-template-columns: 1fr;
  }

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

  .industry-picker__tabs button {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    border-right: 1px solid var(--line-light);
    padding: 13px;
  }

  .industry-picker__tabs button i {
    display: none;
  }

  .industry-detail {
    grid-template-columns: 1fr;
  }

  .industry-detail img {
    min-height: 390px;
    max-height: 480px;
  }

  .industry-detail > div {
    padding: 34px 25px 44px;
  }

  .coi-section {
    grid-template-columns: 1fr;
  }

  .coi-visual {
    min-height: 600px;
  }

  .video-story {
    grid-template-columns: 1fr;
  }

  .video-story__media {
    min-height: 520px;
  }

  .video-story__copy {
    padding: 58px 32px 70px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .story-card,
  .story-card--wide {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(340px, 0.9fr) auto;
  }

  .quote-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid figure,
  .resource-grid article {
    min-height: 380px;
  }

  .review-section {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

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

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .demo-bar {
    gap: 10px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .demo-bar a span:first-child {
    display: none;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    min-height: 900px;
    padding-top: 42px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(53px, 17vw, 78px);
    line-height: 0.81;
  }

  .hero-deck {
    margin-top: 25px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-micro {
    display: none;
  }

  .hero-media {
    min-height: 350px;
    clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 0 100%);
  }

  .media-hud span:nth-child(2) {
    display: none;
  }

  .media-caption {
    grid-template-columns: 38px 1fr;
  }

  .hero-playback {
    top: 38px;
    min-width: 44px;
    justify-content: center;
    padding-inline: 10px;
  }

  .hero-playback b {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .industry-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(128px, 1fr));
    scrollbar-width: thin;
  }

  .industry-tabs button {
    min-height: 72px;
  }

  .signal-strip {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
  }

  .signal-strip > span {
    min-height: 54px;
    scroll-snap-align: start;
  }

  .dossier-scroll {
    height: 225svh;
  }

  .dossier-sticky {
    min-height: 650px;
  }

  .dossier-header h2 {
    font-size: 25px;
  }

  .dossier-panel {
    grid-template-rows: minmax(190px, 0.72fr) minmax(300px, 1.28fr);
  }

  .dossier-photo img {
    min-height: 190px;
  }

  .dossier-copy h3 {
    font-size: 29px;
  }

  .dossier-copy dl {
    grid-template-columns: 1fr;
  }

  .dossier-copy dl div:nth-child(n + 2) {
    display: none;
  }

  .signal-list li:nth-child(3) {
    display: none;
  }

  .coverage-tags span:nth-child(n + 4) {
    display: none;
  }

  .dossier-steps li {
    min-height: 40px;
  }

  .section-intro {
    padding-top: 74px;
  }

  .section-intro h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .industry-picker {
    margin-top: 38px;
  }

  .industry-picker__tabs {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(118px, 1fr));
  }

  .industry-picker__tabs button {
    min-height: 82px;
  }

  .industry-detail img {
    min-height: 270px;
  }

  .industry-detail h3 {
    font-size: 35px;
  }

  .coi-visual {
    min-height: 480px;
    padding: 46px;
  }

  .coi-paper {
    padding: 30px 24px;
  }

  .coi-paper b {
    font-size: 11px;
  }

  .coi-copy h2,
  .video-story__copy h2,
  .review-copy h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .video-story__media {
    min-height: 310px;
  }

  .video-story__play {
    width: 92px;
  }

  .story-card,
  .story-card--wide {
    grid-template-rows: 270px auto;
  }

  .story-card h3 {
    font-size: 33px;
  }

  .feedback-header {
    display: block;
  }

  .feedback-header h2 {
    margin-top: 20px;
    font-size: 60px;
  }

  .form-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .review-form {
    padding: 25px 18px;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

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

  .footer-up {
    width: 100%;
    justify-content: space-between;
  }

  .footer-disclaimer > div {
    flex-direction: column;
  }
}

@media (max-height: 660px) {
  .dossier-scroll {
    height: auto;
  }

  .dossier-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: block;
    padding-top: 70px;
  }

  .dossier-viewport {
    overflow: visible;
  }

  .dossier-track {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
    will-change: auto;
  }

  .dossier-panel {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 270px auto;
    padding: 18px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }

  .dossier-photo {
    margin: 0;
  }

  .dossier-copy {
    padding: 22px 10px;
    border: 0;
  }

  .dossier-copy::before,
  .dossier-progress,
  .dossier-steps {
    display: none;
  }
}

@media (max-height: 660px) and (max-width: 900px) {
  .dossier-track {
    grid-template-columns: 1fr;
  }

  .dossier-panel {
    min-height: 0;
    grid-template-rows: minmax(220px, 48vw) auto;
    padding: 16px 18px;
  }

  .dossier-photo img {
    min-height: 220px;
  }
}

@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;
  }

  .hero-copy,
  .hero-media {
    transform: none;
    opacity: 1;
  }

  .media-frame video {
    display: none;
  }

  .dossier-scroll {
    height: auto;
  }

  .dossier-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: block;
    padding-top: 70px;
  }

  .dossier-viewport {
    overflow: visible;
  }

  .dossier-track {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
  }

  .dossier-panel {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 340px auto;
    padding: 22px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    opacity: 1;
    transform: none;
  }

  .dossier-photo {
    margin: 0;
  }

  .dossier-copy {
    padding: 28px 12px;
    border: 0;
  }

  .dossier-copy::before,
  .dossier-progress,
  .dossier-steps {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 700px) {
  .dossier-track {
    grid-template-columns: 1fr;
  }

  .dossier-panel {
    min-height: 0;
    grid-template-rows: 240px auto;
  }
}
