:root {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #223244;
  background:
    radial-gradient(circle at top left, rgba(116, 188, 255, 0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 160, 122, 0.28), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 52%, #fff7f3 100%);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --bg: #f7fbff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(103, 132, 166, 0.16);
  --accent: #5d8bff;
  --accent-strong: #ff856d;
  --accent-mint: #42d6c6;
  --accent-sun: #ffc857;
  --text-main: #223244;
  --text-muted: rgba(34, 50, 68, 0.66);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --hero-glow-x: 50%;
  --hero-glow-y: 38%;
  --hero-glow-opacity: 0;
  --ambient-drift-x: 0px;
  --ambient-drift-y: 0px;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes pulse-live {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.62;
  }
}

@keyframes scan-sweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes dot-pop {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 4px;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-mint), var(--accent-strong));
  box-shadow: 0 0 18px rgba(93, 139, 255, 0.22);
  transition: width 100ms linear;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  font-family: var(--font-sans);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
a {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.site-shell {
  position: relative;
  overflow: visible;
  background-image:
    linear-gradient(rgba(93, 139, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 139, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.site-shell::selection,
body::selection {
  background: rgba(93, 139, 255, 0.2);
  color: #1f2f42;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.22;
}

.site-shell::before {
  top: 8%;
  right: -10%;
  background: #81c6ff;
  transform: translate3d(var(--ambient-drift-x), calc(var(--ambient-drift-y) * -0.7), 0);
  transition: transform 220ms ease-out;
}

.site-shell::after {
  bottom: 10%;
  left: -12%;
  background: #ffb39b;
  transform: translate3d(calc(var(--ambient-drift-x) * -0.85), var(--ambient-drift-y), 0);
  transition: transform 220ms ease-out;
}

.hero,
.section,
.metrics,
.nav-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 12;
  padding-top: 18px;
}

.hero {
  min-height: 100vh;
  padding: 22px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(93, 139, 255, calc(var(--hero-glow-opacity) * 0.28)), transparent 18%),
    radial-gradient(circle at calc(var(--hero-glow-x) + 12%) calc(var(--hero-glow-y) + 8%), rgba(255, 133, 109, calc(var(--hero-glow-opacity) * 0.18)), transparent 20%);
  opacity: 1;
  transition: background-position 140ms ease-out, opacity 220ms ease;
}

.hero-stage {
  position: absolute;
  inset: 86px 0 auto;
  height: 520px;
  pointer-events: none;
}

.hero-stage__orb,
.hero-stage__grid {
  position: absolute;
}

.hero-stage__orb {
  border-radius: 999px;
  animation: float-drift 10s ease-in-out infinite;
}

.hero-stage__orb--blue {
  top: 32px;
  left: -24px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(84, 163, 255, 0.38), rgba(84, 163, 255, 0));
}

.hero-stage__orb--orange {
  right: 5%;
  top: 6px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 150, 111, 0.3), rgba(255, 150, 111, 0));
  animation-delay: -4s;
}

.hero-stage__dot {
  position: absolute;
  border-radius: 999px;
  animation: dot-pop 3s ease-in-out infinite;
}

.hero-stage__dot--mint {
  top: 108px;
  right: 31%;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(66, 214, 198, 0.9), rgba(66, 214, 198, 0.28));
}

.hero-stage__dot--sun {
  bottom: 82px;
  left: 22%;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.95), rgba(255, 200, 87, 0.24));
  animation-delay: -1.1s;
}

.hero-stage__grid {
  top: 68px;
  right: 12%;
  width: 260px;
  height: 260px;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(79, 124, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 124, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(8deg);
  opacity: 0.5;
  animation: float-drift 14s ease-in-out infinite;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  position: relative;
  z-index: 4;
  border: 1px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.24), rgba(66, 214, 198, 0.22), rgba(255, 124, 102, 0.24));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

body.is-scrolled .nav {
  border-color: rgba(103, 132, 166, 0.14);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(104, 144, 196, 0.12);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(103, 132, 166, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-home {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(104, 194, 255, 0.28), rgba(255, 143, 113, 0.22));
  box-shadow: 0 16px 28px rgba(79, 124, 255, 0.14);
  isolation: isolate;
}

.brand-mark:hover {
  box-shadow: 0 20px 32px rgba(79, 124, 255, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 7px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.brand-mark::after {
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.62);
}

.brand-mark::selection,
.brand-logo::selection {
  background: transparent;
}

.brand-mark > * {
  pointer-events: none;
}

.brand-mark::before {
  animation: orbit-rotate 12s linear infinite;
}

.brand-mark__core {
  position: relative;
  z-index: 1;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: block;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-tagline {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  color: rgba(34, 50, 68, 0.42);
}

.brand-text,
.nav-links a,
.panel-topline,
.eyebrow,
.service-index,
.project-tag,
.phase-item span {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text,
.nav-links a,
.panel-topline,
.eyebrow,
.service-index,
.project-tag,
.phase-item span,
.metric span {
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(103, 132, 166, 0.08);
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transform: scaleX(0.55);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a.is-active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a:hover,
.contact-panel a:hover {
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: end;
  padding: 72px 0 12px;
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.section-heading h2,
.contact-section h2,
.project-card h3,
.service-card h3,
.panel-card strong,
.intro-quote strong {
  font-family: var(--font-sans);
}

.hero-copy h1 {
  margin: 16px 0 24px;
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 700px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 248, 255, 0.88));
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hero-subtext {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(34, 50, 68, 0.54);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
}

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

.button-primary {
  background: linear-gradient(135deg, #5d8bff, #7cb8ff 58%, #ff9d78);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(93, 139, 255, 0.18);
  animation: none;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel,
.service-card,
.project-card,
.contact-panel,
.intro-quote,
.phase-item,
.metric,
.panel-card {
  backdrop-filter: blur(8px);
}

.capability-card,
.news-card,
.service-card,
.project-card,
.metric,
.phase-item,
.contact-card,
.hero-panel,
.panel-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.capability-card::after,
.news-card::after,
.service-card::after,
.project-card::after,
.metric::after,
.phase-item::after,
.contact-card::after,
.hero-panel::after,
.panel-card::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  transform: translate3d(-180%, 0, 0) rotate(14deg);
  opacity: 0;
  pointer-events: none;
  transition: transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
}

.capability-card:hover::after,
.news-card:hover::after,
.service-card:hover::after,
.project-card:hover::after,
.metric:hover::after,
.phase-item:hover::after,
.contact-card:hover::after,
.hero-panel:hover::after,
.panel-card:hover::after {
  opacity: 1;
  transform: translate3d(420%, 0, 0) rotate(14deg);
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(104, 144, 196, 0.1);
  position: relative;
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--panel-tilt-x, 0deg)) rotateY(var(--panel-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.08), transparent 34%, rgba(255, 124, 102, 0.08));
  pointer-events: none;
}

.hero-panel__badge {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-panel__badge span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.hero-panel__badge span:nth-child(1) {
  background: var(--accent);
}

.hero-panel__badge span:nth-child(2) {
  background: #42d6c6;
}

.hero-panel__badge span:nth-child(3) {
  background: var(--accent-strong);
}

.dashboard-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

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

.dashboard-title {
  display: block;
  margin-top: 4px;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-main);
}

.dashboard-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(103, 132, 166, 0.12);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.dashboard-live span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-mint));
  animation: pulse-live 1.8s ease-in-out infinite;
}

.dashboard-live em {
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-primary {
  position: relative;
  overflow: hidden;
}

.dashboard-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dashboard-pill-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(103, 132, 166, 0.12);
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-ring {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 14px 8px;
  border-radius: 16px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0 36px, transparent 37px),
    conic-gradient(var(--ring-color) calc(var(--ring-value) * 1%), rgba(103, 132, 166, 0.12) 0);
}

.dashboard-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px dashed rgba(103, 132, 166, 0.12);
}

.dashboard-ring span,
.dashboard-ring small {
  position: relative;
  z-index: 1;
}

.dashboard-ring span {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-main);
}

.dashboard-ring small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.4;
}

.dashboard-mini-card {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-mini-card span,
.dashboard-visual__head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.dashboard-mini-card strong {
  display: block;
  font-size: 1.26rem;
  line-height: 1.2;
  color: var(--text-main);
}

.dashboard-mini-card small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.dashboard-visual {
  position: relative;
  overflow: hidden;
}

.dashboard-ticker {
  display: flex;
  gap: 22px;
  margin-top: 12px;
  width: max-content;
  color: rgba(34, 50, 68, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: ticker-run 14s linear infinite;
}

.dashboard-visual::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  animation: scan-sweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.dashboard-visual__head strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.dashboard-graph {
  position: relative;
  margin-top: 16px;
  padding: 14px 0 4px;
}

.dashboard-graph__line {
  height: 66px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(79, 124, 255, 0.08), rgba(79, 124, 255, 0)),
    url("data:image/svg+xml,%3Csvg width='300' height='80' viewBox='0 0 300 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 61C34 61 38 31 67 31C93 31 106 53 131 53C157 53 172 18 198 18C225 18 236 46 260 46C276 46 286 35 294 26' stroke='%234F7CFF' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M6 61C34 61 38 31 67 31C93 31 106 53 131 53C157 53 172 18 198 18C225 18 236 46 260 46C276 46 286 35 294 26' stroke='%23FF7C66' stroke-opacity='0.42' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E") center / cover no-repeat;
}

.dashboard-graph__bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 72px;
  margin-top: -26px;
  padding: 0 8px;
}

.dashboard-graph__bars span {
  height: var(--bar);
  min-height: 22px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.72), rgba(255, 124, 102, 0.62));
  box-shadow: 0 8px 14px rgba(79, 124, 255, 0.12);
}

.dashboard-note {
  max-width: 34ch;
}

.panel-topline,
.eyebrow,
.service-index,
.project-tag,
.phase-item span {
  color: var(--accent);
}

.panel-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.panel-card span,
.panel-note,
.service-card p,
.project-card p,
.intro-layout p,
.phase-item p,
.contact-panel p {
  color: var(--text-muted);
}

.panel-card strong {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
}

.panel-card.accent {
  background: linear-gradient(135deg, rgba(93, 139, 255, 0.12), rgba(255, 133, 109, 0.12));
}

.panel-note {
  margin-top: 16px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.capability-card span,
.case-modal__grid span,
.market-list span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -36px;
  margin-bottom: 80px;
}

.metric {
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(104, 144, 196, 0.08);
}

.metric strong {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 48px 0;
}

.capability-card,
.news-card,
.service-card,
.project-card,
.metric,
.phase-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.capability-card p,
.news-card p,
.case-modal__summary,
.case-modal__grid p,
.service-card small {
  margin: 0;
  color: var(--text-muted);
}

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

.news-card,
.article-body,
.article-sidebar,
.article-cta {
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.news-card:hover,
.article-body:hover,
.article-sidebar:hover,
.article-cta:hover {
  border-color: rgba(93, 139, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(104, 144, 196, 0.1);
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.news-column {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  gap: 18px;
}

.news-card--placeholder {
  opacity: 0.86;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(34, 50, 68, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(93, 139, 255, 0.16);
  background: rgba(93, 139, 255, 0.08);
  color: var(--accent);
}

.news-card h3 {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.45;
}

.news-link,
.article-back,
.article-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
}

.news-link--muted {
  color: rgba(34, 50, 68, 0.46);
}

.news-link::after,
.article-back::after,
.article-cta__link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 220ms ease;
}

.news-link:hover::after,
.article-back:hover::after,
.article-cta__link:hover::after {
  transform: translateX(3px);
}

.news-section__note {
  margin-top: 18px;
}

.news-section__note p {
  margin: 0;
  color: var(--text-muted);
}

.news-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
}

.news-archive-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 220ms ease;
}

.news-archive-link:hover::after {
  transform: translateX(3px);
}

.archive-page {
  min-height: 100vh;
  padding: 22px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.archive-hero {
  position: relative;
  padding: 40px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(93, 139, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 243, 0.88));
  box-shadow: 0 22px 42px rgba(104, 144, 196, 0.1);
  overflow: hidden;
}

.archive-hero::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 28px;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(79, 124, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 124, 255, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  transform: rotate(8deg);
  opacity: 0.45;
  pointer-events: none;
}

.archive-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.archive-lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.archive-meta span {
  padding: 9px 14px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.article-page {
  min-height: 100vh;
  padding: 22px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
}

.article-stage {
  position: absolute;
  inset: 88px 0 auto;
  height: 420px;
  pointer-events: none;
}

.article-stage__orb,
.article-stage__grid {
  position: absolute;
}

.article-stage__orb {
  border-radius: 999px;
}

.article-stage__orb--blue {
  top: 20px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(84, 163, 255, 0.3), rgba(84, 163, 255, 0));
}

.article-stage__orb--orange {
  top: 0;
  right: 6%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 150, 111, 0.24), rgba(255, 150, 111, 0));
}

.article-stage__grid {
  top: 72px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 30px;
  background-image:
    linear-gradient(rgba(79, 124, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 124, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(8deg);
  opacity: 0.5;
}

.article-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

.article-hero__content,
.article-body,
.article-sidebar,
.article-cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.article-hero__content {
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(104, 144, 196, 0.11);
}

.article-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.article-hero__copy {
  min-width: 0;
}

.article-hero__rail {
  display: grid;
  gap: 14px;
}

.article-hero__panel,
.article-hero__signal {
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.article-hero__panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.article-hero__panel span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 50, 68, 0.52);
}

.article-hero__panel strong {
  font-size: 1.26rem;
  line-height: 1.45;
  color: var(--text-main);
}

.article-hero__panel p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.article-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-hero__chips span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.article-hero__signal {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(240, 248, 255, 0.6)),
    linear-gradient(135deg, rgba(93, 139, 255, 0.06), rgba(255, 133, 109, 0.06));
}

.article-hero__signal-line {
  height: 70px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 34%, rgba(93, 139, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(93, 139, 255, 0.08), rgba(255, 133, 109, 0.08));
  position: relative;
  overflow: hidden;
}

.article-hero__signal-line::after {
  content: "";
  position: absolute;
  inset: auto 10% 18px 10%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 139, 255, 0.2), rgba(255, 133, 109, 0.4), rgba(66, 214, 198, 0.26));
}

.article-hero__signal-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 84px;
  margin-top: 14px;
}

.article-hero__signal-bars span {
  height: var(--signal-bar);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(93, 139, 255, 0.68), rgba(255, 133, 109, 0.48));
}

.article-hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(93, 139, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 133, 109, 0.08));
  pointer-events: none;
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-kicker time,
.article-sidebar li,
.article-body p,
.article-body li {
  color: var(--text-muted);
}

.article-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.article-lead {
  margin: 20px 0 0;
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.article-sidebar h2,
.article-body h2,
.article-cta span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 50, 68, 0.56);
}

.article-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.article-body {
  padding: 32px;
  box-shadow: 0 20px 38px rgba(104, 144, 196, 0.08);
}

.article-body h2 {
  margin: 0 0 14px;
  position: relative;
  padding-top: 4px;
}

.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 133, 109, 0.42));
}

.article-body p {
  margin: 0 0 20px;
  line-height: 1.9;
}

.article-body ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-body ul li::marker,
.article-sidebar ul li::marker {
  color: var(--accent);
}

.article-sidebar {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 18px;
  position: sticky;
  top: 102px;
  box-shadow: 0 16px 30px rgba(104, 144, 196, 0.08);
}

.article-sidebar h2 {
  margin: 0;
}

.article-sidebar ul {
  margin: 0;
  padding-left: 18px;
}

.article-cta {
  margin-top: 24px;
  padding: 24px 28px;
  display: grid;
  gap: 10px;
}

.article-cta p {
  margin: 0;
  color: var(--text-muted);
}

.article-pagination {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

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

.article-pagination__card {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 30px rgba(104, 144, 196, 0.08);
}

.article-pagination__card span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 50, 68, 0.52);
}

.article-pagination__card strong {
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text-main);
}

.article-pagination__card:hover {
  border-color: rgba(93, 139, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(104, 144, 196, 0.1);
}

.article-pagination__card--disabled,
.article-pagination__card--disabled:hover {
  border-color: rgba(103, 132, 166, 0.12);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  cursor: default;
}

.article-pagination__card--disabled strong {
  color: rgba(34, 50, 68, 0.56);
}

.article-related {
  position: relative;
  z-index: 1;
}

.article-related__heading {
  margin-bottom: 22px;
}

.article-related__heading h2 {
  max-width: none;
}

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

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-list span {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.26;
  font-weight: 600;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.capability-grid {
  margin-top: 20px;
}

.capability-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.4;
}

.intro-layout p,
.service-card p,
.project-card p,
.phase-item p {
  margin: 0;
  font-size: 1rem;
}

.intro-quote {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(93, 139, 255, 0.08), rgba(255, 133, 109, 0.08));
}

.intro-quote span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.intro-quote strong {
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-grid,
.project-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card:hover,
.project-card:hover,
.phase-item:hover {
  transform: translateY(-1px);
  border-color: rgba(93, 139, 255, 0.2);
  box-shadow: 0 16px 30px rgba(104, 144, 196, 0.1);
}

.service-card h3,
.project-card h3 {
  margin: 18px 0 10px;
  font-size: 1.32rem;
  font-weight: 600;
}

.service-card small {
  display: block;
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-section {
  position: relative;
}

.process-note {
  margin-top: 18px;
}

.process-note p,
.project-summary p,
.contact-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.phase-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.phase-item span {
  display: inline-block;
  margin-bottom: 16px;
}

.projects {
  padding-bottom: 72px;
}

.project-tag {
  color: var(--accent);
}

.project-link {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.project-link:hover {
  opacity: 0.92;
}

.project-link::after {
  content: " ->";
}

.project-summary {
  margin-top: 18px;
  max-width: 680px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 96px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(103, 132, 166, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 243, 0.9));
  box-shadow: 0 20px 36px rgba(104, 144, 196, 0.1);
}

.contact-panel a {
  font-size: 1.2rem;
}

.contact-card-stack {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-card span,
.contact-card small {
  color: var(--text-muted);
}

.contact-card strong {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 600;
}

.contact-card:hover {
  border-color: rgba(93, 139, 255, 0.2);
  transform: translateY(-1px);
}

.service-card:hover,
.project-card:hover,
.phase-item:hover,
.capability-card:hover,
.metric:hover,
.contact-card:hover,
.hero-panel:hover,
.panel-card:hover {
  box-shadow: 0 18px 34px rgba(104, 144, 196, 0.11);
}

.contact-footnote {
  margin-top: 8px;
}

.footer {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.footer p {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(103, 132, 166, 0.12);
  color: rgba(34, 50, 68, 0.46);
  font-size: 0.95rem;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.case-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.case-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(132, 166, 206, 0.28);
  backdrop-filter: blur(10px);
}

.case-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 32px;
  border: 1px solid rgba(103, 132, 166, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(104, 144, 196, 0.16);
}

.case-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(103, 132, 166, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

.case-modal__eyebrow {
  margin-bottom: 10px;
}

.case-modal h3 {
  margin: 0;
  padding-right: 44px;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.28;
  font-weight: 600;
}

.case-modal__summary {
  margin-top: 16px;
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.case-modal__grid div {
  padding: 20px;
  border: 1px solid rgba(103, 132, 166, 0.12);
  border-radius: 14px;
  background: rgba(246, 250, 255, 0.86);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  .button-primary {
    animation: none;
  }

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

  .site-shell::before,
  .site-shell::after,
  .capability-card::after,
  .news-card::after,
  .service-card::after,
  .project-card::after,
  .metric::after,
  .phase-item::after,
  .contact-card::after,
  .hero-panel::after,
  .panel-card::after,
  .hero::after {
    transition: none;
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .article-hero,
  .article-content-grid,
  .article-pagination__grid,
  .article-related__grid,
  .archive-list,
  .intro-layout,
  .contact-section,
  .phase-list,
  .metrics,
  .capability-grid,
  .news-grid,
  .news-column,
  .service-grid,
  .project-grid,
  .case-modal__grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .article-hero h1,
  .section-heading h2,
  .contact-section h2 {
    max-width: none;
  }

  .metrics {
    margin-top: 12px;
  }

  .hero-stage {
    inset: 80px 0 auto;
    height: 420px;
  }

  .article-stage {
    inset: 102px 0 auto;
    height: 300px;
  }

  .article-hero__layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .hero-stage__grid {
    right: 2%;
  }

  .article-stage__grid {
    right: 2%;
  }

  .dashboard-mini-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-status-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

}

@media (max-width: 780px) {
  .hero,
  .section,
  .metrics,
  .nav-wrap,
  .footer {
    width: min(100% - 32px, 1200px);
  }

  .nav {
    align-items: center;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 16;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(103, 132, 166, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 38px rgba(104, 144, 196, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(93, 139, 255, 0.08);
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 56px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .hero-stage {
    inset: 94px 0 auto;
    height: 300px;
  }

  .hero-stage__orb--blue {
    width: 180px;
    height: 180px;
  }

  .hero-stage__orb--orange {
    width: 200px;
    height: 200px;
  }

  .hero-stage__dot--mint {
    right: 18%;
  }

  .hero-stage__dot--sun {
    left: 16%;
  }

  .hero-stage__grid {
    width: 180px;
    height: 180px;
    top: 54px;
    right: -20px;
  }

  .article-stage__grid {
    width: 180px;
    height: 180px;
    top: 54px;
    right: -20px;
  }

  .dashboard-status-row {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    align-items: start;
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

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

  .button {
    width: 100%;
  }

  .service-card,
  .project-card,
  .news-card,
  .phase-item,
  .metric,
  .contact-panel,
  .hero-panel,
  .article-hero__content,
  .article-body,
  .article-sidebar,
  .article-cta,
  .intro-quote,
  .capability-card,
  .case-modal__dialog,
  .case-modal__grid div {
    padding: 22px;
    border-radius: 16px;
  }

  .case-modal {
    padding: 12px;
    align-items: end;
  }

  .case-modal__close {
    top: 14px;
    right: 14px;
  }

  .hero-subtext {
    gap: 10px;
  }

  .button-primary {
    animation: none;
  }

  .article-related__grid {
    gap: 14px;
  }

  .archive-hero {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }
}