: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: #f4f4f4;
  --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(210, 210, 210, 0.92);
  --card-border: rgba(0, 0, 0, 0.2);
  --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::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;
  -webkit-tap-highlight-color: transparent;
}

.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.92);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 10px 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  }

  .nav__links a.contact-pill::before {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .nav__links .contact-pill__label {
    color: rgba(255, 255, 255, 0.96);
  }

  .nav__links .contact-pill__sweep {
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 40%,
      rgba(245, 245, 255, 0.8) 65%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: drop-shadow(0 12px 24px rgba(255, 255, 255, 0.38));
  }
}

.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;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7, 8, 16, 0.82) 0%, rgba(8, 9, 18, 0.74) 22%, rgba(9, 10, 20, 0.52) 52%, rgba(10, 11, 22, 0.24) 78%, rgba(11, 12, 24, 0) 100%);
  mask-image:
    radial-gradient(140% 120% at 50% 0%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
  mask-composite: exclude;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(60% 50% at 50% 20%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    radial-gradient(100% 80% at 50% 0%, rgba(255, 200, 145, 0.06), rgba(255, 200, 145, 0));
  mix-blend-mode: screen;
  opacity: 0.85;
}

.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-grid-bias: -48px;
  --hero-grid-offset: 0px;
  transform: translateX(calc(var(--hero-grid-offset) + var(--hero-grid-bias)));
}

.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;
  width: auto;
  text-align: center;
  padding: calc(var(--grid-size) / 8) calc(var(--grid-size) / 4) calc(var(--grid-size) / 6);
}

.hero-title__segment {
  display: inline-block;
  white-space: nowrap;
  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 9s ease-in-out infinite alternate;
}

.hero-title__segment + .hero-title__segment {
  margin-left: 0;
}

.hero-title__segment--soft {
  animation-delay: -2.2s;
  filter: brightness(1.04);
}

.hero-title__segment--mid {
  animation-delay: -0.8s;
  filter: brightness(1);
}

.hero-title__segment--deep {
  animation-delay: -1.6s;
  filter: brightness(0.98);
}

@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;
    --hero-grid-bias: 0px;
  }

  .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 .lead strong {
  color: var(--text-soft);
  font-weight: 400;
}

.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;
}

/* USF Campus Demo */
.usf-demo {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--grid-size);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 40px);
  color: #080b0f;
  line-height: 1.5;
  --usf-card-bg: rgba(12, 16, 26, 0.92);
  --usf-card-border: rgba(255, 255, 255, 0.12);
  --usf-card-meta: rgba(255, 255, 255, 0.72);
}

.usf-demo__hero {
  text-align: center;
  color: #050505;
}

.usf-demo__eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(8, 11, 15, 0.55);
  margin-bottom: 8px;
}

.usf-demo__hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
  color: #050505;
}

.usf-demo__subline {
  color: rgba(8, 11, 15, 0.7);
}

.usf-demo__disclaimer {
  margin: 6px auto 0;
  max-width: 720px;
  font-size: 0.85rem;
  color: rgba(8, 11, 15, 0.6);
}

.usf-guardrails {
  margin: 16px auto 0;
  width: fit-content;
  max-width: 920px;
  border: 1px solid rgba(8, 11, 15, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
}

.usf-guardrails summary {
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(8, 11, 15, 0.7);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.usf-guardrails summary::-webkit-details-marker {
  display: none;
}

.usf-guardrails summary::after {
  content: "+";
  font-size: 1rem;
  letter-spacing: 0;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.usf-guardrails[open] summary::after {
  content: "−";
}

.usf-guardrails[open] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.usf-guardrails__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.usf-guardrails__grid > div {
  flex: 1 1 260px;
  min-width: 240px;
}

@media (min-width: 640px) {
  .usf-guardrails__grid {
    flex-wrap: nowrap;
  }
}

.usf-guardrails__label {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(8, 11, 15, 0.85);
}

.usf-guardrails ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(8, 11, 15, 0.7);
  font-size: 0.9rem;
}

.usf-demo p {
  color: rgba(8, 11, 15, 0.78);
}

.usf-demo__sync {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 14, 22, 0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.usf-demo__sync p {
  color: #fff;
}

.usf-demo__sync-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px;
}

.usf-demo__sync-value {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.usf-demo__refresh {
  display: flex;
  align-items: center;
  gap: 10px;
}

.usf-demo__refresh-status {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.usf-demo__refresh-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: transparent;
  opacity: 0.5;
}

.usf-demo__refresh-indicator.is-active {
  animation: usf-spin 0.9s linear infinite;
  opacity: 1;
  border-top-color: rgba(255, 255, 255, 0.8);
}

@keyframes usf-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.usf-exec-summary {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(16, 22, 36, 0.95), rgba(8, 11, 20, 0.88));
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usf-exec-summary p,
.usf-exec-summary dt,
.usf-exec-summary dd {
  color: rgba(255, 255, 255, 0.9);
}

.usf-exec-summary__headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 720px) {
  .usf-exec-summary__headline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.usf-exec-summary__eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 8px;
}

.usf-exec-summary__status {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 6, 12, 0.5);
}

.usf-exec-summary__status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #38f18c;
  box-shadow: 0 0 0 8px rgba(56, 241, 140, 0.2);
}

.usf-exec-summary__status[data-state="amber"] .usf-exec-summary__status-dot {
  background: #ffb857;
  box-shadow: 0 0 0 8px rgba(255, 184, 87, 0.2);
}

.usf-exec-summary__status[data-state="green"] .usf-exec-summary__status-dot {
  background: #7af1c3;
  box-shadow: 0 0 0 8px rgba(122, 241, 195, 0.2);
}

.usf-exec-summary__status[data-state="red"] .usf-exec-summary__status-dot {
  background: #ff6b6b;
  box-shadow: 0 0 0 8px rgba(255, 107, 107, 0.2);
}

.usf-exec-summary__status-level {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

.usf-exec-summary__confidence {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.usf-exec-summary__status-description {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.usf-exec-summary__driver {
  max-width: 460px;
}

.usf-exec-summary__label {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}

.usf-exec-summary__label--inline {
  margin-top: 8px;
}

.usf-exec-summary__driver p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.usf-exec-summary__answers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.usf-exec-summary__answers dt {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.usf-exec-summary__answers dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.usf-exec-summary__answers > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.usf-exec-summary__posture {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.usf-exec-summary__indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.usf-indicator-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  background: rgba(3, 5, 10, 0.65);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.usf-indicator-card__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.usf-indicator-card__value {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.usf-indicator-card[data-trend="up"] .usf-indicator-card__value {
  color: #7af1c3;
}

.usf-indicator-card[data-trend="down"] .usf-indicator-card__value {
  color: #ff9f65;
}

.usf-indicator-card[data-trend="flat"] .usf-indicator-card__value {
  color: rgba(255, 255, 255, 0.8);
}

.usf-indicator-card__meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.usf-indicator-card__breakdown {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.usf-indicator-card__breakdown strong {
  color: rgba(255, 255, 255, 0.9);
}

.usf-zone {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(8, 11, 15, 0.08);
}

.usf-zone__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.usf-zone__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: rgba(8, 11, 15, 0.5);
  margin: 0;
}

.usf-zone__header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #06080c;
}

.usf-zone__header p {
  margin: 0;
  color: rgba(8, 11, 15, 0.7);
}

.usf-zone__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.usf-amplification {
  border: 1px solid var(--usf-card-border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--usf-card-bg);
  color: rgba(255, 255, 255, 0.92);
}

.usf-amplification h3,
.usf-amplification p {
  color: rgba(255, 255, 255, 0.9);
}

.usf-amplification__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.usf-amplification .usf-section-header h3,
.usf-amplification .usf-section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.usf-link-button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.usf-link-button::after {
  content: "→";
  letter-spacing: 0;
  font-size: 0.9rem;
}

.usf-status-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.usf-status-legend {
  margin: 8px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 11, 15, 0.6);
}

.usf-status-card {
  border: 1px solid var(--usf-card-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: linear-gradient(145deg, rgba(18, 24, 40, 0.96), rgba(8, 11, 20, 0.85));
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.usf-status-card p {
  color: rgba(255, 255, 255, 0.85);
}

.usf-status-card[data-state="amber"] {
  border-color: rgba(255, 190, 92, 0.4);
  box-shadow: 0 0 24px rgba(255, 190, 92, 0.18);
}

.usf-status-card[data-state="green"] {
  border-color: rgba(94, 255, 197, 0.35);
  box-shadow: 0 0 24px rgba(94, 255, 197, 0.14);
}

.usf-status-card[data-state="blue"] {
  border-color: rgba(140, 192, 255, 0.35);
  box-shadow: 0 0 24px rgba(140, 192, 255, 0.14);
}

.usf-status-card__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}

.usf-status-card__value {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.usf-status-card__meta {
  color: var(--usf-card-meta);
  margin: 0;
}

.usf-status-card__note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.usf-card-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 0;
}

.usf-card-note strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.usf-card-note--plain strong {
  font-weight: 600;
}

.usf-card-highlights {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.usf-card-highlights li + li {
  margin-top: 2px;
}

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

.usf-alert {
  border: 1px solid var(--usf-card-border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--usf-card-bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
}

.usf-alert.is-acknowledged {
  opacity: 0.7;
  border-style: dashed;
}

.usf-alert--primary {
  background: linear-gradient(140deg, rgba(25, 31, 48, 0.98), rgba(16, 21, 36, 0.92));
  border-color: rgba(255, 190, 92, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.usf-alert--primary h3 {
  font-size: 1.6rem;
}

.usf-alert--secondary {
  background: rgba(11, 15, 26, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.usf-alert--secondary h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.usf-alert h2,
.usf-alert h3,
.usf-alert h4,
.usf-alert p {
  color: rgba(255, 255, 255, 0.9);
}

.usf-alert__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.usf-alert h2,
.usf-alert h3,
.usf-alert h4,
.usf-alert p {
  color: rgba(255, 255, 255, 0.88);
}

.usf-alert__meta {
  color: var(--usf-card-meta);
}

.usf-alert__ack {
  align-self: flex-start;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  text-transform: none;
  letter-spacing: 0.08em;
}

.usf-alert__ack span,
.usf-alert__ack strong {
  color: #fff;
}

.usf-alert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.usf-alerts__support-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0;
}

.usf-section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.usf-section-header h2,
.usf-section-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #06080c;
}

.usf-section-header p {
  margin: 0;
  color: rgba(8, 11, 15, 0.68);
}

.usf-narratives__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.usf-narrative-card {
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--usf-card-bg);
  border: 1px solid var(--usf-card-border);
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
}

.usf-narrative-card p {
  color: rgba(255, 255, 255, 0.85);
}

.usf-narrative-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.usf-narrative-card[data-risk="high"] .usf-narrative-card__badge {
  color: #ff9f65;
}

.usf-narrative-card[data-risk="medium"] .usf-narrative-card__badge {
  color: #ffd965;
}

.usf-narrative-card[data-risk="low"] .usf-narrative-card__badge {
  color: #8fe9c9;
}

.usf-narrative-card__metric {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.usf-narrative-card__action {
  color: var(--usf-card-meta);
}

.usf-narrative-card__pill {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  padding-right: 90px;
}

.usf-narrative-card__pill span:first-child {
  flex: 1;
}

.usf-narrative-card__pill span[data-momentum] {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  flex-shrink: 0;
  white-space: nowrap;
}

.usf-narrative-card__pill span[data-momentum="rising"] {
  color: #ffb857;
}

.usf-narrative-card__pill span[data-momentum="declining"] {
  color: #7af1c3;
}

.usf-narrative-card__pill span[data-momentum="stable"],
.usf-narrative-card__pill span[data-momentum="flat"] {
  color: rgba(255, 255, 255, 0.75);
}

.usf-narrative-card__summary {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.85);
}

.usf-narrative-card__source {
  margin: 4px 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.usf-timeline__track {
  position: relative;
  margin-top: 8px;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.usf-timeline__point {
  position: absolute;
  bottom: 0;
  background: none;
  border: 0;
  cursor: pointer;
  transform: translateX(-50%);
  text-align: center;
}

.usf-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd965;
  box-shadow: 0 0 0 8px rgba(255, 217, 101, 0.15);
  display: inline-block;
}

.usf-timeline__time {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.usf-timeline__tooltip {
  margin-top: -40px;
  border: 1px solid var(--usf-card-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background: var(--usf-card-bg);
  min-height: 70px;
  color: rgba(255, 255, 255, 0.9);
}

.usf-timeline__tooltip-title,
.usf-timeline__tooltip-meta {
  color: #fff;
}

.usf-timeline__tooltip p {
  color: #fff;
  margin: 4px 0;
}

.usf-timeline__empty {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.usf-timeline__tooltip-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.usf-actions {
  margin-top: 12px;
}

.usf-action-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usf-action-item {
  border: 1px solid var(--usf-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--usf-card-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.usf-action-item p {
  color: rgba(255, 255, 255, 0.85);
}

.usf-action-item[data-status=\"in_progress\"] {
  border-color: rgba(255, 190, 92, 0.4);
}

.usf-action-item[data-status=\"done\"] {
  opacity: 0.6;
  text-decoration: line-through;
}

.usf-action-item__title {
  font-weight: 600;
  margin: 0 0 4px;
}

.usf-action-item__meta {
  margin: 0;
  color: var(--usf-card-meta);
}

.usf-action-item__toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.usf-action-item[data-status="done"] .usf-action-item__toggle {
  opacity: 0.7;
}

.usf-demo__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(8, 11, 15, 0.85);
}

.usf-footer__use-cases {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: rgba(8, 11, 15, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.usf-footer__scope {
  margin: 4px 0;
  font-size: 0.85rem;
  color: rgba(8, 11, 15, 0.65);
}

.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;
  flex-wrap: wrap;
  position: relative;
}

.about-bullets li {
  position: relative;
  flex: 1 1 calc(25% - 24px);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 44px rgba(7, 10, 20, 0.14);
  border-radius: var(--radius-md);
  padding: 20px 24px 18px;
  line-height: 1.45;
  color: var(--text-soft);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform, opacity;
  isolation: isolate;
}

.about-bullets strong {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--accent);
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-bullets li::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 18px;
  left: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(9, 9, 11, 0.8), rgba(9, 9, 11, 0.25));
  box-shadow: 0 0 22px rgba(8, 10, 12, 0.24);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
}

.about-bullets li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 14, 18, 0.1), rgba(12, 14, 18, 0));
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.about-bullets li:nth-child(1) {
  --bullet-delay: 0s;
}

.about-bullets li:nth-child(2) {
  --bullet-delay: 0.2s;
}

.about-bullets li:nth-child(3) {
  --bullet-delay: 0.4s;
}

.about-bullets li:nth-child(4) {
  --bullet-delay: 0.6s;
}

.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;
  position: relative;
  --video-region-height: auto;
}

.about-media[data-expanded="1"] {
  min-height: var(--video-region-height, auto);
  transform: none;
  transition: opacity 0.6s ease;
}

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

@keyframes bulletLift {
  0% {
    opacity: 0;
    transform: translateY(42px) scale(0.9);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbPulse {
  0% {
    opacity: 0;
    transform: scale(0.4);
    box-shadow: 0 0 0 rgba(9, 9, 11, 0.2);
  }
  30% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.35;
    transform: scale(1.25);
    box-shadow: 0 0 28px rgba(9, 9, 11, 0.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
    box-shadow: 0 0 36px rgba(9, 9, 11, 0.06);
  }
}

@keyframes signalSweep {
  0% {
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
  }
  35% {
    opacity: 0.45;
  }
  60% {
    transform: translateX(115%) skewX(-18deg);
    opacity: 0.25;
  }
  100% {
    transform: translateX(160%) skewX(-18deg);
    opacity: 0;
  }
}

@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);
  transition: transform 0.5s ease, width 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease,
    background 0.4s ease;
}

.about-media__player {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 16 / 9;
  --video-poster-image: none;
  transition: border-radius 0.35s ease;
}

.about-media__player::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.4), rgba(8, 8, 10, 0.7)),
    var(--video-poster-image) center center / cover no-repeat;
  opacity: 1;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.about-media__player[data-poster-visible="0"]::before {
  opacity: 0;
}

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

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

.video-expand-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  pointer-events: auto;
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  backdrop-filter: none;
}

.video-expand-toggle:hover,
.video-expand-toggle:focus-visible {
  background: transparent;
  box-shadow: none;
}

.video-expand-toggle:active {
  transform: scale(0.96);
}

.video-expand-toggle__arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-expand-toggle__arrow::before,
.video-expand-toggle__arrow::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.video-expand-toggle__arrow--out::before {
  border-right: none;
  border-bottom: none;
  transform: translate(-6px, -6px);
}

.video-expand-toggle__arrow--out::after {
  border-left: none;
  border-top: none;
  transform: translate(6px, 6px);
}

.video-expand-toggle__arrow--in::before {
  border-left: none;
  border-bottom: none;
  transform: translate(6px, -6px);
}

.video-expand-toggle__arrow--in::after {
  border-right: none;
  border-top: none;
  transform: translate(-6px, 6px);
}

.about-media[data-expanded="1"] .video-expand-toggle__arrow--in,
.about-media:not([data-expanded="1"]) .video-expand-toggle__arrow--out {
  opacity: 1;
}

.about-media[data-expanded="1"] .video-expand-toggle {
  background: transparent;
  color: #1b2336;
}

.about-media[data-expanded="1"] .about-media__player[data-playing="1"] .video-expand-toggle {
  color: #fff;
}

.about-media[data-expanded="1"] .video-expand-toggle:hover,
.about-media[data-expanded="1"] .video-expand-toggle:focus-visible {
  background: transparent;
}

.about-media[data-expanded="1"] .video-expand-toggle__arrow {
  transform: scale(0.96);
}

.video-control--overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  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 .video-control__icon {
  width: 0;
  height: 0;
  border-left: 24px solid rgba(0, 0, 0, 0.5);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
  transition: transform 0.15s ease;
}

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

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

@property --video-overlay-progress {
  syntax: '<number>';
  initial-value: 0;
  inherits: false;
}

.video-control--overlay.is-playing .video-control__icon {
  width: 12px;
  height: 18px;
  margin-left: 0;
  border: 0;
  position: relative;
  opacity: clamp(0, 1, var(--video-overlay-progress));
}

.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: 3px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 1px;
}

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

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

.video-hover-indicator {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.video-hover-indicator::before,
.video-hover-indicator::after {
  content: '';
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.55);
}

.about-media__player[data-hover="1"][data-playing="1"] .video-hover-indicator {
  opacity: 0.75;
}

body.is-video-expanded {
  overflow: hidden;
}

.about-media[data-expanded="1"]::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(7, 8, 12, 0.62), rgba(2, 3, 6, 0.88));
  opacity: 1;
  pointer-events: none;
  z-index: 180;
}

.about-media[data-expanded="1"] .about-media__frame {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(
    1200px,
    calc(100vw - 56px),
    calc((100vh - 80px) * (16 / 9))
  );
  max-width: 96vw;
  max-height: min(840px, calc(100vh - 80px));
  transform: translate3d(-50%, -50%, 0);
  z-index: 200;
  box-shadow: 0 40px 80px rgba(4, 7, 12, 0.65), 0 12px 24px rgba(4, 8, 12, 0.4);
  border-color: rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95), rgba(216, 220, 232, 0.98));
  animation: videoExpandIn 0.5s cubic-bezier(0.25, 0.9, 0.35, 1) forwards;
}

.about-media[data-expanded="1"] .about-media__player {
  border-radius: 16px;
}

.about-media[data-expanded="1"] .video-controls__bar {
  bottom: 22px;
}

.about-media[data-expanded="1"] .video-volume input[type="range"] {
  background: rgba(17, 24, 39, 0.32);
}

.about-media[data-expanded="1"] .about-media__video {
  box-shadow: 0 18px 60px rgba(5, 8, 12, 0.55);
}

@keyframes videoExpandIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

.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;
}

.about-media:not([data-expanded="1"]).is-visible {
  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: 140px;
  padding: clamp(14px, 1.2vw, 20px);
}

.section--work .highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 44px rgba(7, 10, 20, 0.14);
}

.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: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: block;
  width: 100%;
  margin: 10px 0 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(208, 214, 222, 0.7);
  overflow: hidden;
  pointer-events: none;
}

.section--work .highlight--accelerated .highlight-timeline::before,
.section--work .highlight--accelerated .highlight-timeline::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.section--work .highlight--accelerated .highlight-timeline::before {
  background: repeating-linear-gradient(90deg, rgba(158, 168, 182, 0.65), rgba(158, 168, 182, 0.65) 12px);
}

.section--work .highlight--accelerated .highlight-timeline::after {
  width: 40%;
  background: linear-gradient(90deg, rgba(240, 244, 250, 0.9), rgba(170, 178, 190, 0.35));
  transform: translateX(-110%);
  opacity: 0;
}

.section--work .highlight--accelerated.is-visible .highlight-timeline::after {
  animation: timelineMinimalSweep 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 0.25s;
}

.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(6px, 3vw, 30px);
  width: clamp(70px, 9vw, 130px);
  height: 70px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.section--work .highlight-signal__wave {
  position: absolute;
  width: clamp(90px, 12vw, 150px);
  height: 56px;
  top: 50%;
  left: 0;
  transform: translate(-28%, -52%) scaleX(0.85);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.section--work .highlight-signal__wave polyline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  stroke-dasharray: 140 140;
  stroke-dashoffset: 140;
}

.section--work .highlight--warning.is-visible .highlight-signal__wave {
  opacity: 0.85;
  transform: translate(-28%, -52%) scaleX(1);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.section--work .highlight--warning.is-visible .highlight-signal__wave polyline {
  animation: warningWaveTrace 2.8s linear infinite;
  stroke: rgba(255, 255, 255, 0.98);
}

.section--work .highlight-signal__pulse {
  z-index: 1;
  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__wave,
.section--work .highlight--warning:focus-within .highlight-signal__wave {
  opacity: 0.95;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.4));
}

.section--work .highlight--warning:hover .highlight-signal__wave polyline,
.section--work .highlight--warning:focus-within .highlight-signal__wave polyline {
  stroke: #fff;
  stroke-width: 3.3;
}

.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 timelineMinimalSweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  70% {
    transform: translateX(20%);
    opacity: 0.85;
  }
  100% {
    transform: translateX(110%);
    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);
  }
}

@keyframes warningWaveTrace {
  0% {
    stroke-dashoffset: 140;
  }
  100% {
    stroke-dashoffset: -140;
  }
}
.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: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  min-width: 160px;
  max-width: 180px;
  width: clamp(160px, 16vw, 180px);
  min-height: 92px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #050608;
  box-shadow: 0 18px 44px rgba(7, 10, 20, 0.14);
}

.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 28px 66px rgba(6, 10, 18, 0.26);
  border-color: rgba(0, 0, 0, 0.3);
}

.deliverables li.is-beam-active {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(4, 7, 14, 0.28);
  border-color: rgba(0, 0, 0, 0.32);
}

.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.95);
  mix-blend-mode: screen;
  stroke-opacity: 0.85;
  stroke-dasharray: 16 8;
  animation: beamIdle 1.8s linear infinite;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.65));
  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 32px rgba(255, 255, 255, 1));
  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 1.6s cubic-bezier(.16,1,.3,1),
    max-height 1.6s cubic-bezier(.16,1,.3,1),
    transform 1.2s cubic-bezier(.16,1,.3,1),
    opacity 0.9s ease,
    box-shadow 1.2s 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 2.4s ease-out 0.25s 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;
  max-width: 100%;
  resize: vertical;
}

.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 6px 20px;
}

.contact-expand__status {
  min-height: 0;
  padding: 0 20px 10px 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:empty {
  display: none;
  padding: 0;
}

.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: 116px;
  }

  .nav__brand {
    font-size: 1.05rem;
    letter-spacing: 0.3em;
    margin-left: -20px;
  }

  .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-grid-bias: 0px;
  }

  .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);
  }

  .usf-demo {
    padding: 32px 16px 48px;
    gap: 20px;
  }

  .usf-status-strip {
    grid-template-columns: 1fr;
  }

  .usf-alert-grid,
  .usf-narratives__grid {
    grid-template-columns: 1fr;
  }

  .usf-demo__sync {
    flex-direction: column;
    align-items: flex-start;
  }

  .usf-demo__refresh {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 0;
    padding-bottom: clamp(32px, 14vh, 90px);
    min-height: calc(85vh - 68px);
    align-items: center;
    justify-content: flex-start;
  }

  .hero-waves--particles,
  .hero .grain {
    display: none !important;
  }

  .hero-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
    align-items: center;
    row-gap: 24px;
  }

  .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 {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 4px 12px 4px calc(2px + env(safe-area-inset-left, 0px));
    grid-template-columns: auto auto;
    grid-template-areas: "brand links";
    gap: 6px;
    justify-content: space-between;
  }

  .nav__identity {
    justify-self: start;
    margin-left: 0;
    gap: 2px;
  }

  .nav__emblem-link {
    margin-left: -10px;
    margin-right: 0;
    padding: 0;
    border-radius: 4px;
  }

  .nav__brand {
    letter-spacing: 0.18em;
    margin-left: -16px;
    font-size: 0.9rem;
  }

  .nav__toggle {
    padding: 6px;
  }

  .hero {
    padding: calc(72px + env(safe-area-inset-top, 0px) + clamp(0px, 6vh, 40px)) 0 clamp(45px, 16vh, 90px);
    min-height: calc(85vh - 68px);
    align-items: center;
    justify-content: flex-start;
  }

  .hero-waves--particles,
  .hero .grain {
    display: none !important;
  }

  .hero-inner {
    width: min(calc(100% - 48px), 500px);
    margin: 0 auto;
    row-gap: 28px;
    align-items: center;
    text-align: center;
    --hero-grid-bias: 0px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-align: center;
  }

  .hero-title__segment {
    white-space: normal;
  }

  .hero .lead {
    font-size: clamp(1.05rem, 4vw, 1.22rem);
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
  }

  .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 6px;
  }

  .contact-expand__status {
    padding: 0 16px 10px;
    min-height: 0;
    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: bulletLift 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--bullet-delay, 0s);
}

.about-bullets.is-visible li::before {
  animation: orbPulse 4.2s ease-in-out infinite;
  animation-delay: calc(var(--bullet-delay, 0s) + 0.6s);
}

.about-bullets.is-visible li::after {
  animation: signalSweep 4.8s ease-in-out infinite;
  animation-delay: calc(var(--bullet-delay, 0s) + 1s);
}

.about-bullets.is-visible li:hover,
.about-bullets.is-visible li:focus-within {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 70px rgba(8, 12, 16, 0.15);
  border-color: rgba(9, 9, 9, 0.18);
}

/* MOBILE DAGR LAYOUT  ----------------------------------------------- */
@media (max-width: 768px) {
  /* 1. HEADER */
  .site-header {
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
    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: calc(72px + env(safe-area-inset-top, 0px) + clamp(12px, 8vh, 50px)) 0 clamp(50px, 16vh, 100px);
    min-height: calc(88vh - 68px);
    align-items: center;
    justify-content: flex-start;
  }

  .hero,
  .section {
    scroll-margin-top: calc(78px + env(safe-area-inset-top, 0px));
  }

  .hero-waves--particles,
  .hero .grain {
    display: none;
  }

  .hero-inner {
    width: min(calc(100% - 48px), 520px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    --hero-grid-bias: 0px;
  }

  .hero-tag {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    line-height: 1.14;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero .lead {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.38;
    text-align: center;
  }

  .hero-subline {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  /* 3. CTA BUTTONS */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 12px 0 0;
    width: 100%;
  }

  .hero-actions .btn {
    flex: none;
    width: min(320px, 100%);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.94rem;
  }

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

  .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: 0;
    border-radius: 12px;
    background: none;
    border: none;
    box-shadow: none;
  }

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

  .video-expand-toggle {
    display: none;
  }

  .video-volume {
    display: none;
  }

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

  .about-media__caption {
    display: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

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

  .diagram-beams {
    display: block;
    z-index: 0;
    opacity: 0.65;
  }

  .diagram-beams__path {
    stroke-width: 2.4;
    stroke-opacity: 0.95;
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.75));
  }

  .diagram-beams__path.is-active {
    stroke-width: 3.2;
    stroke-opacity: 1;
    filter: drop-shadow(0 0 36px rgba(255, 255, 255, 0.95));
  }

  .diagram-emblem {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(140px, 34vw, 200px);
    height: clamp(140px, 34vw, 200px);
    margin: 0;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
  }

  .diagram-emblem__image {
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
  }

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

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

  /* 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 */
  .about-bullets,
  .highlight-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .about-bullets {
    align-items: stretch;
  }

  .about-bullets li {
    width: 100%;
  }

  .deliverables {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    grid-template-rows: repeat(3, minmax(64px, auto));
    gap: 12px;
    margin-top: 24px;
    width: min(360px, 100%);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .deliverables li {
    max-width: 88%;
    width: 100%;
    min-width: 0;
    z-index: 2;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    color: #050608;
    box-shadow: 0 18px 44px rgba(7, 10, 20, 0.14);
  }

  .deliverables li:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .deliverables li:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .deliverables li:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .deliverables li:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }

  .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;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 4px 12px 4px calc(0px + env(safe-area-inset-left, 0px));
  }

  .nav__identity {
    gap: 0;
    transform: translateX(-16px);
  }

  .nav__emblem-link {
    margin-left: -12px;
  }

  .nav__brand {
    margin-left: -22px;
  }
}
