:root {
  --primary-color: #ff5c00;
  --primary-color-light: #ff8a3d;
  --accent-green: #27d3a2;
  --accent-cream: #fff3dd;
  --accent-steel: #8fb7ff;
  --orange-surface: #d85c20;
  --green-surface: #389779;
  --cream-surface: #f2e9dc;
  --steel-surface: #778caf;
  --background-dark: #0d0e10;
  --surface-dark: #17181a;
  --surface-mid: #222326;
  --surface-light: #f8f4ee;
  --text-light: #f8f4ef;
  --text-dark: #14110f;
  --muted-text: #aaa49d;
  --line: rgba(248, 244, 239, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --panel-x: clamp(1rem, 4vw, 4rem);
  --hero-media-progress: 0;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  max-width: 100%;
  background: var(--background-dark);
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  background:
    linear-gradient(120deg, rgba(255, 92, 0, 0.065), transparent 38%),
    linear-gradient(235deg, rgba(39, 211, 162, 0.045), transparent 42%),
    var(--background-dark);
  color: var(--text-light);
  line-height: 1.5;
  overflow: hidden;
}

body.reduced-motion {
  overflow: auto;
}

body.reduced-motion .section-container {
  height: auto;
  overflow: visible;
}

body.reduced-motion .section-panel {
  position: relative;
  min-height: auto;
  height: auto;
  opacity: 1;
  transform: none;
  visibility: visible;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

:focus-visible {
  outline: 2px solid var(--primary-color-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 3000;
  transform: translateY(-160%);
  background: var(--surface-light);
  color: var(--text-dark);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

#preloader {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  background: var(--background-dark);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 250, 243, 0.18);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: clamp(96px, 10vw, 132px);
  padding: clamp(1.6rem, 3vw, 2.9rem) clamp(1.5rem, 3vw, 3.8rem);
  background: rgba(11, 11, 15, 0.9);
  color: var(--text-light);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    min-height 0.25s ease,
    padding 0.25s ease,
    background-color 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.36s ease,
    border-color 0.36s ease,
    box-shadow 0.36s ease;
}

.site-header.is-auto-hidden {
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 2px), 0);
}

.site-header.scrolled {
  min-height: 92px;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
  background: rgba(11, 11, 15, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.logo {
  display: grid;
  justify-self: start;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  min-width: 8.5rem;
  color: var(--text-light);
}

.logo span {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
}

.logo small {
  margin-top: 0.2rem;
  color: var(--muted-text);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.36s ease;
}

.logo.has-image {
  display: flex;
  position: relative;
  width: clamp(200px, 14vw, 232px);
  min-width: clamp(200px, 14vw, 232px);
  height: 72px;
  align-items: center;
  overflow: hidden;
}

.logo-image {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(-50%);
}

.navbar {
  justify-self: center;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 4.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar a {
  position: relative;
  display: inline-flex;
  min-width: 76px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  isolation: isolate;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.24s ease;
}

.navbar a::before {
  display: none;
}

.navbar a:hover,
.navbar a:focus-visible {
  color: var(--primary-color-light);
}

.navbar a:hover::before,
.navbar a:focus-visible::before {
  transform: none;
}

.navbar a.is-active {
  color: var(--text-light);
}

.navbar a.is-active:hover,
.navbar a.is-active:focus-visible {
  color: var(--primary-color-light);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-talk-button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 142px;
  min-height: 56px;
  padding: 0 1.25rem;
  border: 2px solid var(--primary-color-light);
  border-radius: 999px;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.24s ease,
    border-color 0.32s ease,
    background-color 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-talk-button::before {
  display: none;
}

.nav-talk-button span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #84e637;
}

.nav-talk-button:hover,
.nav-talk-button:focus-visible {
  color: var(--primary-color-light);
  background: rgba(255, 138, 61, 0.08);
  transform: translateY(-1px);
}

.nav-talk-button:hover::before,
.nav-talk-button:focus-visible::before {
  transform: none;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-weight: 800;
  transition: color 0.32s ease;
}

.menu-trigger i,
.menu-trigger i::before,
.menu-trigger i::after {
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-light);
  transition: background-color 0.32s ease, transform 0.24s ease;
}

.menu-trigger i {
  position: relative;
}

.menu-trigger i::before,
.menu-trigger i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-trigger i::before {
  transform: translateY(-10px);
}

.menu-trigger i::after {
  transform: translateY(10px);
}

.menu-trigger:hover i::before,
.menu-trigger:focus-visible i::before {
  transform: translateY(-12px);
}

.menu-trigger:hover i::after,
.menu-trigger:focus-visible i::after {
  transform: translateY(12px);
}

.site-header.menu-open .menu-trigger i {
  background: transparent;
}

.site-header.menu-open .menu-trigger i::before {
  transform: rotate(42deg);
}

.site-header.menu-open .menu-trigger i::after {
  transform: rotate(-42deg);
}

/*
  Retired underline nav treatment from the earlier dark header.
*/
.navbar a::after {
  display: none;
}

/*
  Keep compatibility with older generated CSS declarations by overriding them
  after the QClay-style rules.
*/
.navbar a {
  color: var(--text-light);
}

.section-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: clamp(8.5rem, 12vw, 11rem) var(--panel-x) 3rem;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.section-panel.active {
  opacity: 1;
  visibility: visible;
}

.panel-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-grid,
.split-panel,
.safe-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 920px;
  margin-bottom: 1.1rem;
  color: var(--text-light);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

h3 {
  color: var(--text-light);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy p,
.section-lede {
  max-width: 720px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-color-light);
}

.button.ghost {
  border-color: var(--line);
  color: var(--text-light);
  background: rgba(255, 250, 243, 0.04);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--primary-color-light);
  color: var(--primary-color-light);
}

.hero-panel {
  align-items: stretch;
  background:
    linear-gradient(110deg, rgba(255, 92, 0, 0.16), transparent 34%),
    linear-gradient(235deg, rgba(39, 211, 162, 0.1), transparent 42%),
    var(--background-dark);
}

.hero-stage {
  position: relative;
  display: grid;
  align-content: start;
  width: min(1680px, 100%);
  min-height: calc(100vh - clamp(8.5rem, 12vw, 11rem));
  padding-top: clamp(0.2rem, 1vw, 1rem);
}

.hero-kicker {
  margin-bottom: clamp(0.8rem, 1.5vw, 1.4rem);
}

.hero-headline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-headline-row h1 {
  max-width: 1180px;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 4.35vw, 5.3rem);
  line-height: 1.12;
}

.hero-scroll-badge {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 142px;
  height: 142px;
  color: rgba(255, 138, 61, 0.45);
  text-decoration: none;
}

.hero-scroll-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.hero-scroll-badge path {
  fill: none;
}

.hero-scroll-badge text {
  fill: currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-eye {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 243, 221, 0.12);
  border: 2px solid rgba(255, 138, 61, 0.35);
}

.scroll-eye::before,
.scroll-eye::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-color-light);
}

.scroll-eye::before {
  transform: translateX(-14px) rotate(-10deg);
}

.scroll-eye::after {
  transform: translateX(14px) rotate(10deg);
}

.scroll-eye span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(255, 92, 0, 0.12);
}

.hero-meta-row {
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(280px, 520px) minmax(180px, auto);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.7rem);
}

.hero-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.8rem;
  align-items: center;
  width: max-content;
  color: var(--text-light);
}

.rating-mark {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 50%, var(--primary-color-light) 0 9px, transparent 10px),
    conic-gradient(from 35deg, var(--text-light) 0 72deg, transparent 72deg 118deg, var(--text-light) 118deg 360deg);
  color: var(--background-dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars i {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--primary-color-light);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 54%, 79% 90%, 50% 68%, 21% 90%, 32% 54%, 2% 34%, 39% 34%);
}

.hero-rating span:last-child {
  color: var(--muted-text);
  font-size: 0.92rem;
}

.hero-services {
  margin: 0;
  color: rgba(255, 250, 243, 0.44);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-deck-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 138, 61, 0.42);
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.12);
  color: var(--text-light);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-deck-link:hover,
.hero-deck-link:focus-visible {
  border-color: var(--primary-color-light);
  background: rgba(255, 138, 61, 0.2);
  color: var(--primary-color-light);
}

.hero-showcase {
  position: absolute;
  left: clamp(0rem, 3vw, 2.5rem);
  right: clamp(0rem, 3vw, 2.5rem);
  bottom: clamp(-5rem, -5vw, -2rem);
  min-height: clamp(280px, 32vh, 360px);
  border: 1px solid rgba(255, 138, 61, 0.42);
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.92), rgba(255, 138, 61, 0.54) 36%, rgba(39, 211, 162, 0.2)),
    #151515;
  box-shadow: 0 -24px 70px rgba(255, 92, 0, 0.14), var(--shadow);
  overflow: hidden;
  transform-origin: bottom center;
  will-change: top, left, width, height, border-radius;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: heroCarousel 10.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  will-change: transform;
}

.hero-showcase.is-sequencing .hero-carousel-track,
.hero-showcase.is-sequence-complete .hero-carousel-track {
  animation: none;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-showcase.is-sequence-resetting .hero-carousel-track {
  transition: none;
}

.hero-carousel-slide {
  position: relative;
  flex: 0 0 33.3333%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-carousel-slide img,
.hero-carousel-slide video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  object-fit: cover;
}

.hero-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 92, 0, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 15, 0.08), transparent 34%, rgba(11, 11, 15, 0.58));
  pointer-events: none;
}

.hero-carousel-slide figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1rem, 3vw, 3rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  max-width: 24rem;
  color: var(--text-light);
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

body.hero-media-scrubbing .hero-kicker,
body.hero-media-scrubbing .hero-headline-row,
body.hero-media-scrubbing .hero-meta-row {
  opacity: calc(1 - var(--hero-media-progress));
  pointer-events: none;
  transform: translateY(calc(var(--hero-media-progress) * -1.5rem));
}

body.hero-media-scrubbing .hero-showcase {
  border-color: rgba(255, 138, 61, 0.64);
  box-shadow: 0 0 90px rgba(255, 92, 0, calc(0.12 + var(--hero-media-progress) * 0.16));
}

body.hero-media-scrubbing .site-header {
  background: rgba(11, 11, 15, calc(0.9 - var(--hero-media-progress) * 0.34));
  backdrop-filter: blur(calc(var(--hero-media-progress) * 16px));
}

body.hero-sequence-playing .site-header {
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 2px), 0);
}

.hero-showcase.is-sequencing .hero-carousel-slide img,
.hero-showcase.is-sequencing .hero-carousel-slide video,
.hero-showcase.is-sequence-complete .hero-carousel-slide img,
.hero-showcase.is-sequence-complete .hero-carousel-slide video {
  object-fit: cover;
  object-position: center;
}

@keyframes heroCarousel {
  0%,
  26% {
    transform: translateX(0);
  }
  33%,
  59% {
    transform: translateX(-33.3333%);
  }
  66%,
  92% {
    transform: translateX(-66.6666%);
  }
  100% {
    transform: translateX(0);
  }
}

.hero-visual {
  min-height: 520px;
}

.visual-board {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.86;
  margin-left: auto;
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.2), transparent 34%),
    linear-gradient(215deg, rgba(39, 211, 162, 0.18), transparent 45%),
    #171717;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-board::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius);
}

.metric-card,
.product-tile,
.signal-line {
  position: absolute;
  border-radius: var(--radius);
}

.metric-card {
  top: 9%;
  left: 8%;
  display: grid;
  min-width: 10rem;
  padding: 1rem;
  background: var(--surface-light);
  color: var(--text-dark);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.8;
}

.metric-card span {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.metric-card small {
  margin-top: 0.55rem;
  color: #655d54;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-line {
  left: 12%;
  height: 0.65rem;
  background: var(--primary-color);
}

.signal-line.one {
  right: 18%;
  bottom: 18%;
}

.signal-line.two {
  right: 36%;
  bottom: 24%;
  background: var(--accent-green);
}

.signal-line.three {
  right: 28%;
  bottom: 30%;
  background: var(--accent-steel);
}

.product-tile {
  right: 10%;
  background: rgba(255, 250, 243, 0.9);
}

.tile-one {
  top: 30%;
  width: 38%;
  height: 28%;
}

.tile-two {
  top: 62%;
  width: 30%;
  height: 18%;
  background: var(--primary-color);
}

.tile-three {
  top: 14%;
  right: 18%;
  width: 19%;
  height: 14%;
  background: var(--accent-green);
}

.about-pin-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  width: min(1680px, 100%);
  overflow: hidden;
}

.about-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-right: clamp(1.5rem, 4vw, 4rem);
  will-change: transform;
  pointer-events: none;
}

.about-copy h2 {
  max-width: none;
  font-size: clamp(2.7rem, 4.8vw, 5.8rem);
}

.about-copy h2 .word {
  white-space: nowrap;
}

.about-track-viewport {
  min-width: 0;
  overflow: visible;
}

.about-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  width: max-content;
  will-change: transform;
}

.about-scroll-card {
  position: relative;
  flex: 0 0 min(66vw, 900px);
  min-height: clamp(520px, 68vh, 680px);
  padding: clamp(1.2rem, 3vw, 2.9rem);
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 92, 0, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.075), rgba(255, 250, 243, 0.025)),
    #161619;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.about-scroll-card::before,
.about-scroll-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 250, 243, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.about-scroll-card::before {
  width: 36rem;
  height: 36rem;
  left: -16rem;
  top: -18rem;
}

.about-scroll-card::after {
  width: 28rem;
  height: 28rem;
  right: -12rem;
  bottom: -14rem;
}

.about-card-media {
  position: relative;
  z-index: 1;
  width: min(500px, 58%);
  height: clamp(105px, 14vh, 150px);
  margin: 0 auto clamp(2.25rem, 6vh, 4rem);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(20, 17, 15, 0.08);
  will-change: transform;
}

.about-media-layer {
  position: absolute;
  inset: -18% -22%;
  width: 144%;
  height: 136%;
}

.about-media-layer span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(0.5px);
}

.about-media-layer span:nth-child(1) {
  width: 34%;
  height: 62%;
  left: 11%;
  top: 18%;
  transform: rotate(-18deg);
}

.about-media-layer span:nth-child(2) {
  width: 26%;
  height: 48%;
  left: 42%;
  top: 6%;
  transform: rotate(24deg);
}

.about-media-layer span:nth-child(3) {
  width: 36%;
  height: 56%;
  right: 7%;
  top: 24%;
  transform: rotate(12deg);
}

.media-orange span {
  background: linear-gradient(135deg, #fff3dd, var(--primary-color-light));
}

.media-green span {
  background: linear-gradient(135deg, #fff3dd, var(--accent-green));
}

.media-cream span {
  background: linear-gradient(135deg, #fff3dd, #ffd5a8);
}

.media-steel span {
  background: linear-gradient(135deg, #fff3dd, var(--accent-steel));
}

.about-card-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-card-copy h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
}

.about-card-copy p {
  max-width: 650px;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.about-card-index {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  color: rgba(255, 250, 243, 0.16);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
}

.card-grid,
.designer-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.feature-card,
.designer-card,
.portfolio-card,
.capability-slide {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.feature-card,
.designer-card {
  min-height: 245px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.designer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.56);
  background: rgba(255, 138, 61, 0.08);
}

.feature-card h3,
.designer-card h3 {
  margin: 1.1rem 0 0.7rem;
}

.feature-card p,
.designer-card p,
.portfolio-card p,
.capability-slide p {
  color: var(--muted-text);
  margin-bottom: 0;
}

.swiper {
  width: 100%;
}

.capabilities-slider,
.portfolio-slider {
  min-width: 0;
}

.capability-slide {
  min-height: 390px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slide-index {
  margin-bottom: auto;
  color: rgba(255, 250, 243, 0.28);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
}

.capability-slide h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-color-light);
}

.slider-controls {
  display: grid;
  grid-template-columns: 46px minmax(120px, 1fr) 46px;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.06);
  color: var(--text-light);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem;
  font-weight: 900;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  border-color: var(--primary-color-light);
  color: var(--primary-color-light);
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  width: 2.2rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.34);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color-light);
}

.works-intro-panel {
  overflow: hidden;
  background: #09090b;
}

.works-page-transition {
  position: fixed;
  z-index: 1160;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.works-transition-orbit {
  position: absolute;
  top: -22vh;
  left: 49%;
  width: clamp(430px, 48vw, 900px);
  height: 152vh;
  border: 1px solid rgba(255, 138, 61, 0.54);
  border-radius: 999px;
  box-shadow: 0 0 80px rgba(255, 92, 0, 0.08);
  will-change: transform, opacity;
}

.works-transition-dot {
  position: absolute;
  top: 50%;
  left: calc(73% - 8px);
  width: 16px;
  height: 16px;
  border: 2px solid #09090b;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.72);
  will-change: transform, opacity;
}

.works-intro-scene {
  --works-progress: 0;
  position: relative;
  display: flex;
  align-items: center;
  width: min(1720px, 100%);
  min-height: min(72vh, 760px);
}

.works-quote-block {
  position: relative;
  z-index: 2;
  width: min(1120px, 74%);
  margin: 0 0 0 1.2rem;
  transform: translateY(-1.25rem);
}

.works-quote-mark {
  display: block;
  height: 4.4rem;
  color: var(--primary-color-light);
  font-size: 9rem;
  font-weight: 900;
  line-height: 0.72;
}

.works-quote {
  margin: 2.75rem 0 0 2.8rem;
  color: var(--text-light);
  font-size: 5.1rem;
  font-weight: 400;
  line-height: 1.04;
}

.works-quote .word {
  opacity: 0.16;
  will-change: opacity, transform;
}

.works-intro-circles {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -13rem;
  display: grid;
  width: min(36rem, 38vw);
  transform: translateY(-50%);
  will-change: transform;
}

.works-intro-circles span {
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 138, 61, 0.1);
  border-radius: 50%;
  background: #171719;
}

.works-intro-meter {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(1.25rem, 2.5vw, 3rem);
  width: 3px;
  height: min(26vh, 260px);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.16);
  transform: translateY(-50%);
  overflow: hidden;
}

.works-intro-meter span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary-color-light);
  transform: scaleY(var(--works-progress));
  transform-origin: top;
}

.works-intro-note {
  position: absolute;
  z-index: 2;
  right: clamp(3rem, 4.5vw, 5.5rem);
  bottom: clamp(1.5rem, 3.5vh, 3rem);
  width: min(320px, 24vw);
  margin: 0;
  color: var(--muted-text);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1400px) and (min-width: 981px) {
  .works-quote {
    font-size: 4.3rem;
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .works-quote {
    font-size: 3.55rem;
  }
}

.portfolio-panel {
  --portfolio-card-height: clamp(300px, 43vh, 460px);
  display: block;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0 !important;
  overflow: hidden;
  background: #09090b;
  scrollbar-gutter: auto;
}

.works-layout {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.portfolio-slider {
  position: absolute;
  z-index: 2;
  top: clamp(10rem, calc(50vh - 15rem), 30rem);
  left: max(var(--panel-x), calc((100% - 1800px) / 2));
  width: min(calc(100% - var(--panel-x) - var(--panel-x)), 1800px);
  overflow: visible;
  touch-action: pan-y;
  will-change: transform, opacity;
}

.portfolio-slider:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: -6px;
}

.portfolio-slider .swiper-wrapper {
  align-items: stretch;
}

.portfolio-slider .swiper-slide {
  height: auto;
  opacity: 0.56;
  transform: scale(0.96);
  transform-origin: center;
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.portfolio-slider .swiper-slide-prev,
.portfolio-slider .swiper-slide-next {
  opacity: 0.78;
}

.portfolio-card {
  position: relative;
  height: var(--portfolio-card-height);
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portfolio-visual {
  position: relative;
  height: 100%;
  border: 1px solid rgba(248, 244, 239, 0.12);
  border-radius: 4px;
  background: #151519;
  overflow: hidden;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.16);
  transition:
    border-color 0.6s ease,
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 3px solid var(--project-accent);
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 10, 0.78));
  pointer-events: none;
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-slider .swiper-slide-active .portfolio-visual img {
  transform: scale(1);
}

.portfolio-slider .swiper-slide-active .portfolio-visual {
  border-color: rgba(248, 244, 239, 0.24);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
}

.project-number {
  display: none;
}

.portfolio-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: clamp(1rem, 1.8vw, 1.6rem);
  pointer-events: none;
}

.project-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--project-accent);
  font-size: clamp(0.62rem, 0.66vw, 0.75rem);
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1.8rem, 2.7vw, 3.4rem);
  font-weight: 600;
  line-height: 0.95;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.portfolio-copy p {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tone-orange {
  --project-accent: var(--primary-color-light);
}

.tone-green {
  --project-accent: var(--accent-green);
}

.tone-cream {
  --project-accent: #ffd5a8;
}

.tone-steel {
  --project-accent: var(--accent-steel);
}

.portfolio-controls {
  position: absolute;
  z-index: 5;
  top: calc(var(--portfolio-card-height) + clamp(1.35rem, 2.8vh, 2rem));
  left: 0;
  display: grid;
  grid-template-columns: 42px minmax(130px, 230px) 70px 42px;
  gap: 0.8rem;
  align-items: center;
  width: auto;
  margin: 0;
  will-change: transform, opacity;
}

.portfolio-progress {
  display: flex;
  gap: 6px;
  width: 100%;
}

.portfolio-progress i {
  flex: 1 1 0;
  height: 2px;
  background: rgba(248, 244, 239, 0.2);
  transition: background-color 0.45s ease, transform 0.45s ease;
}

.portfolio-progress i.is-active {
  background: var(--primary-color-light);
  transform: scaleY(1.6);
}

.portfolio-progress i.is-complete {
  background: rgba(255, 138, 61, 0.56);
}

.portfolio-pagination {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 104px;
  color: var(--muted-text);
  font-size: 0.76rem;
  font-weight: 700;
}

.portfolio-pagination .swiper-pagination-current {
  color: var(--text-light);
  font-size: 1.35rem;
}

.portfolio-exit-thread {
  position: absolute;
  z-index: 1;
  right: -3vw;
  bottom: 3vh;
  width: min(900px, 62vw);
  height: 35vh;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.portfolio-exit-thread path {
  fill: none;
  stroke: rgba(248, 244, 239, 0.82);
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.safe-panel {
  background:
    linear-gradient(90deg, rgba(255, 92, 0, 0.14), transparent 42%),
    #100f0f;
}

.proof-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.06);
  color: var(--text-light);
}

.proof-list span {
  color: var(--primary-color-light);
  font-weight: 900;
}

.contact-section {
  align-items: center;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  color: var(--muted-text);
  font-style: normal;
}

.contact-details a {
  color: var(--text-light);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--primary-color-light);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.07);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  color: var(--muted-text);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 11, 15, 0.72);
  color: var(--text-light);
  padding: 0.82rem 0.9rem;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color-light);
}

.contact-form small {
  color: #ffb58a;
}

.form-status {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: rgba(39, 211, 162, 0.16);
  color: var(--text-light);
}

.site-footer {
  position: fixed;
  z-index: 900;
  left: var(--panel-x);
  right: var(--panel-x);
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--muted-text);
  font-size: 0.85rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary-color-light);
}

.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2400;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height;
}

.custom-cursor {
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  mix-blend-mode: difference;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.custom-cursor-follower {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 138, 61, 0.8);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.cursor-hover .custom-cursor-follower {
  width: 68px;
  height: 68px;
  border-color: var(--primary-color-light);
  background: rgba(255, 138, 61, 0.08);
}

body.nav-cursor-hover .custom-cursor {
  width: 74px;
  height: 74px;
  background: var(--primary-color);
  opacity: 0.95;
}

body.nav-cursor-hover .custom-cursor-follower {
  width: 0;
  height: 0;
  border-color: transparent;
  background: transparent;
}

.word,
.char {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mobileMenuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@media (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: auto;
    padding: 1rem;
  }

  .navbar {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 3;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.8rem;
  }

  .navbar a {
    min-width: 64px;
    min-height: 48px;
    font-size: 0.88rem;
  }

  .navbar a::before {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .nav-talk-button {
    min-width: 118px;
    min-height: 44px;
    border-width: 2px;
    font-size: 0.82rem;
  }

  .menu-trigger {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .menu-trigger i,
  .menu-trigger i::before,
  .menu-trigger i::after {
    width: 30px;
    height: 2px;
  }

  .section-container {
    height: auto;
    overflow: visible;
  }

  .section-panel {
    position: relative;
    min-height: auto;
    height: auto;
    padding-top: 11rem;
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .hero-grid,
  .split-panel,
  .safe-layout,
  .contact-layout,
  .works-heading {
    grid-template-columns: 1fr;
  }

  .works-intro-panel {
    min-height: 88vh;
  }

  .works-intro-scene {
    align-items: flex-start;
    justify-content: center;
    min-height: 68vh;
  }

  .works-quote-block {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .works-quote {
    margin: 2.25rem 0 0;
    font-size: 3.2rem;
  }

  .works-quote .word {
    opacity: 1 !important;
    transform: none !important;
  }

  .works-quote-mark {
    height: 3rem;
    font-size: 6rem;
  }

  .works-intro-circles {
    right: -20rem;
    width: 32rem;
    opacity: 0.55;
  }

  .works-intro-meter {
    display: none;
  }

  .works-intro-note {
    position: static;
    width: min(420px, 82%);
    margin-top: 2rem;
    text-align: left;
  }

  .portfolio-panel {
    overflow: hidden;
  }

  .portfolio-slider {
    overflow: hidden;
  }

  .portfolio-copy {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .portfolio-visual {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-panel {
    overflow: hidden;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-headline-row,
  .hero-meta-row {
    grid-template-columns: 1fr;
  }

  .about-pin-layout {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .about-copy {
    padding-right: 0;
    transform: none !important;
    will-change: auto;
  }

  .about-track-viewport {
    overflow: visible;
  }

  .about-track {
    display: grid;
    width: 100%;
    transform: none !important;
  }

  .about-scroll-card {
    min-height: auto;
    flex-basis: auto;
  }

  .about-card-media {
    width: min(500px, 76%);
    margin-bottom: 2rem;
    transform: none !important;
    will-change: auto;
  }

  .hero-headline-row {
    gap: 1rem;
  }

  .hero-headline-row h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 6rem);
  }

  .hero-scroll-badge {
    justify-self: start;
    width: 108px;
    height: 108px;
  }

  .hero-meta-row {
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .hero-deck-link {
    justify-self: start;
  }

  .hero-showcase {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: 300px;
    margin-top: 2rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-board {
    margin: 0;
    max-width: 430px;
  }

  .card-grid,
  .designer-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    position: static;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem;
  }

  .logo {
    min-width: 4.6rem;
  }

  .logo span {
    font-size: 1.25rem;
  }

  .logo small {
    display: none;
  }

  .logo-image {
    width: 100%;
  }

  .logo.has-image {
    width: 132px;
    min-width: 132px;
    height: 44px;
  }

  .nav-talk-button {
    display: none;
  }

  .navbar ul {
    gap: 0.1rem 0.35rem;
  }

  .navbar a {
    min-width: 58px;
    min-height: 40px;
    font-size: 0.78rem;
  }

  .hero-headline-row h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .works-quote {
    font-size: 2.45rem;
  }

  .hero-services {
    font-size: 0.9rem;
  }

  .hero-rating {
    width: 100%;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-panel {
    padding-bottom: 5.5rem;
  }

  .capability-slide {
    min-height: 340px;
  }

  .portfolio-card {
    min-height: 0;
  }

  .portfolio-copy h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .slider-controls {
    grid-template-columns: 42px minmax(80px, 1fr) 42px;
    gap: 0.5rem;
  }

}

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

  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }

  .works-intro-scene {
    --works-progress: 1;
  }

  .works-quote .word {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-card-media {
    transform: none !important;
  }
}

/* Full reference sequence */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.create-panel {
  display: block;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 !important;
  background: var(--surface-light);
  color: var(--text-dark);
  overflow: hidden;
  scrollbar-gutter: auto;
}

.create-stage {
  position: absolute;
  inset: 0;
  width: 100vw;
  max-width: none !important;
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
}

.capabilities-slider {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  touch-action: pan-y;
}

.capabilities-slider:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: -6px;
}

.capabilities-slider.is-past-intro {
  cursor: grab;
}

.capabilities-slider.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.capabilities-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.capabilities-slider .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
  opacity: 1;
  visibility: visible;
}

.capabilities-slider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: block;
}

.capabilities-slider .swiper-button-disabled {
  cursor: default;
  opacity: 0.35;
}

.create-manifesto-slide,
.capability-scene {
  position: relative;
  height: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.create-stage-intro {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.08), transparent 48%),
    var(--surface-light);
  color: var(--text-dark);
  overflow: hidden;
  will-change: background-color, transform, opacity;
}

.create-manifesto-slide {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

.create-manifesto {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(820px, 78%);
  text-align: center;
  text-transform: uppercase;
}

.create-manifesto h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(4.8rem, 8.4vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
  transform-origin: center;
  will-change: transform, opacity;
}

.create-entry-words {
  position: absolute;
  z-index: 3;
  inset: -42% -54%;
  display: grid;
  align-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  color: var(--primary-color-light);
  pointer-events: none;
  transform: rotate(-11deg);
  transform-origin: center;
  will-change: transform, opacity;
}

.create-entry-words span {
  display: block;
  font-size: clamp(9rem, 16.5vw, 18rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.74;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity;
}

.create-stage-intro > p,
.create-manifesto-slide > p {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  width: min(390px, 32vw);
  margin: 0;
  color: rgba(20, 17, 15, 0.58);
  text-align: right;
  will-change: transform, opacity;
}

.capability-scene {
  display: grid;
  place-items: center;
  isolation: isolate;
  color: var(--text-dark);
  transform: none !important;
}

.capability-scene-orange {
  background: var(--orange-surface);
}

.capability-scene-green {
  background: var(--green-surface);
}

.capability-scene-cream {
  background: var(--cream-surface);
}

.capability-scene-steel {
  background: var(--steel-surface);
}

.capability-scene-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(20, 17, 15, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 17, 15, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}

.capability-scene-media {
  width: min(820px, 60%);
  height: min(58vh, 580px);
  border: 1px solid rgba(20, 17, 15, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 32px 90px rgba(20, 17, 15, 0.2);
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.capability-scene:nth-child(even) .capability-scene-media {
  transform: rotate(1.5deg);
}

.capability-scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-scene-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 4vh, 3.5rem);
  width: min(400px, 30%);
}

.capability-scene-copy .slide-index {
  display: block;
  margin-bottom: 1rem;
  color: rgba(20, 17, 15, 0.4);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.capability-scene-copy h3 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
}

.capability-scene-copy p {
  color: rgba(20, 17, 15, 0.7);
}

.capability-pill {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 4vh, 3rem);
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(20, 17, 15, 0.15);
  border-radius: 999px;
  background: var(--surface-light);
  color: var(--text-dark);
  font-weight: 700;
}

.capability-controls {
  position: absolute;
  z-index: 8;
  right: 1.25rem;
  top: clamp(7.5rem, 10vw, 9rem);
  grid-template-columns: 42px auto 42px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.capabilities-slider.is-past-intro .capability-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.capability-controls .swiper-button-prev,
.capability-controls .swiper-button-next {
  width: 42px;
  height: 42px;
  border-color: rgba(20, 17, 15, 0.22);
  background: rgba(255, 250, 243, 0.88);
  color: var(--text-dark);
}

.capability-pagination {
  min-width: 88px;
  color: rgba(20, 17, 15, 0.55);
  font-weight: 700;
  text-align: center;
}

.designers-panel {
  height: 100dvh;
  min-height: 100dvh;
  padding: 0 !important;
  background: var(--cream-surface);
  color: var(--text-dark);
  overflow: hidden;
}

.designers-stage {
  position: absolute;
  inset: 0;
  isolation: isolate;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(8.5rem, 14vh, 11rem) clamp(2rem, 5vw, 6rem) clamp(2rem, 5vh, 4rem);
  display: grid;
  place-items: center;
}

.designers-stage > .eyebrow {
  position: absolute;
  z-index: 3;
  top: clamp(8.75rem, 15vh, 11.5rem);
  left: clamp(2rem, 5vw, 6rem);
  margin: 0;
  color: var(--primary-color);
}

.designers-statement {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(91vw, 1580px);
  max-width: none;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(3.25rem, 5.55vw, 6.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  transform-origin: center;
  will-change: transform, opacity;
}

.designers-line {
  display: block;
  white-space: nowrap;
  will-change: transform, opacity;
}

.designers-line-accent {
  color: var(--primary-color);
  font-weight: 900;
}

.designers-line-roster {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.08em;
  font-size: 0.77em;
  line-height: 1;
}

.designers-word {
  display: inline-block;
  white-space: nowrap;
}

.designer-roster {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: clamp(250px, 23vw, 410px);
  height: clamp(50px, 5vw, 76px);
  margin: 0 0.18em;
  vertical-align: middle;
  will-change: width, opacity;
}

.designer-token {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(48px, 4.4vw, 74px);
  aspect-ratio: 1;
  border: 3px solid var(--cream-surface);
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-dark);
  font-size: clamp(0.82rem, 1.3vw, 1.25rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(20, 17, 15, 0.12);
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform, opacity;
}

.designer-token:nth-child(2) {
  background: var(--green-surface);
}

.designer-token:nth-child(3) {
  background: var(--steel-surface);
}

.designer-token-more {
  background: var(--surface-dark);
  color: var(--text-light);
}

.designer-token:nth-child(1) {
  transform: translate(calc(-50% - 96px), -50%);
}

.designer-token:nth-child(2) {
  transform: translate(calc(-50% - 32px), -50%);
}

.designer-token:nth-child(3) {
  transform: translate(calc(-50% + 32px), -50%);
}

.designer-token:nth-child(4) {
  transform: translate(calc(-50% + 96px), -50%);
}

.designers-note {
  position: absolute;
  z-index: 3;
  right: clamp(2rem, 5vw, 6rem);
  bottom: clamp(2rem, 5vh, 4rem);
  width: min(290px, 24vw);
  margin: 0;
  color: rgba(20, 17, 15, 0.58);
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  will-change: transform, opacity;
}

.designer-project {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: clamp(0.5rem, 0.75vw, 0.8rem);
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 6px;
  box-shadow: 0 32px 90px rgba(20, 17, 15, 0.2);
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.designer-project-primary {
  top: 10%;
  right: -2%;
  width: min(460px, 31vw);
  background: var(--green-surface);
  transform: rotate(7deg);
}

.designer-project-secondary {
  bottom: -5%;
  left: 1.5%;
  width: min(530px, 36vw);
  background: var(--steel-surface);
  transform: rotate(-7deg);
}

.designer-project-tertiary {
  right: 16%;
  bottom: -10%;
  width: min(410px, 28vw);
  background: var(--primary-color);
  transform: rotate(-5deg);
}

.designer-project img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

.designer-project figcaption {
  padding: 0.7rem 0.2rem 0.1rem;
  color: var(--text-dark);
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0;
}

.designers-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(88vw, 1500px);
  aspect-ratio: 2.55;
  border: 1px solid rgba(255, 92, 0, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  will-change: transform;
}

.designers-motion-dot {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  margin: -6px 0 0 -6px;
  border: 3px solid var(--cream-surface);
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(255, 92, 0, 0.34);
  pointer-events: none;
  will-change: transform, opacity;
}

.community-panel {
  display: block;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0 !important;
  background: var(--surface-light);
  color: var(--text-dark);
  overflow: hidden;
  scrollbar-gutter: auto;
  transform-origin: center;
}

.community-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  perspective: 1500px;
  overflow: hidden;
}

.community-type-wall {
  position: relative;
  z-index: 2;
  width: min(690px, 49vw);
  height: clamp(315px, 42vh, 430px);
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform, opacity;
}

.community-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  backface-visibility: hidden;
}

.community-lines,
.community-platforms {
  transform-style: preserve-3d;
}

.community-lines span,
.community-platforms span {
  color: var(--text-dark);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity;
}

.community-lines span {
  font-size: clamp(1.05rem, 1.55vw, 1.8rem);
  line-height: 0.98;
}

.community-lines strong {
  color: var(--text-dark);
}

.community-lines span:nth-child(4n + 2) strong {
  color: var(--primary-color);
}

.community-platforms {
  left: 100%;
  width: min(520px, 38vw);
  padding-left: clamp(0.25rem, 0.7vw, 0.75rem);
  transform: rotateY(90deg);
  transform-origin: left;
}

.community-platforms span {
  font-size: clamp(1.65rem, 3.05vw, 3.5rem);
  line-height: 0.93;
}

.community-platforms span:nth-child(2) {
  color: var(--primary-color);
}

.community-platforms span:nth-child(4) {
  color: var(--accent-green);
}

.community-dots {
  position: absolute;
  inset: 0;
}

.community-dots i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.68;
  will-change: transform, opacity;
}

.community-dots i:nth-child(1) { left: 8%; top: 18%; }
.community-dots i:nth-child(2) { left: 20%; top: 72%; background: var(--accent-steel); }
.community-dots i:nth-child(3) { left: 38%; top: 9%; background: var(--accent-green); }
.community-dots i:nth-child(4) { left: 62%; top: 82%; }
.community-dots i:nth-child(5) { left: 78%; top: 16%; background: var(--accent-steel); }
.community-dots i:nth-child(6) { left: 92%; top: 62%; background: var(--accent-green); }
.community-dots i:nth-child(7) { left: 13%; top: 48%; background: var(--accent-green); }
.community-dots i:nth-child(8) { left: 85%; top: 43%; }

.safe-panel {
  display: block;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0 !important;
  background: #0b0b0d;
  overflow: hidden;
  scrollbar-gutter: auto;
}

.safe-stage {
  position: absolute;
  inset: 0;
  isolation: isolate;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.safe-kicker {
  position: absolute;
  z-index: 4;
  top: clamp(9.5rem, 20vh, 13rem);
  left: 50%;
  width: min(720px, 82vw);
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1.3rem, 2.25vw, 2.4rem);
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
  will-change: transform, opacity;
}

.safe-thread {
  position: absolute;
  z-index: 1;
  inset: 18vh -3vw 0;
  width: 106vw;
  height: 76vh;
  overflow: visible;
  pointer-events: none;
}

.safe-thread path {
  fill: none;
  stroke: rgba(248, 244, 239, 0.72);
  stroke-width: 1.3;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset, opacity;
}

.safe-media {
  --safe-copy-progress: 0;
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 50%;
  width: min(420px, 27vw);
  height: min(420px, 41vh);
  min-height: 0;
  border: 1px solid rgba(248, 244, 239, 0.18);
  border-radius: 28%;
  background: var(--cream-surface);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  transform-origin: center;
  will-change: top, left, width, height, border-radius, transform;
}

.safe-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--cream-surface);
  opacity: calc(0.04 + var(--safe-copy-progress) * 0.7);
  pointer-events: none;
}

.safe-media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

.safe-media-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(1rem, 2vh, 1.5rem);
  width: 100%;
  padding: 2rem;
  color: var(--text-dark);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
}

.safe-media-copy h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.safe-mark {
  display: grid;
  place-items: center;
  width: clamp(58px, 6vw, 90px);
  height: clamp(58px, 6vw, 90px);
  border: clamp(10px, 1vw, 15px) solid var(--text-dark);
  border-right-color: transparent;
  border-radius: 50%;
  color: transparent;
  transform: rotate(42deg);
}

.safe-media-copy .button {
  min-width: 190px;
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: var(--text-light);
}

.client-strip {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(0.8rem, 1.6vh, 1.4rem);
  left: clamp(1rem, 2vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(20, 17, 15, 0.48);
  font-size: clamp(0.58rem, 0.68vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  will-change: transform, opacity;
}

.contact-section {
  grid-template-rows: auto auto;
  align-content: space-between;
  align-items: stretch;
  padding-top: clamp(7.5rem, 14vh, 9rem);
  padding-bottom: 0;
  background: var(--surface-light);
  color: var(--text-dark);
  color-scheme: light;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(580px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 6.5rem);
  width: min(1480px, 100%);
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
  min-width: 0;
}

.contact-intro h2 {
  max-width: 520px;
  margin-top: 1.25rem;
  color: var(--text-dark);
  font-size: 4.75rem;
  font-weight: 400;
  line-height: 1.03;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 17, 15, 0.12);
}

.contact-trust,
.contact-socials {
  display: grid;
  gap: 0.75rem;
  margin-top: 0;
}

.contact-trust > span,
.contact-socials > span {
  color: rgba(20, 17, 15, 0.42);
  font-size: 1rem;
  font-weight: 700;
}

.contact-stage .hero-rating {
  color: var(--text-dark);
}

.contact-socials > div {
  display: flex;
  gap: 0.6rem;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-socials .social-icon-behance {
  width: 20px;
  height: 20px;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  border-color: var(--primary-color-light);
  background: rgba(255, 138, 61, 0.16);
  transform: translateY(-2px);
}

.contact-stage .contact-details {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
  color: rgba(20, 17, 15, 0.5);
}

.contact-stage .contact-details a {
  color: var(--text-dark);
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 1.15rem 1.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.contact-form .form-status,
.contact-choices,
.contact-message,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-form .contact-field {
  gap: 0.55rem;
}

.contact-form .contact-field > span,
.contact-choices legend {
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  padding: 0.7rem 0;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-form .contact-field:focus-within > span {
  color: var(--primary-color);
}

.contact-form .contact-field > span {
  transition: color 0.24s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--primary-color);
  box-shadow: 0 1px 0 var(--primary-color);
  outline: 0;
}

.contact-form [aria-invalid="true"] {
  border-bottom-color: var(--primary-color);
}

.contact-form small {
  color: #a83d14;
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-section .form-status {
  border: 1px solid rgba(39, 151, 121, 0.24);
  background: rgba(39, 211, 162, 0.12);
  color: #155b49;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(20, 17, 15, 0.34);
}

.contact-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choices legend {
  width: 100%;
  margin-bottom: 0.2rem;
}

.choice-chip {
  display: block !important;
}

.choice-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-chip span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0.6rem 1.05rem;
  border: 1px solid rgba(20, 17, 15, 0.13);
  border-radius: 999px;
  color: var(--text-dark) !important;
  font-size: 0.76rem !important;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-chip:hover span {
  border-color: rgba(255, 92, 0, 0.42);
  background: rgba(255, 138, 61, 0.08);
  transform: translateY(-1px);
}

.choice-chip input:checked + span {
  border-color: var(--primary-color);
  background: var(--primary-color-light);
  color: var(--text-dark) !important;
}

.choice-chip input:focus-visible + span {
  outline: 2px solid var(--primary-color-light);
  outline-offset: 3px;
}

.contact-submit {
  justify-self: start;
  min-width: 210px;
  min-height: 56px;
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: var(--text-light);
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: var(--primary-color-light);
  background: var(--primary-color-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.contact-section .site-footer {
  position: static;
  z-index: 1;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-content: normal;
  width: 100%;
  margin: 0;
  padding: 1.25rem 0 1.35rem;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
  color: rgba(20, 17, 15, 0.48);
}

.contact-section .site-footer > :nth-child(2),
.contact-section .site-footer > :nth-child(3) {
  text-align: center;
}

.contact-section .site-footer > :last-child {
  text-align: right;
}

.contact-section .site-footer a {
  color: var(--text-dark);
}

.create-panel,
.designers-panel,
.community-panel,
.contact-section {
  color-scheme: light;
}

body.safe-expanded .site-header,
body[data-active-panel="create"] .site-header,
body[data-active-panel="designers"] .site-header,
body[data-active-panel="community"] .site-header,
body[data-active-panel="contact"] .site-header {
  background: rgba(255, 250, 243, 0.94);
  color: var(--text-dark);
  border-bottom-color: rgba(20, 17, 15, 0.1);
}

body.safe-expanded .navbar a,
body[data-active-panel="create"] .navbar a,
body[data-active-panel="designers"] .navbar a,
body[data-active-panel="community"] .navbar a,
body[data-active-panel="contact"] .navbar a,
body.safe-expanded .menu-trigger,
body[data-active-panel="create"] .menu-trigger,
body[data-active-panel="designers"] .menu-trigger,
body[data-active-panel="community"] .menu-trigger,
body[data-active-panel="contact"] .menu-trigger {
  color: var(--text-dark);
}

body.safe-expanded .menu-trigger i,
body.safe-expanded .menu-trigger i::before,
body.safe-expanded .menu-trigger i::after,
body[data-active-panel="create"] .menu-trigger i,
body[data-active-panel="create"] .menu-trigger i::before,
body[data-active-panel="create"] .menu-trigger i::after,
body[data-active-panel="designers"] .menu-trigger i,
body[data-active-panel="designers"] .menu-trigger i::before,
body[data-active-panel="designers"] .menu-trigger i::after,
body[data-active-panel="community"] .menu-trigger i,
body[data-active-panel="community"] .menu-trigger i::before,
body[data-active-panel="community"] .menu-trigger i::after,
body[data-active-panel="contact"] .menu-trigger i,
body[data-active-panel="contact"] .menu-trigger i::before,
body[data-active-panel="contact"] .menu-trigger i::after {
  background: var(--text-dark);
}

body.safe-expanded .nav-talk-button,
body[data-active-panel="create"] .nav-talk-button,
body[data-active-panel="designers"] .nav-talk-button,
body[data-active-panel="community"] .nav-talk-button,
body[data-active-panel="contact"] .nav-talk-button {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

body.safe-expanded .logo small,
body[data-active-panel="create"] .logo small,
body[data-active-panel="designers"] .logo small,
body[data-active-panel="community"] .logo small,
body[data-active-panel="contact"] .logo small {
  color: rgba(20, 17, 15, 0.55);
}

@media (max-width: 980px) {
  .site-header .navbar {
    display: none;
  }

  .site-header.menu-open .navbar {
    display: block;
    animation: mobileMenuReveal 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .capabilities-slider {
    height: 100%;
  }

  .capability-scene-media {
    width: 76%;
    height: 46%;
  }

  .capability-scene-copy {
    width: 58%;
  }

  .designers-panel {
    height: auto;
    min-height: 100svh;
    padding: 10.5rem 1rem 3rem !important;
  }

  .designers-stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 760px;
    padding: 4.5rem 0 11rem;
  }

  .community-stage {
    min-height: 680px;
  }

  .designers-stage > .eyebrow {
    top: 0;
    left: 0;
  }

  .designers-statement {
    width: min(94vw, 820px);
    font-size: clamp(2.75rem, 6.2vw, 4.5rem);
  }

  .designers-line-roster {
    font-size: 0.64em;
  }

  .designer-roster {
    width: clamp(210px, 31vw, 280px);
    height: 58px;
  }

  .designer-token {
    width: 58px;
    opacity: 1;
  }

  .designer-token:nth-child(1) {
    transform: translate(calc(-50% - 72px), -50%);
  }

  .designer-token:nth-child(2) {
    transform: translate(calc(-50% - 24px), -50%);
  }

  .designer-token:nth-child(3) {
    transform: translate(calc(-50% + 24px), -50%);
  }

  .designer-token:nth-child(4) {
    transform: translate(calc(-50% + 72px), -50%);
  }

  .designer-project-primary {
    top: auto;
    right: 0;
    bottom: -1rem;
    width: min(330px, 42vw);
    opacity: 1;
    transform: rotate(5deg) !important;
  }

  .designer-project-secondary,
  .designer-project-tertiary {
    display: none;
  }

  .designers-note {
    right: auto;
    bottom: 1.5rem;
    left: 0;
    width: min(300px, 43vw);
    text-align: left;
  }

  .designers-motion-dot {
    display: none;
  }

  .portfolio-panel {
    height: auto;
    min-height: 760px;
    padding: 0 !important;
  }

  .works-layout {
    position: relative;
    inset: auto;
    height: 760px;
    min-height: 760px;
  }

  .portfolio-slider {
    top: 11.5rem;
    left: 0;
    width: 100%;
    padding-inline: 1rem;
    overflow: hidden;
  }

  .portfolio-card {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .portfolio-controls {
    top: calc(100% + 1.4rem);
    left: 1rem;
    grid-template-columns: 42px minmax(80px, 1fr) 62px 42px;
    width: calc(100% - 2rem);
  }

  .portfolio-exit-thread {
    display: none;
  }

  .community-panel {
    height: auto;
    min-height: 760px;
    padding: 10.5rem 1rem 4rem !important;
    overflow: hidden;
  }

  .community-type-wall {
    display: grid;
    gap: 1.5rem;
    width: min(760px, 92vw);
    height: auto;
    transform: none !important;
  }

  .community-stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 620px;
    perspective: none;
  }

  .community-face {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .community-platforms {
    left: auto;
    width: 100%;
    padding-left: 0;
    transform: none !important;
  }

  .community-platforms span {
    color: var(--primary-color);
  }

  .safe-panel {
    height: auto;
    min-height: 900px;
    padding: 10.5rem 1rem 2rem !important;
    background: #3a3431 !important;
  }

  .safe-stage {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 760px;
  }

  .safe-kicker {
    position: relative;
    top: auto;
    left: auto;
    width: min(680px, 100%);
    margin: 0 auto 2rem;
    transform: none !important;
  }

  .safe-thread {
    display: none;
  }

  .safe-media {
    --safe-copy-progress: 1;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: min(68svh, 680px);
    min-height: 560px;
    border-radius: 32px;
    transform: none !important;
  }

  .safe-media-copy,
  .client-strip {
    opacity: 1;
    transform: none !important;
  }

  .contact-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-intro h2 {
    max-width: 700px;
    font-size: 4rem;
  }

  .contact-section .site-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .contact-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-intro h2 {
    font-size: 3rem;
  }

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

  .contact-stage .contact-details {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section .site-footer > * {
    text-align: left !important;
  }

  .create-manifesto h2 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .create-entry-words span {
    font-size: clamp(6.4rem, 31vw, 10rem);
  }

  .create-stage-intro > p,
  .create-manifesto-slide > p {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .capability-scene-media {
    width: calc(100% - 2rem);
    height: 42%;
    transform: none !important;
  }

  .capability-scene-copy {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .capability-pill {
    display: none;
  }

  .capability-controls {
    right: 0.75rem;
    top: 0.75rem;
  }

  .designers-panel {
    padding: 9rem 0.75rem 2rem !important;
  }

  .designers-stage {
    min-height: 720px;
    padding: 4rem 0 12rem;
  }

  .community-stage {
    min-height: 620px;
  }

  .designers-statement {
    width: 100%;
    font-size: clamp(1.85rem, 7.4vw, 2.85rem);
    line-height: 0.92;
  }

  .designers-line-roster {
    display: grid;
    grid-template-columns: auto 168px;
    column-gap: 0.12em;
    row-gap: 0.08em;
    width: 100%;
    margin-top: 0.18em;
    font-size: 0.74em;
  }

  .designers-word-before {
    justify-self: end;
  }

  .designers-word-after {
    grid-column: 1 / -1;
  }

  .designer-roster {
    width: 168px;
    height: 48px;
    margin: 0;
  }

  .designer-token {
    width: 48px;
    border-width: 2px;
  }

  .designer-token:nth-child(1) {
    transform: translate(calc(-50% - 57px), -50%);
  }

  .designer-token:nth-child(2) {
    transform: translate(calc(-50% - 19px), -50%);
  }

  .designer-token:nth-child(3) {
    transform: translate(calc(-50% + 19px), -50%);
  }

  .designer-token:nth-child(4) {
    transform: translate(calc(-50% + 57px), -50%);
  }

  .designer-project-primary {
    right: 50%;
    bottom: -0.5rem;
    width: min(320px, 78vw);
    transform: translateX(50%) rotate(4deg) !important;
  }

  .designers-note {
    display: none;
  }

  .designers-orbit {
    top: 43%;
    width: 108vw;
    aspect-ratio: 1.35;
  }

  .community-type-wall {
    grid-template-columns: 1fr;
    width: 94vw;
    padding: 1.2rem;
  }

  .community-lines span {
    font-size: 0.78rem;
  }

  .community-platforms {
    margin-top: 1rem;
  }

  .community-platforms span {
    font-size: 1.35rem;
  }

  .community-note {
    width: 75vw;
  }

  .safe-media {
    min-height: 540px;
  }

  .safe-media-copy {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .safe-media-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .client-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .contact-field,
  .contact-choices,
  .contact-submit {
    grid-column: 1;
  }

  .choice-chip span {
    min-height: 46px;
    padding: 0.6rem 0.9rem;
  }

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

body.reduced-motion .designer-project {
  opacity: 1;
}

body.reduced-motion .portfolio-panel {
  height: auto;
  min-height: 760px;
}

body.reduced-motion .works-layout {
  position: relative;
  inset: auto;
  height: 760px;
}

body.reduced-motion .portfolio-slider {
  top: 11rem;
  left: 0;
  width: 100%;
  padding-inline: var(--panel-x);
  overflow: hidden;
  transform: none !important;
}

body.reduced-motion .portfolio-controls {
  top: calc(100% + 1.5rem);
  left: var(--panel-x);
}

body.reduced-motion .community-panel,
body.reduced-motion .safe-panel {
  height: auto;
  min-height: 760px;
}

body.reduced-motion .community-stage,
body.reduced-motion .safe-stage {
  position: relative;
  inset: auto;
  min-height: 760px;
}

body.reduced-motion .community-type-wall {
  transform: none !important;
}

body.reduced-motion .safe-panel {
  padding: 10rem var(--panel-x) 2rem !important;
  background: #3a3431 !important;
}

body.reduced-motion .safe-kicker {
  top: 2rem;
}

body.reduced-motion .safe-media {
  --safe-copy-progress: 1;
  top: 8rem;
  left: 0;
  width: 100%;
  height: 600px;
  border-radius: 40px;
  transform: none !important;
}

body.reduced-motion .safe-media-copy,
body.reduced-motion .client-strip {
  opacity: 1;
  transform: none !important;
}

/* Standard editorial pages */
body.standard-page {
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--surface-light);
  color: var(--text-dark);
  color-scheme: light;
}

body.standard-page #main-content {
  min-height: 100vh;
}

.blog-page-shell,
.article-page-shell {
  min-height: 100vh;
  padding-top: 132px;
  background: var(--surface-light);
}

.blog-hero {
  display: grid;
  min-height: 550px;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: end;
  gap: 4rem;
  padding: 5.5rem var(--panel-x) 4.5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.blog-hero-copy {
  max-width: 1050px;
}

.blog-hero .eyebrow,
.blog-section-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero .eyebrow::before,
.blog-section-heading > span::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.blog-hero h1 {
  max-width: 920px;
  margin: 1.2rem 0 1.5rem;
  font-size: 5.25rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-hero-statement {
  max-width: 900px;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}

.blog-hero-intro {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(20, 17, 15, 0.66);
  font-size: 1.05rem;
}

.blog-hero-index {
  display: grid;
  align-self: end;
  justify-items: end;
  padding-bottom: 0.3rem;
  text-align: right;
}

.blog-hero-index strong {
  color: var(--primary-color);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
}

.blog-hero-index span {
  margin-top: 0.5rem;
  color: rgba(20, 17, 15, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-featured-section {
  background: var(--background-dark);
  color: var(--text-light);
}

.blog-featured {
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  color: inherit;
  text-decoration: none;
}

.blog-featured-media {
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-dark);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-featured:hover .blog-featured-media img,
.blog-featured:focus-visible .blog-featured-media img {
  transform: scale(1.025);
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem var(--panel-x);
  border-left: 1px solid rgba(248, 244, 239, 0.14);
}

.blog-featured-label {
  align-self: flex-start;
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--primary-color-light);
  border-radius: 999px;
  color: var(--primary-color-light);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  color: rgba(20, 17, 15, 0.58);
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.blog-post-meta > * + *::before {
  margin-right: 1rem;
  color: var(--primary-color);
  content: "/";
}

.blog-featured-copy .blog-post-meta {
  margin-top: 2.4rem;
  color: rgba(248, 244, 239, 0.56);
}

.blog-featured-copy h2 {
  max-width: 680px;
  margin: 1.5rem 0 1.2rem;
  font-size: 3.6rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-featured-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 244, 239, 0.68);
  font-size: 1rem;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-read-link::after {
  content: "->";
  transition: transform 0.25s ease;
}

a:hover .blog-read-link::after,
a:focus-visible .blog-read-link::after {
  transform: translateX(5px);
}

.blog-feed,
.article-related {
  padding: 6rem var(--panel-x) 7rem;
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.blog-section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  min-width: 0;
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  box-shadow: 0 20px 48px rgba(30, 24, 20, 0.1);
  transform: translateY(-6px);
}

.blog-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--surface-dark);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: scale(1.035);
}

.blog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.55rem;
}

.blog-card-copy h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.blog-card-copy > p {
  margin: 0;
  color: rgba(20, 17, 15, 0.64);
  font-size: 0.92rem;
}

.blog-card-copy .blog-read-link {
  margin-top: auto;
  padding-top: 1.6rem;
  color: var(--primary-color);
}

.blog-footer {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 2rem;
  padding: 2rem var(--panel-x);
  border-top: 1px solid rgba(248, 244, 239, 0.14);
  background: var(--background-dark);
  color: rgba(248, 244, 239, 0.72);
  font-size: 0.82rem;
}

.blog-footer a {
  color: var(--text-light);
  text-decoration: none;
}

.blog-footer a:hover,
.blog-footer a:focus-visible {
  color: var(--primary-color-light);
}

/* Article reading page */
.article-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7rem var(--panel-x) 4.5rem;
}

.article-header .page-breadcrumbs {
  margin-bottom: 4.5rem;
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 4.5rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.article-back-link::before {
  margin-right: 0.65rem;
  content: "<-";
}

.article-header h1 {
  max-width: 1050px;
  margin: 1.5rem 0;
  font-size: 5rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.article-header > p {
  max-width: 790px;
  margin: 0;
  color: rgba(20, 17, 15, 0.65);
  font-size: 1.25rem;
}

.article-hero-media {
  width: calc(100% - (var(--panel-x) * 2));
  max-width: 1600px;
  aspect-ratio: 16 / 7;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface-dark);
}

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

.article-body-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 5rem;
  margin: 0 auto;
  padding: 6rem var(--panel-x) 8rem;
}

.article-aside {
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.6rem;
  border-top: 2px solid var(--primary-color);
  font-size: 0.82rem;
}

.article-aside span {
  color: rgba(20, 17, 15, 0.54);
  text-transform: uppercase;
}

.article-aside a {
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 750;
  text-decoration: none;
}

.article-body p {
  margin: 0 0 2rem;
  color: rgba(20, 17, 15, 0.82);
  font-size: 1.18rem;
  line-height: 1.82;
}

.article-body p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--primary-color);
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 0.78;
}

.article-related {
  border-top: 1px solid rgba(20, 17, 15, 0.14);
  background: rgba(39, 211, 162, 0.08);
}

.blog-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .blog-page-shell,
  .article-page-shell {
    padding-top: 112px;
  }

  .blog-hero {
    min-height: 500px;
  }

  .blog-hero h1,
  .article-header h1 {
    font-size: 4rem;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    min-height: 480px;
  }

  .blog-featured-copy {
    border-top: 1px solid rgba(248, 244, 239, 0.14);
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .blog-page-shell,
  .article-page-shell {
    padding-top: 72px;
  }

  .blog-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
  }

  .blog-hero h1,
  .article-header h1 {
    font-size: 2.7rem;
  }

  .blog-hero-statement {
    font-size: 1.45rem;
  }

  .blog-hero-index {
    justify-items: start;
    text-align: left;
  }

  .blog-featured-media {
    min-height: 320px;
  }

  .blog-featured-copy {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .blog-featured-copy h2,
  .blog-section-heading h2 {
    font-size: 2.25rem;
  }

  .blog-feed,
  .article-related {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .blog-section-heading {
    display: block;
  }

  .blog-section-heading h2 {
    margin-top: 1rem;
  }

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

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

  .article-header {
    padding-top: 4.5rem;
  }

  .article-header .page-breadcrumbs {
    margin-bottom: 3rem;
  }

  .article-back-link {
    margin-bottom: 3rem;
  }

  .article-header > p {
    font-size: 1.05rem;
  }

  .article-hero-media {
    aspect-ratio: 4 / 3;
  }

  .article-body-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .article-body p {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-reveal,
  .blog-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Search landing pages */
.seo-page-shell {
  min-height: 100vh;
  padding-top: 132px;
  background: var(--surface-light);
}

.seo-page-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 5rem;
  padding: 5.5rem var(--panel-x);
  border-bottom: 1px solid rgba(20, 17, 15, 0.14);
}

.seo-page-hero-copy {
  min-width: 0;
  max-width: 840px;
}

.page-breadcrumbs {
  margin-bottom: 3.5rem;
}

.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.page-breadcrumbs li + li::before {
  margin-right: 0.6rem;
  color: var(--primary-color);
  content: "/";
}

.page-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible {
  color: var(--primary-color);
}

.seo-page-eyebrow,
.seo-section-heading > span,
.standard-cta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-page-eyebrow::before,
.seo-section-heading > span::before,
.standard-cta > span::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.seo-page-hero h1 {
  max-width: 840px;
  margin: 1.25rem 0 1.5rem;
  font-size: 4.75rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.seo-page-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(20, 17, 15, 0.66);
  font-size: 1.15rem;
  line-height: 1.65;
}

.seo-page-hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.12);
  border-radius: 6px;
  background: var(--background-dark);
}

.seo-page-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.seo-page-hero-media figcaption {
  padding: 1rem 1.25rem;
  background: var(--background-dark);
  color: rgba(248, 244, 239, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
}

.seo-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid currentColor;
}

.seo-section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-page-principles,
.works-project-index {
  padding: 7rem var(--panel-x) 8rem;
}

.about-entity-answer {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 7rem;
  padding: 7rem var(--panel-x);
  border-bottom: 1px solid rgba(20, 17, 15, 0.14);
  background: #fff;
}

.about-entity-answer header {
  align-self: start;
}

.about-entity-answer h2 {
  max-width: 580px;
  margin: 1.25rem 0 0;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-entity-copy > p {
  max-width: 820px;
  margin: 0;
  color: rgba(20, 17, 15, 0.76);
  font-size: 1.25rem;
  line-height: 1.65;
}

.about-entity-facts {
  margin: 3rem 0 0;
  border-top: 1px solid rgba(20, 17, 15, 0.16);
}

.about-entity-facts > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.about-entity-facts dt {
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-entity-facts dd {
  margin: 0;
  color: rgba(20, 17, 15, 0.72);
  line-height: 1.55;
}

.about-entity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}

.about-page-principles {
  background: var(--background-dark);
  color: var(--text-light);
}

.about-page-principles .seo-section-heading {
  border-color: rgba(248, 244, 239, 0.16);
}

.about-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-page-card {
  min-height: 320px;
  padding: 2rem;
  border: 1px solid rgba(248, 244, 239, 0.15);
  border-radius: 6px;
  background: var(--surface-dark);
}

.about-page-card > span {
  color: var(--primary-color-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-page-card h3 {
  margin: 5rem 0 1rem;
  font-size: 1.7rem;
  line-height: 1.1;
}

.about-page-card p {
  margin: 0;
  color: rgba(248, 244, 239, 0.63);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-page-card.tone-green {
  border-top-color: var(--accent-green);
}

.about-page-card.tone-cream {
  border-top-color: var(--accent-cream);
}

.about-page-card.tone-steel {
  border-top-color: var(--accent-steel);
}

.about-page-card.tone-orange {
  border-top-color: var(--primary-color-light);
}

.about-page-engineers {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 7rem;
  padding: 8rem var(--panel-x);
  background: var(--accent-cream);
}

.about-engineers-copy h2 {
  max-width: 680px;
  margin: 1.3rem 0 1.4rem;
  font-size: 3.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-engineers-copy > p {
  max-width: 580px;
  color: rgba(20, 17, 15, 0.64);
  line-height: 1.65;
}

.seo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-text-link::after {
  color: var(--primary-color);
  content: "->";
  transition: transform 0.24s ease;
}

.seo-text-link:hover::after,
.seo-text-link:focus-visible::after {
  transform: translateX(5px);
}

.engineer-roster-list {
  border-top: 1px solid rgba(20, 17, 15, 0.18);
}

.engineer-roster-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.18);
}

.engineer-roster-list article > span {
  padding-top: 0.35rem;
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
}

.engineer-roster-list h3 {
  margin: 0;
  font-size: 1.65rem;
}

.engineer-roster-list p {
  max-width: 660px;
  margin: 0.65rem 0 0;
  color: rgba(20, 17, 15, 0.62);
  line-height: 1.55;
}

.works-page-hero {
  border-color: rgba(248, 244, 239, 0.14);
  background: var(--background-dark);
  color: var(--text-light);
}

.works-page-hero .page-breadcrumbs ol,
.works-page-hero .seo-page-hero-copy > p {
  color: rgba(248, 244, 239, 0.62);
}

.works-page-hero .seo-page-hero-media {
  border-color: rgba(255, 138, 61, 0.26);
}

.works-project-index {
  background: var(--surface-light);
  color: var(--text-dark);
}

.works-project-index .seo-section-heading {
  border-color: rgba(20, 17, 15, 0.16);
}

.seo-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.seo-project-card {
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: 6px;
  background: #fff;
}

.seo-project-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--background-dark);
}

.seo-project-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-project-card:hover figure img {
  transform: scale(1.025);
}

.seo-project-card figure span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 244, 239, 0.28);
  border-radius: 50%;
  background: rgba(13, 14, 16, 0.8);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.seo-project-card > div {
  min-height: 240px;
  padding: 2rem;
}

.seo-project-card > div > span {
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-project-card h3 {
  margin: 1.4rem 0 0.8rem;
  font-size: 2.3rem;
  line-height: 1.05;
}

.seo-project-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(20, 17, 15, 0.64);
  line-height: 1.65;
}

.seo-project-card.tone-green {
  border-bottom-color: var(--accent-green);
}

.seo-project-card.tone-steel {
  border-bottom-color: var(--accent-steel);
}

.seo-project-card.tone-cream {
  border-bottom-color: #d5b98b;
}

.seo-project-card.tone-orange {
  border-bottom-color: var(--primary-color);
}

.standard-cta {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  padding: 5rem var(--panel-x);
  background: var(--accent-green);
  color: var(--text-dark);
  text-align: center;
}

.standard-cta > span {
  color: var(--text-dark);
}

.standard-cta h2 {
  max-width: 850px;
  margin: 1.2rem 0 2rem;
  white-space: pre-line;
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.standard-cta .button {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: var(--text-light);
}

.standard-footer {
  grid-template-columns: minmax(220px, 1fr) repeat(5, auto);
}

.contact-page-shell {
  background: var(--surface-light);
}

.contact-page-intro {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  align-items: end;
  gap: 6rem;
  padding: 6rem var(--panel-x) 5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.contact-page-intro > div {
  max-width: 900px;
}

.contact-page-intro h1 {
  max-width: 900px;
  margin: 1.3rem 0 1.5rem;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-page-intro > div > p {
  max-width: 720px;
  margin: 0;
  color: rgba(20, 17, 15, 0.62);
  line-height: 1.65;
}

.contact-page-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding-top: 1.3rem;
  border-top: 2px solid var(--primary-color);
  font-style: normal;
}

.contact-page-details > span {
  margin-bottom: 1rem;
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-details a {
  color: var(--text-dark);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-page-details a:hover,
.contact-page-details a:focus-visible {
  color: var(--primary-color);
}

.contact-page-details p {
  margin: 0.5rem 0 0;
  color: rgba(20, 17, 15, 0.6);
}

.contact-page-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 6rem;
  padding: 7rem var(--panel-x) 8rem;
  background: #fff;
}

.contact-page-aside {
  max-width: 430px;
}

.contact-page-aside > span {
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-aside > p {
  margin: 1rem 0 2.5rem;
  color: rgba(20, 17, 15, 0.66);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-page-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-page-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(20, 17, 15, 0.16);
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-page-socials .social-icon {
  width: 15px;
  height: 15px;
}

.contact-page-socials a:hover,
.contact-page-socials a:focus-visible {
  border-color: var(--primary-color-light);
  background: rgba(255, 138, 61, 0.12);
}

.contact-page-form {
  min-width: 0;
}

.contact-page-form .form-status {
  border: 1px solid rgba(39, 151, 121, 0.24);
  background: rgba(39, 211, 162, 0.12);
  color: #155b49;
}

@media (max-width: 1100px) {
  .seo-page-shell {
    padding-top: 112px;
  }

  .seo-page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .seo-page-hero h1,
  .contact-page-intro h1 {
    font-size: 4rem;
  }

  .seo-page-hero-media {
    width: 100%;
    max-width: 820px;
  }

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

  .about-page-engineers,
  .about-entity-answer,
  .contact-page-workspace {
    gap: 4rem;
  }

  .contact-page-intro {
    min-height: 520px;
    gap: 3rem;
  }

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

@media (max-width: 760px) {
  .seo-page-shell {
    padding-top: 72px;
  }

  .seo-page-hero,
  .contact-page-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .page-breadcrumbs {
    margin-bottom: 2.5rem;
  }

  .seo-page-hero h1,
  .contact-page-intro h1 {
    font-size: 2.75rem;
  }

  .seo-page-hero-copy > p {
    font-size: 1rem;
  }

  .seo-section-heading {
    display: block;
  }

  .seo-section-heading h2 {
    margin-top: 1rem;
    font-size: 2.4rem;
  }

  .about-page-principles,
  .works-project-index,
  .about-entity-answer,
  .about-page-engineers,
  .contact-page-workspace {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .about-page-grid,
  .about-entity-answer,
  .about-page-engineers,
  .seo-project-grid,
  .contact-page-workspace {
    grid-template-columns: 1fr;
  }

  .about-entity-answer h2 {
    font-size: 2.5rem;
  }

  .about-entity-copy > p {
    font-size: 1.05rem;
  }

  .about-entity-facts > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .about-page-card {
    min-height: 270px;
  }

  .about-page-card h3 {
    margin-top: 3.5rem;
  }

  .about-engineers-copy h2 {
    font-size: 2.5rem;
  }

  .seo-project-card > div {
    min-height: auto;
  }

  .standard-cta {
    min-height: 380px;
  }

  .standard-cta h2 {
    font-size: 2.65rem;
  }

  .contact-page-intro {
    min-height: auto;
  }

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

  .contact-page-form .contact-form > * {
    grid-column: 1;
  }

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

/* Geco Journal: editorial news index */
.news-page-shell {
  min-height: 100vh;
  padding-top: 132px;
  background: var(--surface-light);
  color: var(--text-dark);
}

.news-masthead {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: end;
  gap: 4rem;
  padding: 5.5rem var(--panel-x) 4rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.news-masthead-copy {
  max-width: 1120px;
}

.news-masthead .page-breadcrumbs {
  margin-bottom: 4rem;
}

.news-kicker,
.news-latest > header > span,
.news-archive-heading > div > span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary-color);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-kicker::before,
.news-latest > header > span::before,
.news-archive-heading > div > span::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.news-masthead h1 {
  margin: 1rem 0 1.4rem;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.news-masthead-copy > p {
  max-width: 790px;
  margin: 0;
  color: rgba(20, 17, 15, 0.64);
  font-size: 1.5rem;
  line-height: 1.35;
}

.news-masthead-index {
  display: grid;
  justify-items: end;
  padding-bottom: 0.2rem;
  text-align: right;
}

.news-masthead-index strong {
  color: var(--primary-color);
  font-size: 5rem;
  font-weight: 300;
  line-height: 0.8;
}

.news-masthead-index span {
  margin-top: 1rem;
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-feature {
  padding: 2rem var(--panel-x) 5rem;
  background: var(--background-dark);
  color: var(--text-light);
}

.news-feature-link {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  color: inherit;
  text-decoration: none;
}

.news-feature-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(248, 244, 239, 0.14);
  background: var(--surface-dark);
}

.news-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-feature-media > span {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(248, 244, 239, 0.42);
  border-radius: 999px;
  background: rgba(13, 14, 16, 0.76);
  color: var(--text-light);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-feature-link:hover .news-feature-media img,
.news-feature-link:focus-visible .news-feature-media img {
  transform: scale(1.022);
}

.news-feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.news-feature-copy .blog-post-meta {
  color: rgba(248, 244, 239, 0.52);
}

.news-feature-copy h2 {
  max-width: 690px;
  margin: 2rem 0 1.25rem;
  font-size: 3.5rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.news-feature-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 244, 239, 0.64);
  line-height: 1.68;
}

.news-feature-copy .blog-read-link {
  margin-top: 2.5rem;
}

.news-latest {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  padding: 4.5rem var(--panel-x);
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
  background: var(--accent-cream);
}

.news-latest > header h2 {
  margin: 1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.1;
}

.news-headline-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(20, 17, 15, 0.18);
  border-bottom: 1px solid rgba(20, 17, 15, 0.18);
}

.news-headline {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid rgba(20, 17, 15, 0.18);
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.28s ease;
}

.news-headline:last-child {
  border-right: 0;
}

.news-headline:hover,
.news-headline:focus-visible {
  background: rgba(255, 138, 61, 0.12);
}

.news-headline time,
.news-headline > span {
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.news-headline h3 {
  margin: 2rem 0 1rem;
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.news-headline > span {
  margin-top: auto;
  color: var(--primary-color);
}

.news-archive {
  padding: 7rem var(--panel-x) 8rem;
  background: #fff;
}

.news-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 5rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.18);
}

.news-archive-heading h2 {
  margin: 0.9rem 0 0;
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.news-archive-heading > p {
  max-width: 590px;
  margin: 0;
  color: rgba(20, 17, 15, 0.62);
  line-height: 1.65;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 17, 15, 0.18);
}

.news-archive-grid .blog-card,
.article-related .blog-card {
  border: 0;
  border-right: 1px solid rgba(20, 17, 15, 0.18);
  border-bottom: 1px solid rgba(20, 17, 15, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.news-archive-grid .blog-card:nth-child(2n) {
  border-right: 0;
}

.news-archive-grid .blog-card:hover,
.news-archive-grid .blog-card:focus-within,
.article-related .blog-card:hover,
.article-related .blog-card:focus-within {
  background: rgba(255, 138, 61, 0.08);
  box-shadow: none;
  transform: none;
}

.news-archive-grid .blog-card > a,
.article-related .blog-card > a {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) 64px;
  color: inherit;
  text-decoration: none;
}

.article-related .blog-card > a {
  grid-template-columns: 1fr;
}

.news-archive-grid .blog-card-copy,
.article-related .blog-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.25rem;
}

.news-archive-grid .blog-card-copy h3,
.article-related .blog-card-copy h3 {
  max-width: 620px;
  margin: 1.5rem 0 1rem;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-archive-grid .blog-card-copy > p,
.article-related .blog-card-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(20, 17, 15, 0.62);
  line-height: 1.62;
}

.blog-card-copy footer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.blog-card-copy footer > span:not(.blog-read-link)::before {
  margin-right: 1rem;
  color: var(--primary-color);
  content: "/";
}

.blog-card-copy footer .blog-read-link {
  margin: 0 0 0 auto;
  padding: 0;
  color: var(--text-dark);
}

.blog-card-index {
  padding: 2.25rem 1.5rem 0 0;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.news-archive-grid .blog-card:nth-child(4n + 2) .blog-card-index {
  color: #198b70;
}

.news-archive-grid .blog-card:nth-child(4n + 3) .blog-card-index {
  color: #5579b9;
}

.news-archive-grid .blog-card:nth-child(4n) .blog-card-index {
  color: #9c7542;
}

@media (max-width: 1100px) {
  .news-page-shell {
    padding-top: 112px;
  }

  .news-masthead h1 {
    font-size: 4.6rem;
  }

  .news-feature-link {
    grid-template-columns: 1fr;
  }

  .news-feature-media {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 239, 0.14);
  }

  .news-latest {
    grid-template-columns: 1fr;
  }

  .news-latest > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .news-latest > header h2 {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .news-page-shell {
    padding-top: 72px;
  }

  .news-masthead {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }

  .news-masthead .page-breadcrumbs {
    margin-bottom: 3rem;
  }

  .news-masthead h1 {
    font-size: 3.2rem;
  }

  .news-masthead-copy > p {
    font-size: 1.2rem;
  }

  .news-masthead-index {
    justify-items: start;
    text-align: left;
  }

  .news-feature {
    padding: 1rem 1rem 4rem;
  }

  .news-feature-media {
    min-height: 330px;
  }

  .news-feature-copy {
    padding: 2.5rem 0.25rem 0;
  }

  .news-feature-copy h2 {
    font-size: 2.35rem;
  }

  .news-headline-row {
    grid-template-columns: 1fr;
  }

  .news-headline {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 17, 15, 0.18);
  }

  .news-headline:last-child {
    border-bottom: 0;
  }

  .news-archive {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .news-archive-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-archive-heading h2 {
    font-size: 3.25rem;
  }

  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .news-archive-grid .blog-card,
  .news-archive-grid .blog-card:nth-child(2n) {
    border-right: 0;
  }

  .news-archive-grid .blog-card > a,
  .article-related .blog-card > a {
    min-height: 330px;
    grid-template-columns: minmax(0, 1fr) 50px;
  }

  .news-archive-grid .blog-card-copy,
  .article-related .blog-card-copy {
    padding: 1.5rem;
  }

  .news-archive-grid .blog-card-copy h3,
  .article-related .blog-card-copy h3 {
    font-size: 1.65rem;
  }

  .blog-card-index {
    padding: 1.5rem 1rem 0 0;
  }

  .blog-card-copy footer .blog-read-link {
    width: 100%;
    margin-left: 0;
  }
}

/* Geco Journal: accessible article discovery */
.journal-page-shell {
  --journal-orange-ink: #c74600;
  min-height: 100vh;
  padding-top: 132px;
  background: #f4f4f1;
  color: var(--text-dark);
}

.journal-intro {
  padding: 3rem var(--panel-x) 4.5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.14);
  background: #f7f7f4;
}

.journal-intro .page-breadcrumbs {
  margin-bottom: 4.5rem;
}

.journal-intro-layout {
  display: grid;
  max-width: 1600px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 5rem;
  margin: 0 auto;
}

.journal-overline,
.journal-section-bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-overline {
  color: var(--journal-orange-ink);
}

.journal-section-bar span:first-child {
  color: var(--primary-color-light);
}

.journal-overline::before,
.journal-section-bar span:first-child::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.journal-intro-copy h1 {
  max-width: 900px;
  margin: 1rem 0 1.15rem;
  color: #171411;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.journal-intro-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(20, 17, 15, 0.68);
  font-size: 1.35rem;
  line-height: 1.45;
}

.journal-intro-note {
  padding: 1.4rem 1.5rem 1.5rem;
  border-top: 3px solid var(--accent-green);
  background: #1a1b1d;
}

.journal-intro-note > span {
  color: var(--primary-color-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-intro-note p {
  max-width: 520px;
  margin: 0.75rem 0 0;
  color: rgba(248, 244, 239, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.journal-feature {
  padding: 2.5rem var(--panel-x) 5rem;
  background: var(--background-dark);
  color: var(--text-light);
}

.journal-section-bar,
.journal-feature-link,
.journal-browser > * {
  width: 100%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.journal-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(248, 244, 239, 0.16);
}

.journal-section-bar span:last-child {
  color: rgba(248, 244, 239, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-feature-link {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(370px, 0.7fr);
  align-items: stretch;
  color: inherit;
  text-decoration: none;
}

.journal-feature-media {
  position: relative;
  min-height: 540px;
  margin: 0;
  border-right: 1px solid rgba(248, 244, 239, 0.16);
  background: var(--surface-dark);
  overflow: hidden;
}

.journal-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
}

.journal-feature-copy .blog-post-meta {
  color: rgba(248, 244, 239, 0.56);
}

.journal-feature-copy h2 {
  max-width: 650px;
  margin: 1.75rem 0 1.15rem;
  color: var(--text-light);
  font-size: 3.2rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.journal-feature-copy > p {
  max-width: 600px;
  margin: 0;
  color: rgba(248, 244, 239, 0.66);
  line-height: 1.7;
}

.journal-feature-copy .blog-read-link {
  margin-top: 2.25rem;
  color: var(--primary-color-light);
}

.journal-feature-link:hover .journal-feature-media img,
.journal-feature-link:focus-visible .journal-feature-media img {
  transform: scale(1.025);
}

.journal-feature-link:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: 5px;
}

.journal-browser {
  padding: 6.5rem var(--panel-x) 8rem;
  background: #f4f4f1;
}

.journal-browser-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  align-items: end;
  gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.journal-browser-heading h2 {
  max-width: 820px;
  margin: 0.9rem 0 0;
  color: var(--text-dark);
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.journal-browser-heading > p {
  max-width: 540px;
  margin: 0;
  color: rgba(20, 17, 15, 0.62);
  line-height: 1.65;
}

.journal-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.journal-search,
.journal-filter-group {
  display: grid;
  gap: 0.65rem;
}

.journal-search > span,
.journal-filter-group > span {
  color: rgba(20, 17, 15, 0.56);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-search input {
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(20, 17, 15, 0.24);
  border-radius: 4px;
  outline: 0;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.journal-search input::placeholder {
  color: rgba(20, 17, 15, 0.42);
}

.journal-search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.14);
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.journal-filters button,
.journal-empty button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(20, 17, 15, 0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.journal-filters button:hover,
.journal-filters button:focus-visible,
.journal-empty button:hover,
.journal-empty button:focus-visible {
  border-color: var(--primary-color);
}

.journal-filters button:focus-visible,
.journal-empty button:focus-visible {
  outline: 3px solid rgba(255, 92, 0, 0.22);
  outline-offset: 2px;
}

.journal-filters button.is-active {
  border-color: var(--surface-dark);
  background: var(--surface-dark);
  color: var(--text-light);
}

.journal-results-bar {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: flex-end;
}

.journal-results-bar p {
  margin: 0;
  color: rgba(20, 17, 15, 0.54);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.journal-grid .blog-card,
.article-related .blog-card {
  min-width: 0;
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-top: 3px solid var(--primary-color);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(30, 24, 20, 0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-grid .blog-card:nth-child(3n + 2),
.article-related .blog-card:nth-child(3n + 2) {
  border-top-color: var(--accent-green);
}

.journal-grid .blog-card:nth-child(3n),
.article-related .blog-card:nth-child(3n) {
  border-top-color: var(--accent-steel);
}

.journal-grid .blog-card:hover,
.journal-grid .blog-card:focus-within,
.article-related .blog-card:hover,
.article-related .blog-card:focus-within {
  border-right-color: rgba(20, 17, 15, 0.18);
  border-bottom-color: rgba(20, 17, 15, 0.18);
  border-left-color: rgba(20, 17, 15, 0.18);
  background: #fff;
  box-shadow: 0 22px 48px rgba(30, 24, 20, 0.1);
  transform: translateY(-5px);
}

.journal-grid .blog-card[hidden] {
  display: none;
}

.journal-grid .blog-card > a,
.article-related .blog-card > a {
  display: flex;
  min-height: 100%;
  grid-template-columns: none;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.journal-grid .blog-card > a:focus-visible,
.article-related .blog-card > a:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: -3px;
}

.journal-grid .blog-card-media,
.article-related .blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.12);
  background: var(--surface-dark);
  overflow: hidden;
}

.journal-grid .blog-card-media img,
.article-related .blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-grid .blog-card:hover .blog-card-media img,
.journal-grid .blog-card:focus-within .blog-card-media img,
.article-related .blog-card:hover .blog-card-media img,
.article-related .blog-card:focus-within .blog-card-media img {
  transform: scale(1.035);
}

.journal-grid .blog-card-copy,
.article-related .blog-card-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.journal-grid .blog-post-meta,
.article-related .blog-post-meta {
  color: rgba(20, 17, 15, 0.52);
  font-size: 0.65rem;
}

.journal-grid .blog-card-copy h3,
.article-related .blog-card-copy h3 {
  max-width: none;
  margin: 1rem 0 0.75rem;
  color: var(--text-dark);
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.journal-grid .blog-card-copy > p,
.article-related .blog-card-copy > p {
  display: -webkit-box;
  max-width: none;
  margin: 0;
  color: rgba(20, 17, 15, 0.62);
  font-size: 0.88rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.journal-grid .blog-card-copy footer,
.article-related .blog-card-copy footer {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: rgba(20, 17, 15, 0.5);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.journal-grid .blog-card-copy footer > span:not(.blog-read-link)::before,
.article-related .blog-card-copy footer > span:not(.blog-read-link)::before {
  content: none;
}

.journal-grid .blog-card-copy footer .blog-read-link,
.article-related .blog-card-copy footer .blog-read-link {
  width: auto;
  margin: 0 0 0 auto;
  padding: 0;
  color: var(--text-dark);
}

.journal-empty {
  padding: 4rem 1rem;
  border: 1px dashed rgba(20, 17, 15, 0.24);
  text-align: center;
}

.journal-empty[hidden] {
  display: none;
}

.journal-empty h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.6rem;
}

.blog-article-page .article-header h1,
.blog-article-page .blog-section-heading h2 {
  color: var(--text-dark);
}

.journal-empty p {
  margin: 0.75rem 0 1.5rem;
  color: rgba(20, 17, 15, 0.6);
}

.journal-empty button {
  border-color: var(--surface-dark);
  background: var(--surface-dark);
  color: var(--text-light);
}

@media (max-width: 1120px) {
  .journal-page-shell {
    padding-top: 112px;
  }

  .journal-intro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 3rem;
  }

  .journal-intro-copy h1 {
    font-size: 4.15rem;
  }

  .journal-feature-link {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  .journal-feature-media {
    min-height: 460px;
  }

  .journal-feature-copy {
    padding: 2.75rem;
  }

  .journal-feature-copy h2 {
    font-size: 2.65rem;
  }

  .journal-toolbar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 760px) {
  .journal-page-shell {
    padding-top: 72px;
  }

  .journal-intro {
    padding: 2.25rem 1rem 3.5rem;
  }

  .journal-intro .page-breadcrumbs {
    margin-bottom: 3rem;
  }

  .journal-intro-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-intro-copy h1 {
    font-size: 3.15rem;
  }

  .journal-intro-copy > p {
    font-size: 1.1rem;
  }

  .journal-intro-note {
    padding: 1.25rem;
  }

  .journal-feature {
    padding: 2rem 1rem 4rem;
  }

  .journal-section-bar {
    align-items: flex-start;
  }

  .journal-section-bar span:last-child {
    max-width: 130px;
    text-align: right;
  }

  .journal-feature-link {
    grid-template-columns: 1fr;
  }

  .journal-feature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 239, 0.16);
  }

  .journal-feature-copy {
    padding: 2rem 0 0;
  }

  .journal-feature-copy h2 {
    margin-top: 1.4rem;
    font-size: 2.1rem;
  }

  .journal-browser {
    padding: 4.5rem 1rem 5.5rem;
  }

  .journal-browser-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .journal-browser-heading h2 {
    font-size: 2.75rem;
  }

  .journal-toolbar {
    padding: 1.5rem 0;
  }

  .journal-filters {
    gap: 0.4rem;
  }

  .journal-filters button {
    min-height: 40px;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
  }

  .journal-results-bar {
    min-height: 58px;
    justify-content: flex-start;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journal-grid .blog-card-copy,
  .article-related .blog-card-copy {
    padding: 1.35rem;
  }

  .journal-grid .blog-card-copy h3,
  .article-related .blog-card-copy h3 {
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-feature-media img,
  .journal-grid .blog-card,
  .journal-grid .blog-card-media img,
  .article-related .blog-card,
  .article-related .blog-card-media img {
    transition-duration: 0.01ms;
  }
}

/* Team directory and individual profiles */
.designer-token {
  text-decoration: none;
}

.designer-token:hover,
.designer-token:focus-visible {
  z-index: 8;
  outline: 3px solid var(--text-dark);
  outline-offset: 3px;
}

.seo-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
}

.team-page-shell,
.team-profile-shell {
  min-height: 100vh;
  padding-top: 132px;
  background: var(--surface-light);
  color: var(--text-dark);
}

.team-directory-hero {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.58fr);
  align-items: end;
  gap: 7rem;
  padding: 6rem var(--panel-x) 5.5rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
  background: var(--surface-light);
}

.team-directory-copy {
  max-width: 980px;
}

.team-directory-copy h1 {
  max-width: 900px;
  margin: 1.35rem 0 1.65rem;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.team-directory-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(20, 17, 15, 0.64);
  font-size: 1.12rem;
  line-height: 1.7;
}

.team-directory-signal {
  align-self: stretch;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: end;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(20, 17, 15, 0.16);
}

.team-signal-stack {
  display: flex;
  margin-bottom: 3.5rem;
  padding-left: 0.65rem;
}

.team-signal-stack span {
  display: grid;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  margin-left: -0.65rem;
  border: 3px solid var(--surface-light);
  border-radius: 50%;
  background: var(--primary-color-light);
  font-size: 0.92rem;
  font-weight: 900;
}

.team-signal-stack span:nth-child(2) {
  background: var(--accent-green);
}

.team-signal-stack span:nth-child(3) {
  background: var(--accent-steel);
}

.team-signal-stack span:nth-child(4) {
  background: var(--surface-dark);
  color: var(--text-light);
}

.team-directory-signal dl {
  margin: 0;
  border-top: 1px solid rgba(20, 17, 15, 0.18);
}

.team-directory-signal dl > div {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(20, 17, 15, 0.18);
}

.team-directory-signal dt {
  color: rgba(20, 17, 15, 0.55);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.team-directory-signal dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.team-hierarchy {
  background: var(--background-dark);
  color: var(--text-light);
}

.team-tier {
  padding: 6.5rem var(--panel-x) 7.5rem;
  border-bottom: 1px solid rgba(248, 244, 239, 0.12);
}

.team-tier-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(248, 244, 239, 0.18);
}

.team-tier-heading > span {
  padding-top: 0.45rem;
  color: var(--primary-color-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-tier-heading > span:last-child {
  color: rgba(248, 244, 239, 0.46);
}

.team-tier-heading h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.team-tier-heading p {
  max-width: 660px;
  margin: 0.85rem 0 0;
  color: rgba(248, 244, 239, 0.58);
  line-height: 1.65;
}

.team-member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-tier-leadership .team-member-grid {
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
}

.team-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 239, 0.15);
  border-radius: 6px;
  background: var(--surface-dark);
  color: var(--text-light);
  text-decoration: none;
  transition: border-color 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover,
.team-card:focus-visible {
  border-color: var(--primary-color-light);
  transform: translateY(-6px);
}

.team-card:focus-visible {
  outline: 2px solid var(--primary-color-light);
  outline-offset: 3px;
}

.team-card-media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(248, 244, 239, 0.13);
  background: #281b17;
}

.team-card-engineering .team-card-media {
  background: #1b2430;
}

.team-card-creative .team-card-media {
  background: #14251f;
}

.team-card-media::before,
.team-card-media::after {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 50%;
  content: "";
}

.team-card-media::before {
  top: -18%;
  left: -12%;
}

.team-card-media::after {
  right: -14%;
  bottom: -28%;
}

.team-card-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-card-media img {
  transform: scale(1.025);
}

.team-card-monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 130px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(248, 244, 239, 0.22);
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-dark);
  font-size: 2.15rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.team-card-engineering .team-card-monogram {
  background: var(--accent-steel);
}

.team-card-creative .team-card-monogram {
  background: var(--accent-green);
}

.team-card-status {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 12px;
  height: 12px;
  border: 2px solid var(--surface-dark);
  border-radius: 50%;
  background: var(--accent-green);
}

.team-card-copy {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 1.75rem;
}

.team-card-index,
.team-card-department {
  color: rgba(248, 244, 239, 0.44);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card-index {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
}

.team-card-department {
  max-width: calc(100% - 56px);
  color: var(--primary-color-light);
}

.team-card strong {
  margin-top: 3.3rem;
  font-size: 1.8rem;
  line-height: 1.08;
}

.team-card-role {
  margin-top: 0.65rem;
  color: rgba(248, 244, 239, 0.56);
  font-size: 0.8rem;
  font-weight: 650;
}

.team-card-summary {
  margin-top: 1.4rem;
  color: rgba(248, 244, 239, 0.63);
  font-size: 0.9rem;
  line-height: 1.65;
}

.team-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.75rem;
  color: var(--text-light);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card-action span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(248, 244, 239, 0.24);
  border-radius: 50%;
}

.team-card.is-reserved {
  border-style: dashed;
  background: rgba(23, 24, 26, 0.68);
}

.team-card.is-reserved .team-card-media {
  opacity: 0.48;
}

.team-card.is-reserved .team-card-status {
  background: rgba(248, 244, 239, 0.28);
}

.team-card.is-reserved .team-card-copy {
  min-height: 280px;
}

.team-card.is-reserved strong,
.team-card.is-reserved .team-card-summary {
  color: rgba(248, 244, 239, 0.46);
}

.team-directory-cta {
  background: var(--accent-cream);
}

.team-tree-section {
  min-height: calc(100vh - 132px);
  padding: 2.75rem var(--panel-x) 7rem;
  overflow: hidden;
  background: var(--surface-light);
}

.org-chart {
  display: flex;
  width: min(100%, 1500px);
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.org-level {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.org-level-label {
  margin-bottom: 0.8rem;
  color: rgba(20, 17, 15, 0.48);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.org-vertical-line {
  display: block;
  width: 1px;
  height: 64px;
  flex: 0 0 64px;
  background: rgba(255, 94, 0, 0.68);
}

.org-vertical-line-to-branches {
  height: 52px;
  flex-basis: 52px;
}

.org-branch-fork {
  position: relative;
  display: block;
  width: 50%;
  height: 54px;
  flex: 0 0 54px;
  border-top: 1px solid rgba(255, 94, 0, 0.68);
}

.org-branch-fork.branches-3 {
  width: 66.666%;
}

.org-branch-fork::before,
.org-branch-fork::after {
  position: absolute;
  top: -1px;
  width: 1px;
  height: 55px;
  background: rgba(255, 94, 0, 0.68);
  content: "";
}

.org-branch-fork::before {
  left: 0;
}

.org-branch-fork::after {
  right: 0;
}

.org-branch-fork.is-single {
  width: 1px;
  border-top: 0;
  background: rgba(255, 94, 0, 0.68);
}

.org-branch-fork.is-single::before,
.org-branch-fork.is-single::after {
  display: none;
}

.org-branches {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 5rem;
}

.org-branches.branches-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.org-branches.has-one-branch {
  width: min(100%, 620px);
  grid-template-columns: 1fr;
}

.org-branch {
  min-width: 0;
}

.org-branch-heading {
  min-height: 180px;
  padding: 1.5rem 1.5rem 2.25rem;
  border-top: 3px solid var(--primary-color);
  text-align: center;
}

.org-branch-creative .org-branch-heading {
  border-top-color: var(--accent-green);
}

.org-branch-leadership .org-branch-heading {
  border-top-color: var(--accent-steel);
}

.org-branch-heading > span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--primary-color);
  font-size: 0.68rem;
  font-weight: 850;
}

.org-branch-heading h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.org-branch-heading p {
  max-width: 540px;
  margin: 0.85rem auto 0;
  color: rgba(20, 17, 15, 0.57);
  font-size: 0.84rem;
  line-height: 1.6;
}

.org-node-stack {
  position: relative;
  display: grid;
  gap: 1.65rem;
  padding-top: 0.75rem;
}

.org-node-stack::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(20, 17, 15, 0.18);
  content: "";
}

.org-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 520px);
  min-height: 118px;
  grid-template-columns: 76px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 1rem;
  justify-self: center;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.org-node::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--primary-color);
  content: "";
}

.org-node-creative::after {
  background: var(--accent-green);
}

.org-node-leadership::after {
  background: var(--accent-steel);
}

.org-node.is-active:hover,
.org-node.is-active:focus-visible {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 18px 38px rgba(20, 17, 15, 0.1);
  transform: translateY(-4px);
}

.org-node.is-active:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: 3px;
}

.org-node-root,
.org-node-lead {
  width: min(100%, 560px);
}

.org-node-root {
  min-height: 138px;
  border-color: var(--background-dark);
  background: var(--background-dark);
  color: var(--text-light);
}

.org-node-root::after {
  width: 6px;
  background: var(--primary-color);
}

.org-node-lead {
  border-color: rgba(255, 94, 0, 0.45);
  background: var(--accent-cream);
}

.org-node-avatar {
  position: relative;
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(20, 17, 15, 0.12);
  border-radius: 50%;
  background: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 900;
}

.org-node-root .org-node-avatar {
  border-color: rgba(248, 244, 239, 0.3);
}

.org-node-engineering .org-node-avatar {
  background: var(--accent-steel);
}

.org-node-creative .org-node-avatar {
  background: var(--accent-green);
}

.org-node-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-node-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.org-node-department {
  margin-bottom: 0.4rem;
  overflow: hidden;
  color: var(--primary-color);
  font-size: 0.62rem;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.org-node-root .org-node-department {
  color: var(--primary-color-light);
}

.org-node-copy strong {
  overflow-wrap: anywhere;
  font-size: 1.15rem;
  line-height: 1.15;
}

.org-node-role {
  margin-top: 0.35rem;
  color: rgba(20, 17, 15, 0.52);
  font-size: 0.76rem;
  font-weight: 650;
}

.org-node-root .org-node-role {
  color: rgba(248, 244, 239, 0.58);
}

.org-node-action {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(20, 17, 15, 0.18);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.org-node-root .org-node-action {
  border-color: rgba(248, 244, 239, 0.24);
}

.org-node:hover .org-node-action,
.org-node:focus-visible .org-node-action {
  background: var(--primary-color);
  color: var(--text-dark);
}

.org-node.is-reserved {
  min-height: 104px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(20, 17, 15, 0.58);
}

.org-node.is-reserved::after {
  background: rgba(20, 17, 15, 0.2);
}

.org-node.is-reserved .org-node-avatar {
  border-style: dashed;
  background: var(--surface-light);
  color: rgba(20, 17, 15, 0.5);
}

.org-node-reserved-mark {
  justify-self: center;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(20, 17, 15, 0.28);
  border-radius: 50%;
}

.team-profile-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 7rem;
  padding: 5.5rem var(--panel-x);
  border-bottom: 1px solid rgba(20, 17, 15, 0.15);
  background: var(--accent-cream);
}

.team-profile-engineering {
  background: #e9eff8;
}

.team-profile-creative {
  background: #e3f3ed;
}

.team-profile-copy {
  min-width: 0;
}

.team-profile-copy h1 {
  max-width: 920px;
  margin: 1.35rem 0 1rem;
  overflow-wrap: anywhere;
  font-size: 5.15rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.team-profile-role {
  margin: 0 0 2.5rem;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 750;
}

.team-profile-summary {
  max-width: 750px;
  margin: 0;
  color: rgba(20, 17, 15, 0.65);
  font-size: 1.15rem;
  line-height: 1.7;
}

.team-profile-portrait {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  place-items: center;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.16);
  border-radius: 6px;
  background: var(--background-dark);
  color: var(--text-light);
}

.team-profile-portrait::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 138, 61, 0.3);
  border-radius: 50%;
  content: "";
}

.team-profile-portrait > span {
  position: relative;
  z-index: 1;
  font-size: 6rem;
  font-weight: 900;
}

.team-profile-portrait img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 244, 239, 0.2);
  color: rgba(248, 244, 239, 0.55);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.team-profile-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 8rem;
  padding: 7rem var(--panel-x) 8rem;
  background: #fff;
}

.team-profile-bio > span,
.team-profile-facts > div > span {
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-profile-bio h2 {
  max-width: 780px;
  margin: 1.25rem 0 2.5rem;
  font-size: 3.5rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.team-profile-bio p {
  max-width: 780px;
  color: rgba(20, 17, 15, 0.66);
  font-size: 1.05rem;
  line-height: 1.8;
}

.team-profile-facts {
  border-top: 2px solid var(--primary-color);
}

.team-profile-facts > div {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.16);
}

.team-profile-facts strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.15rem;
}

.team-profile-expertise ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.team-profile-expertise li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(20, 17, 15, 0.67);
  line-height: 1.5;
}

.team-profile-expertise li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  content: "";
}

.team-profile-links a {
  display: inline-flex;
  margin: 0.85rem 1.2rem 0 0;
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 4px;
}

.team-profile-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(248, 244, 239, 0.15);
  border-bottom: 1px solid rgba(248, 244, 239, 0.15);
  background: var(--background-dark);
  color: var(--text-light);
}

.team-profile-pagination > a {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem var(--panel-x);
  color: inherit;
  text-decoration: none;
}

.team-profile-pagination > a:last-child {
  align-items: flex-end;
  text-align: right;
}

.team-profile-pagination > a > span {
  margin-bottom: 0.6rem;
  color: var(--primary-color-light);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-profile-pagination > a > strong {
  font-size: 1.35rem;
}

.team-profile-pagination .team-profile-all {
  min-height: auto;
  align-items: center;
  padding: 2rem 3rem;
  border-right: 1px solid rgba(248, 244, 239, 0.15);
  border-left: 1px solid rgba(248, 244, 239, 0.15);
  color: rgba(248, 244, 239, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-profile-pagination > a:hover,
.team-profile-pagination > a:focus-visible {
  background: var(--surface-dark);
}

@media (max-width: 1120px) {
  .team-page-shell,
  .team-profile-shell {
    padding-top: 112px;
  }

  .team-directory-hero,
  .team-profile-hero {
    gap: 4rem;
  }

  .team-directory-copy h1,
  .team-profile-copy h1 {
    font-size: 4rem;
  }

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

  .team-profile-body {
    gap: 4rem;
  }

  .team-tree-section {
    padding-top: 2.5rem;
  }

  .org-branches {
    gap: 3rem;
  }

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

@media (max-width: 900px) {
  .team-profile-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .team-profile-portrait {
    width: min(100%, 520px);
    justify-self: start;
  }

  .org-branches,
  .org-branches.branches-3 {
    gap: 2rem;
  }

  .org-branch-heading {
    min-height: 205px;
    padding-inline: 0.5rem;
  }
}

@media (max-width: 760px) {
  .team-page-shell,
  .team-profile-shell {
    padding-top: 72px;
  }

  .team-directory-hero,
  .team-profile-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.5rem 1rem;
  }

  .team-directory-copy h1,
  .team-profile-copy h1 {
    font-size: 3rem;
  }

  .team-directory-copy > p,
  .team-profile-summary {
    font-size: 1rem;
  }

  .team-tree-section {
    min-height: auto;
    padding: 3.5rem 1rem 5rem;
  }

  .org-chart {
    margin-top: 0;
  }

  .org-vertical-line {
    height: 48px;
    flex-basis: 48px;
  }

  .org-vertical-line-to-branches {
    height: 38px;
    flex-basis: 38px;
  }

  .org-branch-fork {
    display: none;
  }

  .org-branches,
  .org-branches.branches-3,
  .org-branches.has-one-branch {
    position: relative;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .org-branches::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 94, 0, 0.3);
    content: "";
  }

  .org-branch {
    position: relative;
    z-index: 1;
  }

  .org-branch-heading {
    min-height: auto;
    padding: 1.35rem 0.75rem 2rem;
    background: var(--surface-light);
  }

  .org-branch-heading h2 {
    font-size: 1.45rem;
  }

  .org-node {
    min-height: 106px;
    grid-template-columns: 62px minmax(0, 1fr) 32px;
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .org-node-root {
    min-height: 122px;
  }

  .org-node-avatar {
    width: 58px;
  }

  .org-node-copy strong {
    font-size: 1rem;
  }

  .org-node-department {
    font-size: 0.56rem;
  }

  .org-node-action {
    width: 30px;
  }

  .team-directory-signal {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(20, 17, 15, 0.16);
    border-left: 0;
  }

  .team-signal-stack {
    margin-bottom: 2.25rem;
  }

  .team-tier {
    padding: 4.5rem 1rem 5rem;
  }

  .team-tier-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 1rem;
  }

  .team-tier-heading > span:last-child {
    display: none;
  }

  .team-tier-heading h2 {
    font-size: 2.15rem;
  }

  .team-member-grid,
  .team-tier-leadership .team-member-grid {
    grid-template-columns: 1fr;
  }

  .team-card-copy {
    min-height: 300px;
  }

  .team-profile-portrait {
    width: 100%;
    max-width: 520px;
    justify-self: start;
  }

  .team-profile-body {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.5rem 1rem 5rem;
  }

  .team-profile-bio h2 {
    font-size: 2.55rem;
  }

  .team-profile-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .team-profile-pagination > a {
    min-height: 140px;
    padding: 2rem 1rem;
  }

  .team-profile-pagination .team-profile-all {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 70px;
    border: 0;
    border-top: 1px solid rgba(248, 244, 239, 0.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card-media img,
  .org-node {
    transition-duration: 0.01ms;
  }
}
