@font-face {
  font-family: "Outfit Footer";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/outfit-variable-latin.woff2") format("woff2");
}

:root {
  --ink: #0b1726;
  --midnight: #10233a;
  --paper: #f8f6ef;
  --white: #fdfdfd;
  --steel: #536171;
  --line: #d8ded8;
  --blue: #0873be;
  --blue-light: #2aa5e7;
  --green: #45a41b;
  --green-light: #8bcc4a;
  --amber: #f4b23b;
  --mist: #eaf2ea;
  --red: #b84a3b;
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: min(100% - 3rem, 81.25rem);
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --shadow: 0 1.5rem 4rem rgba(11, 23, 38, 0.12);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}
.page-home #main { background: #fff; }

html.menu-open,
body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h3 { line-height: 1.1; letter-spacing: -0.025em; }

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

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(5.5rem, 10vw, 10rem); }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 99rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.eyebrow,
.manifest-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.manifest-label { font-family: var(--font-mono); color: var(--steel); }

.site-header {
  --nav-u: clamp(4px, .5208333333vw, 10px);
  --nav-font: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  height: 0;
  color: #042940;
  font-family: var(--nav-font);
}
.site-header__strip {
  position: fixed;
  z-index: 95;
  top: calc(1.6 * var(--nav-u));
  width: calc(124.44 * var(--nav-u));
  height: calc(7 * var(--nav-u));
  padding: calc(.6 * var(--nav-u)) calc(.6 * var(--nav-u)) calc(.6 * var(--nav-u)) calc(3 * var(--nav-u));
  border: 0;
  border-radius: calc(1.6 * var(--nav-u));
  background: #fdfdfd;
  box-shadow: inset 0 0 0 1px rgba(4, 41, 64, .05);
  animation: nav-enter 1.2s cubic-bezier(.65, 0, .35, 1) both;
}
.site-header__strip.is-scrolled { background: #fdfdfd; }
.site-header__grid {
  display: grid;
  height: 100%;
  grid-template-columns: calc(9.8 * var(--nav-u)) minmax(0, 1fr);
  align-items: center;
  gap: calc(5.6 * var(--nav-u));
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; min-height: 44px; font-size: 1rem; font-weight: 750; letter-spacing: -0.03em; }
.brand img { width: 2.65rem; height: 2.65rem; object-fit: contain; }
.brand--inverse { color: var(--white); }
.brand--navbar {
  width: calc(9.8 * var(--nav-u));
  height: calc(3.2 * var(--nav-u));
  min-height: 0;
  gap: calc(.45 * var(--nav-u));
  color: #042940;
  line-height: 1;
}
.brand--navbar img { width: calc(3.2 * var(--nav-u)); height: calc(3.2 * var(--nav-u)); flex: none; }
.brand__type { display: grid; flex: 1; min-width: 0; align-content: center; }
.brand__type strong { font-family: Arial, sans-serif; font-size: calc(1.48 * var(--nav-u)); font-weight: 900; line-height: .84; letter-spacing: -.075em; }
.brand__type small { margin-top: calc(.22 * var(--nav-u)); font-family: Arial, sans-serif; font-size: calc(.48 * var(--nav-u)); font-weight: 800; line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.site-header__menu { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: calc(5.6 * var(--nav-u)); }
.desktop-nav { display: grid; min-width: 0; grid-auto-flow: column; grid-auto-columns: max-content; align-items: center; justify-content: start; margin-inline: calc(-1.5 * var(--nav-u)); }
.nav-cluster { position: relative; padding-inline: calc(1.5 * var(--nav-u)); }
.nav-toggle {
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: calc(.72 * var(--nav-u));
  background: transparent;
  color: inherit;
  font-family: var(--nav-font);
  font-size: calc(1.8 * var(--nav-u));
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
}
.desktop-nav > .nav-toggle { padding-inline: calc(1.5 * var(--nav-u)); }
.nav-cluster.is-active > .nav-toggle,
.nav-toggle.is-active { color: var(--green); }
.nav-caret {
  position: relative;
  display: block;
  width: calc(.9 * var(--nav-u));
  height: calc(.5 * var(--nav-u));
  transition: transform 300ms var(--ease);
}
.nav-caret::before,
.nav-caret::after { content: ""; position: absolute; top: 42%; width: 58%; height: 1px; border-radius: 1px; background: rgba(4, 41, 64, .42); }
.nav-caret::before { left: 0; transform: rotate(38deg); transform-origin: right; }
.nav-caret::after { right: 0; transform: rotate(-38deg); transform-origin: left; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: calc(1.5 * var(--nav-u));
  z-index: 2;
  min-width: calc(28.8 * var(--nav-u));
  margin-top: calc(3.1 * var(--nav-u));
  padding: calc(1.3 * var(--nav-u)) calc(.85 * var(--nav-u));
  border: 1px solid rgba(4, 41, 64, .05);
  border-radius: calc(1.6 * var(--nav-u));
  background: #fdfdfd;
  opacity: 0;
  transform: translateY(2%);
  visibility: hidden;
  transition: opacity 200ms, transform 200ms, visibility 0s 200ms;
}
.nav-dropdown::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: calc(3.72 * var(--nav-u)); }
.nav-dropdown--products { max-height: min(70vh, calc(49 * var(--nav-u))); overflow-y: auto; }
.nav-cluster:hover > .nav-dropdown,
.nav-cluster.is-open > .nav-dropdown { opacity: 1; transform: none; visibility: visible; transition: opacity .4s, transform .8s cubic-bezier(.16, 1, .3, 1); }
.nav-cluster:hover > .nav-toggle .nav-caret,
.nav-cluster.is-open > .nav-toggle .nav-caret { transform: rotate(180deg); }
.nav-dropdown__link {
  display: grid;
  min-height: calc(4.75 * var(--nav-u));
  padding: calc(1.2 * var(--nav-u)) calc(1.65 * var(--nav-u));
  border-radius: calc(1 * var(--nav-u));
  grid-template-columns: calc(1.2 * var(--nav-u)) auto;
  align-items: center;
  gap: calc(1.5 * var(--nav-u));
  font-size: calc(1.8 * var(--nav-u));
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  transition: opacity .4s, color .4s, background-color .3s;
}
.nav-dropdown__link > span:first-child { width: calc(1.2 * var(--nav-u)); height: calc(1.2 * var(--nav-u)); border-radius: calc(.4 * var(--nav-u)); background: var(--green); }
.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible { background: rgba(223, 226, 231, .3); }
.nav-dropdown:has(.nav-dropdown__link:hover) .nav-dropdown__link:not(:hover) { opacity: .3; }
.nav-actions { display: grid; grid-auto-flow: column; gap: calc(.8 * var(--nav-u)); }
.nav-action {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  height: calc(5.8 * var(--nav-u));
  align-items: center;
  justify-content: center;
  gap: calc(.8 * var(--nav-u));
  border: 1px solid rgba(4, 41, 64, .1);
  border-radius: calc(1.2 * var(--nav-u));
  font-size: calc(1.8 * var(--nav-u));
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
  transform: translateZ(0);
  transition: background-color 220ms, border-color 220ms, color 220ms;
}
.nav-action::before,
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0);
  transform-origin: center calc(50% + 3.7rem);
  transition: transform 0s .4s, opacity .4s;
}
.nav-action > *,
.button > * { position: relative; z-index: 1; }
.nav-action--secondary { width: calc(21.94 * var(--nav-u)); background: #fdfdfd; }
.nav-action--primary { width: calc(17.74 * var(--nav-u)); border: 0; background: #aad902; }
.nav-action--primary:hover { background: #b9e52a; }
.nav-action__icon { display: grid; width: calc(2.2 * var(--nav-u)); height: calc(2.2 * var(--nav-u)); place-items: center; font-size: calc(2.2 * var(--nav-u)); line-height: 1; }
.nav-action__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-brand-icon { display: block; flex: none; object-fit: contain; }
.nav-action__icon .whatsapp-brand-icon { width: 100%; height: 100%; }
.nav-action--whatsapp .nav-action__icon { width: calc(2 * var(--nav-u)); height: calc(2 * var(--nav-u)); }
.nav-action__title { position: relative; display: block; overflow: hidden; }
.nav-action__title > span { display: block; }
.nav-action__title > span[aria-hidden="true"] { position: absolute; top: 0; left: 0; transform: translateY(100%) scale(.9); }
.nav-action--whatsapp.is-disabled { opacity: .62; cursor: not-allowed; }
.mobile-shortcut,
.menu-toggle,
.mobile-menu,
.menu-backdrop { display: none; }

@keyframes nav-enter {
  from { transform: translateY(-130%); }
  to { transform: translateY(0); }
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: calc(6 * var(--ref-u, 10px));
  min-height: 40px;
  gap: calc(.8 * var(--ref-u, 10px));
  padding: 0 calc(2.6 * var(--ref-u, 10px));
  border: 1px solid transparent;
  border-radius: calc(1.6 * var(--ref-u, 10px));
  color: #042940;
  font: 500 calc(1.8 * var(--ref-u, 10px))/1.5 "Outfit Footer", var(--font-body);
  letter-spacing: -.01em;
  cursor: pointer;
  transform: translateZ(0);
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.button__title { position: relative; display: block; overflow: hidden; }
.button__title > span { display: block; }
.button__title > span[aria-hidden="true"] { position: absolute; top: 0; left: 0; transform: translateY(100%) scale(.9); }
.button__icon { display: block; width: calc(2.4 * var(--ref-u, 10px)); height: calc(2.4 * var(--ref-u, 10px)); font-size: calc(2.1 * var(--ref-u, 10px)); line-height: 1.05; text-align: center; }
.button--primary { border-color: #aad902; background: #aad902; }
.button--secondary { border-color: rgba(4,41,64,.1); background: #fff; }
.button--secondary::before { background: rgba(170,217,2,.24); }
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: .25em; transition: color .2s, opacity .2s; }
.text-link:hover, .text-link:focus-visible { color: var(--midnight); text-decoration: none; opacity: .8; }


.hero-sequence {
  --hero-unit: .5208333333vw;
  position: relative;
  height: 150vh;
  overflow: clip;
  background: #e7ecef;
  color: #042940;
}
.hero-sequence__bound { position: absolute; inset: 0 0 -100vh; }
.hero-sequence__viewport {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #e7ecef;
}
.hero-sequence__bg { position: absolute; inset: 0; display: block; overflow: hidden; }
.hero-sequence__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  animation: hero-scene-enter 2s cubic-bezier(.2, 0, 0, 1) both;
}
.hero-sequence__scene {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}
.hero-sequence__scene canvas {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  flex: none;
  transform-origin: 50% 50%;
  animation: hero-scene-enter 2s cubic-bezier(.2, 0, 0, 1) both;
}
.hero-sequence__glow {
  position: absolute;
  z-index: 1;
  top: calc(-25 * var(--hero-unit));
  left: calc(50% - 52 * var(--hero-unit));
  width: calc(104 * var(--hero-unit));
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #fff, #fff0);
  opacity: var(--hero-glow-opacity, 1);
  pointer-events: none;
}
.hero-sequence__content {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100vh;
  height: 100svh;
  padding-top: calc(18 * var(--hero-unit));
  grid-template-rows: min-content;
  pointer-events: none;
}
.hero-sequence__container { width: calc(100% - 62 * var(--hero-unit)); margin-inline: auto; }
.hero-sequence__header { overflow: hidden; max-width: calc(69.5 * var(--hero-unit)); margin-inline: auto; padding-top: 2px; text-align: center; }
.hero-sequence__header h1 {
  color: #042940;
  font-family: "DIN Condensed", "Arial Narrow", "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-size: calc(7.2 * var(--hero-unit));
  font-stretch: condensed;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero-sequence__header h1 span,
.hero-sequence__header h1 strong {
  display: block;
  animation: hero-copy-enter 2s cubic-bezier(.65, 0, .35, 1) both;
}
.hero-sequence__header h1 strong { animation-delay: .08s; }
.hero-sequence__header h1 strong { color: #aad902; font-weight: inherit; }
.hero-sequence__text {
  overflow: hidden;
  max-width: calc(39 * var(--hero-unit));
  margin: calc(2 * var(--hero-unit)) auto 0;
  text-align: center;
}
.hero-sequence__text p {
  color: #042940;
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-size: calc(1.8 * var(--hero-unit));
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.01em;
  animation: hero-copy-enter 2s .4s cubic-bezier(.65, 0, .35, 1) both;
}
.hero-sequence__scroll {
  position: absolute;
  z-index: 3;
  bottom: calc(4 * var(--hero-unit));
  left: 50%;
  color: #fdfdfd;
  opacity: var(--hero-scroll-opacity, 1);
  transform: translateX(-50%);
}
.hero-scroll-link { display: grid; min-width: 44px; justify-items: center; gap: calc(1.5 * var(--hero-unit)); }
.hero-scroll-link__mouse {
  position: relative;
  display: block;
  width: calc(3.6 * var(--hero-unit));
  height: calc(6 * var(--hero-unit));
  border: 1px solid currentColor;
  border-radius: calc(2 * var(--hero-unit));
  animation: hero-cue-enter 1s .4s cubic-bezier(.2, 0, 0, 1) both;
}
.hero-scroll-link__mouse span {
  position: absolute;
  top: calc(1.3 * var(--hero-unit));
  left: 50%;
  width: calc(.8 * var(--hero-unit));
  height: calc(.8 * var(--hero-unit));
  border-radius: 50%;
  background: currentColor;
  animation: hero-scroll-dot 1.5s ease-in-out infinite;
  transform: translateX(-50%);
}
.hero-scroll-link__label {
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-size: calc(1.6 * var(--hero-unit));
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  animation: hero-cue-enter 1s .5s cubic-bezier(.2, 0, 0, 1) both;
}
@keyframes hero-scene-enter { from { transform: scale(1.15); } to { transform: scale(1); } }
@keyframes hero-copy-enter { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-cue-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes hero-scroll-dot {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  20% { opacity: 1; }
  70% { opacity: 1; transform: translate(-50%, calc(2 * var(--hero-unit))); }
}

@media (min-width: 48rem) and (min-aspect-ratio: 16/9) {
  .hero-sequence__scene canvas { width: 100%; height: auto; }
}

.section-heading { max-width: 62rem; margin-bottom: clamp(2.75rem, 5vw, 5rem); }
.section-heading .eyebrow { margin-bottom: 1rem; color: var(--blue); }
.section-heading h2 { max-width: 16ch; font-size: clamp(3rem, 5.8vw, 6.2rem); }
.section-heading--split { display: grid; max-width: none; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: end; gap: 4rem; }
.section-heading--split > p { max-width: 38rem; padding-bottom: 0.35rem; color: var(--steel); font-size: 1.05rem; }

.intent-section { background: var(--paper); }
.intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.intent-card { display: flex; min-height: 29rem; flex-direction: column; padding: clamp(1.5rem, 2.5vw, 2.5rem); border-radius: var(--radius-md); transition: box-shadow 300ms var(--ease); }
.intent-card:hover { box-shadow: var(--shadow); }
.intent-card > span { font-family: var(--font-mono); font-size: 0.8rem; }
.intent-card h3 { max-width: 11ch; margin-top: auto; font-family: var(--font-display); font-size: clamp(2.25rem, 3.4vw, 3.75rem); font-weight: 800; }
.intent-card p { max-width: 31ch; margin-top: 1rem; }
.intent-card b { margin-top: 2rem; }
.intent-card--green { background: var(--green-light); }
.intent-card--blue { background: var(--blue); color: var(--white); }
.intent-card--amber { background: var(--amber); }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.signal-strip > div { display: flex; width: max-content; min-width: 100%; align-items: center; justify-content: space-around; }
.signal-strip a { display: inline-flex; min-height: 4.5rem; align-items: center; padding-inline: 1.75rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.signal-strip a::before { content: ""; width: 0.5rem; height: 0.5rem; margin-right: 0.65rem; border-radius: 50%; background: var(--green); }

.product-showcase { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; }
.product-card { grid-column: span 4; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.product-card:nth-child(1), .product-card:nth-child(5) { grid-column: span 7; }
.product-card:nth-child(2), .product-card:nth-child(6) { grid-column: span 5; }
.product-card a { display: flex; height: 100%; flex-direction: column; }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--mist); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__copy { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.product-card h3 { margin-top: 0.75rem; font-size: clamp(1.6rem, 2.3vw, 2.4rem); }
.product-card p { max-width: 48ch; margin-top: 0.8rem; color: var(--steel); }
.product-card .text-link { margin-top: auto; padding-top: 1.5rem; }

.route-section { position: relative; background: var(--midnight); color: var(--white); }
.route-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.route-art { position: sticky; top: 7.5rem; overflow: hidden; border: 1px solid rgba(253,253,253,.14); border-radius: var(--radius-lg); background: rgba(253,253,253,.04); }
.route-art img { width: 100%; aspect-ratio: 8/5; object-fit: cover; }
.route-progress { position: absolute; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; height: 4px; overflow: hidden; border-radius: 9px; background: rgba(253,253,253,.15); }
.route-progress span { display: block; width: 100%; height: 100%; background: var(--green-light); transform: scaleX(var(--route-progress, .1)); transform-origin: left; }
.route-copy .eyebrow { color: var(--green-light); }
.route-copy > h2 { max-width: 12ch; margin-top: 1rem; font-size: clamp(3rem, 5vw, 5.6rem); }
.route-copy > p { max-width: 38rem; margin-top: 1.5rem; color: rgba(253,253,253,.72); }
.route-steps { margin: 3.5rem 0 2rem; padding: 0; list-style: none; }
.route-steps li { display: grid; min-height: 11rem; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 2rem; border-top: 1px solid rgba(253,253,253,.18); }
.route-steps li > span { font-family: var(--font-mono); color: var(--green-light); }
.route-steps h3 { font-size: 1.5rem; }
.route-steps p { max-width: 30rem; margin-top: 0.65rem; color: rgba(253,253,253,.65); }
.route-section .button { color: var(--ink); }

.scope-section { background: var(--mist); }
.scope-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(25rem, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.scope-copy .eyebrow { color: var(--green); }
.scope-copy h2 { max-width: 13ch; margin-top: 1rem; font-size: clamp(3rem, 5vw, 5.4rem); }
.scope-copy > p { max-width: 48ch; margin-top: 1.5rem; font-size: 1.1rem; }
.scope-copy .fine-print { color: var(--steel); font-size: 0.875rem; }
.scope-copy .button { margin-top: 2rem; }
.scope-ledger { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.scope-ledger span { padding: 1.5rem; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
.scope-ledger span:last-child { border-bottom: 0; }

.product-index { background: var(--paper); }
.product-rows { border-top: 1px solid var(--ink); }
.product-row { display: grid; grid-template-columns: 4rem minmax(0, 1fr) 13rem 3rem; align-items: center; min-height: 7.5rem; gap: 1rem; border-bottom: 1px solid var(--line); transition: color .4s, background-color .4s; }
.product-row:hover, .product-row:focus-visible { background: #042940; color: #fff; }
.product-row__number, .product-row__group { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; }
.product-row__number, .product-row__group { color: var(--steel); }
.product-row__name { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.product-row__arrow { font-size: 1.6rem; }

.brief-cta { background: var(--paper); }
.brief-cta__card { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; padding: clamp(2rem, 5vw, 5rem); border-radius: var(--radius-lg); background: var(--amber); }
.brief-cta__card h2 { max-width: 14ch; margin-top: 0.75rem; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.brief-cta__card p { max-width: 42rem; margin-top: 1rem; }
.brief-cta__card .button { flex: none; background: var(--ink); border-color: var(--ink); color: var(--white); }

.site-footer {
  --footer-u: 2.6666666667vw;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: #111;
  color: #fff;
  font-family: "Outfit Footer", "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}
.site-footer__content { padding: calc(6 * var(--footer-u)) 0; }
.footer-container { padding: 0 calc(2.5 * var(--footer-u)); }
.footer-main { display: grid; }
.footer-main__identity { padding-bottom: calc(4 * var(--footer-u)); }
.footer-main__navigation { padding-top: calc(4 * var(--footer-u)); border-top: 1px solid rgba(255,255,255,.1); }
.footer-logo {
  display: flex;
  width: calc(15 * var(--footer-u));
  height: calc(5 * var(--footer-u));
  align-items: center;
  gap: calc(1 * var(--footer-u));
  text-decoration: none;
}
.footer-logo img { width: calc(5 * var(--footer-u)); height: calc(5 * var(--footer-u)); flex: none; object-fit: contain; transform: scale(1.65); }
.footer-logo__type { display: grid; min-width: 0; flex: 1; align-content: center; line-height: 1; }
.footer-logo__type strong { font-family: Arial, sans-serif; font-size: calc(2.08 * var(--footer-u)); font-weight: 900; line-height: .84; letter-spacing: -.075em; }
.footer-logo__type small { margin-top: calc(.32 * var(--footer-u)); font-family: Arial, sans-serif; font-size: calc(.67 * var(--footer-u)); font-weight: 800; line-height: 1; white-space: nowrap; }
.footer-identity-copy { margin-top: calc(3 * var(--footer-u)); opacity: .5; font-size: calc(1.6 * var(--footer-u)); line-height: 1.4; }
.footer-identity-copy strong { font-weight: 700; }
.footer-socials { display: flex; align-items: center; gap: calc(1 * var(--footer-u)); margin-top: calc(3 * var(--footer-u)); }
.footer-social {
  position: relative;
  display: grid;
  width: calc(5.4 * var(--footer-u));
  height: calc(5.4 * var(--footer-u));
  border-radius: 50%;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform .4s;
}
.footer-social::before { content: ""; position: absolute; inset: 0; border: 1px solid currentColor; border-radius: inherit; opacity: .1; }
.footer-social svg { width: calc(2.4 * var(--footer-u)); height: calc(2.4 * var(--footer-u)); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-social svg .is-filled { fill: currentColor; stroke: none; }
.footer-nav-grid { display: grid; gap: calc(4 * var(--footer-u)); }
.footer-nav-group h2 {
  margin: 0 0 calc(2.4 * var(--footer-u));
  font-family: inherit;
  font-size: calc(1.6 * var(--footer-u));
  font-weight: 500;
  line-height: calc(2.02 * var(--footer-u));
  letter-spacing: 0;
  text-transform: none;
}
.footer-nav-group h2 a { text-decoration: none; }
.footer-nav-list { margin: calc(-.8 * var(--footer-u)) 0; }
.footer-nav__link {
  position: relative;
  display: block;
  padding: calc(.8 * var(--footer-u)) 0;
  font-size: calc(1.6 * var(--footer-u));
  line-height: calc(2.02 * var(--footer-u));
  text-decoration: none;
}
.footer-nav__link span { position: relative; display: inline-block; opacity: .5; }
.footer-nav__link--whatsapp { display: flex; align-items: center; gap: calc(.8 * var(--footer-u)); }
.footer-nav__link--whatsapp > .whatsapp-brand-icon { width: calc(2.1 * var(--footer-u)); height: calc(2.1 * var(--footer-u)); }
.footer-bottom { display: grid; gap: calc(2 * var(--footer-u)); margin-top: calc(4 * var(--footer-u)); }
.footer-legal-links { display: flex; margin: 0 calc(-1.2 * var(--footer-u)); }
.footer-legal-links a {
  display: block;
  padding: 0 calc(1.2 * var(--footer-u));
  opacity: .4;
  font-size: calc(1.4 * var(--footer-u));
  line-height: 1.4;
  text-decoration: none;
}
.footer-disclaimer { opacity: .4; font-size: calc(1.4 * var(--footer-u)); line-height: 1.4; }

@media (min-width: 48rem) {
  .site-footer { --footer-u: clamp(4px, .5208333333vw, 10px); }
  .site-footer__content { padding: calc(10 * var(--footer-u)) 0 calc(5 * var(--footer-u)); }
  .footer-container { padding: 0 calc(31 * var(--footer-u)); }
  .footer-main { min-height: calc(35.1 * var(--footer-u)); grid-template-columns: auto calc(80 * var(--footer-u)); }
  .footer-main__identity { padding-bottom: 0; }
  .footer-main__navigation { padding-top: 0; border-top: 0; }
  .footer-logo { width: calc(19.9 * var(--footer-u)); height: calc(6.5 * var(--footer-u)); gap: calc(1.2 * var(--footer-u)); }
  .footer-logo img { width: calc(6.5 * var(--footer-u)); height: calc(6.5 * var(--footer-u)); }
  .footer-logo__type strong { font-size: calc(2.7 * var(--footer-u)); }
  .footer-logo__type small { margin-top: calc(.38 * var(--footer-u)); font-size: calc(.87 * var(--footer-u)); }
  .footer-identity-copy { margin-top: calc(5 * var(--footer-u)); font-size: calc(1.8 * var(--footer-u)); }
  .footer-socials { margin-top: calc(5 * var(--footer-u)); }
  .footer-social { width: calc(6 * var(--footer-u)); height: calc(6 * var(--footer-u)); }
  .footer-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-nav-group h2,
  .footer-nav__link { font-size: calc(1.8 * var(--footer-u)); line-height: calc(2.25 * var(--footer-u)); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: calc(10 * var(--footer-u)); }
  .footer-legal-links { margin: 0 calc(-1.5 * var(--footer-u)); }
  .footer-legal-links a { padding: 0 calc(1.5 * var(--footer-u)); font-size: calc(1.6 * var(--footer-u)); }
  .footer-disclaimer { font-size: calc(1.6 * var(--footer-u)); }
}

@media (min-width: 85rem) {
  .footer-nav-group h2,
  .footer-nav__link { line-height: calc(2.4 * var(--footer-u)); }
}

@media (min-width: 100rem) {
  .footer-container { max-width: 1920px; margin-inline: auto; }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link::before {
    content: "";
    position: absolute;
    top: calc(50% - .6 * var(--footer-u));
    display: block;
    width: calc(1.2 * var(--footer-u));
    height: calc(1.2 * var(--footer-u));
    border-radius: calc(.4 * var(--footer-u));
    background: var(--green-light);
    opacity: 0;
    transform: scale(.5) translate(calc(-1.5 * var(--footer-u)));
    transition: transform .6s cubic-bezier(.25,1,.5,1), opacity .4s;
  }
  .footer-nav__link span { transition: transform .6s cubic-bezier(.25,1,.5,1); }
  .footer-nav__link:hover::before,
  .footer-nav__link:focus-visible::before { opacity: 1; transform: scale(1) translate(0); }
  .footer-nav__link:hover span,
  .footer-nav__link:focus-visible span { transform: translate(calc(2.7 * var(--footer-u))); }
  .footer-legal-links a { transition: opacity .3s; }
  .footer-legal-links a:hover,
  .footer-legal-links a:focus-visible { opacity: 1; }
  .footer-social:hover,
  .footer-social:focus-visible { transform: scale(.98); transition: transform .4s cubic-bezier(.34,6.56,.64,1); }
}

.interior-hero { padding-block: 12rem 7rem; background: var(--mist); }
.interior-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.interior-hero__copy .eyebrow { margin-bottom: 1.25rem; color: var(--blue); }
.interior-hero__copy h1 { max-width: 12ch; font-size: clamp(3.75rem, 7vw, 7.5rem); }
.interior-hero__copy p { max-width: 57ch; margin-top: 1.75rem; color: var(--steel); font-size: 1.1rem; }
.interior-hero__media { overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.interior-hero__media img { width: 100%; aspect-ratio: 8/5; object-fit: cover; }
.interior-hero--dark { background: var(--midnight); color: var(--white); }
.interior-hero--dark .interior-hero__copy p { color: rgba(253,253,253,.7); }
.interior-hero--green { background: var(--green-light); }
.interior-hero--green .interior-hero__copy .eyebrow { color: var(--ink); }
.interior-hero--blue { background: #dceff9; }

.qualification { display: grid; width: min(calc(100% - 3rem), 81.25rem); grid-template-columns: 2.5rem 1fr; gap: 1.25rem; margin: 2.5rem auto 0; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.qualification__mark { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); font-family: var(--font-mono); font-weight: 700; }
.qualification h2 { font-family: var(--font-body); font-size: 1rem; letter-spacing: -0.01em; }
.qualification p { max-width: 72ch; margin-top: 0.35rem; color: var(--steel); font-size: 0.9rem; }

.product-group + .product-group { padding-top: 0; }
.group-title { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 0.5rem; margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ink); }
.group-title .manifest-label { grid-column: 1 / -1; }
.group-title h2 { font-size: clamp(2.75rem, 5vw, 5rem); }
.group-title > span:last-child { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; }

.product-hero { padding-block: 11rem 5rem; background: var(--white); }
.product-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(24rem, .9fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.back-link { display: inline-flex; min-height: 44px; align-items: center; margin-bottom: 2rem; color: var(--steel); font-weight: 650; text-decoration: underline; text-underline-offset: .25em; transition: color .2s, opacity .2s; }
.back-link:hover, .back-link:focus-visible { color: #042940; text-decoration: none; opacity: .8; }
.product-hero__copy .eyebrow { display: block; color: var(--green); }
.product-hero__copy h1 { max-width: 12ch; margin-top: 1rem; font-size: clamp(3.5rem, 6.6vw, 7rem); }
.product-hero__copy > p { max-width: 58ch; margin-top: 1.5rem; color: var(--steel); font-size: 1.1rem; }
.product-hero__media { overflow: hidden; border-radius: var(--radius-lg); background: var(--mist); }
.product-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-section { background: var(--paper); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(19rem, .7fr); gap: clamp(3rem, 9vw, 9rem); }
.detail-grid > div:first-child > h2 { max-width: 13ch; margin-top: 1rem; font-size: clamp(3rem, 5vw, 5.2rem); }
.detail-grid > div:first-child > p { max-width: 52ch; margin-top: 1.5rem; color: var(--steel); }
.prompt-list { margin: 3rem 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.prompt-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-block: 1.35rem; border-bottom: 1px solid var(--line); }
.prompt-list span { font-family: var(--font-mono); color: var(--green); font-size: 0.75rem; }
.detail-aside .qualification { width: 100%; margin: 0; }
.mini-manifest { margin-top: 1rem; padding: 1.5rem; border-radius: var(--radius-md); background: var(--midnight); color: var(--white); }
.mini-manifest .manifest-label { color: var(--green-light); }
.mini-manifest dl { margin: 1.5rem 0 0; }
.mini-manifest dl div { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding-block: 0.8rem; border-top: 1px solid rgba(253,253,253,.15); }
.mini-manifest dt { color: rgba(253,253,253,.55); font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; }
.mini-manifest dd { margin: 0; font-size: 0.9rem; }
.related { background: var(--white); }
.related .product-card { grid-column: span 4; }

.editorial-grid { display: grid; grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.editorial-grid > div > h2 { max-width: 11ch; margin-top: 1rem; font-size: clamp(3rem, 5vw, 5rem); }
.editorial-grid > div > p { max-width: 36rem; margin-top: 1.5rem; color: var(--steel); }
.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.activity-grid li { min-height: 15rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.activity-grid li > span { font-family: var(--font-mono); color: var(--green); font-size: 0.75rem; }
.activity-grid h3 { margin-top: 3rem; font-size: 1.5rem; }
.activity-grid p { margin-top: 0.75rem; color: var(--steel); font-size: 0.9rem; }
.two-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.two-panel article { min-height: 26rem; padding: clamp(2rem, 4vw, 4rem); border-radius: var(--radius-md); background: var(--mist); }
.two-panel article:nth-child(2) { background: var(--amber); }
.two-panel h2 { max-width: 12ch; margin-top: auto; padding-top: 8rem; font-size: clamp(2.5rem, 4vw, 4.2rem); }
.two-panel p { max-width: 40rem; margin-top: 1.2rem; }
.two-panel .button { margin-top: 2rem; }

.statement { display: grid; grid-template-columns: 14rem minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
.statement h2 { max-width: 14ch; font-size: clamp(3rem, 5vw, 5.5rem); }
.statement p { grid-column: 2; max-width: 54rem; color: var(--steel); font-size: 1.1rem; }
.about-columns { padding-top: 0; }
.topic-ledger { background: var(--midnight); color: var(--white); }
.topic-ledger .eyebrow { color: var(--green-light); }
.topic-links { border-top: 1px solid rgba(253,253,253,.25); }
.topic-links a { display: flex; align-items: center; justify-content: space-between; min-height: 6rem; gap: 2rem; border-bottom: 1px solid rgba(253,253,253,.18); font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 3rem); font-weight: 800; }
.topic-links a:hover { color: var(--green-light); }

.process-stack { position: relative; background: var(--paper); }
.process-stack .shell { position: relative; }
.process-line { position: absolute; top: 0; bottom: 0; left: 4.4rem; width: 1px; background: var(--line); }
.process-card { position: relative; display: grid; grid-template-columns: 6rem minmax(15rem, .8fr) minmax(18rem, 1.2fr); align-items: start; gap: clamp(1.5rem, 5vw, 5rem); padding-block: 3.5rem; border-top: 1px solid var(--line); }
.process-card:last-child { border-bottom: 1px solid var(--line); }
.process-card > span { position: relative; z-index: 1; display: grid; width: 3.25rem; height: 3.25rem; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-family: var(--font-mono); }
.process-card h2 { font-size: clamp(2rem, 3.4vw, 3.8rem); }
.process-card p { max-width: 44rem; color: var(--steel); font-size: 1.05rem; }

.tool-section { background: var(--paper); }
.tool-grid { display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr); align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.tool-intro { position: sticky; top: 7rem; }
.tool-intro h2 { max-width: 11ch; margin-top: 1rem; font-size: clamp(3rem, 5vw, 5.2rem); }
.tool-intro > p { max-width: 38rem; margin-top: 1.5rem; color: var(--steel); }
.privacy-chip { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; margin-block: 2rem 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--mist); }
.privacy-chip > span { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--green); }
.privacy-chip p { color: var(--steel); font-size: 0.9rem; }
.privacy-chip strong { color: var(--ink); }
.brief-builder { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; padding: clamp(1.5rem, 3vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--wide { grid-column: 1 / -1; }
.field > label { display: flex; align-items: baseline; gap: .35rem; font-size: 0.875rem; font-weight: 750; }
.field-required { color: #b42318; font-weight: 900; }
.field-optional { margin-left: auto; color: var(--steel); font-size: .72em; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.form-requirement-note { color: var(--steel); font-size: .8rem; text-align: right; }
.form-requirement-note > span { color: #b42318; font-weight: 900; }
.field small { color: var(--steel); }
.field-error { color: #b42318 !important; font-weight: 700; }
.field-error[hidden] { display: none; }
.field input,
.field textarea,
.field select { width: 100%; min-height: 3.25rem; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); }
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue); outline: 3px solid rgba(42,165,231,.2); }
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #b42318; }
.phone-entry { display: flex; align-items: center; gap: .7rem; }
.phone-entry__prefix { min-width: 3.25rem; color: var(--steel); font-weight: 700; }
.phone-entry input { flex: 1; min-width: 0; }
.consent-field { padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.consent-control { display: flex; align-items: flex-start; gap: .8rem; cursor: pointer; }
.consent-field .consent-control input { width: 1.25rem; height: 1.25rem; min-height: 0; margin-top: .12rem; padding: 0; flex: none; accent-color: #79a900; }
.consent-control > span { line-height: 1.45; }
.builder-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding-top: 0.5rem; }
.text-button,
.icon-button { min-height: 44px; border: 0; background: transparent; color: var(--blue); font-weight: 750; cursor: pointer; transition: color .2s, background-color .2s, border-color .2s, opacity .2s; }
.text-button { text-decoration: underline; text-underline-offset: .25em; }
.text-button:hover, .text-button:focus-visible { color: var(--midnight); text-decoration: none; opacity: .8; }
.icon-button { padding-inline: 0.8rem; border: 1px solid var(--line); border-radius: 99rem; background: var(--white); }
.icon-button:hover, .icon-button:focus-visible { border-color: #aad902; background: #aad902; color: #042940; }
.builder-status { min-height: 1.5rem; color: var(--red); font-weight: 650; }
.brief-output {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.3vw, 2rem);
  border: 1px solid rgba(11,23,38,.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1.5rem 3.5rem rgba(11,23,38,.1);
  color: var(--ink);
}
.brief-output::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: .4rem;
  background: linear-gradient(90deg,var(--green) 0 42%,var(--blue) 42% 74%,var(--green-light) 74% 100%);
}
.brief-output__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding-top: .45rem; }
.brief-output__head > div:last-child { display: flex; gap: 0.5rem; }
.brief-output .manifest-label { display: inline-flex; align-items: center; gap: .65rem; color: var(--green); }
.brief-output .manifest-label::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 .3rem var(--mist); }
.brief-output h2 { margin-top: .7rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 800; line-height: .98; letter-spacing: -.035em; text-transform: uppercase; }
.brief-output .icon-button { border-color: rgba(11,23,38,.14); background: var(--paper); color: var(--blue); }
.brief-output .icon-button:hover,
.brief-output .icon-button:focus-visible { border-color: var(--green-light); background: var(--green-light); color: var(--ink); }
.brief-output pre {
  overflow-x: auto;
  margin: 1.5rem 0 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-left: .3rem solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font: .85rem/1.65 var(--font-mono);
  white-space: pre-wrap;
  word-break: break-word;
}
.brief-output__share { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.brief-output__share .button { min-width: min(100%, 13rem); }
.button--whatsapp .whatsapp-brand-icon,
.contact-action-list .whatsapp-brand-icon { width: 1.55rem; height: 1.55rem; padding: .12rem; border-radius: 50%; background: #fff; }
.brief-output > p { max-width: 62ch; margin-top: 1rem; color: var(--steel); font-size: 0.8rem; }

.legal-hero { padding-block: 13rem 6rem; background: var(--midnight); color: var(--white); }
.legal-hero .eyebrow { color: var(--green-light); }
.legal-hero h1 { max-width: 12ch; margin-top: 1rem; font-size: clamp(3.6rem, 7vw, 7rem); }
.legal-hero p { max-width: 55rem; margin-top: 1.5rem; color: rgba(253,253,253,.7); font-size: 1.1rem; }
.legal-body { max-width: 50rem; padding-block: 6rem 9rem; }
.legal-body section { margin-top: 3rem; }
.legal-body section:first-child { margin-top: 0; }
.legal-body h2 { margin-bottom: 1rem; font-family: var(--font-body); font-size: 1.75rem; line-height: 1.1; letter-spacing: -.025em; }
.legal-body p { color: var(--steel); line-height: 1.7; }
.legal-note { margin-top: 3.5rem; padding: 1.25rem; border-left: 4px solid var(--amber); background: #fff5dd; }

.not-found { position: relative; display: grid; min-height: 100svh; place-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.not-found > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.not-found .shell { position: relative; z-index: 1; padding-block: 10rem 5rem; }
.not-found .error-code { display: block; color: var(--green-light); font-family: var(--font-mono); font-size: clamp(4rem, 12vw, 10rem); font-weight: 800; line-height: .8; }
.not-found .eyebrow { margin-top: 2rem; }
.not-found h1 { max-width: 10ch; margin-top: 1rem; font-size: clamp(3.25rem, 7vw, 7rem); }
.not-found p { margin-top: 1.5rem; color: rgba(253,253,253,.7); }
.not-found .button--secondary { border-color: var(--white); color: var(--white); }

.reveal { opacity: 1; transform: none; }
.js .reveal,
html[data-js="true"] .reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html[data-js="true"] .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 67.5rem) {
  .product-card { grid-column: span 6; }
  .product-card:nth-child(1), .product-card:nth-child(2), .product-card:nth-child(5), .product-card:nth-child(6) { grid-column: span 6; }
}

@media (max-width: 47.99rem) {
  :root { --shell: min(100% - 2rem, 42rem); }
  .section { padding-block: 5.5rem; }
  .site-header { --nav-u: 2.6666666667vw; }
  .site-header__strip {
    top: calc(.8 * var(--nav-u));
    right: calc(.8 * var(--nav-u));
    left: calc(.8 * var(--nav-u));
    width: auto;
    height: calc(6 * var(--nav-u));
    padding: calc(.6 * var(--nav-u)) calc(.6 * var(--nav-u)) calc(.6 * var(--nav-u)) calc(1.6 * var(--nav-u));
    border-radius: calc(1.6 * var(--nav-u));
  }
  .site-header__grid { grid-template-columns: minmax(0, 1fr) min-content min-content; gap: calc(.6 * var(--nav-u)); }
  .brand--navbar { width: calc(8.6 * var(--nav-u)); height: calc(2.8 * var(--nav-u)); }
  .brand--navbar img { width: calc(2.8 * var(--nav-u)); height: calc(2.8 * var(--nav-u)); }
  .brand__type strong { font-size: calc(1.32 * var(--nav-u)); }
  .brand__type small { font-size: calc(.43 * var(--nav-u)); }
  .site-header__menu { display: none; }
  .mobile-shortcut,
  .menu-toggle {
    position: relative;
    display: grid;
    width: calc(4.8 * var(--nav-u));
    height: calc(4.8 * var(--nav-u));
    padding: 0;
    border-radius: calc(1.2 * var(--nav-u));
    place-content: center;
  }
  .mobile-shortcut {
    border: 0;
    grid-template-columns: repeat(2, calc(.68 * var(--nav-u)));
    grid-template-rows: repeat(2, calc(.68 * var(--nav-u)));
    gap: calc(.28 * var(--nav-u));
    background: #aad902;
  }
  .mobile-shortcut span { border: 1px solid #042940; border-radius: calc(.16 * var(--nav-u)); }
  .mobile-shortcut--whatsapp { display: grid; grid-template: none; color: #042940; }
  .mobile-shortcut--whatsapp .whatsapp-brand-icon { position: relative; z-index: 1; width: calc(2.3 * var(--nav-u)); height: calc(2.3 * var(--nav-u)); padding: 0; border-radius: 0; background: transparent; }
  .mobile-shortcut--whatsapp.is-disabled { opacity: .62; }
  .menu-toggle { border: 1px solid rgba(4, 41, 64, .1); background: transparent; cursor: pointer; }
  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(2.4 * var(--nav-u));
    height: calc(.2 * var(--nav-u));
    border-radius: calc(1 * var(--nav-u));
    background: #042940;
    transition: margin 200ms 300ms, transform 300ms 0ms;
  }
  .menu-toggle span:first-child { margin-top: calc(-.4 * var(--nav-u)); transform: translate(-50%, -50%); }
  .menu-toggle span:last-child { margin-top: calc(.4 * var(--nav-u)); transform: translate(-50%, -50%); }
  .menu-toggle[aria-expanded="true"] { border-color: #c78b16; }
  .menu-toggle[aria-expanded="true"] span { margin-top: 0; transition: margin 200ms, transform 300ms 200ms; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    background: #edeff2;
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    transition: clip-path .4s, visibility 0s .4s;
  }
  .menu-backdrop:not([hidden]) { clip-path: inset(0); visibility: visible; transition: clip-path 1s cubic-bezier(.16, 1, .3, 1); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 92;
    display: flex;
    overflow: auto;
    overflow-x: clip;
    flex-direction: column;
    padding: calc(9.8 * var(--nav-u)) calc(2.4 * var(--nav-u)) calc(2.4 * var(--nav-u));
    background: transparent;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    transition: clip-path .4s, opacity .2s, visibility 0s .4s;
  }
  .mobile-menu[aria-hidden="false"] { opacity: 1; clip-path: inset(0); visibility: visible; transition: clip-path 1s cubic-bezier(.16, 1, .3, 1), opacity .4s; }
  .mobile-nav { display: grid; }
  .mobile-nav > a,
  .mobile-nav__cluster > button {
    display: grid;
    width: 100%;
    min-height: calc(4.8 * var(--nav-u));
    padding: calc(1 * var(--nav-u)) 0;
    border: 0;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: #042940;
    font-family: var(--nav-font);
    font-size: calc(2 * var(--nav-u));
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.01em;
    text-align: left;
  }
  .mobile-nav__cluster > button { cursor: pointer; }
  .mobile-nav__cluster > button[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
  .mobile-nav__accordion { display: grid; overflow: hidden; grid-template-rows: 0fr; transition: grid-template-rows .4s; }
  .mobile-nav__accordion > div { min-height: 0; overflow: hidden; visibility: hidden; transition: visibility 0s .4s; }
  .mobile-nav__cluster > button[aria-expanded="true"] + .mobile-nav__accordion { grid-template-rows: 1fr; }
  .mobile-nav__cluster > button[aria-expanded="true"] + .mobile-nav__accordion > div { visibility: visible; transition: visibility 0s; }
  .mobile-nav__accordion > div {
    display: grid;
    margin: 0;
    padding: 0 calc(2 * var(--nav-u));
    border-radius: calc(1.6 * var(--nav-u));
    background: transparent;
    transition: padding .4s, margin .4s, background-color .4s, visibility 0s .4s;
  }
  .mobile-nav__cluster > button[aria-expanded="true"] + .mobile-nav__accordion > div {
    margin: calc(1 * var(--nav-u)) 0;
    padding: calc(1.2 * var(--nav-u)) calc(2 * var(--nav-u));
    background: #fdfdfd;
    transition: padding .4s, margin .4s, background-color .4s, visibility 0s;
  }
  .mobile-nav__accordion a {
    display: flex;
    min-height: calc(4.25 * var(--nav-u));
    align-items: center;
    color: #042940;
    font-size: calc(1.6 * var(--nav-u));
    line-height: 1.3;
  }
  .mobile-nav__accordion .nav-dropdown__link { display: flex; padding: 0; white-space: normal; }
  .mobile-nav__accordion .nav-dropdown__link > span { display: none; }
  .mobile-menu__cta {
    display: grid;
    width: 100%;
    min-height: calc(5.4 * var(--nav-u));
    margin-top: calc(3 * var(--nav-u));
    padding: 0 calc(2.4 * var(--nav-u));
    border-radius: calc(1.6 * var(--nav-u));
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: center;
    background: #aad902;
    color: #042940;
    font-size: calc(1.6 * var(--nav-u));
    font-weight: 500;
  }
  .mobile-menu__cta span:last-child { justify-self: start; font-size: calc(2.5 * var(--nav-u)); line-height: 1; }

  .hero-sequence {
    --hero-unit: 2.6666666667vw;
    height: 150vh;
    height: 150svh;
  }
  .hero-sequence__bound { inset: 0 0 -100vh; inset: 0 0 -100svh; }
  .hero-sequence__viewport { position: sticky; }
  .hero-sequence__bg { display: block; }
  .hero-sequence__scene { display: flex; }
  .hero-sequence__glow {
    top: calc(-10 * var(--hero-unit));
    left: calc(50% - 40 * var(--hero-unit));
    width: calc(80 * var(--hero-unit));
  }
  .hero-sequence__content { padding-top: calc(20.2 * var(--hero-unit)); }
  .hero-sequence__container { width: calc(100% - 5 * var(--hero-unit)); }
  .hero-sequence__header { max-width: 100%; }
  .hero-sequence__header h1 { font-size: calc(4 * var(--hero-unit)); }
  .hero-sequence__text { max-width: 100%; margin-top: calc(2 * var(--hero-unit)); }
  .hero-sequence__text p { font-size: calc(1.6 * var(--hero-unit)); }
  .hero-sequence__scroll { bottom: calc(2 * var(--hero-unit)); }
  .hero-scroll-link { gap: calc(1.2 * var(--hero-unit)); }
  .hero-scroll-link__mouse { width: calc(2.6 * var(--hero-unit)); height: calc(4.3 * var(--hero-unit)); }
  .hero-scroll-link__mouse span { top: calc(.9 * var(--hero-unit)); width: calc(.6 * var(--hero-unit)); height: calc(.6 * var(--hero-unit)); }
  .hero-scroll-link__label { font-size: calc(1.2 * var(--hero-unit)); }

  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 1.5rem; padding: 0; }
  .section-heading h2 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .intent-grid { display: flex; width: calc(100% + 1rem); overflow-x: auto; padding-right: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .intent-card { min-width: min(82vw, 21rem); min-height: 25rem; scroll-snap-align: start; }
  .signal-strip { overflow-x: auto; }
  .signal-strip > div { justify-content: flex-start; }
  .product-grid { display: flex; width: calc(100% + 1rem); overflow-x: auto; gap: .8rem; padding-right: 1rem; scroll-snap-type: x mandatory; }
  .product-card, .product-card:nth-child(n) { min-width: min(84vw, 22rem); scroll-snap-align: start; }
  .product-card h3 { font-size: 1.8rem; }

  .route-layout { display: flex; flex-direction: column; }
  .route-art { position: relative; top: auto; }
  .route-copy > h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .route-steps li { min-height: auto; }
  .scope-grid { display: block; }
  .scope-copy h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .scope-ledger { margin-top: 3rem; }
  .product-row { grid-template-columns: 2.5rem minmax(0,1fr) 2rem; min-height: 6rem; }
  .product-row__group { display: none; }
  .product-row__name { font-size: 1.75rem; }
  .brief-cta__card { display: block; }
  .brief-cta__card .button { width: 100%; margin-top: 2rem; }

  .interior-hero { padding-block: 9rem 4.5rem; }
  .interior-hero__grid { display: flex; flex-direction: column; align-items: stretch; gap: 2.5rem; }
  .interior-hero__copy h1 { font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .interior-hero__copy p { font-size: 1rem; }
  .interior-hero__media { border-radius: var(--radius-md); }
  .qualification { width: calc(100% - 2rem); }

  .product-hero { padding-block: 8.5rem 4.5rem; }
  .product-hero__grid { display: flex; flex-direction: column; align-items: stretch; gap: 2.5rem; }
  .product-hero__copy h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .detail-grid { display: block; }
  .detail-aside { margin-top: 3rem; }
  .related .product-grid { display: flex; }
  .group-title h2 { font-size: 2.6rem; }

  .editorial-grid { display: block; }
  .activity-grid { margin-top: 3rem; }
  .activity-grid li { min-height: 13rem; }
  .two-panel { display: block; }
  .two-panel article + article { margin-top: 1rem; }
  .two-panel h2 { padding-top: 5rem; }
  .statement { display: block; }
  .statement h2 { margin-top: 1rem; }
  .statement p { margin-top: 1.5rem; }
  .process-line { left: 1.6rem; }
  .process-card { grid-template-columns: 3.25rem 1fr; gap: 1rem; }
  .process-card h2 { align-self: center; font-size: 2rem; }
  .process-card p { grid-column: 2; }

  .tool-grid { display: block; }
  .tool-intro { position: static; }
  .brief-builder { grid-template-columns: 1fr; margin-top: 3rem; border-radius: var(--radius-md); }
  .field--wide { grid-column: auto; }
  .brief-output__head { display: block; }
  .brief-output__head > div:last-child { margin-top: 1rem; }

  .legal-hero { padding-block: 10rem 4.5rem; }
  .legal-body { padding-block: 4.5rem 7rem; }
  .not-found h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
}

@media (max-width: 27rem) {
  .button-row .button { width: 100%; }
  .activity-grid { grid-template-columns: 1fr; }
  .brief-output__head > div:last-child { flex-wrap: wrap; }
}

@media (hover: hover) and (pointer: fine) {
  .topic-links a span:last-child { transition: transform 200ms var(--ease); }
  .topic-links a:hover span:last-child,
  .topic-links a:focus-visible span:last-child { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; animation-iteration-count: 1 !important; }
  html[data-js="true"] .reveal { opacity: 1; transform: none; }
  .route-progress { display: none; }
  .hero-sequence { height: 100vh; height: 100svh; }
  .hero-sequence__bound { inset: 0; }
  .hero-sequence__viewport { position: relative; }
  .hero-sequence__scene canvas,
  .hero-sequence__bg img,
  .hero-sequence__header h1 span,
  .hero-sequence__header h1 strong,
  .hero-sequence__text p,
  .hero-scroll-link__mouse,
  .hero-scroll-link__label { animation: none; }
  .hero-scroll-link__mouse span { animation: none; opacity: 1; }
}

@media print {
  .site-header, .site-footer, .button, .brief-builder, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-hero { padding: 2rem 0; background: #fff; color: #000; }
  .legal-hero p, .legal-body p { color: #222; }
}

/* Phase 6 reference-derived body and subpage system. */
:root { --ref-u: .5208333333vw; }
.ref-container { width: 100%; margin-inline: auto; padding-inline: calc(31 * var(--ref-u)); }
.ref-heading { max-width: calc(69.2 * var(--ref-u)); margin-inline: auto; text-align: center; }
.ref-heading h1, .ref-heading h2 { color: #042940; font-family: var(--font-display); font-size: calc(7.2 * var(--ref-u)); font-weight: 900; line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.ref-heading strong { color: #aad902; font-weight: inherit; }
.ref-kicker { display: block; margin-bottom: calc(1.2 * var(--ref-u)); color: #aad902; font: 700 calc(1.6 * var(--ref-u))/1.2 "Outfit Footer", var(--font-body); letter-spacing: .06em; text-transform: uppercase; }
.ref-square-action, .ref-round-action { display: grid; width: calc(6 * var(--ref-u)); height: calc(6 * var(--ref-u)); flex: none; place-items: center; font: 500 calc(2.4 * var(--ref-u))/1 "Outfit Footer", var(--font-body); }
.ref-square-action { width: calc(8.8 * var(--ref-u)); height: calc(8.8 * var(--ref-u)); border-radius: calc(2.8 * var(--ref-u)); background: rgba(255,255,255,.72); color: #042940; backdrop-filter: blur(7.8px); transition: color .2s, background-color .2s, border-color .2s; }
.ref-round-action { border: 1px solid rgba(4,41,64,.12); border-radius: 50%; background: #fff; color: #042940; transition: color .2s, background-color .3s, border-color .3s, transform .4s; }

/* CardsSection */
.ref-cards-section { position: relative; padding: calc(15 * var(--ref-u)) 0 0; background: #fff; }
.ref-cards-section .ref-heading { margin-bottom: calc(15 * var(--ref-u)); }
.ref-route-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: calc(1.8 * var(--ref-u)); }
.ref-route-card { position: relative; display: flex; overflow: hidden; aspect-ratio: 421/730; flex-direction: column; justify-content: space-between; padding: calc(6 * var(--ref-u)) calc(5 * var(--ref-u)) calc(5 * var(--ref-u)); border-radius: calc(3.2 * var(--ref-u)); color: #fff; clip-path: inset(0 round calc(3.2 * var(--ref-u))); transition: clip-path 1.5s cubic-bezier(.16,1,.3,1); }
.ref-route-card__media { position: absolute; inset: 0; overflow: hidden; }
.ref-route-card__media img { position: absolute; inset: -2%; width: 104%; height: 104%; max-width: none; object-fit: cover; transition: opacity .8s cubic-bezier(.16,1,.3,1), transform 1.5s cubic-bezier(.16,1,.3,1); }
.ref-route-card__base { opacity: 1; }
.ref-route-card__hover { opacity: 0; transform: scale(1.035); }
.ref-route-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,41,64,.58),rgba(4,41,64,.04) 50%,rgba(4,41,64,.48)); }
.ref-route-card h3 { position: relative; z-index: 1; max-width: 8ch; font: 550 calc(4.8 * var(--ref-u))/.95 "Outfit Footer", var(--font-body); letter-spacing: -.02em; }
.ref-route-card .ref-square-action { position: relative; z-index: 1; }

/* LogoReelSection slot */
.ref-topic-reel { margin-block: calc(15 * var(--ref-u)); overflow: hidden; background: #fff; color: #536171; }
.ref-topic-reel p { margin-bottom: calc(7 * var(--ref-u)); color: #042940; font: 500 calc(3.2 * var(--ref-u))/1 "Outfit Footer", var(--font-body); text-align: center; }
.ref-topic-reel__track { display: flex; align-items: center; justify-content: space-between; gap: calc(2 * var(--ref-u)); }
.ref-topic-reel__track a { max-width: calc(15 * var(--ref-u)); font: 800 calc(1.8 * var(--ref-u))/1.05 var(--font-display); letter-spacing: -.02em; text-align: center; text-transform: uppercase; transition: opacity .2s; }

/* ShowCaseSection / Bento */
.ref-showcase { position: relative; z-index: 1; margin-block: calc(15 * var(--ref-u)); background: #fff; scroll-margin: calc(15 * var(--ref-u)); }
.ref-showcase__intro .ref-heading { max-width: calc(75 * var(--ref-u)); }
.ref-showcase__intro > p { max-width: calc(70 * var(--ref-u)); margin: calc(3.6 * var(--ref-u)) auto 0; color: #042940; font: 400 calc(1.8 * var(--ref-u))/1.54 "Outfit Footer", var(--font-body); text-align: center; }
.ref-showcase__intro > .button { display: flex; width: max-content; margin: calc(4 * var(--ref-u)) auto 0; }
.ref-showcase__bound { height: 400vh; margin-top: calc(7 * var(--ref-u)); }
.ref-showcase__roll { position: sticky; top: calc(50vh - 40.4 * var(--ref-u)); overflow: hidden; padding-inline: calc(10 * var(--ref-u)); }
.ref-showcase__items { display: grid; width: fit-content; grid-auto-flow: column; grid-auto-columns: calc(43 * var(--ref-u)) calc(40 * var(--ref-u)) calc(40 * var(--ref-u)); grid-template-rows: repeat(2,calc(40 * var(--ref-u))); gap: calc(.8 * var(--ref-u)); will-change: transform; }
.ref-showcase__item { position: relative; display: grid; overflow: hidden; align-items: end; padding: calc(.8 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); background: #edeff2; }
.ref-showcase__item:nth-child(4n - 3) { grid-row: 1 / 3; }
.ref-showcase__item:nth-child(8n - 6), .ref-showcase__item:nth-child(8n - 1) { grid-column: span 2; }
.ref-showcase__item > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(1.2); }
.ref-showcase__info { position: relative; z-index: 1; min-height: calc(25.2 * var(--ref-u)); padding: calc(4 * var(--ref-u)); border-radius: calc(2.8 * var(--ref-u)); background: linear-gradient(180deg,rgba(4,41,64,.18),rgba(4,41,64,.74)); color: #fff; backdrop-filter: blur(29.5px); }
.ref-showcase__info > span { display: block; margin-top: calc(4 * var(--ref-u)); font: 700 calc(4.8 * var(--ref-u))/1 "Outfit Footer", var(--font-body); font-variant-numeric: tabular-nums; }
.ref-showcase__info > p { margin-top: calc(1.2 * var(--ref-u)); font: 400 calc(1.8 * var(--ref-u))/1.4 "Outfit Footer", var(--font-body); }

/* Long-form pinned process composition */
.ref-process-scene { position: relative; z-index: 0; isolation: isolate; height: 600vh; margin-top: calc(30 * var(--ref-u)); background: transparent; color: #042940; }
.ref-process-scene__field { position: absolute; z-index: -1; top: -100vh; right: 0; bottom: 0; left: 0; background: #e3e6ee; opacity: 0; pointer-events: none; will-change: opacity; }
.ref-process-scene__viewport { position: sticky; z-index: 1; top: 0; height: 100vh; overflow: hidden; }
.ref-process-scene__intro { position: absolute; z-index: 2; inset: 0; display: grid; place-content: center; justify-items: center; padding-inline: calc(31 * var(--ref-u)); }
.ref-process-scene__intro > img { width: calc(19 * var(--ref-u)); height: calc(19 * var(--ref-u)); margin-bottom: calc(4 * var(--ref-u)); }
.ref-process-scene__intro .ref-heading { max-width: calc(78.6 * var(--ref-u)); }
.ref-process-scene__intro .ref-heading h2 { color: #042940; }
.ref-process-scene__stage { position: absolute; inset: 0; }
.ref-process-scene__media { position: absolute; inset: 0; overflow: hidden; background: #e3e6ee; opacity: 0; transform-origin: center; will-change: opacity,transform,border-radius; }
.ref-process-scene__poster, .ref-process-scene__scene { position: absolute; inset: 0; overflow: hidden; }
.ref-process-scene__poster img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ref-process-scene__scene canvas { position: absolute; top: 50%; left: 50%; width: auto; height: 100%; max-width: none; opacity: 0; transform: translate(-50%,-50%); }
.ref-process-scene[data-process-status="ready"] .ref-process-scene__scene canvas { opacity: 1; }
.ref-process-scene__truck { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; transform: translate3d(0,100%,0); transform-origin: center; will-change: opacity,transform; }
.ref-process-scene__truck img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ref-process-scene__specs { position: absolute; z-index: 2; top: 17vh; right: 16vw; display: grid; grid-template-columns: repeat(2,calc(16 * var(--ref-u))); gap: calc(1 * var(--ref-u)); }
.ref-process-scene__specs span { display: grid; aspect-ratio: 1; place-items: center; padding: calc(2 * var(--ref-u)); border: 1px solid rgba(4,41,64,.14); border-radius: 50%; background: rgba(255,255,255,.72); color: #042940; font: 600 calc(1.5 * var(--ref-u))/1.15 "Outfit Footer", var(--font-body); text-align: center; backdrop-filter: blur(10.9px); opacity: 0; transform: scale(.92); }

@media (min-width: 48rem) and (min-aspect-ratio: 16/9) {
  .ref-process-scene__scene canvas { width: 100%; height: auto; }
}

/* CoveredSection composition translated to non-geographic enquiry structure */
.ref-coverage { position: relative; height: 150vh; background: #edeff2; }
.ref-coverage__viewport { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.ref-coverage__plate { position: absolute; z-index: 2; inset: 0; display: grid; overflow: hidden; place-items: center; background: #042940; color: #fff; clip-path: inset(25% round calc(1.6 * var(--ref-u))); }
.ref-coverage__plate::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,41,64,.32),rgba(4,41,64,.74)); }
.ref-coverage__plate > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: .82; transform: scale(.75); transform-origin: center; will-change: transform; }
.ref-coverage__plate > strong { position: relative; z-index: 1; font: 900 calc(13 * var(--ref-u))/.82 var(--font-display); letter-spacing: -.03em; text-align: center; text-transform: uppercase; will-change: opacity; }
.ref-coverage__copy { position: absolute; z-index: 3; inset: 0; display: grid; place-items: center; color: #fff; opacity: 0; pointer-events: none; transform: translateY(3%); will-change: opacity,transform; }
.ref-coverage__copy > .ref-container { display: grid; justify-items: center; }
.ref-coverage__copy .ref-heading { max-width: calc(88 * var(--ref-u)); margin: 0; text-align: center; }
.ref-coverage__copy .ref-heading h2 { color: #fff; }
.ref-coverage__copy p { max-width: calc(70 * var(--ref-u)); margin-top: calc(3 * var(--ref-u)); color: rgba(255,255,255,.78); font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); text-align: center; }
.ref-coverage__copy .button { margin-top: calc(3 * var(--ref-u)); }

/* WideListSection */
.ref-wide-list { position: relative; overflow: hidden; padding-block: calc(15 * var(--ref-u)); background: #edeff2; }
.ref-wide-list .ref-heading { margin-bottom: calc(7 * var(--ref-u)); }
.ref-wide-list__rows { position: relative; z-index: 1; border-top: 1px solid rgba(4,41,64,.1); }
.ref-wide-list__row { position: relative; display: flex; min-height: calc(13 * var(--ref-u)); align-items: center; justify-content: center; gap: calc(2.5 * var(--ref-u)); padding: calc(4.8 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.1); color: #042940; transition: color .4s; }
.ref-wide-list__row::before { content: ""; position: absolute; inset: -1px 0 0; background: #042940; opacity: 0; transform: scaleY(0); transform-origin: top center; transition: transform 0s .4s, opacity .4s; }
.ref-wide-list__row > span:first-child { position: relative; z-index: 1; font: 400 calc(4 * var(--ref-u))/1 "Outfit Footer", var(--font-body); letter-spacing: -.02em; text-align: center; }
.ref-wide-list__row > .ref-round-action { position: relative; z-index: 1; }
.ref-wide-list__preview { position: absolute; z-index: 3; top: 50%; left: calc(11 * var(--ref-u)); width: calc(30 * var(--ref-u)); height: calc(15 * var(--ref-u)); overflow: hidden; border-radius: calc(1.6 * var(--ref-u)); opacity: 0; pointer-events: none; transform: translateY(-50%) rotate(-2deg) scale(.92); transition: opacity .25s, transform .7s cubic-bezier(.16,1,.3,1); }
.ref-wide-list__preview img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ref-wide-list__trail { position: absolute; z-index: 5; width: calc(30 * var(--ref-u)); height: calc(15 * var(--ref-u)); overflow: hidden; border-radius: calc(1.6 * var(--ref-u)); object-fit: cover; pointer-events: none; transform: translate(-50%,-50%); animation: ref-wide-list-trail .72s cubic-bezier(.16,1,.3,1) both; }

/* LatestEntriesSection */
.ref-latest { padding-block: calc(15 * var(--ref-u)); background: #fff; }
.ref-latest__grid { display: grid; grid-template-columns: 1fr calc(71 * var(--ref-u)); gap: calc(4 * var(--ref-u)); }
.ref-latest__heading .ref-heading { margin: 0; text-align: left; }
.ref-latest__heading .button { margin-top: calc(4 * var(--ref-u)); }
.ref-latest__rows { border-top: 1px solid rgba(4,41,64,.1); }
.ref-latest__row { display: grid; min-height: calc(22.24 * var(--ref-u) + 1px); grid-template-columns: 1fr auto; align-items: center; gap: calc(3 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.1); color: #042940; }
.ref-latest__row div > span { color: #536171; font: 500 calc(1.5 * var(--ref-u))/1.3 "Outfit Footer", var(--font-body); }
.ref-latest__row h3 { max-width: calc(50 * var(--ref-u)); margin-top: calc(.8 * var(--ref-u)); font: 700 calc(3.2 * var(--ref-u))/1.2 "Outfit Footer", var(--font-body); letter-spacing: -.02em; }

/* PartnerContactSection */
.ref-partner-section { padding-block: calc(15 * var(--ref-u)); background: #edeff2; }
.ref-partner-plate { position: relative; padding: calc(7 * var(--ref-u)); border-radius: calc(1.2 * var(--ref-u)); background: #fff; }
.ref-partner-plate__rail { position: absolute; inset: calc(-1.6 * var(--ref-u)); border: 2px solid rgba(4,41,64,.08); border-radius: calc(1.8 * var(--ref-u)); pointer-events: none; }
.ref-partner-plate__copy { max-width: calc(70 * var(--ref-u)); margin: calc(3 * var(--ref-u)) auto 0; color: #536171; font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); text-align: center; }
.ref-partner-plate__actions { display: flex; justify-content: center; gap: calc(1 * var(--ref-u)); margin-top: calc(4 * var(--ref-u)); }
.ref-partner-plate > .ref-brief-builder { max-width: calc(80 * var(--ref-u)); margin: calc(5 * var(--ref-u)) auto 0; }

/* Generic internal-page IntroSection */
.ref-intro { position: relative; display: flex; min-height: 100svh; overflow: hidden; align-items: flex-end; background: #042940; color: #fff; }
.ref-intro__media { position: absolute; inset: 0; }
.ref-intro__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(1.04); }
.ref-intro--dark-art .ref-intro__media img, .ref-intro--legal .ref-intro__media img { filter: brightness(.52) saturate(.8); }
.ref-intro__shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,41,64,.18) 20%,rgba(4,41,64,.88) 87%); }
.ref-intro__content { position: relative; z-index: 1; padding-bottom: calc(10 * var(--ref-u)); }
.ref-intro__content h1 { max-width: calc(90 * var(--ref-u)); font: 900 calc(7.2 * var(--ref-u))/.95 var(--font-display); letter-spacing: -.02em; text-transform: uppercase; }
.ref-intro__content p { max-width: calc(70 * var(--ref-u)); margin-top: calc(2.4 * var(--ref-u)); font: 400 calc(2.4 * var(--ref-u))/1.4 "Outfit Footer", var(--font-body); }

/* LatestEntries/WideEntry index family */
.ref-index-section { padding-block: calc(15 * var(--ref-u)); background: #edeff2; }
.ref-index-section__grid { display: grid; grid-template-columns: 1fr calc(71 * var(--ref-u)); gap: calc(7 * var(--ref-u)); align-items: start; }
.ref-index-section__heading { position: sticky; top: calc(10.2 * var(--ref-u)); }
.ref-index-section__heading .ref-heading { margin: 0; text-align: left; }
.ref-index-section__heading > p { margin-top: calc(3 * var(--ref-u)); color: #536171; font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.ref-wide-entries { border-top: 1px solid rgba(4,41,64,.1); }
.ref-wide-entry { display: grid; grid-template-columns: calc(40 * var(--ref-u)) 1fr auto; align-items: center; gap: calc(5 * var(--ref-u)); padding: calc(3 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.1); color: #042940; transition: color .4s,background-color .4s; }
.ref-wide-entry__media { overflow: hidden; aspect-ratio: 400/280; border-radius: calc(1.6 * var(--ref-u)); background: #fff; }
.ref-wide-entry__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 4s cubic-bezier(.16,1,.3,1); }
.ref-wide-entry__copy { display: grid; gap: calc(.8 * var(--ref-u)); }
.ref-wide-entry__copy small { color: #536171; font: 500 calc(1.4 * var(--ref-u))/1.3 "Outfit Footer", var(--font-body); text-transform: uppercase; }
.ref-wide-entry__copy strong { font: 800 calc(3.2 * var(--ref-u))/1.05 var(--font-display); text-transform: uppercase; }
.ref-wide-entry__copy > span { color: #536171; font: 400 calc(1.6 * var(--ref-u))/1.35 "Outfit Footer", var(--font-body); }

/* BillboardSection */
.ref-billboard { padding: calc(5 * var(--ref-u)) 0 calc(15 * var(--ref-u)); background: #edeff2; }
.ref-billboard__place { display: grid; grid-template-columns: calc(48 * var(--ref-u)) 1fr; align-items: center; gap: calc(8 * var(--ref-u)); padding: calc(5 * var(--ref-u)); border-radius: calc(.8 * var(--ref-u)); background: #042940; color: #fff; }
.ref-billboard__media { display: block; overflow: hidden; width: 100%; aspect-ratio: 8/5; border-radius: calc(.8 * var(--ref-u)); background: #fff; }
.ref-billboard__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.ref-billboard__place .ref-heading { margin: 0; text-align: left; }
.ref-billboard__place .ref-heading h2 { color: #fff; }
.ref-billboard__place p { max-width: calc(50 * var(--ref-u)); margin-top: calc(2.4 * var(--ref-u)); color: rgba(255,255,255,.7); font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.ref-billboard__place .button { margin-top: calc(3 * var(--ref-u)); }

/* ArticleSection */
.ref-article-section { padding: calc(23.8 * var(--ref-u)) 0 calc(15 * var(--ref-u)); background: #fff; }
.ref-article-grid { display: grid; grid-template-columns: calc(87 * var(--ref-u)) 1fr; gap: calc(7 * var(--ref-u)); align-items: start; }
.ref-article-main { color: #042940; font: 400 calc(1.8 * var(--ref-u))/1.6 "Outfit Footer", var(--font-body); }
.ref-article-main a, .ref-aside-card a { text-decoration: underline; text-underline-offset: .25em; transition: opacity .2s; }
.ref-article-main a:hover, .ref-article-main a:focus-visible, .ref-aside-card a:hover, .ref-aside-card a:focus-visible { text-decoration: none; opacity: .8; }
.ref-article-main h2 { margin: 0 0 calc(3 * var(--ref-u)); font: 800 calc(6.4 * var(--ref-u))/1 var(--font-display); letter-spacing: -.02em; text-transform: uppercase; }
.ref-article-main h2:not(:first-child) { margin-top: calc(6 * var(--ref-u)); }
.ref-article-main h3 { margin: calc(6 * var(--ref-u)) 0 calc(2.4 * var(--ref-u)); font: 800 calc(3.2 * var(--ref-u))/1.1 var(--font-display); text-transform: uppercase; }
.ref-article-main p + p { margin-top: calc(2 * var(--ref-u)); }
.ref-article-main blockquote { margin: calc(5 * var(--ref-u)) 0 0; padding: calc(2 * var(--ref-u)) calc(3 * var(--ref-u)); border-left: 3px solid #aad902; background: #edeff2; }
.ref-prompt-list, .ref-activity-list { margin: 0; padding: 0; border-top: 1px solid rgba(4,41,64,.14); list-style: none; }
.ref-prompt-list li, .ref-activity-list li { display: grid; grid-template-columns: calc(5 * var(--ref-u)) 1fr; gap: calc(2 * var(--ref-u)); padding-block: calc(2.4 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.12); }
.ref-prompt-list li > span, .ref-activity-list li > span { color: #aad902; font-weight: 700; }
.ref-activity-list h3 { margin: 0; font-size: calc(2.4 * var(--ref-u)); }
.ref-activity-list p { margin-top: calc(.8 * var(--ref-u)); color: #536171; }
.ref-article-figure { position: relative; margin: calc(7 * var(--ref-u)) 0 0; padding: calc(1.6 * var(--ref-u)); border: 2px solid rgba(4,41,64,.12); border-radius: calc(1.6 * var(--ref-u)); }
.ref-article-figure__media { display: block; overflow: hidden; aspect-ratio: 4/3; border-radius: calc(.8 * var(--ref-u)); background: #edeff2; }
.ref-article-figure__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ref-article-figure figcaption { margin-top: calc(1.2 * var(--ref-u)); color: #536171; font-size: calc(1.4 * var(--ref-u)); }
.ref-article-aside { position: sticky; top: calc(10.2 * var(--ref-u)); display: grid; gap: calc(1.6 * var(--ref-u)); }
.ref-aside-card { padding: calc(3 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); background: #edeff2; color: #042940; font: 400 calc(1.6 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.ref-aside-card--dark { background: #042940; color: #fff; }
.ref-aside-card dl { margin: 0; }
.ref-aside-card dl div { padding-block: calc(1.2 * var(--ref-u)); border-top: 1px solid rgba(255,255,255,.15); }
.ref-aside-card dt { color: rgba(255,255,255,.55); font-size: calc(1.2 * var(--ref-u)); text-transform: uppercase; }
.ref-aside-card dd { margin: calc(.4 * var(--ref-u)) 0 0; }

/* FeatureSection */
.ref-feature-section { padding-block: calc(15 * var(--ref-u)); background: #fff; }
.ref-feature-stack { display: grid; gap: calc(25 * var(--ref-u)); }
.ref-feature-row { display: grid; grid-template-columns: calc(60 * var(--ref-u)) 1fr; align-items: start; gap: calc(10 * var(--ref-u)); }
.ref-feature-row--reverse .ref-feature-row__media { grid-column: 2; }
.ref-feature-row--reverse .ref-feature-row__copy { grid-column: 1; grid-row: 1; }
.ref-feature-row__media { position: sticky; top: calc(10 * var(--ref-u)); overflow: hidden; aspect-ratio: 600/700; border-radius: calc(1.6 * var(--ref-u)); background: #edeff2; }
.ref-feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.ref-feature-row__copy { align-self: center; }
.ref-feature-row__copy .ref-heading { margin: 0; text-align: left; }
.ref-feature-row__copy > p { margin-top: calc(3 * var(--ref-u)); color: #536171; font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.ref-feature-row__copy .button { margin-top: calc(3 * var(--ref-u)); }

/* Covered/related handoff replacement */
.ref-related-handoff { padding-block: calc(15 * var(--ref-u)); background: #edeff2; }
.ref-related-handoff > .ref-container { display: grid; grid-template-columns: 1fr calc(71 * var(--ref-u)); gap: calc(7 * var(--ref-u)); }
.ref-related-handoff .ref-heading { margin: 0; text-align: left; }
.ref-related-handoff .button { margin-top: calc(3 * var(--ref-u)); }
.ref-related-handoff__links { border-top: 1px solid rgba(4,41,64,.18); }
.ref-related-handoff__links a { display: flex; min-height: calc(10 * var(--ref-u)); align-items: center; justify-content: space-between; gap: calc(2 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.14); font: 800 calc(3.2 * var(--ref-u))/1 var(--font-display); text-transform: uppercase; transition: color .4s; }
.ref-related-handoff--dark { background: #042940; color: #fff; }
.ref-related-handoff--dark .ref-heading h2 { color: #fff; }
.ref-related-handoff--dark p { margin-top: calc(3 * var(--ref-u)); color: rgba(255,255,255,.68); }
.ref-related-handoff--dark .ref-related-handoff__links, .ref-related-handoff--dark .ref-related-handoff__links a { border-color: rgba(255,255,255,.16); }

/* ProcessSection */
.ref-process-section { padding-block: calc(10 * var(--ref-u)); background: #edeff2; }
.ref-process-section__heading { max-width: calc(80 * var(--ref-u)); margin: 0 auto calc(8 * var(--ref-u)); text-align: center; }
.ref-process-section__heading > p { margin-top: calc(3 * var(--ref-u)); color: #536171; font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.ref-process-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: calc(5 * var(--ref-u)); }
.ref-process-card { min-height: calc(42 * var(--ref-u)); padding: calc(4 * var(--ref-u)) calc(3 * var(--ref-u)) calc(6.5 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); background: #fff; color: #042940; }
.ref-process-card > span { display: grid; width: calc(6 * var(--ref-u)); height: calc(6 * var(--ref-u)); place-items: center; border-radius: 50%; background: #aad902; font-weight: 800; }
.ref-process-card h2 { margin-top: calc(8 * var(--ref-u)); font: 800 calc(3.2 * var(--ref-u))/1 var(--font-display); text-transform: uppercase; }
.ref-process-card p { margin-top: calc(2 * var(--ref-u)); color: #536171; font: 400 calc(1.6 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }

/* Form-first utility */
.ref-form-section { padding-block: calc(15 * var(--ref-u)); background: #edeff2; }
.ref-form-section__grid { display: grid; grid-template-columns: calc(40 * var(--ref-u)) 1fr; gap: calc(10 * var(--ref-u)); align-items: start; }
.ref-form-section__intro { position: sticky; top: calc(10.2 * var(--ref-u)); }
.ref-form-section__intro h2 { font: 800 calc(6.4 * var(--ref-u))/1 var(--font-display); text-transform: uppercase; }
.ref-form-section__intro > p { margin-top: calc(2.4 * var(--ref-u)); color: #536171; font: 400 calc(1.8 * var(--ref-u))/1.5 "Outfit Footer", var(--font-body); }
.contact-action-list { display: grid; gap: calc(1 * var(--ref-u)); margin-top: calc(3 * var(--ref-u)); }
.contact-action-list .button { width: 100%; justify-content: space-between; }
.ref-privacy-chip { display: grid; grid-template-columns: calc(3 * var(--ref-u)) 1fr; gap: calc(1.2 * var(--ref-u)); margin-block: calc(3 * var(--ref-u)); padding: calc(2 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); background: #fff; }
.ref-privacy-chip > span { display: grid; width: calc(3 * var(--ref-u)); height: calc(3 * var(--ref-u)); place-items: center; border-radius: 50%; background: #aad902; }
.ref-privacy-chip p { color: #536171; font-size: calc(1.5 * var(--ref-u)); }
.ref-brief-builder { border: 0; border-radius: calc(1.2 * var(--ref-u)); box-shadow: none; }
.ref-partner-plate > .brief-builder--compact { padding: 0; background: transparent; }
.ref-brief-builder .field { gap: calc(.6 * var(--ref-u)); }
.ref-brief-builder .field > label { font: 650 calc(1.6 * var(--ref-u))/1.3 "Outfit Footer", var(--font-body); }
.ref-brief-builder .field small { font-size: calc(1.3 * var(--ref-u)); }
.ref-brief-builder .field input, .ref-brief-builder .field select, .ref-brief-builder .field textarea { min-height: calc(5.4 * var(--ref-u)); padding: calc(1.35 * var(--ref-u)) 0; border: 0; border-bottom: 1px solid rgba(4,41,64,.24); border-radius: 0; background: transparent; color: #042940; font: 400 calc(1.8 * var(--ref-u))/1.3 "Outfit Footer", var(--font-body); }
.ref-brief-builder .field textarea { min-height: calc(10 * var(--ref-u)); }
.ref-brief-builder .field input:focus, .ref-brief-builder .field select:focus, .ref-brief-builder .field textarea:focus { border-color: #aad902; outline: 0; box-shadow: inset 0 -2px #aad902; }
.ref-brief-builder .phone-entry { min-height: calc(5.4 * var(--ref-u)); border-bottom: 1px solid rgba(4,41,64,.24); }
.ref-brief-builder .phone-entry__prefix { min-width: calc(5.2 * var(--ref-u)); font-size: calc(1.8 * var(--ref-u)); }
.ref-brief-builder .phone-entry input { min-height: 0; padding-inline: 0; border: 0; box-shadow: none; }
.ref-brief-builder .phone-entry:focus-within { border-color: #aad902; box-shadow: inset 0 -2px #aad902; }
.ref-brief-builder .field.has-error input,
.ref-brief-builder .field.has-error textarea,
.ref-brief-builder .field.has-error select,
.ref-brief-builder .field.has-error .phone-entry { border-color: #b42318; box-shadow: inset 0 -2px #b42318; }
.ref-brief-builder .consent-field { padding: calc(2 * var(--ref-u)); border: 1px solid rgba(4,41,64,.14); border-radius: calc(1.2 * var(--ref-u)); background: #f7f8f9; }
.ref-brief-builder .consent-control { font: 500 calc(1.5 * var(--ref-u))/1.45 "Outfit Footer", var(--font-body); }
.ref-brief-builder .consent-control input { width: calc(2 * var(--ref-u)); height: calc(2 * var(--ref-u)); min-height: 0; margin-top: calc(.1 * var(--ref-u)); padding: 0; border: 1px solid rgba(4,41,64,.35); }

/* SplashSection */
.ref-splash { position: relative; display: grid; min-height: 100vh; overflow: hidden; place-items: center; background: #042940; color: #fff; }
.ref-splash > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: .28; }
.ref-splash > .ref-container { position: relative; z-index: 1; }
.ref-splash__code { display: block; color: #aad902; font: 900 calc(30 * var(--ref-u))/.76 var(--font-display); }
.ref-splash h1 { max-width: calc(90 * var(--ref-u)); margin-top: calc(2 * var(--ref-u)); font: 900 calc(7.2 * var(--ref-u))/.95 var(--font-display); text-transform: uppercase; }
.ref-splash p { max-width: calc(70 * var(--ref-u)); margin-top: calc(2.4 * var(--ref-u)); color: rgba(255,255,255,.72); font-size: calc(3.2 * var(--ref-u)); }

@media (hover:hover) and (pointer:fine) {
  .nav-action:hover::before, .nav-action:focus-visible::before, .button:hover::before, .button:focus-visible::before { opacity: 1; transform: translateY(-50%) scale(1.1); transition: transform .7s, opacity 0s; }
  .nav-action__title > span { transition: transform .8s cubic-bezier(.16,1,.3,1); }
  .nav-action:hover .nav-action__title > span:first-child, .nav-action:focus-visible .nav-action__title > span:first-child { transform: translateY(-100%) scale(.7); }
  .nav-action:hover .nav-action__title > span[aria-hidden="true"], .nav-action:focus-visible .nav-action__title > span[aria-hidden="true"] { transform: translateY(0); }
  .button__title > span { transition: transform .8s cubic-bezier(.16,1,.3,1); }
  .button:hover .button__title > span:first-child, .button:focus-visible .button__title > span:first-child { transform: translateY(-100%) scale(.7); }
  .button:hover .button__title > span[aria-hidden="true"], .button:focus-visible .button__title > span[aria-hidden="true"] { transform: translateY(0); }
  .ref-route-card:hover, .ref-route-card:focus-visible { clip-path: inset(1% round calc(3.2 * var(--ref-u))); }
  .ref-route-card:hover .ref-route-card__base, .ref-route-card:focus-visible .ref-route-card__base { transform: scale(1.04); }
  .ref-route-card:hover .ref-route-card__hover, .ref-route-card:focus-visible .ref-route-card__hover { opacity: 1; transform: scale(1); }
  .ref-route-card:hover .ref-square-action, .ref-route-card:focus-visible .ref-square-action { background: #aad902; }
  .ref-route-card:hover .ref-square-action > span, .ref-route-card:focus-visible .ref-square-action > span { animation: ref-button-arrow .5s; }
  .ref-wide-list__row:hover, .ref-wide-list__row:focus-visible, .ref-wide-entry:hover, .ref-wide-entry:focus-visible { color: #fff; }
  .ref-wide-list__row:hover::before, .ref-wide-list__row:focus-visible::before { opacity: 1; transform: scaleY(1); transition: transform .4s, opacity 0s; }
  .ref-wide-list__row:hover .ref-round-action, .ref-wide-list__row:focus-visible .ref-round-action, .ref-wide-entry:hover .ref-round-action, .ref-wide-entry:focus-visible .ref-round-action { border-color: #aad902; background: #aad902; color: #042940; transform: scale(.98); transition: transform .4s cubic-bezier(.34,6.56,.64,1), background-color .3s, border-color .3s; }
  .ref-wide-list__row:focus-visible .ref-wide-list__preview { opacity: 1; transform: translateY(-50%) rotate(-2deg) scale(1); }
  .ref-latest__row:hover .ref-round-action, .ref-latest__row:focus-visible .ref-round-action { border-color: #aad902; background: #aad902; color: #042940; transform: scale(.98); transition: transform .4s cubic-bezier(.34,6.56,.64,1), background-color .3s, border-color .3s; }
  .ref-wide-entry:hover .ref-wide-entry__media img, .ref-wide-entry:focus-visible .ref-wide-entry__media img { transform: scale(1.03); }
  .ref-related-handoff__links a:hover, .ref-related-handoff__links a:focus-visible { color: #aad902; }
  .ref-topic-reel__track a:hover, .ref-topic-reel__track a:focus-visible, .hero-scroll-link:hover, .hero-scroll-link:focus-visible { opacity: .72; }
}

@media (min-width: 100rem) { .ref-container { max-width: 1920px; } }
@media (min-width: 120rem) { :root { --ref-u: 10px; } }

@media (max-width: 47.99rem) {
  :root { --ref-u: 2.6666666667vw; }
  .ref-container { max-width: none; padding-inline: calc(2.5 * var(--ref-u)); }
  .ref-heading { max-width: 100%; }
  .ref-heading h1, .ref-heading h2 { font-size: calc(4 * var(--ref-u)); }
  .ref-wide-list .ref-heading h2 { letter-spacing: -.065em; }
  .ref-kicker { font-size: calc(1.3 * var(--ref-u)); }
  .ref-square-action { width: calc(5.4 * var(--ref-u)); height: calc(5.4 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); font-size: calc(2 * var(--ref-u)); }
  .ref-round-action { width: calc(5.4 * var(--ref-u)); height: calc(5.4 * var(--ref-u)); }
  .button { width: auto; height: calc(5.4 * var(--ref-u)); min-height: calc(5.4 * var(--ref-u)); padding-inline: calc(2.1 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); font-size: calc(1.6 * var(--ref-u)); }

  .ref-cards-section { padding-top: calc(6 * var(--ref-u)); }
  .ref-cards-section .ref-heading { margin-bottom: calc(4 * var(--ref-u)); }
  .ref-route-cards { grid-template-columns: 1fr; gap: calc(1 * var(--ref-u)); margin-inline: calc(-1.5 * var(--ref-u)); }
  .ref-route-card { aspect-ratio: 335/450; padding: calc(3 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); clip-path: inset(0 round calc(1.6 * var(--ref-u))); }
  .ref-route-card h3 { font-size: calc(3.2 * var(--ref-u)); }

  .ref-topic-reel { margin-block: calc(8 * var(--ref-u)); }
  .ref-topic-reel p { margin-bottom: calc(4 * var(--ref-u)); font-size: calc(2 * var(--ref-u)); line-height: 1.3; }
  .ref-topic-reel__track { width: max-content; justify-content: flex-start; gap: calc(4 * var(--ref-u)); animation: ref-topic-reel 28s linear infinite; }
  .ref-topic-reel__track a { max-width: none; font-size: calc(2 * var(--ref-u)); white-space: nowrap; }

  .ref-showcase { margin-block: calc(6 * var(--ref-u)); scroll-margin: calc(6 * var(--ref-u)); }
  .ref-showcase__intro > p { max-width: 100%; margin-top: calc(2.4 * var(--ref-u)); font-size: calc(1.6 * var(--ref-u)); line-height: 1.4; }
  .ref-showcase__intro > .button { margin-top: calc(3 * var(--ref-u)); }
  .ref-showcase__bound { height: 400vh; height: 400svh; margin-top: calc(4 * var(--ref-u)); }
  .ref-showcase__roll { position: sticky; top: calc(50svh - 28 * var(--ref-u)); overflow: hidden; padding-inline: calc(1 * var(--ref-u)); }
  .ref-showcase__items { grid-auto-columns: calc(30 * var(--ref-u)) calc(27.6 * var(--ref-u)) calc(27.6 * var(--ref-u)); grid-template-rows: repeat(2,calc(27.6 * var(--ref-u))); gap: calc(.8 * var(--ref-u)); will-change: transform; }
  .ref-showcase__item { padding: calc(.8 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); }
  .ref-showcase__info { min-height: calc(21.2 * var(--ref-u)); padding: calc(3 * var(--ref-u)); }
  .ref-showcase__info > span { margin-top: calc(3 * var(--ref-u)); font-size: calc(3.2 * var(--ref-u)); }
  .ref-showcase__info > p { font-size: calc(1.6 * var(--ref-u)); }

  .ref-process-scene { height: 600vh; height: 600svh; min-height: 0; margin-top: calc(11 * var(--ref-u)); padding: 0; background: transparent; }
  .ref-process-scene__field, .ref-process-scene__truck { display: block; }
  .ref-process-scene__viewport { position: sticky; height: 100vh; height: 100svh; overflow: hidden; }
  .ref-process-scene__intro { position: absolute; inset: 0; padding: 0 calc(3 * var(--ref-u)); text-align: center; }
  .ref-process-scene__intro > img { width: calc(15 * var(--ref-u)); height: calc(15 * var(--ref-u)); margin-bottom: calc(3 * var(--ref-u)); }
  .ref-process-scene__stage { position: absolute; inset: 0; overflow: hidden; height: auto; margin-top: 0; border-radius: 0; background: #fff; }
  .ref-process-scene__media { opacity: 0; transform-origin: center; }
  .ref-process-scene__poster img { object-position: center; }
  .ref-process-scene__scene { display: block; }
  .ref-process-scene__specs { top: auto; right: calc(2 * var(--ref-u)); bottom: 8svh; display: grid; grid-template-columns: repeat(2,calc(11 * var(--ref-u))); gap: calc(.8 * var(--ref-u)); }
  .ref-process-scene__specs span { padding: calc(1.2 * var(--ref-u)); font-size: calc(1.2 * var(--ref-u)); }

  .ref-coverage { height: 150vh; height: 150svh; padding: 0; }
  .ref-coverage__viewport { position: sticky; height: 100vh; height: 100svh; overflow: hidden; }
  .ref-coverage__plate { position: absolute; inset: 0; height: auto; margin-inline: 0; border-radius: 0; }
  .ref-coverage__plate > img { width: 100%; }
  .ref-coverage__plate > strong { font-size: calc(7 * var(--ref-u)); }
  .ref-coverage__copy { position: absolute; inset: 0; display: grid; padding: 0; color: #fff; opacity: 0; pointer-events: none; transform: translateY(3%); }
  .ref-coverage__copy > .ref-container { display: grid; }
  .ref-coverage__copy .ref-heading { max-width: 100%; text-align: center; }
  .ref-coverage__copy .ref-heading h2 { color: #fff; }
  .ref-coverage__copy p { max-width: 100%; color: rgba(255,255,255,.78); font-size: calc(1.6 * var(--ref-u)); }

  .ref-wide-list { padding-block: calc(6 * var(--ref-u)); }
  .ref-wide-list .ref-heading { margin-bottom: calc(4 * var(--ref-u)); }
  .ref-wide-list__row { display: grid; min-height: 0; grid-template-columns: calc(21 * var(--ref-u)) auto; justify-content: space-between; gap: calc(1 * var(--ref-u)); padding: calc(2 * var(--ref-u)); }
  .ref-wide-list__row > span:first-child { font-size: calc(2 * var(--ref-u)); line-height: 1.3; text-align: left; }
  .ref-wide-list__preview { display: none; }

  .ref-latest { min-height: calc(78.5 * var(--ref-u)); padding-block: calc(6 * var(--ref-u)); }
  .ref-latest__grid { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); }
  .ref-latest__heading .ref-heading { text-align: center; }
  .ref-latest__heading .button { width: 100%; justify-content: center; }
  .ref-latest__row { min-height: calc(15 * var(--ref-u)); }
  .ref-latest__row h3 { font-size: calc(2.4 * var(--ref-u)); }
  .ref-latest__row > .ref-round-action { display: none; }

  .ref-partner-section { padding-block: calc(4 * var(--ref-u)); }
  .ref-partner-plate { margin-inline: calc(-1.5 * var(--ref-u)); padding: calc(4 * var(--ref-u)) calc(3 * var(--ref-u)); border-radius: calc(1.6 * var(--ref-u)); }
  .ref-partner-plate__rail { display: none; }
  .ref-partner-plate__copy { max-width: 100%; font-size: calc(1.6 * var(--ref-u)); }
  .ref-partner-plate__actions { display: grid; }
  .ref-partner-plate > .ref-brief-builder { max-width: none; margin-top: calc(3 * var(--ref-u)); }

  .ref-intro { min-height: 100svh; }
  .ref-intro__content { padding-bottom: calc(4 * var(--ref-u)); }
  .ref-intro__content h1 { max-width: 100%; font-size: calc(4 * var(--ref-u)); }
  .ref-intro__content p { max-width: 100%; margin-top: calc(2 * var(--ref-u)); font-size: calc(1.6 * var(--ref-u)); line-height: 1.3; }

  .ref-index-section { padding-block: calc(6 * var(--ref-u)); }
  .ref-index-section__grid { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); }
  .ref-index-section__heading { position: static; }
  .ref-index-section__heading .ref-heading { text-align: center; }
  .ref-index-section__heading > p { font-size: calc(1.6 * var(--ref-u)); text-align: center; }
  .ref-wide-entry { grid-template-columns: 1fr auto; gap: calc(2 * var(--ref-u)); padding: calc(2 * var(--ref-u)) 0; }
  .ref-wide-entry__media { grid-column: 1 / -1; aspect-ratio: 335/220; border-radius: calc(1.6 * var(--ref-u)); }
  .ref-wide-entry__copy strong { font-size: calc(2.4 * var(--ref-u)); }
  .ref-wide-entry__copy > span { font-size: calc(1.5 * var(--ref-u)); }

  .ref-billboard { padding: 0 0 calc(6 * var(--ref-u)); background: #042940; }
  .ref-billboard .ref-container { padding: 0; }
  .ref-billboard__place { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); padding: calc(6 * var(--ref-u)) calc(2.5 * var(--ref-u)); border-radius: 0; }
  .ref-billboard__media { aspect-ratio: 8/5; }
  .ref-billboard__place p { font-size: calc(1.6 * var(--ref-u)); }

  .ref-article-section { padding: calc(12.8 * var(--ref-u)) 0 calc(6 * var(--ref-u)); }
  .ref-article-grid { grid-template-columns: 1fr; gap: calc(6 * var(--ref-u)); }
  .ref-article-main { font-size: calc(1.6 * var(--ref-u)); }
  .ref-article-main h2 { font-size: calc(3.2 * var(--ref-u)); }
  .ref-article-main h3 { font-size: calc(2.4 * var(--ref-u)); }
  .ref-prompt-list li, .ref-activity-list li { grid-template-columns: calc(4 * var(--ref-u)) 1fr; }
  .ref-article-figure { margin-inline: calc(-1.5 * var(--ref-u)); padding: calc(1 * var(--ref-u)); }
  .ref-article-aside { position: static; }
  .ref-aside-card { font-size: calc(1.6 * var(--ref-u)); }

  .ref-feature-section { padding-block: calc(6 * var(--ref-u)); }
  .ref-feature-stack { gap: calc(6 * var(--ref-u)); }
  .ref-feature-row { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); }
  .ref-feature-row--reverse .ref-feature-row__media, .ref-feature-row--reverse .ref-feature-row__copy { grid-column: auto; grid-row: auto; }
  .ref-feature-row__media { position: static; aspect-ratio: 335/400; margin-inline: calc(-1.5 * var(--ref-u)); }
  .ref-feature-row__copy .ref-heading { text-align: left; }
  .ref-feature-row__copy > p { font-size: calc(1.6 * var(--ref-u)); }

  .ref-related-handoff { padding-block: calc(6 * var(--ref-u)); }
  .ref-related-handoff > .ref-container { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); }
  .ref-related-handoff__links a { min-height: calc(8 * var(--ref-u)); font-size: calc(2.2 * var(--ref-u)); }

  .ref-process-section { padding: calc(6 * var(--ref-u)) calc(4 * var(--ref-u)); }
  .ref-process-section__heading { margin-bottom: calc(4 * var(--ref-u)); }
  .ref-process-section__heading > p { font-size: calc(1.6 * var(--ref-u)); }
  .ref-process-cards { grid-template-columns: 1fr; gap: calc(2 * var(--ref-u)); }
  .ref-process-card { min-height: auto; padding: calc(3 * var(--ref-u)) calc(3 * var(--ref-u)) calc(4 * var(--ref-u)); }
  .ref-process-card h2 { margin-top: calc(5 * var(--ref-u)); font-size: calc(2.4 * var(--ref-u)); }
  .ref-process-card p { font-size: calc(1.6 * var(--ref-u)); }

  .ref-form-section { padding-block: calc(6 * var(--ref-u)); }
  .ref-form-section__grid { grid-template-columns: 1fr; gap: calc(4 * var(--ref-u)); }
  .ref-form-section__intro { position: static; }
  .ref-form-section__intro h2 { font-size: calc(3.2 * var(--ref-u)); }
  .ref-form-section__intro > p { font-size: calc(1.6 * var(--ref-u)); }
  .ref-brief-builder { grid-template-columns: 1fr; }

  .ref-splash__code { font-size: calc(12 * var(--ref-u)); }
  .ref-splash h1 { max-width: 100%; font-size: calc(4 * var(--ref-u)); }
  .ref-splash p { max-width: 100%; font-size: calc(1.6 * var(--ref-u)); }
}

@keyframes ref-topic-reel { to { transform: translateX(-45%); } }
@keyframes ref-button-arrow { 0% { transform: translate(0); } 50% { opacity: 0; transform: translate(50%,-50%); } 50.01% { opacity: 0; transform: translate(-50%,50%); } 100% { opacity: 1; transform: translate(0); } }
@keyframes ref-wide-list-trail { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.82) rotate(-2deg); } 12% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,-56%) scale(1.04) rotate(1deg); } }

@media (prefers-reduced-motion: reduce) {
  .ref-route-card__media img { transition: none; }
  .ref-route-card__hover { display: none; }
  .ref-topic-reel__track { animation: none; }
  .ref-showcase__bound { height: auto; }
  .ref-showcase__roll { position: relative; top: auto; overflow-x: auto; }
  .ref-showcase__items { transform: none !important; }
  .ref-process-scene { height: 100vh; height: 100svh; min-height: 0; }
  .ref-process-scene__viewport { position: relative; height: 100vh; height: 100svh; }
  .ref-process-scene__intro { opacity: 1 !important; }
  .ref-process-scene__stage { opacity: 1 !important; transform: none !important; }
  .ref-process-scene__field, .ref-process-scene__truck { display: none; }
  .ref-process-scene__media { opacity: 1 !important; transform: none !important; }
  .ref-process-scene__scene { display: none; }
  .ref-process-scene__specs { display: none; }
  .ref-coverage { height: auto; min-height: 100vh; }
  .ref-coverage__viewport { position: relative; }
  .ref-coverage__plate { clip-path: none !important; opacity: 1 !important; }
  .ref-coverage__plate > img { transform: scale(1) !important; }
  .ref-coverage__plate > strong { display: none; }
  .ref-coverage__copy { opacity: 1 !important; transform: none !important; }
  .ref-wide-list__trail { display: none; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 48rem) {
  .ref-process-scene { height: 100vh; min-height: 0; padding: calc(6 * var(--ref-u)) calc(4 * var(--ref-u)); }
  .ref-process-scene__viewport { position: relative; display: grid; height: 100%; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: calc(5 * var(--ref-u)); overflow: visible; }
  .ref-process-scene__intro { position: relative; inset: auto; padding-inline: 0; }
  .ref-process-scene__intro .ref-heading h2 { font-size: calc(5.2 * var(--ref-u)); }
  .ref-process-scene__stage { position: relative; inset: auto; overflow: hidden; height: min(66vh,calc(66 * var(--ref-u))); margin-top: 0; border-radius: calc(1.8 * var(--ref-u)) !important; }
  .ref-process-scene__truck { display: block; opacity: 1 !important; visibility: visible !important; transform: none !important; }
}
