:root {
  --viewport-scale: 0.7;
  --grid-size-base: 84px;
  --max-width-base: 1180px;
  --grid-size: calc(var(--grid-size-base) * var(--viewport-scale));
  --max-width: calc(var(--max-width-base) * var(--viewport-scale));
  --bg: #d8d8d8;
  --bg-grid: rgba(0, 0, 0, 0.12);
  --text-primary: #151515;
  --text-muted: #3b3b3b;
  --text-soft: #2b2b2b;
  --accent: #090909;
  --accent-soft: rgba(0, 0, 0, 0.72);
  --card-bg: rgba(255, 255, 255, 0.86);
  --card-border: rgba(0, 0, 0, 0.14);
  --card-bg-dark: linear-gradient(160deg, rgba(28, 28, 30, 0.96), rgba(16, 16, 17, 0.9));
  --card-border-dark: rgba(255, 255, 255, 0.06);
  --card-shadow-dark: 0 34px 72px rgba(8, 8, 10, 0.46);
  --text-light: #f4f3f0;
  --text-soft-on-dark: rgba(227, 226, 222, 0.72);
  --divider-dark: rgba(230, 235, 245, 0.12);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --hero-body: 1.18rem;
  --hero-tagline: 1rem;
  --section-eyebrow: 1rem;
  --section-subtitle: 1.25rem;
  --about-body: 1.25rem;
  --about-meta: 0.9rem;
  --pill-text: 1rem;
  --outcome-title: 1.375rem;
  --outcome-body: 1.125rem;
  --footer-text: 0.9rem;
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: calc(16px * var(--viewport-scale));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  color: var(--text-primary);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body.dev-home-zoom {
  /* Localhost-only zoom for the landing page (roughly +100%) */
  zoom: 2;
  --viewport-scale: 1.4;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(var(--grid-size) - 1px),
      var(--bg-grid) calc(var(--grid-size) - 1px),
      var(--bg-grid) var(--grid-size)
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--grid-size) - 1px),
      var(--bg-grid) calc(var(--grid-size) - 1px),
      var(--bg-grid) var(--grid-size)
    );
  background-position: top left;
  background-size: var(--grid-size) var(--grid-size);
  animation: none;
  opacity: 1;
  z-index: 0;
}

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

.osint-dashboard::before {
  content: none;
}

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

#app {
  position: relative;
  z-index: 1;
}

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

a:hover,
a:focus-visible {
  color: var(--accent);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: var(--grid-size);
  display: flex;
  align-items: center;
}

.nav {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "brand links";
  align-items: center;
  gap: 18px;
  position: relative;
}

.nav__identity {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.9rem;
}

.nav__brand {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: inherit;
  color: var(--accent);
  margin-left: -28px;
}

.nav__emblem-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 0;
  margin-right: -8px;
}

.nav__emblem-image {
  width: 112px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

.nav__toggle {
  grid-area: links;
  justify-self: end;
  display: none;
  border: 0;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  justify-self: end;
  grid-area: links;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 0;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 960px) {
  .nav__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .nav__links a::after {
    background: rgba(255, 255, 255, 0.65);
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    color: rgba(255, 255, 255, 0.92);
  }
}

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

.contact-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px; /* symmetric top/bottom */
  line-height: 1; /* ensures baseline alignment with siblings */
  margin-top: 0; /* rely on baseline alignment instead of offsets */
  border-radius: var(--radius-sm);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: inherit;
  color: var(--text-primary);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(.16,1,.3,1),
    box-shadow 0.4s cubic-bezier(.16,1,.3,1),
    border-color 0.4s ease,
    background 0.4s ease;
}

.contact-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(4px); /* lower the frame a bit without moving text */
  pointer-events: none;
  z-index: 0;
}

.nav__links a.contact-pill {
  padding-bottom: 0;
  color: var(--text-primary);
}

.nav__links a.contact-pill::after {
  display: none;
}

@media (max-width: 960px) {
  .nav__links a.contact-pill {
    color: rgba(255, 255, 255, 0.78);
  }
}

.contact-pill.is-hovered,
.contact-pill:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.36);
  background: rgba(0, 0, 0, 0.06);
}

.contact-pill__label {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  top: 0; /* keep text position fixed */
}

.contact-pill.is-sweeping .contact-pill__label {
  color: rgba(248, 248, 248, 0.96);
}

@media (max-width: 960px) {
  .contact-pill__label {
    color: rgba(240, 240, 240, 0.85);
  }
}

.contact-pill__sweep {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: #000;
  transform: translateX(-120%) skewX(-10deg);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
  will-change: transform, opacity;
}

.contact-pill__sweep.is-active {
  animation: contactSweepPass 1.2s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes contactSweepPass {
  0% {
    transform: translateX(-125%) skewX(-10deg);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  45% {
    transform: translateX(-4%) skewX(-4deg);
    opacity: 1;
  }
  75% {
    transform: translateX(38%) skewX(-2deg);
    opacity: 0.96;
  }
  100% {
    transform: translateX(125%) skewX(-6deg);
    opacity: 0;
  }
}

.contact-pill[data-reduced="1"] {
  border-color: rgba(0, 0, 0, 0.72);
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
}

.contact-pill[data-reduced="1"] .contact-pill__label {
  color: #fff;
}

.contact-pill[data-reduced="1"] .contact-pill__sweep {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: calc(var(--grid-size) * 2) 0 calc(var(--grid-size) * 2.8);
  background: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.92) 0%, rgba(8, 8, 10, 0.76) 24%, rgba(9, 10, 12, 0.38) 52%, rgba(10, 10, 12, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: none;
  background: none;
}

.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-waves--particles {
  z-index: 1;
  opacity: 0.65;
  mix-blend-mode: screen;
}

.hero-waves--background {
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.hero-waves--depth {
  z-index: 3;
  opacity: 0.45;
  mix-blend-mode: multiply;
  filter: none;
}

.hero-waves--primary {
  z-index: 4;
  opacity: 0.55;
  mix-blend-mode: multiply;
  filter: none;
}

.grain {
  position: absolute;
  inset: -8%;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.08"/%3E%3C/svg%3E');
  background-size: 220px 220px;
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 5;
  animation: grainShift 6s steps(6) infinite;
}

.hero .grain {
  display: none;
}


@keyframes grainShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3%, 2%, 0);
  }
}

@keyframes heroWaveA {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -360px;
  }
}

@keyframes heroWaveB {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 320px;
  }
}

@keyframes gridPulse {
  0% { background-position: 0% 0%, 100% 100%, 0 0; }
  100% { background-position: -3% 2%, 3% -2%, 0 0; }
}

@keyframes cellGlow {
  0%, 20% { opacity: 0.26; }
  45% { opacity: 0.34; }
  60% { opacity: 0.28; }
  100% { opacity: 0.32; }
}

@keyframes emblemDrift {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(0.6deg) scale(1.006); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes signalSweep {
  0% { transform: translate3d(-1%, 0, 0) scale(1.01); opacity: 0.42; }
  50% { transform: translate3d(1%, 0.6%, 0) scale(1.005); opacity: 0.5; }
  100% { transform: translate3d(0.5%, -0.4%, 0) scale(1); opacity: 0.42; }
}

@keyframes pulseSweep {
  0% { transform: translate3d(-2%, 0, 0); opacity: 0.05; }
  50% { transform: translate3d(2%, 1%, 0); opacity: 0.06; }
  100% { transform: translate3d(1%, -1%, 0); opacity: 0.05; }
}

.hero-inner {
  width: min(calc(var(--grid-size) * 8), 760px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  row-gap: calc(var(--grid-size) / 5);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 6;
}

.hero-tag {
  margin: 0;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: rgba(247, 247, 247, 0.92);
  font-weight: 700;
  text-shadow: none;
  transform: translateZ(0);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  display: inline-block;
  padding: calc(var(--grid-size) / 8) calc(var(--grid-size) / 4) calc(var(--grid-size) / 6);
}

.hero-title__segment {
  display: inline-block;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(233, 236, 242, 0.88) 15%,
    rgba(206, 213, 224, 0.9) 35%,
    rgba(170, 179, 196, 0.88) 55%,
    rgba(233, 236, 242, 0.88) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: heroWaveFill 7s ease-in-out infinite alternate;
}

.hero-title__segment + .hero-title__segment {
  margin-left: 0.08em;
}

.hero-title__segment--soft {
  filter: brightness(1.15);
}

.hero-title__segment--mid {
  filter: brightness(1);
}

.hero-title__segment--deep {
  filter: brightness(0.85);
}

@keyframes heroWaveFill {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero .lead {
  margin: 0;
  max-width: calc(var(--grid-size) * 7);
  font-size: var(--hero-body);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .site-header {
    height: calc(var(--grid-size) * 0.9);
    padding: 0 24px;
  }

  .nav {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .hero {
    padding: clamp(80px, 18vh, 120px) 0 clamp(60px, 14vh, 100px);
  }

  .hero-inner {
    width: min(calc(100% - 80px), 720px);
    row-gap: 28px;
  }

  .nav__identity {
    gap: 12px;
  }

  .origin-badge {
    gap: 4px;
  }

  .hero-origin {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    gap: 6px;
    margin-top: -4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-media {
    order: initial;
  }

  .about-bullets {
    grid-template-columns: 1fr;
  }

  .page-main {
    gap: 80px;
  }

  .subpage-hero {
    padding: clamp(100px, 20vh, 140px) 0 48px;
  }

  .subpage-hero__title {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
}

.hero-title::before,
.hero-title::after {
  content: none; /* disable decorative overlays behind title */
}

.hero-title::before {}
.hero-title::after {}

.lead {
  margin: 22px 0 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-subline {
  margin: 10px auto 0;
  font-size: var(--hero-tagline);
  letter-spacing: 0.084em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-official-note {
  margin: 16px auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.page-main {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.subpage-hero {
  padding: clamp(120px, 22vh, 160px) 0 60px;
  text-align: center;
}

.subpage-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.subpage-hero__title {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.subpage-hero__lead {
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #f4f4f4;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: rgba(0, 0, 0, 0.7);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.origin-badge__letter--u,
.origin-badge__letter--s,
.origin-badge__letter--a {
  will-change: transform, opacity, color, text-shadow;
}

@keyframes usaLetterDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0.35px, -0.4px, 0);
  }
  75% {
    transform: translate3d(-0.32px, 0.45px, 0);
  }
}

@keyframes usaRedWave {
  0%, 100% {
    color: #b51220;
  }
  50% {
    color: #df2533;
  }
}

@keyframes usaWhiteWave {
  0%, 100% {
    color: #f7f9ff;
    text-shadow: 0 0 4px rgba(30, 40, 50, 0.25);
  }
  45% {
    color: #eef2ff;
    text-shadow: 0 0 6px rgba(60, 80, 110, 0.25);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 4px rgba(30, 40, 50, 0.2);
  }
}

@keyframes usaBlueWave {
  0%, 100% {
    color: #123672;
  }
  50% {
    color: #1b4b9e;
  }
}

@media (prefers-reduced-motion: reduce) {
  .origin-badge__letter--u,
  .origin-badge__letter--s,
  .origin-badge__letter--a {
    animation: none;
    text-shadow: none;
    transform: none !important;
  }

  .origin-badge__flag-image {
    transition: none;
    transform: scale(1) translateY(0);
  }
}

.section {
  padding: var(--grid-size) 0;
}

.section--hero + .section--about {
  margin-top: calc(var(--grid-size) * 1);
}

.section--about {
  padding: calc(var(--grid-size) * 0.8) 0;
  margin-bottom: calc(var(--grid-size) * 2);
}

.section--work {
  padding-top: max(0px, calc(var(--grid-size) * 0.85 - var(--grid-size) * 8));
}

.section--services {
  padding-bottom: max(40px, calc(clamp(140px, 17vw, 240px) - var(--grid-size) * 13));
}

.section--services .section__header h2 {
  font-size: clamp(2.3rem, 4vw, 2.5rem);
  line-height: 1.2;
}


.section__header {
  max-width: 780px;
  margin: -14px auto 32px;
  text-transform: uppercase;
  text-align: center;
}

.section__eyebrow {
  margin: 0 0 32px;
  letter-spacing: 0.28em;
  font-size: var(--section-eyebrow);
  color: var(--text-soft);
}

.section__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
}

.section--about .section__header h2 {
  line-height: 0.95;
}

.section__lead {
  margin: 18px auto 0;
  font-size: var(--section-subtitle);
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-transform: none;
  line-height: 1.45;
}

.section__tagline {
  margin: 12px 0 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--about-meta);
  color: var(--text-soft);
}

.section__subline {
  margin: 10px auto 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.section__lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 460px;
  color: #1a1a1a;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "text media"
    "cards cards";
  column-gap: clamp(28px, 5vw, 80px);
  row-gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-copy {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin-top: 12px;
}

.about-copy .section__lead--left {
  margin: 0 0 24px;
}

.about-copy .section__lead--left:last-of-type {
  margin-bottom: 24px;
}

.about-bullets {
  grid-area: cards;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  perspective: 1200px;
}

.about-bullets li {
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: none;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  line-height: 1.5;
  color: var(--text-soft);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.about-bullets strong {
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0;
  color: var(--accent);
  text-align: center;
}

.about-media {
  grid-area: media;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-top: -10px;
  transform: scale(0.99);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFlip {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  60% {
    opacity: 1;
    transform: rotateX(12deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "media"
      "cards";
  }

  .about-bullets {
    grid-template-columns: 1fr;
  }
}

.about-media__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-media__eyebrow {
  margin: 0;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-media__lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.about-media__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle, #ffffff 0%, #f7f7f7 65%, #f2f2f2 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.about-media__player {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 16 / 9;
}

.about-media__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  border-radius: inherit;
  outline: none;
}

.video-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-control--overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  pointer-events: auto;
  z-index: 2;
}

.video-control--overlay:not(.is-playing) {
  clip-path: polygon(35% 0, 100% 50%, 35% 100%);
}

.video-control--overlay.is-playing {
  clip-path: inset(0 22px);
}

.video-control--overlay .video-control__icon {
  width: 0;
  height: 0;
  border-left: 34px solid rgba(0, 0, 0, 0.6);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 7px;
  transition: transform 0.15s ease;
}

.video-control--overlay:hover .video-control__icon {
  transform: scale(1.06);
  border-left-color: rgba(0, 0, 0, 0.7);
}

.video-control--overlay:focus-visible .video-control__icon {
  transform: scale(1.08);
  border-left-color: rgba(0, 0, 0, 0.78);
}

.video-control--overlay.is-playing .video-control__icon {
  width: 18px;
  height: 22px;
  margin-left: 0;
  border: 0;
  position: relative;
}

.video-control--overlay.is-playing .video-control__icon::before,
.video-control--overlay.is-playing .video-control__icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}

.video-control--overlay.is-playing .video-control__icon::before {
  left: 0;
}

.video-control--overlay.is-playing .video-control__icon::after {
  right: 0;
}

.video-controls__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: block;
  pointer-events: auto;
  z-index: 1;
}

.video-progress {
  display: block;
  width: 100%;
  padding: 0 38px;
  box-sizing: border-box;
}

.video-progress input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
  height: 16px;
  cursor: pointer;
  --progress: 0%;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.85)
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: var(--progress, 0%) 2px;
}

.video-progress input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.video-progress input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.video-progress input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.video-progress input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.video-progress input[type="range"]::-moz-range-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.video-progress input[type="range"]::-moz-range-thumb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
}

.video-progress input[type="range"]:focus-visible {
  outline: none;
}

.video-volume {
  position: absolute;
  left: 14px;
  bottom: calc(100% + 34px);
  width: 38px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  --volume-level: 1;
  --volume-track-gap: 10px;
}

.video-volume input[type="range"] {
  writing-mode: bt-lr;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.video-volume::before,
.video-volume::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  border-radius: 999px;
}

.video-volume::before {
  top: var(--volume-track-gap);
  bottom: var(--volume-track-gap);
  background: rgba(255, 255, 255, 0.25);
}

.video-volume::after {
  bottom: var(--volume-track-gap);
  top: var(--volume-track-gap);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.65) 100%);
  transform-origin: bottom center;
  transform: scaleY(var(--volume-level));
}

.video-volume:focus-within::before {
  background: rgba(255, 255, 255, 0.35);
}


.video-volume input[type="range"]::-moz-range-thumb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
}

.video-volume input[type="range"]::-moz-range-thumb:hover,
.video-volume input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.video-volume input[type="range"]:focus-visible,
.video-progress input[type="range"]:focus-visible {
  outline: none;
}

.about-media__frame video::-webkit-media-controls-fullscreen-button,
.about-media__frame video::-webkit-media-controls-enter-fullscreen-button,
.about-media__frame video::-webkit-media-controls-exit-fullscreen-button,
.about-media__frame video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

.about-media__frame video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

.about-media__frame video::-webkit-media-controls-panel,
.about-media__frame video::-webkit-media-controls,
.about-media__frame video::-webkit-media-controls-enclosure {
  border-radius: 0;
}

.about-media__frame video::-moz-fullscreen-button,
.about-media__frame video::-ms-control-fullscreen-button {
  display: none !important;
}


.about-copy[data-animate],
.about-bullets[data-animate] {
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.about-bullets[data-animate] {
  transition-delay: 0.05s;
}

.about-media.is-visible {
  opacity: 1;
  transform: scale(1);
}

.about-copy.is-visible,
.about-bullets.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid,
.card-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

.highlight-grid .highlight {
  min-height: 160px;
  padding: clamp(16px, 1.4vw, 24px);
}

.section--work .highlight {
  position: relative;
  overflow: hidden;
}

.section--work .highlight__body {
  position: relative;
  z-index: 1;
}

.section--work .highlight[data-animate]:not(.is-visible) {
  opacity: 0;
  transform: translateX(0);
}

.section--work .highlight:nth-child(1)[data-animate]:not(.is-visible) {
  transform: translateX(-40px);
}

.section--work .highlight:nth-child(2)[data-animate]:not(.is-visible) {
  transform: translateX(40px);
}

.section--work .highlight.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.section--work .highlight--accelerated .highlight-timeline {
  position: absolute;
  left: clamp(16px, 3vw, 36px);
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(14px, 2vw, 22px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.section--work .highlight-timeline__marker {
  position: absolute;
  top: -3px;
  left: 0;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  transform: translateX(-120%);
}

.section--work .highlight--accelerated:hover .highlight-timeline__marker,
.section--work .highlight--accelerated:focus-within .highlight-timeline__marker {
  animation: highlightTimelineRun 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.section--work .highlight-metric--decisions {
  position: relative;
}

.section--work .highlight--accelerated.is-visible .highlight-metric--decisions {
  animation: metricFlash 1.4s ease forwards;
  animation-delay: 0.35s;
}

.section--work .highlight--warning {
  padding-left: clamp(28px, 4vw, 48px);
}

.section--work .highlight--warning .highlight-signal {
  position: absolute;
  top: 50%;
  left: clamp(12px, 3vw, 30px);
  width: 14px;
  height: 60px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--work .highlight-signal__spike {
  width: 3px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.section--work .highlight-signal__pulse {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: scale(0.5);
}

.section--work .highlight--warning:hover .highlight-signal__spike,
.section--work .highlight--warning:focus-within .highlight-signal__spike {
  transform: translateY(-8px) scaleY(1.15);
}

.section--work .highlight--warning:hover .highlight-signal__pulse,
.section--work .highlight--warning:focus-within .highlight-signal__pulse {
  animation: signalPulse 0.8s ease-out forwards;
}

.section--work .highlight--warning .highlight-underline {
  display: inline-block;
  position: relative;
}

.section--work .highlight--warning .highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: rgba(255, 255, 255, 0.65);
  transition: width 0.45s ease;
}

.section--work .highlight--warning.is-visible .highlight-underline::after {
  width: 100%;
  transition-delay: 0.4s;
}

@keyframes highlightTimelineRun {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(250%);
    opacity: 0;
  }
}

@keyframes metricFlash {
  0% {
    color: inherit;
    background: rgba(255, 255, 255, 0);
  }
  25% {
    background: rgba(255, 255, 255, 0.18);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes signalPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.5);
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
.deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  grid-template-rows: repeat(2, minmax(120px, auto));
  gap: clamp(12px, 1.2vw, 22px) clamp(14px, 1.4vw, 26px);
  position: relative;
  z-index: 2;
  justify-content: center;
  align-content: center;
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.deliverables li {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--pill-text);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  min-width: 160px;
  max-width: 180px;
  width: clamp(160px, 16vw, 180px);
  min-height: 92px;
  position: relative;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.deliverables.is-primed li {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    opacity 0.45s ease;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
}

.deliverables.is-primed li.is-visible,
.deliverables.is-primed li[data-animate="ready"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.deliverables li:nth-child(1) {
  justify-self: start;
  align-self: start;
}

.deliverables li:nth-child(2) {
  justify-self: end;
  align-self: start;
}

.deliverables li:nth-child(3) {
  justify-self: start;
  align-self: end;
}

.deliverables li:nth-child(4) {
  justify-self: end;
  align-self: end;
}

.deliverables.is-primed li.is-visible,
.deliverables.is-primed li[data-animate="ready"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.deliverables li:hover,
.deliverables li:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.24);
}

.deliverables li.is-beam-active {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.2);
}

.deliverables-diagram {
  position: relative;
  margin-top: calc(var(--grid-size) * -1 + 20px);
  padding: clamp(60px, 8vw, 120px) 0;
  isolation: isolate;
  min-height: clamp(420px, 50vw, 540px);
}

.diagram-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.diagram-beams svg {
  width: 100%;
  height: 100%;
  display: block;
}

.diagram-beams__path {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgba(255, 255, 255, 0.75);
  mix-blend-mode: screen;
  stroke-opacity: 0.45;
  stroke-dasharray: 16 8;
  animation: beamIdle 1.8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.45));
  transition: stroke-opacity 0.3s ease, filter 0.3s ease, stroke-width 0.3s ease;
}

.diagram-beams__path.is-active {
  stroke-opacity: 1;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.9));
  stroke-dasharray: 18 6;
  animation: beamActive 0.9s linear infinite;
}

@keyframes beamIdle {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes beamActive {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -24;
  }
}
.diagram-emblem {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 20vw, 280px);
  height: clamp(180px, 20vw, 280px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.diagram-emblem__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  animation: emblemPulse 8s ease-in-out infinite;
}

@keyframes emblemPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
  }
}


@media (min-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .deliverables-diagram {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .deliverables {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    justify-content: center;
  }

  .deliverables li {
    justify-self: center;
    align-self: stretch;
  }
}

@keyframes beamFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.8;
  }
  100% {
    stroke-dashoffset: -320;
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-path--highlight {
    animation: none;
  }
}

.feature,
.card,
.highlight {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature {
  padding: 26px;
}

.feature:hover,
.card:hover,
.highlight:hover,
.feature:focus-within,
.card:focus-within,
.highlight:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.24);
}

.feature h3,
.card h3,
.highlight h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.feature p,
.card p,
.highlight p {
  margin: 0;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 0.9rem;
  line-height: 1.4;
}

.section--work .highlight {
  gap: 10px;
}

.section--work .highlight h3 {
  font-size: var(--outcome-title);
}

.section--work .highlight p {
  font-size: var(--outcome-body);
  line-height: 1.45;
}

.section--cta .cta {
  background: transparent;
  border-radius: 0;
  border: none;
  padding: clamp(48px, 8vw, 72px);
  text-align: center;
  box-shadow: none;
}

.section--cta .cta h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section--cta .cta p {
  margin: 20px auto 32px;
  max-width: 60ch;
  color: var(--text-muted);
  text-transform: none;
}

.section--cta .cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Contact expand panel */
.contact-expand {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-expand__label {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1),
    letter-spacing 0.5s cubic-bezier(.16,1,.3,1),
    opacity 0.4s ease;
}

.contact-expand__panel {
  width: min(720px, 100%);
  background: #0a0a0a;
  color: #f4f4f4;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top;
  max-height: 0;
  clip-path: inset(0 0 100% 0 round var(--radius-lg));
  transition:
    clip-path 0.8s cubic-bezier(.16,1,.3,1),
    max-height 0.8s cubic-bezier(.16,1,.3,1),
    transform 0.6s cubic-bezier(.16,1,.3,1),
    opacity 0.45s ease,
    box-shadow 0.6s ease;
}

.contact-expand__panel::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 28%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 18px);
  opacity: 0;
  transform: translateY(-25%);
  pointer-events: none;
}

.contact-expand.is-expanded .contact-expand__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 1000px;
  clip-path: inset(0 0 0 0 round var(--radius-lg));
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}

.contact-expand.is-expanded .contact-expand__panel::before {
  opacity: 1;
  animation: contactSweep 1.2s ease-out 0.18s both;
}

@keyframes contactSweep {
  from { transform: translateY(-55%); opacity: 0; }
  30% { opacity: 1; }
  to { transform: translateY(55%); opacity: 0; }
}

.contact-expand__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
}

.contact-expand__grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.5s ease;
}

.contact-expand__grid input,
.contact-expand__grid textarea {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f4f4;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.95rem;
}

.contact-expand.is-expanded .contact-expand__grid label { opacity: 1; transform: translateY(0); }
.contact-expand.is-expanded .contact-expand__grid label:nth-child(1) { transition-delay: 0.10s; }
.contact-expand.is-expanded .contact-expand__grid label:nth-child(2) { transition-delay: 0.16s; }
.contact-expand.is-expanded .contact-expand__grid label:nth-child(3) { transition-delay: 0.22s; }
.contact-expand.is-expanded .contact-expand__grid label:nth-child(4) { transition-delay: 0.28s; }

.contact-expand.is-expanded .contact-expand__label {
  transform: translateY(-2px) scale(1.02);
  letter-spacing: 0.26em;
  opacity: 0.92;
}

.contact-expand__grid input::placeholder,
.contact-expand__grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-expand__grid input:focus,
.contact-expand__grid textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-expand__full {
  grid-column: 1 / -1;
}

.contact-expand__actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 20px 20px;
}

.contact-expand__status {
  min-height: 18px;
  padding: 0 20px 26px 20px;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.3s ease;
}

.contact-expand__status.is-success {
  color: #8ed8ac;
}

.contact-expand__status.is-error {
  color: #ff8da1;
}

.btn.btn--compact {
  padding: 10px 18px;
}

@media (max-width: 700px) {
  .contact-expand__grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-meta {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .nav__emblem-image {
    width: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-expand__panel,
  .contact-expand__label,
  .contact-expand__grid label,
  .contact-expand__panel::before {
    transition: none !important;
    animation: none !important;
  }
  .contact-expand__panel { opacity: 1; max-height: 1000px; clip-path: none; transform: none; }
  .contact-expand__grid label { opacity: 1; transform: none; }
}

.site-footer {
  padding: 42px 0 54px;
  background: transparent;
  border-top: none;
  color: var(--text-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-title {
  margin: 0 0 4px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.footer-line {
  margin: 0;
  font-size: var(--footer-text);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-soft);
}

.footer-meta {
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}

.system-line {
  display: block;
  padding: 18px 0;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
}

/* Dashboard styling */


.osint-dashboard {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
}

.osint-dashboard__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.osint-dashboard__grain {
  position: absolute;
  inset: -10%;
  background-image: inherit;
  opacity: 0.25;
}

.osint-dashboard__wave {
  display: none;
}

.osint-dashboard__wave--a { top: 10%; }
.osint-dashboard__wave--b { top: 45%; }
.osint-dashboard__wave--c { top: 75%; }

.osint-dashboard__header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(242, 242, 242, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.osint-nav {
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  text-transform: uppercase;
}

.osint-nav__clock {
  display: flex;
  align-items: center;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  margin-left: 0;
}

.osint-nav__home {
  display: inline-block;
  background: transparent;
  border: 0;
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
}

.osint-nav__home:hover,
.osint-nav__home:focus-visible {
  color: var(--accent);
  outline: none;
}

.osint-nav__links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.osint-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  color: rgba(24, 24, 26, 0.65);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.osint-nav__links a:hover,
.osint-nav__links a:focus-visible {
  color: var(--accent);
  border-color: rgba(24, 24, 26, 0.45);
  outline: none;
}

.osint-nav__links a.is-active,
.osint-nav__links a[aria-current] {
  color: var(--accent);
  border-color: var(--accent);
}

.osint-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


.osint-nav__sse {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  color: var(--text-soft);
  font-feature-settings: "tnum", "lnum";
  white-space: nowrap;
}

/* Chrono card pulls styling from KPI chips */
.chrono-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--accent);
  font-family: 'Space Grotesk', 'Inter', monospace;
  font-weight: 600;
  letter-spacing: 0.18em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "lnum";
}

.chrono-bar .label {
  color: rgba(24, 24, 26, 0.55);
  letter-spacing: 0.22em;
  font-size: 0.58rem;
}

.chrono-bar .date {
  color: rgba(24, 24, 26, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.chrono-bar .time {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.84rem;
}

.chrono-bar__theater {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.9), rgba(16, 16, 17, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 46px rgba(8, 10, 12, 0.38);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.dashboard-chip--heading {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  letter-spacing: 0.24em;
  padding: 18px 32px;
  white-space: normal;
  text-align: center;
}

/* Clock placed next to brand title */
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.status-dot--green { background: #3a7b3a; }
.status-dot--amber { background: #b08120; }
.status-dot--red { background: #a43a3a; }

.osint-dashboard__main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
  padding: 64px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.report-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 40px;
  background: rgba(5, 6, 12, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 30;
}

.report-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.report-panel__window {
  width: min(860px, calc(100% - 64px));
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% -20%, rgba(120, 120, 120, 0.18), transparent 60%),
    linear-gradient(165deg, rgba(34, 34, 36, 0.96), rgba(14, 14, 16, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(3, 4, 8, 0.65);
  color: #f3f5fb;
  padding: 32px 38px 38px;
}

.report-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-panel__eyebrow {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.report-panel__header h3 {
  margin: 4px 0 0;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-panel__close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.report-panel__body {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.report-panel__response {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.25);
}

.report-panel__label {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  color: rgba(243, 245, 251, 0.64);
  text-transform: uppercase;
}

.report-panel__content {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(247, 248, 255, 0.92);
  min-height: 1.4em;
}

.report-panel__content--reply {
  color: rgba(255, 255, 255, 0.92);
}

.report-panel__content.is-dim {
  opacity: 0.5;
}

body.report-panel-open {
  overflow: hidden;
}

.control-deck {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--text-soft);
}



.dashboard-section {
  display: none;
  flex-direction: column;
  gap: 32px;
}

[data-dashboard-section].is-active {
  display: flex;
}

.dashboard-section__header {
  max-width: 860px;
  text-transform: uppercase;
}

.dashboard-section__eyebrow {
  letter-spacing: 0.26em;
  font-size: 0.68rem;
  color: var(--text-soft);
  margin: 0 0 16px;
}

.dashboard-section__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3rem);
}

.dashboard-section__lead {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.metrics__kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}

.metrics__kpi {
  position: relative;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 30, 32, 0.92), rgba(18, 18, 19, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 46px rgba(8, 10, 12, 0.38);
  color: rgba(240, 239, 236, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  overflow: hidden;
}

.metrics__kpi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 45%);
  opacity: 0.55;
  pointer-events: none;
}

.metrics__kpi h3 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(216, 216, 214, 0.64);
}

.metrics__kpi strong {
  display: block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.08em;
  color: #f4f3f0;
}

.metric-series-card {
  position: relative;
  padding: 26px 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(30, 30, 31, 0.96), rgba(16, 16, 17, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 42px 92px rgba(8, 8, 10, 0.48);
  color: var(--text-light);
  overflow: hidden;
}

.metric-series-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.metric-series-card__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.metric-series-card__heading h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f6f8fb;
}

.metric-series-card__heading p {
  margin: 6px 0 0;
  max-width: 360px;
  color: rgba(214, 220, 228, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.metric-series-card__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin: 16px 0 0;
}

.metric-series-card__switches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.metric-series-card__insights {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-left: auto;
}

.metric-series-card__insights div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 72px;
  align-items: flex-end;
}

.metric-series-card__insights dt {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(230, 237, 243, 0.52);
}

.metric-series-card__insights dd {
  margin: 0;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  color: #f6f8fb;
  letter-spacing: 0.08em;
  text-align: right;
}

.metric-series-card__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: rgba(214, 220, 228, 0.62);
}

.metric-series-card__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.metric-series-card__legend-item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 0;
  border-bottom: 2px solid currentColor;
  border-radius: var(--radius-sm);
  opacity: 0.8;
}

.metric-series-card__legend-item--current::before {
  border-bottom-color: #e6ecf4;
}

.metric-series-card__legend-item--compare {
  color: rgba(210, 214, 222, 0.68);
}

.metric-series-card__legend-item--compare::before {
  border-bottom-style: dashed;
  border-bottom-color: rgba(210, 214, 222, 0.72);
}

.metric-series-card__bucket-switch {
  display: inline-flex;
  border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(30, 30, 31, 0.95);
  box-shadow: var(--card-shadow-dark);
  margin: 12px 0 0;
}

.bucket-switch__option {
  border: 0;
  background: transparent;
  padding: 12px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(230, 230, 226, 0.72);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bucket-switch__option.is-active,
.bucket-switch__option:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(244, 243, 240, 0.94);
  transform: translateY(-1px);
}

.bucket-switch__option:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.metric-series-card__chart-shell {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 13, 17, 0.97), rgba(6, 8, 11, 0.92));
}

.metric-series-card__canvas {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 280px);
}

.metric-series-card__chart-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 35%);
  mix-blend-mode: lighten;
}

.metric-series-card__spike-tooltip {
  position: absolute;
  right: 18px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(8, 9, 11, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: var(--text-light);
  min-width: 180px;
  font-size: 0.82rem;
  line-height: 1.35;
  display: none;
}

.metric-series-card__spike-tooltip.is-active {
  display: block;
}

.metric-series-card__spike-tooltip h4 {
  margin: 0 0 6px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 237, 243, 0.78);
}

.metric-series-card__spike-tooltip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.metric-series-card__spike-tooltip li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}

.metric-series-card__spike-tooltip small {
  color: rgba(214, 220, 228, 0.7);
}

.metric-series-card__spikes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-series-card__spikes-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.metric-series-card__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.62rem;
  color: rgba(214, 220, 228, 0.6);
}

.metric-series-card__spikes-header h4 {
  margin: 6px 0 0;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f7fb;
}

.metric-series-card__spikes-status {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(230, 230, 226, 0.7);
}

.now-spikes-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.now-spikes-table thead th {
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(214, 220, 228, 0.5);
  padding-bottom: 6px;
}

.now-spikes-table thead th:not(:first-child) {
  text-align: right;
}

.now-spikes-table tbody td {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.now-spikes-table tbody tr:first-child td {
  border-top: 0;
}

.now-spikes__brief {
  margin: 0;
  font-size: 0.95rem;
  color: #f6f8fb;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.now-spikes__brief a {
  color: inherit;
  text-decoration: none;
}

.now-spikes__brief a:hover,
.now-spikes__brief a:focus-visible {
  text-decoration: underline;
}

.now-spikes__meta {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(214, 220, 228, 0.66);
  text-transform: uppercase;
}

.now-spikes__delta {
  text-align: right;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.now-spikes__delta strong {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
}

.now-spikes__delta-caption {
  display: block;
  margin-top: 2px;
  font-size: 0.64rem;
  color: rgba(214, 220, 228, 0.6);
}

.now-spikes-table__empty td {
  text-align: center;
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(214, 220, 228, 0.7);
}

.core__tabs {
  display: inline-flex;
  border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(30, 30, 31, 0.95);
  box-shadow: var(--card-shadow-dark);
}

.core__tab {
  border: 0;
  background: transparent;
  padding: 12px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(230, 230, 226, 0.72);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.core__tab.is-active,
.core__tab:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(244, 243, 240, 0.94);
  transform: translateY(-1px);
}

.core__tables {
  display: grid;
  gap: 32px;
  width: 100%;
}

.core__panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(165deg, rgba(30, 30, 31, 0.96), rgba(16, 16, 17, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--card-shadow-dark);
  color: var(--text-light);
}

.core__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 22% -10%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.core__panel > * {
  position: relative;
}

.core__controls {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.core__filter-switch {
  background: rgba(24, 25, 28, 0.9);
}

.core__panel--muted .core__filter-switch {
  background: rgba(24, 25, 28, 0.6);
}

.core__panel--muted {
  opacity: 0.65;
}

.core__table-shell {
  width: 100%;
  border-radius: calc(var(--radius-sm) + 6px);
  background: linear-gradient(170deg, rgba(28, 28, 30, 0.96), rgba(16, 16, 17, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 26px 60px rgba(5, 7, 10, 0.35);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
}

.core__table-shell::-webkit-scrollbar {
  height: 6px;
}

.core__table-shell::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.core__table-shell::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.core__filters {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.core__filters label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.core__filters select {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  background: transparent;
  text-transform: uppercase;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.core__table-shell .data-table {
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.data-table th[data-sort-field] {
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.data-table th[data-sort-field]:hover {
  color: var(--accent);
}

.data-table th[data-sort-field].is-active {
  color: var(--accent);
}

.data-table th[data-sort-field].is-active::after {
  content: '▼';
  display: inline-block;
  margin-left: 8px;
  font-size: 0.6rem;
}

.data-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.05);
}

.data-table__empty td {
  text-align: center;
  color: var(--text-soft);
}

.data-table__group-header td {
  padding: 0;
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.data-table__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
}

.data-table__group-toggle:hover,
.data-table__group-toggle:focus-visible {
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

.data-table__group-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}

.data-table__group-toggle[aria-expanded='true']::after {
  transform: rotate(0deg);
}

.data-table__group-label {
  font-weight: 600;
}

.data-table__group-count {
  color: var(--text-soft);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
  white-space: normal;
  word-break: break-word;
  line-height: 1.5;
  width: 280px;
  min-width: 240px;
}

.data-table__group-item.is-collapsed {
  display: none;
}

.core__panel .data-table th,
.core__panel .data-table td {
  color: rgba(238, 237, 233, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

.core__panel .data-table th {
  color: rgba(244, 243, 240, 0.84);
}

.core__panel .data-table th[data-sort-field]:hover,
.core__panel .data-table th[data-sort-field].is-active {
  color: #f3f2ef;
}

.core__panel .data-table th[data-sort-field].is-active::after {
  color: inherit;
}

.core__panel .data-table tbody tr {
  transition: background 0.2s ease;
}

.core__panel .data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}

.core__panel .data-table__empty td {
  color: var(--text-soft-on-dark);
}

.core__panel .data-table__group-header td {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--divider-dark);
}

.core__panel .data-table__group-toggle {
  color: rgba(226, 226, 222, 0.72);
}

.core__panel .data-table__group-count {
  color: rgba(210, 210, 206, 0.58);
}

.core__panel .data-table a {
  color: inherit;
}

/* Load-more row for flat tables */
.data-table__load-more td {
  text-align: center;
  padding: 16px;
}

.metrics-grid,
.momentum__grid,
.narratives__grid,
.telemetry__status {
  display: grid;
  gap: 24px;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metrics-card,
.momentum__panel,
.narrative-card {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.94), rgba(18, 18, 19, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 24px 48px rgba(8, 10, 12, 0.38);
  color: rgba(240, 239, 236, 0.9);
}

.narrative-card {
  color: var(--text-light);
}

.metrics-card h3,
.momentum__panel h3 {
  margin: 0 0 12px;
  color: #f3f2ef;
}

.metrics-card dl,
.momentum__panel p,
.momentum__panel ul,
.narrative-card p {
  margin: 0;
  color: rgba(228, 227, 222, 0.78);
  text-transform: none;
  letter-spacing: 0.01em;
}

.narrative-card h3 {
  color: #f5f3f0;
}

.narrative-card p {
  color: rgba(228, 227, 222, 0.78);
}

.narrative-card__meta {
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.narrative-card__arguments {
  margin: 16px 0;
  padding-left: 18px;
  list-style: disc;
  color: rgba(228, 227, 222, 0.86);
}

.narrative-card__frames,
.narrative-card__actors,
.narrative-card__origin {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.metrics-card dl div,
.momentum__panel dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.narratives__cta {
  display: flex;
  justify-content: flex-end;
}

.narratives__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.narratives__dates {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.narratives__window-indicator {
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.9), rgba(16, 16, 17, 0.7));
  color: var(--text-light);
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.narratives__date-btn {
  border: 0;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.94), rgba(16, 16, 17, 0.72));
  color: var(--text-light);
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.narratives__date-btn.is-current {
  border-color: rgba(255, 255, 255, 0.16);
}

.narratives__date-btn.is-active {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(32, 32, 34, 0.96), rgba(18, 18, 19, 0.78));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.narratives__date-btn:hover,
.narratives__date-btn:focus-visible {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.98), rgba(18, 18, 19, 0.78));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.narratives__date-btn.is-active:hover,
.narratives__date-btn.is-active:focus-visible {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.24), transparent 60%),
    linear-gradient(135deg, rgba(36, 36, 38, 0.98), rgba(22, 22, 24, 0.82));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

button.cta {
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  color: #f4f4f4;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

button.cta:hover,
button.cta:focus-visible {
  background: var(--accent);
  color: #121316;
}

.telemetry__status {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.telemetry__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.7);
}

.telemetry__chip--note {
  grid-column: span 2;
}

.osint-dashboard__footer {
  margin-top: auto;
  padding: 48px 0 64px;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* Responsive */

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand links";
    gap: 12px;
    padding: 0 18px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__emblem-image {
    width: 88px;
  }

  .nav__links {
    position: absolute;
    top: calc(var(--grid-size) - 10px);
    right: 18px;
    flex-direction: column;
    gap: 18px;
    background: rgba(4, 4, 5, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 18px;
    display: none;
    color: var(--text-light);
    min-width: 220px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero-inner {
    width: calc(100% - 64px);
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .section,
  .osint-dashboard__main {
    padding-left: 32px;
    padding-right: 32px;
  }

  .osint-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .osint-nav__links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .osint-nav__actions {
    width: 100%;
    justify-content: space-between;
  }

  .osint-nav__home {
    padding-left: 0;
  }

  .dashboard-chip--heading {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }

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

  .btn {
    width: 100%;
  }

  .section--cta .cta {
    padding: 40px 0 56px;
  }

  .contact-expand {
    width: 100%;
    align-items: stretch;
  }

  .contact-expand__panel {
    border-radius: 24px;
  }

  .hero-official-note {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .page-main {
    gap: 64px;
  }

  .subpage-hero {
    padding: 100px 0 40px;
  }

  .subpage-hero__eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.68rem;
  }

  .subpage-hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .section__header {
    margin-bottom: 40px;
  }

  .feature,
  .card,
  .highlight,
  .core__panel,
  .metrics-card,
  .momentum__panel,
  .narrative-card {
    padding: 24px;
  }

  .metrics__kpi-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .metric-series-card {
    padding: 24px 20px;
  }

  .metric-series-card__insights {
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .metric-series-card__insights div {
    min-width: 80px;
    flex: 1;
  }

  .metric-series-card__canvas {
    height: 220px;
  }

  .telemetry__chip--note {
    grid-column: auto;
}

.dashboard-chip--heading {
  font-size: 0.9rem;
  padding: 16px 20px;
  letter-spacing: 0.2em;
}
}

@media (max-width: 480px) {
  .site-header {
    height: 68px;
  }

  .nav {
    padding: 0 10px;
  }

  .nav__brand {
    letter-spacing: 0.18em;
  }

  .nav__toggle {
    padding: 6px;
  }

  .hero {
    padding: 110px 0 96px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
    letter-spacing: 0.06em;
    line-height: 1.12;
  }

  .hero-official-note {
    margin-top: 20px;
  }

  .section--cta .cta {
    padding: 36px 0 48px;
  }

  .section--about .section__lead {
    font-size: 1.2rem;
    line-height: 1.68;
    letter-spacing: 0.006em;
  }

  .contact-expand__panel {
    width: 100%;
  }

  .contact-expand__grid {
    padding: 16px;
    gap: 12px;
  }

  .contact-expand__actions {
    padding: 0 16px 16px;
  }

  .contact-expand__status {
    padding: 0 16px 20px;
    text-align: left;
  }

  .btn.btn--compact {
    width: 100%;
  }
}

.amplifiers__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.amplifiers__layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.amplifiers__list {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.94), rgba(18, 18, 19, 0.74));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 24px 48px rgba(8, 10, 12, 0.38);
  color: var(--text-light);
}

.amplifiers__tabs-placeholder,
.amplifiers__tree-placeholder {
  margin: 0;
  color: var(--text-soft-on-dark);
  font-size: 0.9rem;
}

.amplifiers__core {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.92), rgba(18, 18, 19, 0.7));
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.amplifiers__core:hover {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(32, 32, 34, 0.95), rgba(18, 18, 19, 0.74));
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.amplifiers__core.is-active {
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.24), transparent 58%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.96), rgba(20, 20, 22, 0.78));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 54px rgba(8, 10, 12, 0.42);
  color: #f5f3f0;
}

.amplifiers__core-handle {
  font-weight: 600;
  font-size: 0.95rem;
}

.amplifiers__core-meta {
  font-size: 0.8rem;
  color: var(--text-soft-on-dark);
}

.amplifiers__core-summary,
.amplifiers__core-time {
  font-size: 0.78rem;
  color: var(--text-soft-on-dark);
}

.amplifiers__core.is-active .amplifiers__core-summary,
.amplifiers__core.is-active .amplifiers__core-time {
  color: rgba(244, 243, 240, 0.78);
}

.amplifiers__core.is-active .amplifiers__core-meta {
  color: rgba(242, 241, 238, 0.72);
}

.amplifiers__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amplifiers__core-trail {
  font-size: 0.78rem;
  color: var(--text-soft-on-dark);
  display: block;
}

.amplifiers__core-updated {
  font-size: 0.72rem;
  color: var(--text-soft-on-dark);
  display: block;
}

.amplifiers__timeline-shell {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.94), rgba(18, 18, 19, 0.74));
  padding: 18px 20px 20px 28px;
  min-height: 220px;
  box-shadow: 0 24px 48px rgba(8, 10, 12, 0.38);
  color: var(--text-light);
}

.amplifiers__chain-meta {
  font-size: 0.8rem;
  color: var(--text-soft-on-dark);
  margin-bottom: 12px;
}

.amplifiers__timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  position: relative;
}

.amplifiers__timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: 2px;
  background: rgba(240, 244, 252, 0.16);
}

.amplifiers__timeline-item {
  position: relative;
  margin-bottom: 16px;
  padding-left: 24px;
}

.amplifiers__timeline-item:last-child {
  margin-bottom: 0;
}

.amplifiers__timeline-item::before {
  content: '';
  position: absolute;
  top: 9px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(214, 220, 228, 0.45);
}

.amplifiers__timeline-card {
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% -20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 31, 0.9), rgba(18, 18, 19, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(6, 8, 12, 0.32);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amplifiers__timeline-badge {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 225, 220, 0.6);
}

.amplifiers__timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.amplifiers__timeline-title a {
  color: inherit;
  text-decoration: underline;
}

.amplifiers__timeline-title a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.amplifiers__timeline-meta {
  font-size: 0.8rem;
  color: var(--text-soft-on-dark);
}

.amplifiers__timeline-summary {
  font-size: 0.82rem;
  color: var(--text-soft-on-dark);
  margin: 6px 0 0;
}

.amplifiers__timeline-uid {
  font-size: 0.75rem;
  color: var(--text-soft-on-dark);
  word-break: break-all;
}

.amplifiers__timeline-uid a {
  color: inherit;
  text-decoration: underline;
}

.amplifiers__timeline-variants {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.amplifiers__timeline-variants-label {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(226, 225, 220, 0.65);
}

.amplifiers__timeline-variant-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amplifiers__timeline-variant-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amplifiers__timeline-variant-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.amplifiers__timeline-variant-title a {
  color: inherit;
  text-decoration: underline;
}

.amplifiers__timeline-variant-meta {
  font-size: 0.75rem;
  color: var(--text-soft-on-dark);
}

.amplifiers__timeline-variant-uid {
  font-size: 0.72rem;
  color: var(--text-soft-on-dark);
  word-break: break-all;
}

.amplifiers__timeline-variant-uid a {
  color: inherit;
  text-decoration: underline;
}

.amplifiers__timeline-item--origin .amplifiers__timeline-card,
.amplifiers__timeline-item--collector .amplifiers__timeline-card,
.amplifiers__timeline-item--final .amplifiers__timeline-card,
.amplifiers__timeline-item--duplicate .amplifiers__timeline-card {
  background:
    radial-gradient(circle at 22% -18%, rgba(255, 255, 255, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(32, 32, 34, 0.96), rgba(18, 18, 19, 0.74));
}

@media (min-width: 960px) {
  .amplifiers__layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .amplifiers__list {
    flex: 0 0 280px;
    max-height: 420px;
    overflow-y: auto;
    position: sticky;
    top: 96px;
  }

  .amplifiers__detail {
    flex: 1;
  }
}
.about-bullets.is-visible li {
  animation: cardFlip 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.about-bullets.is-visible li:nth-child(2) {
  animation-delay: 0.24s;
}

.about-bullets.is-visible li:nth-child(3) {
  animation-delay: 0.12s;
}

.about-bullets.is-visible li:hover,
.about-bullets.is-visible li:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.24);
}

/* MOBILE DAGR LAYOUT  ----------------------------------------------- */
@media (max-width: 768px) {
  /* 1. HEADER */
  .site-header {
    padding: 6px 0;
  }

  .nav {
    padding: 0 16px;
  }

  .nav__emblem-image {
    transform: scale(0.9);
  }

  .nav__toggle {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.78);
  }

  .nav__toggle span {
    height: 0.9px;
  }

  /* 2. HERO */
  .hero {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: clamp(1.7rem, 5vw, 2rem);
    line-height: 1.05;
    max-width: 90%;
    margin: 4px auto 12px auto;
    text-align: center;
  }

  .hero .lead {
    max-width: 85%;
    margin: 0 auto 18px auto;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .hero-subline {
    margin-top: 6px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-align: center;
  }

  /* 3. CTA BUTTONS */
  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .hero-actions .btn.primary {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  }

  .hero-actions .btn.secondary {
    box-shadow: none;
  }

  /* 4. ABOUT / TEXT BLOCK */
  .section--about {
    padding-top: 24px;
    margin-bottom: 0;
  }

  .section--about .section__header h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .section--about .section__tagline {
    font-size: 0.86rem;
    max-width: 80%;
    margin: 0 auto 14px auto;
  }

  .section--about .section__lead {
    max-width: 92%;
    margin: 0 auto 18px auto;
    font-size: 1.07rem;
    line-height: 1.58;
    letter-spacing: 0.01em;
  }

  /* 5. VIDEO PLAYER */
  .about-media__player {
    width: 100%;
    max-width: 92%;
    margin: 0 auto 32px auto;
    padding: 0;
    transform: none;
  }

  .about-media__frame {
    overflow: visible;
    padding-bottom: 8px;
    border-radius: 12px;
    background: transparent;
  }

  .about-media__frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .video-volume {
    display: none;
  }

  .video-progress {
    padding: 0 20px;
  }

  .about-media__caption {
    display: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  /* 6. HIDE WAVES / ORB / EMBLEM */
  .diagram-beams,
  .hero .grain,
  .pipe-diagram,
  .pipe-orb,
  .pipe-wave,
  .diagram-emblem {
    display: none !important;
  }

  .hero-waves {
    display: block;
    opacity: 0.75;
  }

  .deliverables-diagram {
    margin-top: calc(var(--grid-size) * -0.5);
    padding-top: 32px;
  }

  /* 7. WHAT WE DELIVER HEADER */
  .section--services .section__eyebrow {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .section--services .section__header h2 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .section--services .section__lead {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 0.86rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 8. CAPABILITIES / OUTCOMES CARDS */
  .deliverables,
  .about-bullets,
  .highlight-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .deliverables li,
  .about-bullets li,
  .highlight-grid .highlight {
    max-width: 88%;
    width: 100%;
    margin: 0 auto;
    padding: 12px 16px 14px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }

  .deliverables li strong,
  .about-bullets li strong,
  .highlight-grid .highlight h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .deliverables li,
  .about-bullets li,
  .highlight-grid .highlight p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  /* 9. IMPACT & RESULTS */
  .section--work .section__header h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    text-align: center;
    max-width: 90%;
    margin: 0 auto 8px auto;
  }

  .section--work .section__lead {
    font-size: 0.86rem;
    max-width: 80%;
    margin: 0 auto 16px auto;
  }
}
