:root {
  color-scheme: dark;
  --black: #000000;
  --ink: #ffffff;
  --muted: #b8b8c0;
  --muted-2: #7d818d;
  --panel: #111113;
  --panel-2: #191a20;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --blue: #1d6fd6;
  --blue-2: #0f58ba;
  --cyan: #37d6ff;
  --violet: #7b5cff;
  --magenta: #e8507d;
  --green: #46d6a6;
  --white: #ffffff;
  --paper: #f3f4f8;
  --paper-ink: #14151a;
  --paper-muted: #555a66;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

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

button {
  color: inherit;
}

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

p {
  line-height: 1.62;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 111, 214, 0.52);
  outline-offset: 3px;
}

.section-inner {
  width: min(1190px, calc(100% - 44px));
  margin: 0 auto;
}

.brand-intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--black);
  pointer-events: none;
  animation: intro-away 2100ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.intro-field {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 50%, rgba(29, 111, 214, 0.24), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  animation: grid-shift 18s linear infinite;
}

.intro-logo {
  position: relative;
  color: var(--white);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 950;
  line-height: 0.8;
  text-transform: lowercase;
  animation: intro-mark 1700ms ease both;
}

.intro-logo::after {
  content: "";
  position: absolute;
  right: -0.15em;
  bottom: -0.08em;
  width: 0.55em;
  height: 0.14em;
  background: var(--blue);
}

.brand-intro p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
  animation: intro-caption 1700ms ease 180ms both;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 68px;
  padding: 14px clamp(22px, 4vw, 64px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    min-height 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: rgba(0, 0, 0, 0.94);
}

.brand,
.nav,
.header-tools,
.carousel-heading,
.carousel-controls,
.field-row,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 8px;
  min-width: 170px;
}

.brand-word {
  position: relative;
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 0.8;
  text-transform: lowercase;
}

.brand-word::after {
  content: "";
  position: absolute;
  right: -0.2em;
  bottom: -0.12em;
  width: 0.52em;
  height: 0.13em;
  background: var(--blue);
}

.brand-full {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.05;
}

.nav {
  flex: 1;
  gap: clamp(15px, 2vw, 28px);
  min-width: 0;
}

.nav button,
.nav a {
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease;
}

.nav button::after {
  content: "⌄";
  display: inline-block;
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

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

.header-tools {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 16px;
}

.icon-button,
.menu-toggle {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 34px;
  height: 34px;
}

.search-icon {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(45deg);
}

.locale-link,
.contact-link,
.parent-mark {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.contact-link:hover,
.locale-link:hover {
  color: var(--white);
}

.parent-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--white);
}

.mega-panel,
.search-panel {
  position: fixed;
  z-index: 35;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.mega-panel {
  top: 68px;
  transform: translateY(-8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 4, 6, 0.98);
  box-shadow: var(--shadow);
}

.mega-panel.is-open,
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  padding: 34px 0;
}

.mega-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 900;
}

.mega-inner h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.05;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-links a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.search-panel {
  top: 68px;
  padding: 28px 0;
  transform: translateY(-8px);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--line);
}

.search-box {
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-box label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.search-box input,
.search-box button {
  min-height: 52px;
  border-radius: 4px;
}

.search-box input {
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.search-box button {
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.tcs-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 38%),
    url("/assets/hero-arclumen-adaptive.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(138px, 22vh, 210px) 0 120px;
  transform: translateX(-15%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

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

.hero-button {
  margin-top: 34px;
  color: var(--white);
  background: var(--blue);
}

.hero-button:hover,
.form-button:hover {
  background: var(--blue-2);
}

.pause-button {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  cursor: pointer;
}

.pause-button span {
  display: block;
  width: 5px;
  height: 22px;
  background: var(--white);
}

.pause-button.is-paused span:first-child {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  background: transparent;
}

.pause-button.is-paused span:last-child {
  display: none;
}

.hero-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: left;
  animation: progress-loop 8s linear infinite;
}

body.hero-paused .hero-bg,
body.hero-paused .hero-progress span {
  animation-play-state: paused;
}

.section {
  position: relative;
  padding: 92px 0;
}

.news-strip,
.solutions-section,
.stories-section,
.events-section,
.promise-section {
  background: var(--black);
}

.services-deep,
.insights-section {
  background: #08080b;
}

.carousel-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.carousel-heading h2,
.large-title,
.promise-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.carousel-controls {
  gap: 12px;
  flex: 0 0 auto;
}

.carousel-controls span {
  min-width: 70px;
  color: var(--muted);
  font-weight: 850;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 360ms ease;
  will-change: transform;
}

.feature-card {
  flex: 0 0 min(360px, 82vw);
  display: grid;
  gap: 14px;
  min-height: 500px;
  padding-bottom: 8px;
}

.feature-media {
  height: 248px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(29, 111, 214, 0.24), rgba(0, 0, 0, 0.14)),
    url("/assets/hero-arclumen-adaptive.png") center / cover no-repeat;
  filter: saturate(1.08);
}

.media-ai {
  background-position: 58% 32%;
}

.media-edge {
  background-position: 76% 28%;
}

.media-cloud {
  background-position: 45% 48%;
}

.media-retail {
  background-position: 20% 66%;
}

.media-cyber {
  background-position: 86% 70%;
}

.media-talent {
  background-position: 58% 76%;
}

.feature-card p,
.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 850;
}

.feature-card h3,
.story-card h3,
.insight-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.42rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card a,
.story-card a,
.event-item a,
.career-hero a {
  width: fit-content;
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.solutions-section {
  padding-top: 110px;
}

.large-title {
  width: min(850px, 100%);
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.interactive-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  overflow: hidden;
  padding: 26px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86)),
    url("/assets/hero-arclumen-adaptive.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.interactive-card:nth-child(2) {
  background-position: 74% 34%;
}

.interactive-card:nth-child(3) {
  background-position: 60% 70%;
}

.interactive-card::before {
  content: attr(data-watermark);
}

.interactive-card span {
  position: absolute;
  top: 26px;
  left: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interactive-card h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.interactive-card p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.interactive-card:hover {
  transform: translateY(-6px);
}

.interactive-card {
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.split-band h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.03;
}

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

.service-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 850;
}

.service-list span {
  color: var(--blue);
  font-size: 0.9rem;
}

.story-window {
  overflow: visible;
}

.story-card {
  flex: 0 0 min(410px, 82vw);
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
    url("/assets/hero-arclumen.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.story-card:nth-child(2) {
  background-position: 60% 36%;
}

.story-card:nth-child(3) {
  background-position: 75% 58%;
}

.story-card:nth-child(4) {
  background-position: 42% 45%;
}

.story-card:nth-child(5) {
  background-position: 20% 40%;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.event-accordion {
  display: grid;
  border-top: 1px solid var(--line);
}

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

.event-item button {
  width: 100%;
  min-height: 72px;
  border: 0;
  padding: 18px 0;
  color: var(--white);
  background: transparent;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.event-item button::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.event-item.is-open button::after {
  content: "−";
}

.event-item div {
  display: none;
  padding: 0 0 24px;
}

.event-item.is-open div {
  display: block;
}

.event-item h3 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
}

.event-item p {
  max-width: 620px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

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

.insight-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 310px;
  padding: 22px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.9)),
    url("/assets/hero-arclumen-adaptive.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.insight-card:nth-child(2) {
  background-position: 74% 38%;
}

.insight-card:nth-child(3) {
  background-position: 46% 72%;
}

.insight-card:nth-child(4) {
  background-position: 88% 62%;
}

.insight-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
}

.insight-card h3 {
  font-size: 1.25rem;
}

.careers-section {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42)),
    url("/assets/hero-arclumen-adaptive.png") center / cover no-repeat;
}

.career-hero {
  display: grid;
  align-content: center;
  min-height: 560px;
}

.career-hero p {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 950;
}

.career-hero h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

.career-hero span {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.62;
}

.career-hero a {
  margin-top: 26px;
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.promise-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 4px;
  color: var(--paper-ink);
  background: var(--white);
}

.field-row {
  gap: 14px;
  align-items: stretch;
}

.field-row label {
  flex: 1;
  min-width: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--paper-ink);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 21, 26, 0.18);
  border-radius: 4px;
  padding: 13px;
  color: var(--paper-ink);
  background: #f7f8fb;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 111, 214, 0.16);
}

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

.full {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: #0b7d5f;
}

.form-note.error {
  color: #b42342;
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 950;
}

.footer p {
  margin: 0;
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

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

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

@keyframes intro-away {
  0%,
  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-mark {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }

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

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

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

@keyframes grid-shift {
  from {
    background-position: center, 0 0, 0 0;
  }

  to {
    background-position: center, 116px 58px, 116px 58px;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-1.2%);
  }
}

@keyframes progress-loop {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .nav,
  .locale-link,
  .parent-mark {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .nav.is-open {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open button,
  .nav.is-open a {
    padding: 14px;
    text-align: left;
  }

  .hero-copy {
    transform: none;
  }

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

  .events-layout,
  .split-band,
  .promise-layout,
  .mega-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 64px;
    padding: 12px 15px;
  }

  .brand {
    min-width: 0;
  }

  .brand-full,
  .contact-link {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding: 120px 0 104px;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section {
    padding: 68px 0;
  }

  .carousel-heading {
    display: grid;
    align-items: start;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .interactive-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .interactive-card,
  .story-card {
    min-height: 360px;
  }

  .feature-card {
    min-height: 440px;
  }

  .feature-media {
    height: 210px;
  }

  .service-list a {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .career-hero {
    min-height: 470px;
  }

  .field-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .search-box {
    grid-template-columns: 1fr;
  }
}

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