:root {
  --bg: #071015;
  --bg-deep: #03090d;
  --surface: rgba(12, 28, 36, 0.76);
  --surface-strong: #0d2028;
  --surface-light: #f4f1e8;
  --surface-light-strong: #ffffff;
  --surface-light-soft: #ece6d8;
  --text: #ecf6f7;
  --text-dark: #112027;
  --muted: #99adb6;
  --muted-dark: #556771;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(17, 32, 39, 0.1);
  --accent: #7ae6d7;
  --accent-strong: #31bfae;
  --accent-warm: #ffc56f;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(122, 230, 215, 0.16), transparent 22%),
    radial-gradient(circle at 88% 4%, rgba(255, 197, 111, 0.14), transparent 20%),
    linear-gradient(180deg, #061015 0%, #08161c 28%, #091c23 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 95%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

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

.container {
  width: min(var(--max-width), calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 14, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  border: 1px solid rgba(122, 230, 215, 0.35);
  background:
    linear-gradient(135deg, rgba(122, 230, 215, 0.28), rgba(255, 197, 111, 0.12)),
    rgba(6, 18, 22, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.15rem;
}

.brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(236, 246, 247, 0.88);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 4.5rem 0 0;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(4, 11, 15, 0.78), rgba(4, 11, 15, 0.28)),
    url("presentation-build/assets/ev-government-hub.png") center / cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 20%, rgba(122, 230, 215, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(6, 16, 21, 0.18) 0%, rgba(6, 16, 21, 0.74) 72%, rgba(6, 16, 21, 0.94) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - 8rem);
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 246, 247, 0.82);
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(4.2rem, 8vw, 7rem);
  line-height: 0.92;
}

.hero-lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(236, 246, 247, 0.94);
}

.hero-subcopy {
  max-width: 40rem;
  margin: 1.1rem 0 0;
  color: rgba(236, 246, 247, 0.72);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #9df3d6);
  color: #072027;
  box-shadow: 0 18px 40px rgba(122, 230, 215, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-badges span,
.pill,
.role-cloud span,
.partner-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(6, 20, 26, 0.8), rgba(7, 18, 22, 0.96)),
    radial-gradient(circle at top right, rgba(122, 230, 215, 0.18), transparent 38%);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow);
}

.panel-kicker,
.proposal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-kicker {
  color: var(--accent);
}

.hero-panel h2 {
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.hero-panel p {
  margin: 0;
  color: rgba(236, 246, 247, 0.72);
  line-height: 1.82;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.metric-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.metric-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #ffffff;
}

.metric-card span {
  font-size: 0.82rem;
  color: rgba(236, 246, 247, 0.75);
}

.hero-ribbon {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 11, 15, 0.54);
  backdrop-filter: blur(18px);
}

.ribbon-track {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  padding: 1rem 0;
}

.ribbon-track span {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 246, 247, 0.84);
}

.ribbon-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent-warm);
  transform: translateY(-50%);
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-light {
  color: var(--text-dark);
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.98), rgba(235, 230, 216, 0.98)),
    radial-gradient(circle at top left, rgba(49, 191, 174, 0.08), transparent 28%);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(5, 13, 17, 0.96), rgba(3, 9, 13, 0.98)),
    radial-gradient(circle at top right, rgba(122, 230, 215, 0.06), transparent 22%);
}

.section-heading {
  max-width: 46rem;
}

.section-heading .eyebrow {
  color: inherit;
}

.section-heading .eyebrow::before {
  background: linear-gradient(90deg, var(--accent-strong), transparent);
}

.section-heading h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.section-heading p {
  margin: 0;
  line-height: 1.9;
  color: inherit;
  opacity: 0.78;
}

.intro-grid,
.tech-grid,
.value-grid,
.people-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

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

.story-card,
.tech-card,
.value-card,
.person-card,
.process-card,
.policy-card,
.research-card,
.info-card,
.proposal-note,
.partner-panel,
.closing-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card,
.value-card,
.person-card,
.process-card,
.policy-card,
.research-card,
.partner-panel {
  padding: 1.45rem;
}

.story-card,
.person-card,
.partner-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 32, 39, 0.08);
}

.story-card h3,
.tech-card h3,
.process-card h3,
.policy-card h3,
.value-card h3,
.partner-panel h3,
.research-card h3,
.info-card h3,
.person-card h3,
.proposal-note h3 {
  margin: 0 0 0.65rem;
  font-size: 1.65rem;
  line-height: 1;
}

.story-card p,
.process-card p,
.policy-card p,
.value-card p,
.partner-panel p,
.research-card p,
.info-card p,
.person-card p,
.proposal-note p,
.tech-card p {
  margin: 0;
  line-height: 1.82;
}

.story-card-highlight {
  background:
    linear-gradient(180deg, #132a31, #0b1c22),
    radial-gradient(circle at top right, rgba(122, 230, 215, 0.16), transparent 42%);
  border: 1px solid rgba(122, 230, 215, 0.22);
  color: var(--text);
}

.check-list,
.proposal-list,
.step-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.8rem;
  line-height: 1.7;
}

.feature-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.3rem;
  align-items: center;
  margin-top: 2.4rem;
}

.feature-copy {
  display: grid;
  gap: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  border: 1px solid rgba(122, 230, 215, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.feature-copy p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.9;
  color: rgba(236, 246, 247, 0.78);
}

.image-frame,
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #071015;
  box-shadow: var(--shadow);
}

.image-frame::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(4, 11, 15, 0.28));
  pointer-events: none;
}

.image-frame img,
.image-card img {
  height: 100%;
  object-fit: cover;
}

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

.tech-card,
.value-card,
.info-card,
.research-card {
  background:
    linear-gradient(180deg, rgba(11, 28, 35, 0.82), rgba(7, 18, 22, 0.96)),
    radial-gradient(circle at top right, rgba(122, 230, 215, 0.12), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.image-card {
  min-height: 18rem;
}

.image-card figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.image-card-wide {
  grid-column: span 7;
}

.gallery-grid > .image-card:not(.image-card-wide) {
  grid-column: span 5;
}

.process-card {
  grid-column: span 12;
  background: var(--surface-light-strong);
  border: 1px solid rgba(17, 32, 39, 0.08);
}

.step-list {
  margin-top: 0.75rem;
}

.split-grid,
.proposal-grid,
.opportunity-grid,
.jobs-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.content-stack {
  display: grid;
  gap: 1.2rem;
}

.content-stack h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.content-stack p {
  margin: 0;
  line-height: 1.9;
  color: rgba(236, 246, 247, 0.8);
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.proposal-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 2.2rem;
}

.proposal-note {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, #ffffff, #f8f3e8),
    radial-gradient(circle at top right, rgba(49, 191, 174, 0.1), transparent 36%);
  border: 1px solid rgba(17, 32, 39, 0.08);
  color: var(--text-dark);
}

.proposal-tag {
  color: #0e7468;
}

.proposal-tag::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-strong);
}

.proposal-footnote,
.fine-print {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted-dark);
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.image-card-tall {
  min-height: 29rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 32, 39, 0.08);
}

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

.opportunity-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  margin-top: 2.2rem;
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.partner-badges span,
.role-cloud span {
  color: var(--text-dark);
  border: 1px solid rgba(17, 32, 39, 0.1);
  background: rgba(17, 32, 39, 0.04);
}

.jobs-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  margin-top: 2.2rem;
}

.jobs-copy {
  display: grid;
  gap: 1rem;
}

.role-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

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

.person-card {
  display: grid;
  gap: 0.5rem;
}

.person-index {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0e7468;
}

.closing-section {
  padding: 0 0 6.5rem;
}

.closing-panel {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(11, 28, 35, 0.92), rgba(7, 18, 22, 0.98)),
    radial-gradient(circle at top right, rgba(122, 230, 215, 0.14), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-panel h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 0.96;
}

.closing-panel p {
  margin: 0;
  max-width: 44rem;
  line-height: 1.9;
  color: rgba(236, 246, 247, 0.8);
}

.site-footer {
  padding: 0 0 2.6rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row p {
  margin: 0;
  max-width: 32rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(236, 246, 247, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-hero,
  .split-grid,
  .proposal-grid,
  .opportunity-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-panel {
    max-width: 42rem;
  }
}

@media (max-width: 920px) {
  /* Avoid mobile browser compositing that can soften text and imagery. */
  .site-header.is-scrolled,
  .hero-panel,
  .hero-ribbon,
  .nav-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-media {
    /* Keep the source image at its native render scale on high-density screens. */
    transform: none;
    background-position: 58% center;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: inline-flex;
    flex-direction: column;
    gap: 0.28rem;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: min(22rem, calc(100vw - 2rem));
    display: grid;
    gap: 0.2rem;
    padding: 5rem 1rem 1rem;
    border-radius: 1.6rem;
    background:
      linear-gradient(180deg, rgba(7, 18, 22, 0.96), rgba(4, 11, 15, 0.98)),
      radial-gradient(circle at top right, rgba(122, 230, 215, 0.18), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    transform: translateY(-1rem) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: block;
    border: 0;
    background: rgba(2, 8, 11, 0.55);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    min-height: auto;
    padding: 3.5rem 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.3rem));
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading h2,
  .content-stack h2,
  .closing-panel h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .intro-grid,
  .tech-grid,
  .value-grid,
  .people-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

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

  .image-card-wide,
  .gallery-grid > .image-card:not(.image-card-wide),
  .process-card {
    grid-column: auto;
  }

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

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

@media (max-width: 520px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.67rem;
  }
}
