@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/satoshi.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 900;
}

:root {
  --ink: #070913;
  --ink-soft: #0d1020;
  --ink-raised: #14182a;
  --blue: #003eff;
  --blue-bright: #1e55ff;
  --blue-pale: #e8edff;
  --white: #f7f8fc;
  --paper: #ffffff;
  --paper-soft: #f0f2f7;
  --text: #121524;
  --muted: #62697b;
  --line: rgba(18, 21, 36, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #d5af55;
  --max-width: 1240px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Clash Display", Arial, sans-serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

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

.section-shell {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #89a6ff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 14px 0;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 19, 0.94);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  width: min(calc(100% - 48px), 1360px);
  min-height: 54px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 16, 32, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-link img {
  width: 168px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247, 248, 252, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

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

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  height: 36px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.language-switch button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 14px;
  background: var(--blue);
  content: "";
}

.hero-lines,
.process-lines,
.final-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines span,
.process-lines span,
.final-lines span {
  position: absolute;
  width: 900px;
  height: 1px;
  background: rgba(80, 112, 255, 0.17);
  transform: rotate(-31deg);
}

.hero-lines span:nth-child(1) { top: 140px; right: -300px; }
.hero-lines span:nth-child(2) { top: 310px; right: -270px; }
.hero-lines span:nth-child(3) { top: 480px; right: -240px; }
.hero-lines span:nth-child(4) { top: 650px; right: -210px; }
.hero-lines span:nth-child(5) { top: 820px; right: -180px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: 48px;
  min-height: 780px;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin-top: 25px;
  font-size: 70px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 248, 252, 0.88);
}

.title-blue {
  color: var(--blue-bright);
}

.hero-lead {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(247, 248, 252, 0.7);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 850;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 16px;
}

.cta-note {
  max-width: 150px;
  color: rgba(247, 248, 252, 0.5);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 520px;
}

.stage-caption {
  position: absolute;
  top: 9px;
  left: 17%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45dd9a;
  box-shadow: 0 0 0 4px rgba(69, 221, 154, 0.13);
}

.screen {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: var(--ink-raised);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.44);
  transition: z-index 0s, border-color 160ms ease, transform 220ms ease;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen:hover {
  z-index: 8;
  border-color: var(--blue-bright);
}

.screen-primary {
  top: 72px;
  left: 5%;
  z-index: 3;
  width: 82%;
  aspect-ratio: 1.41;
  transform: rotate(-3deg);
}

.screen-primary:hover {
  transform: rotate(-1deg) translateY(-6px);
}

.screen-secondary {
  top: 0;
  right: 0;
  z-index: 2;
  width: 43%;
  aspect-ratio: 1.41;
  transform: rotate(6deg);
}

.screen-secondary:hover {
  transform: rotate(3deg) translateY(-6px);
}

.screen-tertiary {
  bottom: 12px;
  left: 0;
  z-index: 4;
  width: 52%;
  aspect-ratio: 1.41;
  transform: rotate(4deg);
}

.screen-tertiary:hover {
  transform: rotate(2deg) translateY(-6px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span:last-child {
  color: var(--blue-bright);
  font-size: 18px;
}

.friction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--paper);
  color: var(--text);
}

.friction-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--blue);
}

.friction-word {
  position: absolute;
  top: 50%;
  left: -28px;
  color: transparent;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 190px;
  font-weight: 650;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) rotate(-90deg);
}

.friction-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.friction-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.friction-shot-main {
  top: 110px;
  right: -5%;
  width: 72%;
  aspect-ratio: 1.41;
  transform: rotate(4deg);
}

.friction-shot-small {
  bottom: 70px;
  left: 10%;
  width: 46%;
  aspect-ratio: 1.41;
  transform: rotate(-5deg);
}

.friction-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - var(--max-width)) / 2));
}

.friction-copy h2 {
  max-width: 650px;
  margin-top: 24px;
  font-size: 58px;
}

.friction-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
}

.friction-list {
  display: grid;
  gap: 0;
  max-width: 590px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.friction-list li {
  position: relative;
  padding: 16px 20px 16px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 750;
}

.friction-list li::before {
  position: absolute;
  top: 24px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  content: "";
  transform: rotate(45deg);
}

.statement-band {
  background: var(--paper-soft);
  color: var(--text);
}

.statement-inner {
  padding-top: 170px;
  padding-bottom: 180px;
}

.statement-inner h2 {
  max-width: 1080px;
  margin-top: 30px;
  font-size: 76px;
}

.statement-inner h2 span {
  display: block;
}

.statement-muted {
  color: #9ca3b2;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 170px;
  background: var(--ink);
}

.process-lines span:nth-child(1) { top: 700px; left: -300px; }
.process-lines span:nth-child(2) { top: 1800px; right: -400px; }
.process-lines span:nth-child(3) { top: 2900px; left: -260px; }

.process-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.65fr);
  gap: 28px 80px;
  margin-bottom: 110px;
}

.process-header .eyebrow {
  grid-column: 1 / -1;
}

.process-header h2 {
  max-width: 750px;
  font-size: 82px;
}

.process-header > p:last-child {
  align-self: end;
  max-width: 480px;
  padding-bottom: 8px;
  color: rgba(247, 248, 252, 0.64);
  font-size: 19px;
}

.process-rail {
  position: relative;
  z-index: 2;
}

.process-rail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 104px;
  width: 1px;
  background: rgba(68, 99, 255, 0.46);
  content: "";
}

.process-step {
  display: grid;
  grid-template-columns: 170px minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: 52px;
  min-height: 440px;
  padding: 56px 0;
  border-top: 1px solid var(--line-dark);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  position: relative;
  z-index: 2;
  color: var(--blue-bright);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 105px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 62, 255, 0.28);
}

.step-copy {
  max-width: 430px;
}

.step-label {
  margin-bottom: 14px;
  color: #88a4ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-copy h3 {
  font-size: 42px;
}

.step-copy > p:last-child {
  margin-top: 18px;
  color: rgba(247, 248, 252, 0.62);
  font-size: 17px;
}

.step-art {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--ink-raised);
}

.step-art-words {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--blue);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 41px;
  font-weight: 600;
  line-height: 1.08;
}

.step-art-words span:nth-child(2) {
  color: var(--ink);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.52);
}

.step-art-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.step-art-image:hover img {
  transform: scale(1.025);
}

.step-art-image-blue {
  border-color: rgba(72, 110, 255, 0.65);
}

.step-art-type {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  background: var(--paper);
  color: var(--ink);
}

.step-art-type::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--blue);
  content: "";
  transform: rotate(45deg);
}

.step-art-type span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.step-art-type strong {
  max-width: 340px;
  margin-top: 10px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 42px;
  line-height: 0.98;
}

.step-art-live {
  display: grid;
  place-content: center;
  gap: 22px;
  background: var(--blue);
  text-align: center;
}

.step-art-live .live-dot {
  justify-self: center;
  width: 12px;
  height: 12px;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.16);
}

.step-art-live strong {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 34px;
}

.principles-band {
  padding: 120px 0 0;
  background: var(--blue);
}

.principles-header {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 60px;
  padding-bottom: 90px;
}

.principles-header .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.principles-header h2 {
  max-width: 900px;
  font-size: 62px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.principles-grid article {
  min-height: 260px;
  padding: 36px 34px 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.principles-grid article:first-child {
  border-left: 0;
}

.principles-grid article > span {
  display: block;
  margin-bottom: 55px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.principles-grid h3 {
  font-size: 31px;
}

.principles-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.work-section {
  padding: 160px 0 190px;
  background: var(--paper);
  color: var(--text);
}

.work-header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px 70px;
  margin-bottom: 120px;
}

.work-header .eyebrow {
  grid-column: 1 / -1;
}

.work-header h2 {
  max-width: 870px;
  font-size: 70px;
}

.work-header > p:last-child {
  align-self: end;
  max-width: 400px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

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

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(320px, 0.83fr);
  align-items: center;
  gap: 80px;
  min-height: 640px;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.case-row-reverse .case-image {
  grid-column: 2;
}

.case-row-reverse .case-copy {
  grid-column: 1;
  grid-row: 1;
}

.case-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.41;
  border: 10px solid var(--paper-soft);
  border-radius: 8px;
  background: var(--paper-soft);
}

.case-image-blue {
  border-color: var(--blue);
  background: var(--blue);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.case-image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 4px;
  background: rgba(7, 9, 19, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.case-image:hover img {
  transform: scale(1.02);
}

.case-image:hover > span,
.case-image:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.case-copy {
  max-width: 460px;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-copy h3 {
  margin-top: 28px;
  font-size: 47px;
}

.case-result {
  margin-top: 24px;
  color: var(--text);
  font-size: 21px;
  font-weight: 750;
  line-height: 1.35;
}

.case-copy > p:not(.case-result) {
  margin-top: 18px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--blue);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promise-section {
  padding: 160px 0;
  background: var(--ink-soft);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
}

.promise-title {
  position: sticky;
  top: 150px;
  align-self: start;
}

.promise-title h2 {
  max-width: 560px;
  margin-top: 28px;
  font-size: 63px;
}

.promise-list {
  display: grid;
}

.promise-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 18px;
  padding: 44px 0;
  border-top: 1px solid var(--line-dark);
}

.promise-list article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.promise-list article > span {
  grid-row: 1 / 3;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
}

.promise-list h3 {
  font-size: 32px;
}

.promise-list p {
  max-width: 520px;
  color: rgba(247, 248, 252, 0.62);
}

.faq-section {
  padding: 160px 0;
  background: var(--paper-soft);
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1.28fr);
  gap: 100px;
}

.faq-header h2 {
  max-width: 520px;
  margin-top: 28px;
  font-size: 61px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  cursor: pointer;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span:last-child {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 20px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span:last-child {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 58px 30px 4px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--ink);
}

.final-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--blue);
  content: "";
}

.final-lines {
  z-index: 2;
}

.final-lines span:nth-child(1) { top: 40px; right: 4%; }
.final-lines span:nth-child(2) { top: 180px; right: 2%; }
.final-lines span:nth-child(3) { top: 320px; right: 0; }
.final-lines span:nth-child(4) { top: 460px; right: -2%; }

.final-cta-inner {
  position: relative;
  z-index: 3;
}

.final-cta h2 {
  max-width: 870px;
  margin-top: 28px;
  font-size: 96px;
  text-transform: uppercase;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(247, 248, 252, 0.68);
  font-size: 19px;
}

.final-cta .button {
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 80px 0 26px;
  border-top: 1px solid var(--line-dark);
  background: #04050b;
  color: rgba(247, 248, 252, 0.63);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.45fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.footer-grid > div:first-child img {
  width: 190px;
  height: auto;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 13px;
  font-weight: 750;
}

.footer-time {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  text-transform: uppercase;
}

.footer-time strong {
  margin-left: 8px;
  color: var(--white);
}

.footer-time p span:last-child {
  margin-left: 5px;
  color: #839dff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-stage {
    height: 460px;
  }

  .friction-copy {
    padding-inline: 48px;
  }

  .friction-copy h2 {
    font-size: 49px;
  }

  .process-step {
    grid-template-columns: 145px minmax(260px, 0.85fr) minmax(300px, 1.15fr);
    gap: 34px;
  }

  .process-rail::before {
    left: 87px;
  }

  .step-number {
    font-size: 88px;
  }

  .case-row {
    gap: 54px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 72px;
  }

  .section-shell {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    width: calc(100% - 20px);
    min-height: 50px;
    padding: 6px 7px 6px 13px;
  }

  .brand-link img {
    width: 148px;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    grid-template-columns: repeat(2, 38px);
    height: 36px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 86px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 59px;
  }

  .hero-lead {
    max-width: 640px;
    font-size: 18px;
  }

  .hero-stage {
    width: min(100%, 640px);
    height: 365px;
    margin-left: auto;
  }

  .stage-caption {
    left: 9%;
  }

  .screen-primary {
    width: 77%;
  }

  .screen-secondary {
    width: 38%;
  }

  .screen-tertiary {
    width: 42%;
  }

  .hero-scroll {
    display: none;
  }

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

  .friction-visual {
    min-height: 540px;
  }

  .friction-copy {
    padding: 100px max(28px, calc((100vw - 720px) / 2));
  }

  .friction-copy h2 {
    max-width: 680px;
    font-size: 56px;
  }

  .statement-inner {
    padding-top: 120px;
    padding-bottom: 130px;
  }

  .statement-inner h2 {
    font-size: 59px;
  }

  .process-section {
    padding: 120px 0 130px;
  }

  .process-header {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .process-header h2 {
    font-size: 64px;
  }

  .process-header > p:last-child {
    max-width: 620px;
  }

  .process-rail::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 120px 1fr;
    gap: 24px 34px;
    min-height: 0;
    padding: 70px 0;
  }

  .step-number {
    align-self: start;
    font-size: 72px;
  }

  .step-art {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 12px;
  }

  .principles-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .principles-header h2 {
    font-size: 52px;
  }

  .work-header {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .work-header h2 {
    font-size: 58px;
  }

  .work-header > p:last-child {
    max-width: 620px;
  }

  .case-row,
  .case-row-reverse {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding: 80px 0;
  }

  .case-row-reverse .case-image,
  .case-row-reverse .case-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .case-copy {
    max-width: 660px;
  }

  .promise-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .promise-title {
    position: static;
  }

  .promise-title h2,
  .faq-header h2 {
    font-size: 58px;
  }

  .final-cta::after {
    width: 18%;
  }

  .final-cta h2 {
    max-width: 700px;
    font-size: 72px;
  }

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

  .footer-time {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .eyebrow {
    font-size: 11px;
  }

  .brand-link img {
    width: 134px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 35px);
    height: 34px;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 106px;
    padding-bottom: 66px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 43px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .button {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    padding-inline: 19px;
  }

  .cta-note {
    max-width: none;
    padding-left: 2px;
  }

  .hero-stage {
    height: 260px;
  }

  .stage-caption {
    top: -2px;
    left: 4%;
    font-size: 8px;
  }

  .screen-primary {
    top: 48px;
    left: 5%;
    width: 82%;
  }

  .screen-secondary {
    width: 40%;
  }

  .screen-tertiary {
    bottom: 8px;
    width: 45%;
  }

  .friction-visual {
    min-height: 410px;
  }

  .friction-word {
    left: -47px;
    font-size: 125px;
  }

  .friction-shot-main {
    top: 64px;
    width: 75%;
  }

  .friction-shot-small {
    bottom: 46px;
    width: 50%;
  }

  .friction-copy {
    padding: 82px 16px;
  }

  .friction-copy h2 {
    font-size: 42px;
  }

  .friction-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .statement-inner {
    padding-top: 96px;
    padding-bottom: 105px;
  }

  .statement-inner h2 {
    margin-top: 24px;
    font-size: 41px;
  }

  .process-section {
    padding: 100px 0 110px;
  }

  .process-header {
    gap: 22px;
    margin-bottom: 45px;
  }

  .process-header h2 {
    font-size: 47px;
  }

  .process-header > p:last-child {
    font-size: 17px;
  }

  .process-step {
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 54px 0;
  }

  .step-number {
    font-size: 46px;
  }

  .step-copy h3 {
    font-size: 34px;
  }

  .step-copy > p:last-child {
    font-size: 15px;
  }

  .step-art {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .step-art-image img {
    min-height: 210px;
  }

  .step-art-words {
    padding: 30px;
    font-size: 30px;
  }

  .step-art-type {
    padding: 30px;
  }

  .step-art-type strong {
    font-size: 33px;
  }

  .step-art-live strong {
    font-size: 28px;
  }

  .principles-band {
    padding-top: 90px;
  }

  .principles-header {
    padding-bottom: 60px;
  }

  .principles-header h2 {
    font-size: 41px;
  }

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

  .principles-grid article,
  .principles-grid article:first-child {
    min-height: 0;
    padding: 32px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-left: 0;
  }

  .principles-grid article > span {
    margin-bottom: 28px;
  }

  .work-section {
    padding: 105px 0 120px;
  }

  .work-header {
    gap: 22px;
    margin-bottom: 62px;
  }

  .work-header h2 {
    font-size: 43px;
  }

  .case-row,
  .case-row-reverse {
    gap: 35px;
    padding: 60px 0;
  }

  .case-image {
    border-width: 6px;
  }

  .case-image > span {
    display: none;
  }

  .case-copy h3 {
    margin-top: 22px;
    font-size: 38px;
  }

  .case-result {
    margin-top: 18px;
    font-size: 19px;
  }

  .promise-section,
  .faq-section {
    padding: 105px 0;
  }

  .promise-grid,
  .faq-grid {
    gap: 52px;
  }

  .promise-title h2,
  .faq-header h2 {
    font-size: 43px;
  }

  .promise-list article {
    grid-template-columns: 36px 1fr;
    padding: 34px 0;
  }

  .promise-list h3 {
    font-size: 27px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 18px;
  }

  .faq-list details p {
    padding: 0 44px 26px 0;
  }

  .final-cta {
    padding: 105px 0 115px;
  }

  .final-cta::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 11px;
  }

  .final-cta h2 {
    font-size: 51px;
  }

  .final-cta p:not(.eyebrow) {
    font-size: 17px;
  }

  .button-large {
    min-height: 56px;
    font-size: 14px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-time {
    grid-column: auto;
  }

  .footer-time p {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: baseline;
    gap: 7px;
  }

  .footer-time strong,
  .footer-time p span:last-child {
    margin-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
  }
}

@media (max-width: 370px) {
  .brand-link img {
    width: 117px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 31px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .friction-copy h2,
  .statement-inner h2,
  .principles-header h2,
  .work-header h2,
  .promise-title h2,
  .faq-header h2 {
    font-size: 37px;
  }

  .final-cta h2 {
    font-size: 43px;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
