@property --page-progress {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@property --chapter-focus {
  syntax: "<number>";
  inherits: true;
  initial-value: 0.35;
}

:root {
  color-scheme: light;
  --ink: #090a0c;
  --ink-soft: #17191e;
  --paper: #f4f5f7;
  --paper-strong: #ffffff;
  --paper-soft: #e9ebef;
  --line: rgba(9, 10, 12, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --text: #111318;
  --muted: #5d626d;
  --muted-light: #b8bec9;
  --blue: #0a84ff;
  --blue-deep: #0064d8;
  --blue-soft: #d9ecff;
  --success: #0c7c59;
  --error: #b3261e;
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 38px;
  --shell: min(1420px, calc(100vw - 96px));
  --header-h: 76px;
  --shadow-soft: 0 22px 70px rgba(8, 13, 22, 0.11);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--ink);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-weight: 430;
  line-height: 1.58;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--blue);
  color: white;
}

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

img {
  height: auto;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 7.4rem);
}

h2 {
  font-size: clamp(2.65rem, 5vw, 5.6rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
}

p {
  text-wrap: pretty;
}

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

.section {
  position: relative;
  padding-block: clamp(96px, 12vw, 190px);
  background: var(--paper);
}

.section-tight {
  padding-block: clamp(58px, 7vw, 94px);
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: 650;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: calc(var(--page-progress, 0) * 100%);
  height: 100%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(10, 132, 255, 0.8);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-head {
  max-width: 980px;
  margin-bottom: clamp(58px, 8vw, 108px);
}

.section-head h2 {
  max-width: 15ch;
  margin-bottom: 24px;
}

.section-head > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1;
  transition:
    transform 220ms var(--ease-out),
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 60%, white);
  outline-offset: 4px;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.24);
}

.button-primary:hover {
  background: #2392ff;
  box-shadow: 0 15px 38px rgba(10, 132, 255, 0.34);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(9, 10, 12, 0.32);
  background: rgba(255, 255, 255, 0.64);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
}

.button-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.button-muted {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 650;
  transition: gap 220ms var(--ease-out), opacity 180ms ease;
}

.text-link::after {
  content: "↗";
  font-size: 0.9em;
}

.text-link:hover {
  gap: 13px;
  opacity: 0.76;
}

.text-link-light {
  color: white;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.46);
  color: white;
  -webkit-backdrop-filter: saturate(145%) blur(22px);
  backdrop-filter: saturate(145%) blur(22px);
  transition:
    height 280ms var(--ease-out),
    background 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(7, 8, 10, 0.84);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.brand strong {
  font-weight: 700;
}

.brand small {
  font-size: 0.78em;
  font-weight: 500;
  opacity: 0.62;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 30px);
}

.desktop-nav a,
.header-utility {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  font-weight: 540;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: white;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.header-utility:hover {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

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

.header-cta {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 6px auto;
  background: white;
  transition: transform 220ms var(--ease-out);
}

.mobile-nav {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: 84px 18px 18px;
  background: rgba(4, 5, 7, 0.58);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.mobile-nav-panel {
  display: flex;
  width: min(100%, 560px);
  max-height: calc(100svh - 102px);
  margin-left: auto;
  overflow-y: auto;
  flex-direction: column;
  padding: 20px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m);
  background: #101216;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav-close {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.mobile-nav-link {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  font-weight: 560;
  letter-spacing: -0.03em;
}

.mobile-nav-link.is-active {
  color: var(--blue);
}

.mobile-nav-contact {
  margin-bottom: 20px;
}

.mobile-nav-cta {
  margin-top: 6px;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: min(980px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: white;
  isolation: isolate;
}

.section-anchor {
    display: block;
    height: 0;
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-media-wrap,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-picture,
.media-story-picture,
.sector-picture,
.project-picture,
.hero-card-picture,
.contact-picture,
.article-picture,
.chapter-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0) scale(calc(1.035 + var(--hero-exit, 0) * 0.045));
  will-change: transform;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.9) 0%, rgba(3, 4, 6, 0.74) 33%, rgba(3, 4, 6, 0.08) 73%),
    linear-gradient(0deg, rgba(3, 4, 6, 0.6) 0%, transparent 44%),
    radial-gradient(circle at 15% 30%, rgba(20, 86, 155, 0.12), transparent 42%);
}

.hero-content {
  position: relative;
  display: flex;
  min-height: min(980px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 86px;
}

.hero-copy {
  width: min(760px, 60%);
  opacity: calc(1 - var(--hero-exit, 0) * 0.88);
  transform: translate3d(0, calc(var(--hero-exit, 0) * -54px), 0);
  will-change: transform, opacity;
}

.hero-brandline {
  margin-bottom: 30px;
  color: white;
  font-size: clamp(3.3rem, 6.6vw, 7.6rem);
  font-weight: 650;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: #8cc7ff;
}

.hero-copy h1 {
  max-width: 10.8ch;
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 4.1vw, 4.7rem);
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-points {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--blue);
  content: "●";
  font-size: 0.62em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.hero-scroll span::after {
  position: absolute;
  top: 11px;
  left: 14px;
  width: 5px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  content: "";
  transform: rotate(45deg);
}

.has-js [data-hero-copy] > * {
  opacity: 0;
  transform: translateY(24px);
}

.has-js .is-ready [data-hero-copy] > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.has-js .is-ready [data-hero-copy] > :nth-child(2) { transition-delay: 80ms; }
.has-js .is-ready [data-hero-copy] > :nth-child(3) { transition-delay: 150ms; }
.has-js .is-ready [data-hero-copy] > :nth-child(4) { transition-delay: 220ms; }
.has-js .is-ready [data-hero-copy] > :nth-child(5) { transition-delay: 290ms; }
.has-js .is-ready [data-hero-copy] > :nth-child(6) { transition-delay: 340ms; }

/* Proof and thesis */
.proof-section {
  border-bottom: 1px solid var(--line);
}

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

.proof-card {
  min-height: 210px;
  padding: 20px clamp(24px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.proof-card:first-child {
  padding-left: 0;
}

.proof-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card p {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.thesis-section {
  overflow: clip;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: start;
}

.thesis-grid h2 {
  margin-bottom: 30px;
}

.thesis-grid > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.48rem);
}

.process-line {
  display: grid;
  margin-top: clamp(86px, 10vw, 160px);
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-line article {
  position: relative;
  min-height: 230px;
  padding: 34px 30px 0 0;
  border-right: 1px solid var(--line);
}

.process-line article:last-child {
  border-right: 0;
  padding-left: 30px;
}

.process-line article:not(:first-child) {
  padding-left: 30px;
}

.process-line article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px var(--paper);
  content: "";
}

.process-line article:not(:first-child)::before {
  left: 30px;
}

.process-line article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.process-line h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.process-line p {
  max-width: 23ch;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Editorial story */
.media-story-list {
  display: grid;
  gap: clamp(100px, 15vw, 220px);
}

.media-story {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, 0.72fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  container-type: inline-size;
}

.media-story.is-reversed {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.48fr);
}

.media-story.is-reversed .media-story-visual {
  order: 2;
}

.media-story-visual {
  position: relative;
  min-width: 0;
  min-height: min(65vw, 760px);
  overflow: hidden;
  border-radius: var(--radius-l);
  background: #d8dbe0;
  box-shadow: var(--shadow-soft);
}

.media-story-visual img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc((var(--parallax, 0) + var(--pointer-y, 0)) * 1px), 0) scale(1.04);
  will-change: transform;
}

.media-story-copy {
  min-width: 0;
  max-width: 530px;
}

.media-story-copy h3 {
  margin-bottom: 25px;
}

.media-story-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.24rem);
}

.feature-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.mini-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.93rem;
}

.feature-list li::before,
.mini-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

/* Cinematic scroll chapters */
.chapter-section {
  position: relative;
  overflow: clip;
  padding-top: clamp(110px, 12vw, 190px);
  background:
    radial-gradient(circle at 82% 14%, rgba(10, 132, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #08090b 0%, #111318 52%, #08090b 100%);
  color: white;
  isolation: isolate;
}

.chapter-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 88px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

.chapter-intro {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(90px, 12vw, 180px);
}

.chapter-intro .eyebrow {
  color: #8cc7ff;
}

.chapter-intro h2 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 7vw, 8.5rem);
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.chapter-intro > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.08rem, 1.6vw, 1.36rem);
}

.chapter-list {
  position: relative;
  z-index: 1;
}

.scroll-chapter {
  --chapter-accent: #0a84ff;
  --chapter-focus: 0.35;
  position: relative;
  display: grid;
  min-height: 136svh;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.75fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.scroll-chapter:nth-child(2) {
  --chapter-accent: #76bfff;
}

.scroll-chapter:nth-child(3) {
  --chapter-accent: #72d6bd;
}

.scroll-chapter::after {
  position: absolute;
  right: 0;
  bottom: 8svh;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--chapter-accent), rgba(255, 255, 255, 0.1) 36%, transparent 85%);
  content: "";
  opacity: calc(0.2 + var(--chapter-focus) * 0.6);
  transform: scaleX(var(--chapter-focus));
  transform-origin: left;
}

.chapter-visual {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  height: calc(100svh - var(--header-h) - 48px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 3vw, 48px);
  background: #171a20;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.34);
  clip-path: inset(calc((1 - var(--chapter-focus)) * 2.4%) round clamp(28px, 3vw, 48px));
  opacity: calc(0.56 + var(--chapter-focus) * 0.44);
  transform: translate3d(0, calc((1 - var(--chapter-focus)) * 32px), 0);
  will-change: transform, opacity, clip-path;
}

.chapter-picture,
.chapter-image {
  width: 100%;
  height: 100%;
}

.chapter-image {
  object-fit: cover;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc((0.5 - var(--chapter-focus)) * 18px + var(--pointer-y, 0) * 1px), 0) scale(calc(1.105 - var(--chapter-focus) * 0.055));
  filter: saturate(calc(0.78 + var(--chapter-focus) * 0.22));
  will-change: transform, filter;
}

.chapter-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(5, 6, 8, 0.58)),
    radial-gradient(circle at 70% 25%, transparent 10%, rgba(5, 6, 8, 0.12) 76%);
  pointer-events: none;
}

.chapter-index {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: flex;
  margin: 0;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 680;
  letter-spacing: 0.16em;
}

.chapter-index span:last-child::before {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.chapter-copy {
  position: sticky;
  top: calc(var(--header-h) + 54px);
  max-width: 510px;
  padding: 28px 0 80px;
  opacity: calc(0.28 + var(--chapter-focus) * 0.72);
  transform: translate3d(0, calc((1 - var(--chapter-focus)) * 52px), 0);
  will-change: transform, opacity;
}

.chapter-copy .eyebrow {
  color: var(--chapter-accent);
}

.chapter-copy h3 {
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 3.2vw, 4.5rem);
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.chapter-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.chapter-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-points li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.chapter-points li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chapter-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--chapter-accent), transparent 35%);
  content: "";
}

.chapter-progress {
  height: 2px;
  margin-top: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.chapter-progress span {
  display: block;
  width: calc(var(--chapter-focus) * 100%);
  height: 100%;
  background: var(--chapter-accent);
  transform-origin: left;
}

@supports (animation-timeline: view()) {
  .scroll-chapter::after {
    animation: chapter-rule linear both;
    animation-range: entry 12% contain 42%;
    animation-timeline: view(block);
  }
}

@keyframes chapter-rule {
  from { filter: brightness(0.55); }
  to { filter: brightness(1.25); }
}

/* Service list */
.service-section {
  overflow: hidden;
}

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

.service-row {
  display: grid;
  min-height: 250px;
  padding: 44px 0;
  grid-template-columns: 0.32fr 1fr 1.25fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-row.has-preview {
  grid-template-columns: 0.22fr 0.8fr 1.15fr minmax(190px, 0.72fr);
}

.service-preview,
.service-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-preview {
  min-height: 160px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9dce1;
  clip-path: inset(4% round 22px);
  transition: clip-path 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.08);
  transition: transform 700ms var(--ease-out), filter 500ms ease;
}

.service-row:hover .service-preview {
  clip-path: inset(0 round 22px);
  transform: translateY(-4px);
}

.service-row:hover .service-preview img {
  filter: saturate(0.86);
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.035);
}

.service-number {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.service-row h3 {
  max-width: 12ch;
  margin: 0;
}

.service-detail {
  max-width: 620px;
}

.service-detail > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-detail .mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.service-detail .mini-list li {
  padding: 8px 0 8px 17px;
  border: 0;
  font-size: 0.82rem;
}

.service-detail .mini-list li::before {
  top: 14px;
  width: 5px;
  height: 5px;
}

/* Sector navigation */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sector-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-l);
  color: white;
  isolation: isolate;
}

.sector-panel:nth-child(3n + 1) {
  grid-column: span 2;
}

.sector-media,
.sector-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.sector-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.01);
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.sector-shade {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(4, 5, 7, 0.88) 0%, rgba(4, 5, 7, 0.08) 70%),
    linear-gradient(90deg, rgba(4, 5, 7, 0.35), transparent 60%);
}

.sector-copy {
  position: absolute;
  right: clamp(28px, 5vw, 70px);
  bottom: clamp(26px, 5vw, 64px);
  left: clamp(28px, 5vw, 70px);
}

.sector-index {
  position: absolute;
  top: 4px;
  right: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.sector-copy .eyebrow {
  color: #9dd0ff;
}

.sector-copy h3 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.sector-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.sector-link {
  font-size: 0.85rem;
  font-weight: 650;
}

.sector-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 220ms var(--ease-out);
}

.sector-panel:hover .sector-media img {
  filter: saturate(0.8);
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.045);
}

.sector-panel:hover .sector-link span {
  transform: translate(4px, -4px);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--paper-strong);
  box-shadow: 0 12px 45px rgba(14, 18, 27, 0.08);
  transition: transform 400ms var(--ease-out), box-shadow 400ms ease;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(14, 18, 27, 0.13);
}

.card-visual {
  aspect-ratio: 1.3;
  overflow: hidden;
  background: #d6d9de;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.01);
  transition: transform 700ms var(--ease-out);
}

.project-card:hover .card-visual img {
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0) scale(1.045);
}

.project-copy {
  padding: clamp(26px, 3.2vw, 42px);
}

.project-copy h3 {
  margin-bottom: 18px;
}

.project-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.project-result {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-weight: 580;
}

.project-card blockquote {
  margin: 24px 0 0;
  padding-left: 19px;
  border-left: 2px solid var(--blue);
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

/* Standard page surfaces */
.page-intro {
  position: relative;
  display: flex;
  min-height: 70svh;
  align-items: flex-end;
  padding: calc(var(--header-h) + 110px) 0 clamp(80px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(10, 132, 255, 0.26), transparent 35%),
    linear-gradient(140deg, #090a0c 18%, #191d25 100%);
  color: white;
}

.page-intro::after {
  position: absolute;
  right: -15vw;
  bottom: -34vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.page-intro .shell {
  position: relative;
  z-index: 1;
}

.page-intro .eyebrow {
  color: #8cc7ff;
}

.page-intro h1 {
  max-width: 14ch;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 7vw, 7.7rem);
}

.page-intro p:last-child {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.split-grid,
.contact-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
}

.info-card,
.admin-card,
.stat-card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.64);
}

.info-card h3,
.admin-card h3 {
  margin-bottom: 20px;
}

.info-card > p:not(.eyebrow),
.admin-card > p {
  color: var(--muted);
}

.hero-card {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}

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

/* Contact and forms */
.contact-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--ink);
  color: white;
}

.contact-image {
  aspect-ratio: 1.25;
  overflow: hidden;
}

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

.contact-direct {
  padding: clamp(28px, 4vw, 52px);
}

.contact-direct .eyebrow {
  color: #8cc7ff;
}

.contact-direct h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
}

.contact-direct > p {
  color: var(--muted-light);
}

.contact-link {
  display: block;
  padding: 8px 0;
  color: white;
  font-weight: 600;
}

.contact-promises {
  margin: 0;
  padding: 0 0 22px;
  list-style: none;
}

.contact-promises li {
  display: grid;
  padding: 17px clamp(28px, 4vw, 52px);
  grid-template-columns: 42px 1fr;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.contact-promises span {
  color: #8cc7ff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.lead-panel {
  padding: clamp(30px, 5vw, 68px);
  border-radius: var(--radius-l);
  background: white;
  box-shadow: var(--shadow-soft);
}

.form-intro {
  margin-bottom: 42px;
}

.form-intro h2 {
  margin-bottom: 19px;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.form-intro > p:last-child {
  color: var(--muted);
}

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

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

.form-grid label > span,
.admin-form label > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.form-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(10, 13, 18, 0.16);
  border-radius: var(--radius-s);
  background: #f7f8fa;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(10, 13, 18, 0.3);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 0;
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.11);
}

.contact-preference {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  border: 0;
}

.contact-preference legend {
  width: 100%;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.contact-preference label {
  cursor: pointer;
}

.contact-preference input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-preference span {
  display: block;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-preference input:checked + span {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: #004c9f;
}

.checkbox-row {
  display: flex;
  margin: 25px 0;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.checkbox-row a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-submit p span {
  color: var(--success);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.feedback {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-radius: var(--radius-s);
  font-size: 0.9rem;
}

.feedback-success {
  background: #e1f5ee;
  color: #075c43;
}

.feedback-error {
  background: #fde9e7;
  color: #8a1c16;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-item summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out);
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > p {
  max-width: 780px;
  margin: -8px 0 34px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* CTA */
.final-cta-section {
  padding-block: 0;
  background: var(--paper);
}

.cta-band {
  position: relative;
  display: grid;
  min-height: 620px;
  padding: clamp(44px, 8vw, 120px);
  align-content: center;
  overflow: hidden;
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 132, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #08090c 10%, #161a22 100%);
  color: white;
}

.cta-band::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow {
  color: #8cc7ff;
}

.cta-band h2 {
  max-width: 12ch;
  margin-bottom: 26px;
}

.cta-band > div:first-child > p:last-child {
  max-width: 650px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 11px;
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.cta-support {
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: 0.86rem;
}

.cta-support a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Articles, legal and admin */
.article,
.legal-sheet {
  width: min(900px, calc(100vw - 48px));
  margin-inline: auto;
}

.article {
  padding-top: calc(var(--header-h) + 100px);
}

.article h1,
.legal-sheet h1 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.article > p,
.article > div,
.legal-sheet p,
.legal-sheet li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article > img {
  width: 100%;
  margin-block: 44px;
  border-radius: var(--radius-m);
}

.legal-sheet {
  padding: clamp(110px, 13vw, 180px) clamp(24px, 6vw, 80px) 80px;
  border-radius: var(--radius-m);
  background: white;
}

.legal-sheet h2 {
  margin-top: 58px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.admin-tabs {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tabs a,
.pill {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
}

.admin-tabs a.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 3rem;
  font-weight: 650;
}

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

.admin-actions {
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-card {
  overflow-x: auto;
}

/* Footer */
.site-footer {
  padding-top: clamp(120px, 15vw, 220px);
  background: var(--ink);
  color: white;
}

.footer-intro {
  padding-bottom: clamp(86px, 11vw, 150px);
  border-bottom: 1px solid var(--line-light);
}

.footer-intro .eyebrow {
  color: #8cc7ff;
}

.footer-intro h2 {
  max-width: 13ch;
  margin-bottom: 32px;
}

.footer-shell {
  display: grid;
  padding-block: 68px;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: clamp(34px, 6vw, 96px);
}

.brand-footer {
  margin-bottom: 24px;
}

.footer-copy {
  max-width: 330px;
  color: var(--muted-light);
}

.footer-column h3 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column p {
  color: var(--muted-light);
  font-size: 0.86rem;
  line-height: 1.9;
}

.footer-column a,
.footer-link-button {
  color: white;
  transition: opacity 180ms ease;
}

.footer-column a:hover,
.footer-link-button:hover {
  opacity: 0.62;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  padding: 25px 0 36px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.consent-banner {
  position: fixed;
  z-index: 1300;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: min(940px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 17px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(13, 15, 19, 0.91);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color: white;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy {
  display: grid;
  gap: 2px;
  font-size: 0.8rem;
}

.consent-copy span {
  color: var(--muted-light);
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-actions .button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.76rem;
}

.wa-float {
  position: fixed;
  z-index: 900;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(9, 10, 12, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  color: white;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 220ms var(--ease-out), bottom 250ms var(--ease-out);
}

.wa-float:hover {
  transform: translateY(-3px);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

.wa-float.is-raised {
  bottom: 118px;
}

/* Reveal and page transitions */
.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

.brand {
  view-transition-name: brand;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 320ms;
  animation-timing-function: var(--ease-out);
}

@supports (content-visibility: auto) {
  .media-story,
  .service-section,
  .sector-panel,
  .project-card {
    content-visibility: auto;
    contain-intrinsic-width: 0;
    contain-intrinsic-height: 700px;
  }
}

@container (max-width: 760px) {
  .media-story,
  .media-story.is-reversed {
    grid-template-columns: 1fr;
  }

  .media-story.is-reversed .media-story-visual {
    order: 0;
  }
}

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

  .desktop-nav {
    gap: 16px;
  }

  .header-utility {
    display: none;
  }

  .hero-copy {
    width: min(710px, 68%);
  }

  .media-story {
    gap: 58px;
  }

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

  .project-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }

  .footer-shell {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 68px;
  }

  .desktop-nav,
  .header-utility,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-section,
  .hero-content {
    min-height: 850px;
  }

  .hero-copy {
    width: min(710px, 86%);
  }

  .hero-brandline {
    font-size: clamp(3.2rem, 10vw, 6.5rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 6, 0.91) 0%, rgba(3, 4, 6, 0.62) 53%, rgba(3, 4, 6, 0.13) 100%),
      linear-gradient(0deg, rgba(3, 4, 6, 0.68) 0%, transparent 50%);
  }

  .media-story,
  .media-story.is-reversed {
    grid-template-columns: 1fr;
  }

  .media-story.is-reversed .media-story-visual {
    order: 0;
  }

  .media-story-visual {
    min-height: min(78vw, 720px);
  }

  .media-story-copy {
    max-width: 720px;
  }

  .chapter-section {
    padding-bottom: 110px;
  }

  .chapter-intro {
    margin-bottom: 90px;
  }

  .scroll-chapter {
    min-height: auto;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .scroll-chapter:last-child {
    padding-bottom: 0;
  }

  .scroll-chapter::after {
    bottom: 54px;
  }

  .scroll-chapter:last-child::after {
    display: none;
  }

  .chapter-visual,
  .chapter-copy {
    position: relative;
    top: auto;
    opacity: 1;
    transform: none;
  }

  .chapter-visual {
    height: min(72vw, 680px);
    min-height: 480px;
    clip-path: none;
  }

  .chapter-image {
    transform: scale(1.025);
    filter: none;
  }

  .chapter-copy {
    max-width: 760px;
    padding: 8px 0 30px;
  }

  .chapter-progress {
    display: none;
  }

  .service-row {
    grid-template-columns: 80px 0.85fr 1.2fr;
  }

  .service-row.has-preview {
    grid-template-columns: 80px 0.85fr 1.2fr;
  }

  .service-row.has-preview .service-preview {
    min-height: 300px;
    grid-column: 2 / -1;
  }

  .sector-panel {
    min-height: 500px;
  }

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

  .contact-aside {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-image {
    grid-row: span 2;
    aspect-ratio: auto;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 36px, 680px);
    --radius-l: 28px;
    --radius-m: 20px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11vw, 4.5rem);
  }

  .section {
    padding-block: 96px;
  }

  .section-tight {
    padding-block: 58px;
  }

  .site-header {
    background: rgba(7, 8, 10, 0.76);
  }

  .hero-section,
  .hero-content {
    min-height: 820px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 86px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-brandline {
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .hero-media {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 4, 6, 0.96) 5%, rgba(3, 4, 6, 0.64) 54%, rgba(3, 4, 6, 0.15) 100%),
      linear-gradient(90deg, rgba(3, 4, 6, 0.36), transparent);
  }

  .hero-scroll {
    display: none;
  }

  .proof-grid,
  .process-line,
  .sector-grid,
  .project-grid,
  .split-grid,
  .admin-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-card:last-child {
    border-bottom: 0;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-line {
    margin-top: 80px;
    border-top: 0;
  }

  .process-line article,
  .process-line article:not(:first-child),
  .process-line article:last-child {
    min-height: auto;
    padding: 30px 0 34px 35px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-line article::before,
  .process-line article:not(:first-child)::before {
    top: 34px;
    left: 0;
    box-shadow: 0 0 0 7px var(--paper);
  }

  .process-line article > span {
    margin-bottom: 16px;
  }

  .media-story-list {
    gap: 105px;
  }

  .media-story {
    gap: 35px;
  }

  .media-story-visual {
    min-height: 75vw;
  }

  .chapter-section {
    padding-top: 105px;
  }

  .chapter-intro h2 {
    font-size: clamp(3rem, 14vw, 5.3rem);
  }

  .chapter-visual {
    height: 76vw;
    min-height: 340px;
    border-radius: 28px;
  }

  .chapter-copy h3 {
    font-size: clamp(2.3rem, 11vw, 4.2rem);
  }

  .service-row {
    min-height: auto;
    padding: 34px 0;
    grid-template-columns: 42px 1fr;
  }

  .service-detail {
    grid-column: 2;
  }

  .service-row.has-preview .service-preview {
    min-height: 240px;
    grid-column: 2;
  }

  .sector-panel,
  .sector-panel:nth-child(3n + 1) {
    min-height: 510px;
    grid-column: auto;
  }

  .sector-copy {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }

  .sector-copy h3 {
    font-size: 2.6rem;
  }

  .project-card:last-child {
    grid-column: auto;
    display: block;
  }

  .page-intro {
    min-height: 72svh;
    padding-bottom: 74px;
  }

  .page-intro h1 {
    font-size: clamp(3rem, 13vw, 5.3rem);
  }

  .contact-aside {
    display: block;
  }

  .contact-image {
    aspect-ratio: 1.2;
  }

  .lead-panel {
    padding: 30px 22px;
  }

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

  .form-full {
    grid-column: auto;
  }

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

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

  .cta-band {
    min-height: 620px;
    padding: 54px 26px;
  }

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

  .footer-brand-column {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line-light);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
  }

  .wa-float.is-raised {
    bottom: 185px;
  }

  .admin-table {
    min-width: 720px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

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

  .contact-preference span {
    padding-inline: 8px;
    text-align: center;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-parallax-media] {
    transform: none !important;
  }

  .hero-copy,
  .chapter-visual,
  .chapter-copy,
  .chapter-image {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  .has-js [data-reveal],
  .has-js [data-hero-copy] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
