/* ==========================================================================
   6th Sense Interactive — site.css
   Monochrome system: near-black, gallery white, chrome. No chromatic accent.
   Type: Archivo (display + body) / IBM Plex Mono (labels, HUD)
   ========================================================================== */

:root {
  --bg-0: #09090a;
  --bg-1: #0e0e10;
  --bg-2: #141416;

  --paper-0: #eaeae8;
  --paper-1: #f5f5f4;

  --white: #fafaf9;
  --silver: #a3a3ab;
  --gray: #6f6f78;

  --ink: #0b0b0c;
  --ink-2: #4c4c53;

  --line-d: rgba(250, 250, 249, 0.1);
  --line-l: rgba(11, 11, 12, 0.13);

  --chrome-grad: linear-gradient(
    118deg,
    #ffffff 4%,
    #d2d2d8 30%,
    #74747d 52%,
    #e3e3e8 74%,
    #9a9aa2 96%
  );

  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --radius-card: 14px;
  --radius-pill: 999px;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-pad: clamp(104px, 13vw, 184px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset ------------------------------------------------------------------ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

.section-light ::selection {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-64px);
  transition: transform 0.3s var(--ease-out);
}

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

/* Film grain over everything (very quiet) --------------------------------- */

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 120;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* Layout helpers ----------------------------------------------------------- */

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

/* Anchored sections stop clear of the floating nav pill */
[id] {
  scroll-margin-top: 40px;
}

.section-light {
  background: var(--paper-0);
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-light .eyebrow {
  color: var(--ink-2);
}

.chrome {
  background: var(--chrome-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chrome-sheen 9s var(--ease-out) infinite;
}

@keyframes chrome-sheen {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 0.35s var(--ease-out),
    background-color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}

.btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-solid {
  background: var(--white);
  color: var(--ink);
}

.btn-solid:hover {
  background: #dededd;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line-d);
  color: var(--silver);
}

.btn-ghost:hover {
  border-color: rgba(250, 250, 249, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: #2a2a2e;
  transform: translateY(-2px);
}

/* Header ------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 100;
  width: min(var(--container), calc(100% - var(--gutter) * 1.2));
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition:
    background-color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(11, 11, 13, 0.88);
  border-color: var(--line-d);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  transition: color 0.25s var(--ease-out);
}

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

.nav-cta {
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 13.5px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-d);
  flex-shrink: 0;
}

.menu-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.35s var(--ease-out),
    top 0.35s var(--ease-out);
}

.menu-line:nth-child(1) {
  top: 17px;
}

.menu-line:nth-child(2) {
  top: 24px;
}

.nav-open .menu-line:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .menu-line:nth-child(2) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  background:
    radial-gradient(1100px 640px at 72% 40%, rgba(255, 255, 255, 0.05), transparent 62%),
    radial-gradient(900px 700px at 12% 108%, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--bg-0);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease 0.15s;
}

.hero-canvas.is-ready {
  opacity: 1;
}

/* CSS fallback orb — shown only when WebGL is unavailable */
.hero-orb {
  display: none;
  position: absolute;
  top: 50%;
  left: 68%;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #f2f2f4 0%, #b9b9c1 22%, #5b5b64 48%, #1a1a1e 78%, #0c0c0e 100%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

html:not(.js) .hero-orb,
.hero.no-gl .hero-orb {
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(120px, 16vh, 170px);
}

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

.hero-copy h1 {
  margin-top: 26px;
  font-size: clamp(2.85rem, 7vw, 6.1rem);
  font-weight: 740;
  line-height: 0.99;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-lede {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.6;
  color: var(--silver);
}

.hero-lede strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero entrance (JS-gated so no-JS never hides content) */
html.js .hero-copy > * {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1s var(--ease-out) forwards;
}

html.js .hero-copy .eyebrow {
  animation-delay: 0.12s;
}

html.js .hero-copy h1 {
  animation-delay: 0.22s;
}

html.js .hero-copy .hero-lede {
  animation-delay: 0.36s;
}

html.js .hero-copy .hero-actions {
  animation-delay: 0.5s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid var(--line-d);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.sense-hud {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.sense-hud [data-hud="state"] {
  color: var(--silver);
}

@media (pointer: coarse) {
  .sense-hud {
    display: none;
  }
}

/* Marquee strip ------------------------------------------------------------ */

.strip {
  border-block: 1px solid var(--line-d);
  padding-block: 26px;
  overflow: hidden;
  background: var(--bg-0);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.strip:hover .marquee {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-group span {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}

.marquee-group span::after {
  content: "✦";
  font-size: 9px;
  vertical-align: 2px;
  margin-inline: 34px;
  opacity: 0.35;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Section headings ----------------------------------------------------------- */

.section-head {
  max-width: 880px;
}

.section-head h2 {
  margin-top: 24px;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-head .head-note {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--silver);
}

.section-light .section-head .head-note {
  color: var(--ink-2);
}

/* Studio / quiet portfolio (light) ------------------------------------------ */

.studio-grid {
  margin-top: clamp(48px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}

.studio-statement p {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: pretty;
}

.studio-statement p + p {
  margin-top: 1.2em;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--ink-2);
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance {
  background: var(--paper-1);
  border: 1px solid var(--line-l);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.assurance:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(11, 11, 12, 0.08);
}

.assurance .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-l);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  display: inline-block;
}

.assurance p {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--ink-2);
}

/* Clients (inside light zone) ------------------------------------------------ */

.clients {
  margin-top: clamp(72px, 9vw, 128px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-l);
}

.client-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.client-grid img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.3s var(--ease-out);
}

.client-grid img:hover {
  opacity: 1;
}

/* Services (dark) ------------------------------------------------------------ */

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.services-head .head-aside {
  max-width: 34ch;
  font-size: 0.98rem;
  color: var(--gray);
  padding-bottom: 8px;
}

.service-list {
  margin-top: clamp(44px, 5vw, 68px);
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line-d);
}

.service-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(26px, 3.4vw, 40px) 10px;
  border-bottom: 1px solid var(--line-d);
  transition: background-color 0.35s var(--ease-out);
}

.service-row:hover {
  background: var(--bg-1);
}

.service-row .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray);
}

.service-row h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: transform 0.35s var(--ease-out);
}

.service-row:hover h3 {
  transform: translateX(6px);
}

.service-row p {
  font-size: 0.98rem;
  color: var(--silver);
  max-width: 52ch;
}

.services-foot {
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 2;
}

/* Process (dark, compact) ------------------------------------------------------ */

.process {
  padding-block: 0 var(--section-pad);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.process-step {
  border-top: 1px solid var(--line-d);
  padding-top: 24px;
}

.process-step .step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.process-step h3 {
  margin-top: 16px;
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.process-step p {
  margin-top: 12px;
  font-size: 0.97rem;
  color: var(--silver);
  max-width: 38ch;
}

/* Contact (light) ---------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-copy h2 {
  margin-top: 24px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.contact-copy .contact-note {
  margin-top: 24px;
  max-width: 48ch;
  font-size: 1.05rem;
  color: var(--ink-2);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 6px;
  transition: gap 0.3s var(--ease-out);
}

.contact-email:hover {
  gap: 20px;
}

.contact-email svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-meta {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 2.2;
}

/* Form */

.contact-form {
  background: var(--paper-1);
  border: 1px solid var(--line-l);
  border-radius: calc(var(--radius-card) + 4px);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.field input,
.field textarea {
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper-0);
  border: 1px solid var(--line-l);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease-out);
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(11, 11, 12, 0.34);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #8c1d1d;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.helper {
  font-size: 12.5px;
  color: rgba(11, 11, 12, 0.42);
}

.error-message {
  font-size: 12.5px;
  color: #8c1d1d;
}

.error-message:empty {
  display: none;
}

.form-submit {
  justify-self: start;
}

.form-status {
  font-size: 13.5px;
  color: var(--ink-2);
  min-height: 1.2em;
}

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

/* Footer ------------------------------------------------------------------------ */

.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line-d);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 34px;
  flex-wrap: wrap;
}

.footer-row .brand img {
  height: 28px;
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--silver);
  transition: color 0.25s var(--ease-out);
}

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

/* Reveal on scroll ----------------------------------------------------------------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 100ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  .hero-copy {
    max-width: 620px;
  }

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

  .service-row {
    grid-template-columns: 56px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

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

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .brand img {
    height: 26px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: var(--gutter);
    background: rgba(9, 9, 10, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s var(--ease-out),
      visibility 0.4s;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: clamp(2rem, 9vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    padding-block: 6px;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.5s var(--ease-out),
      transform 0.5s var(--ease-out);
  }

  .nav-open .nav-links a {
    opacity: 1;
    transform: none;
  }

  .nav-open .nav-links a:nth-child(2) {
    transition-delay: 0.05s;
  }

  .nav-open .nav-links a:nth-child(3) {
    transition-delay: 0.1s;
  }

  .nav-open .nav-links a:nth-child(4) {
    transition-delay: 0.15s;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* backdrop-filter/transform on the shell would re-anchor the fixed
     overlay to the pill box — strip them while the menu is open */
  body.nav-open .site-header .nav-shell {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-inner {
    padding-block: clamp(130px, 20vh, 180px) 150px;
  }

  /* Ground the chrome form so the meta row stays legible over it */
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(9, 9, 10, 0), rgba(9, 9, 10, 0.9));
  }

  .hero-meta-row {
    justify-content: center;
    text-align: center;
  }

  .sense-hud {
    display: none;
  }

  .hero-actions .btn {
    padding: 14px 24px;
  }

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

  .client-grid img {
    height: 64px;
  }

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

  .footer-row {
    justify-content: center;
    text-align: center;
  }
}

/* Reduced motion ------------------------------------------------------------------------ */

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

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

  .marquee {
    animation: none;
    width: auto;
    flex-wrap: wrap;
  }

  .marquee-group[aria-hidden="true"] {
    display: none;
  }

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