:root {
  color-scheme: light dark;
  --bg: #eef6ff;
  --bg-alt: #f9fcff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(244, 248, 255, 0.88);
  --ink: #14213a;
  --ink-soft: #5a6a83;
  --line: rgba(19, 38, 70, 0.1);
  --line-strong: rgba(19, 38, 70, 0.16);
  --accent: #2a6cff;
  --accent-2: #12b7ad;
  --accent-3: #ffd66a;
  --accent-4: #ff8d6f;
  --shadow-soft: 0 18px 46px rgba(32, 63, 110, 0.11);
  --shadow-strong: 0 30px 72px rgba(32, 63, 110, 0.2);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --banner-bg: rgba(255, 255, 255, 0.98);
  --banner-text: #44536a;
  --scrim: rgba(12, 22, 38, 0.58);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1728;
    --bg-alt: #141f33;
    --surface: rgba(18, 27, 45, 0.92);
    --surface-strong: #16213a;
    --surface-soft: rgba(22, 34, 58, 0.9);
    --ink: #f4f7fb;
    --ink-soft: rgba(244, 247, 251, 0.74);
    --line: rgba(163, 184, 219, 0.16);
    --line-strong: rgba(163, 184, 219, 0.24);
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 30px 74px rgba(0, 0, 0, 0.36);
    --banner-bg: rgba(15, 23, 40, 0.98);
    --banner-text: rgba(244, 247, 251, 0.76);
    --scrim: rgba(4, 10, 20, 0.72);
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(42, 108, 255, 0.14), transparent 24%),
    radial-gradient(circle at 92% 2%, rgba(18, 183, 173, 0.16), transparent 20%),
    radial-gradient(circle at 82% 86%, rgba(255, 214, 106, 0.2), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 42%, var(--bg-alt) 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 108, 255, 0.1), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(255, 214, 106, 0.12), transparent 18%),
    radial-gradient(circle at 48% 92%, rgba(18, 183, 173, 0.08), transparent 18%);
  opacity: 0.85;
  z-index: -2;
  animation: ambient-drift 22s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 45%, transparent 48%),
    linear-gradient(300deg, transparent 0 58%, rgba(255, 255, 255, 0.12) 62%, transparent 66%);
  opacity: 0.45;
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.tag,
.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tag {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(36, 107, 255, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.display {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0;
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
  line-height: 1.78;
  color: var(--ink-soft);
}

.section {
  padding: 34px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 24px;
}

.section-head h2,
.section-head h3,
.hero-copy h1,
.page-copy h1,
.panel h2,
.panel h3,
.card h3,
.service-card h3,
.article-card h3,
.contact-card h3,
.faq summary {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(2.05rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.section-head p,
.panel p,
.card p,
.service-card p,
.article-card p,
.contact-card p,
.faq p,
.split-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.shell.stack {
  display: grid;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(36, 107, 255, 0.22);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #246bff 0%, #11b5a8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 107, 255, 0.22);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.btn-link {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 14px 0 0;
}

.has-dev-banner .site-nav {
  top: 64px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 40px 64px 40px 56px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-nav.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.98);
}

@media (prefers-color-scheme: dark) {
  .site-nav.is-scrolled .nav-shell {
    background: rgba(18, 27, 45, 0.98);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(42, 108, 255, 0.08));
}

.brand-mark {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-mark strong {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.5vw, 1.56rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark span {
  display: block;
  max-width: 34ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.5rem;
  line-height: 1.15;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.desktop-nav,
.nav-shell__cta {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px 28px 18px 28px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(18, 40, 82, 0.08);
}

.menu-icon {
  display: grid;
  gap: 6px;
}

.menu-icon span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  background: var(--scrim);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.nav-panel[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-sheet {
  width: min(640px, 100%);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  border-radius: 34px 58px 34px 58px;
  background:
    radial-gradient(circle at 12% 12%, rgba(42, 108, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 255, 0.96) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .nav-sheet {
    background: linear-gradient(180deg, rgba(18, 27, 45, 0.98) 0%, rgba(21, 33, 57, 0.96) 100%);
  }
}

.nav-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.92));
}

.nav-sheet__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-sheet__brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.nav-sheet__brand strong {
  display: block;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-sheet__brand span {
  display: block;
  max-width: 34ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.58rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(18, 40, 82, 0.08);
}

.menu-close span[aria-hidden="true"] {
  font-size: 2rem;
  line-height: 1;
}

.nav-sheet__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  padding: 14px 18px 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-links {
  display: grid;
  width: 100%;
  gap: 12px;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 22px 34px 22px 34px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.nav-links a::after {
  content: "→";
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-left: auto;
}

.nav-cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.nav-cta .btn {
  width: 100%;
  min-height: 54px;
}

.hero {
  padding: 26px 0 38px;
}

.hero-band {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 34px 0 48px;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 16%, rgba(42, 108, 255, 0.18), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(18, 183, 173, 0.16), transparent 24%),
    radial-gradient(circle at 68% 82%, rgba(255, 214, 106, 0.16), transparent 25%),
    linear-gradient(135deg, #edf5ff 0%, #fafeff 52%, #e6efff 100%);
  box-shadow: inset 0 -1px 0 var(--line);
}

.hero-band::before,
.hero-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-band::before {
  inset: -18% auto auto -14%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.12) 54%, transparent 70%);
  filter: blur(8px);
  opacity: 0.88;
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.hero-band::after {
  right: -12%;
  top: 12%;
  width: 28vw;
  height: 28vw;
  border-radius: 42% 58% 56% 44% / 44% 50% 50% 56%;
  border: 1px solid rgba(42, 108, 255, 0.16);
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(18, 183, 173, 0.08);
  opacity: 0.74;
  animation: orbit-slow 26s linear infinite;
}

.hero-grid,
.page-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 34px;
  align-items: center;
}

.hero-grid {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.95;
}

.hero-actions,
.button-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 4px;
}

.chip-row {
  row-gap: 10px;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media,
.page-media {
  display: grid;
  gap: 16px;
  position: relative;
  isolation: isolate;
}

.hero-media::before,
.hero-media::after,
.page-media::before,
.page-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-media::before {
  right: -6%;
  top: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 106, 0.28), transparent 68%);
  filter: blur(6px);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.hero-media::after {
  left: -6%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  border-radius: 42% 58% 45% 55% / 54% 36% 64% 46%;
  border: 1px dashed rgba(42, 108, 255, 0.22);
  opacity: 0.55;
  animation: orbit-slow 30s linear infinite;
}

.page-media::before {
  right: -4%;
  top: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 183, 173, 0.18), transparent 70%);
  animation: ambient-drift 14s ease-in-out infinite alternate;
}

.page-media::after {
  left: -4%;
  bottom: 0;
  width: 140px;
  height: 140px;
  border-radius: 44% 56% 63% 37% / 42% 44% 56% 58%;
  border: 1px dashed rgba(255, 143, 111, 0.18);
  opacity: 0.48;
  animation: orbit-slow 34s linear infinite reverse;
}

.hero-image,
.page-image,
.panel,
.card,
.service-card,
.article-card,
.contact-card,
.note-card,
.callout-card,
.faq details,
.stat-card {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(42, 108, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-image::before,
.page-image::before,
.panel::before,
.card::before,
.service-card::before,
.article-card::before,
.contact-card::before,
.note-card::before,
.callout-card::before,
.faq details::before,
.stat-card::before {
  display: none;
}

.hero-image,
.page-image {
  overflow: hidden;
  min-height: 100%;
  isolation: isolate;
  border-radius: 42px 92px 44px 72px;
}

.hero-image img,
.page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: soft-zoom 14s ease-in-out infinite alternate;
}

.hero-image img {
  aspect-ratio: 0.92 / 1;
}

.page-image img {
  aspect-ratio: 1.1 / 1;
}

.hero-figure-badge {
  position: absolute;
  left: 18px;
  padding: 0 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(18, 40, 82, 0.14);
  animation: badge-float 6.5s ease-in-out infinite;
}

.hero-figure-badge--top {
  top: 18px;
}

.hero-figure-badge--bottom {
  bottom: 18px;
  max-width: calc(100% - 36px);
  animation-delay: -2.8s;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-meta .panel:first-child {
  border-radius: 34px 72px 28px 46px;
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 255, 0.92));
}

.hero-meta .panel:last-child {
  border-radius: 46px 34px 52px 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(18, 183, 173, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 248, 0.92));
}

.panel,
.card,
.service-card,
.article-card,
.contact-card,
.note-card,
.callout-card,
.stat-card {
  padding: 22px;
  border-radius: 30px 54px 30px 44px;
  overflow: hidden;
}

.panel h2,
.card h3,
.service-card h3,
.article-card h3,
.contact-card h3,
.note-card h3,
.callout-card h3 {
  font-size: clamp(1.38rem, 2.2vw, 1.92rem);
  line-height: 1.05;
}

.panel p,
.card p,
.service-card p,
.article-card p,
.contact-card p,
.note-card p,
.callout-card p {
  margin-top: 10px;
}

.panel ul,
.card ul,
.service-card ul,
.article-card ul,
.contact-card ul,
.note-card ul,
.faq ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.panel li + li,
.card li + li,
.service-card li + li,
.article-card li + li,
.contact-card li + li,
.note-card li + li,
.faq li + li {
  margin-top: 8px;
}

.section-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.section-index a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.section-index a:hover {
  color: var(--ink);
  border-color: rgba(36, 107, 255, 0.22);
}

.section--alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(233, 242, 255, 0.54));
}

.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section--alt::before {
  left: -10%;
  top: 8%;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 106, 0.18), transparent 68%);
  filter: blur(10px);
  animation: ambient-drift 16s ease-in-out infinite alternate;
}

.section--alt::after {
  right: -8%;
  bottom: -10%;
  width: 34vw;
  height: 34vw;
  border-radius: 42% 58% 56% 44% / 44% 50% 50% 56%;
  border: 1px solid rgba(42, 108, 255, 0.08);
  opacity: 0.62;
  animation: orbit-slow 30s linear infinite;
}

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

.who-grid .card {
  min-height: 100%;
  padding: 20px;
}

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

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

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

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

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

.metric-band {
  padding: 22px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #234fcb 0%, #12b7ad 100%);
  box-shadow: var(--shadow-strong);
}

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

.metric-band__item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.metric-band__item span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.stat-card span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-card {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.88));
}

.service-card:nth-child(3n + 1) {
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 245, 255, 0.92));
}

.service-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 183, 173, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 251, 249, 0.9));
}

.service-card:nth-child(3n + 3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 143, 111, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 240, 0.92));
}

.service-card h3,
.article-card h3,
.contact-card h3,
.note-card h3,
.callout-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.service-card .tag,
.article-card .tag,
.contact-card .tag,
.note-card .tag,
.callout-card .tag {
  margin-bottom: 2px;
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 107, 255, 0.12);
  color: var(--accent);
  font-weight: 900;
  animation: badge-float 8s ease-in-out infinite;
}

.service-card ul {
  padding-left: 18px;
}

.step-card {
  display: grid;
  gap: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(160deg, #10192e 0%, #172743 52%, #0f1728 100%);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-3);
  font-weight: 900;
}

.step-card h3 {
  font-size: 1.2rem;
}

.step-card p {
  color: rgba(244, 247, 251, 0.78);
}

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

.quote-card strong {
  font-size: 1.05rem;
}

.quote-card p {
  font-size: 1rem;
}

.insight-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 255, 0.9));
}

.insight-card img {
  aspect-ratio: 1.1 / 0.72;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 12px);
}

.callout-card {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 8% 12%, rgba(42, 108, 255, 0.12), transparent 22%),
    radial-gradient(circle at 92% 0%, rgba(255, 214, 106, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 255, 0.9));
  border-radius: 36px 72px 36px 58px;
}

.split-grid {
  align-items: start;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.03;
}

.split-copy .lead {
  font-size: 1.06rem;
}

.page-hero {
  padding: 20px 0 18px;
}

.page-intro {
  padding: 10px 0 0;
}

.page-copy {
  display: grid;
  gap: 18px;
}

.page-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.page-copy .lead {
  max-width: 60ch;
}

.page-image {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 108, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.9));
}

.page-image img {
  aspect-ratio: 1.05 / 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.64fr);
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 0 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field textarea {
  min-height: 164px;
  padding-block: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(36, 107, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(36, 107, 255, 0.12);
}

.form-note {
  min-height: 1.3em;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-note[data-state="success"] {
  color: #14845d;
}

.form-note[data-state="error"] {
  color: #be4545;
}

.form-note[data-state="pending"] {
  color: var(--accent);
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer-card {
  padding: 18px 20px;
  border-radius: 26px 42px 26px 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.08), transparent 24%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  text-align: center;
}

.site-footer {
  padding: 12px 0 28px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-size: 1.04rem;
  list-style: none;
}

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

.faq details p {
  margin-top: 12px;
}

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

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

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 8px, 0) scale(1);
  }
}

@keyframes orbit-slow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes soft-zoom {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.035) translate3d(0, -4px, 0);
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

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

.nav-shell,
.hero-band,
.panel,
.card,
.service-card,
.article-card,
.contact-card,
.note-card,
.callout-card,
.faq details,
.stat-card,
.footer-card {
  position: relative;
}

.nav-shell::before,
.panel::before,
.card::before,
.service-card::before,
.article-card::before,
.contact-card::before,
.note-card::before,
.callout-card::before,
.faq details::before,
.stat-card::before,
.footer-card::before {
  display: none;
}

.nav-shell::before,
.footer-card::before {
  display: none;
}

@media (min-width: 880px) {
  .nav-panel {
    display: none !important;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .desktop-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px);
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .desktop-nav a {
    position: relative;
    padding: 8px 2px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--ink);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-shell__cta {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 50px;
    padding-inline: 18px;
    white-space: nowrap;
  }
}

@media (min-width: 880px) and (max-width: 1439px) {
  .brand-mark span {
    display: none;
  }
}

@media (max-width: 879px) {
  .nav-shell {
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-mark strong {
    font-size: clamp(1.1rem, 4.8vw, 1.38rem);
  }

  .brand-mark span {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell__cta,
  .desktop-nav {
    display: none;
  }

  .nav-panel {
    padding: 10px;
  }

  .nav-sheet {
    width: 100%;
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px 30px 24px 30px;
  }

  .nav-sheet__header {
    padding: 12px 14px 10px;
  }

  .nav-sheet__brand {
    gap: 10px;
  }

  .nav-sheet__brand img {
    width: 40px;
    height: 40px;
  }

  .nav-sheet__brand strong {
    font-size: 1rem;
  }

  .nav-sheet__brand span {
    display: none;
  }

  .nav-sheet__body {
    padding: 12px 14px 14px;
    gap: 12px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.94rem;
    letter-spacing: 0.03em;
    justify-content: flex-start;
    border-radius: 18px 28px 18px 28px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-cta .btn {
    min-height: 48px;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .hero-band {
    padding: 26px 0 36px;
  }

  .hero-grid,
  .page-grid,
  .split-grid,
  .contact-grid,
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5,
  .grid--6,
  .metric-band__inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(100% - 24px, 1200px);
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }

  .page-copy h1 {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .hero-image img,
  .page-image img {
    aspect-ratio: 1 / 0.92;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .button-row .btn,
  .nav-cta .btn {
    width: 100%;
  }

  .metric-grid,
  .service-grid,
  .article-grid,
  .challenge-grid,
  .who-grid,
  .process-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .page-media {
    gap: 14px;
  }

  .panel,
  .card,
  .service-card,
  .article-card,
  .contact-card,
  .note-card,
  .callout-card,
  .faq details,
  .stat-card {
    padding: 18px;
  }

  .section {
    padding: 26px 0;
  }

  .section-head {
    margin-bottom: 20px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 20px, 1200px);
  }

  .nav-panel {
    padding: 8px;
  }

  .nav-sheet {
    border-radius: 22px 26px 22px 26px;
  }

  .nav-sheet__header {
    padding: 12px 12px 10px;
  }

  .nav-sheet__body {
    padding: 10px 12px 12px;
  }

  .display {
    font-size: clamp(2.55rem, 15vw, 3.3rem);
  }

  .hero-band {
    padding: 20px 0 30px;
  }

  .hero-grid {
    width: min(100% - 18px, 1200px);
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-actions,
  .button-row,
  .chip-row,
  .section-index {
    gap: 10px;
  }

  .chip,
  .section-index a {
    font-size: 0.78rem;
  }

  .service-card h3,
  .article-card h3,
  .contact-card h3,
  .note-card h3,
  .callout-card h3,
  .card h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-color-scheme: dark) {
  body::before {
    opacity: 0.6;
  }

  body::after {
    opacity: 0.18;
  }

  .section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 13, 24, 0.46));
  }

  .btn-ghost,
  .chip,
  .section-index a {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-shell,
  .nav-sheet,
  .panel,
  .card,
  .service-card,
  .article-card,
  .contact-card,
  .note-card,
  .callout-card,
  .faq details,
  .stat-card,
  .footer-card {
    border-color: rgba(163, 184, 219, 0.18);
    background:
      radial-gradient(circle at 0% 0%, rgba(42, 108, 255, 0.12), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.94), rgba(21, 33, 57, 0.92));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  }

  .nav-shell {
    background:
      radial-gradient(circle at 0% 0%, rgba(42, 108, 255, 0.14), transparent 22%),
      linear-gradient(180deg, rgba(18, 27, 45, 0.94), rgba(18, 27, 45, 0.9));
  }

  .nav-sheet__header {
    background: linear-gradient(180deg, rgba(15, 23, 40, 0.96), rgba(20, 31, 52, 0.92));
    border-bottom-color: rgba(163, 184, 219, 0.14);
  }

  .nav-links a,
  .menu-close,
  .menu-toggle,
  .field input,
  .field select,
  .field textarea {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    border-color: rgba(163, 184, 219, 0.18);
  }

  .nav-links a::after {
    color: rgba(244, 247, 251, 0.52);
  }

  .nav-cta {
    border-top-color: rgba(163, 184, 219, 0.14);
  }

  .hero-image,
  .page-image {
    border-color: rgba(163, 184, 219, 0.18);
    background:
      radial-gradient(circle at 18% 18%, rgba(42, 108, 255, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.92));
  }

  .chip,
  .section-index a,
  .btn-ghost {
    border-color: rgba(163, 184, 219, 0.16);
    color: rgba(244, 247, 251, 0.82);
  }

  .section-index a:hover {
    color: #ffffff;
    border-color: rgba(42, 108, 255, 0.36);
  }

  .hero-band {
    background:
      radial-gradient(circle at 14% 10%, rgba(36, 107, 255, 0.22), transparent 22%),
      radial-gradient(circle at 84% 14%, rgba(17, 181, 168, 0.18), transparent 24%),
      linear-gradient(135deg, #10192e 0%, #13213a 52%, #0d1728 100%);
  }

  .hero-meta .panel:first-child {
    background:
      radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.94));
  }

  .hero-meta .panel:last-child {
    background:
      radial-gradient(circle at 0% 0%, rgba(18, 183, 173, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.94));
  }

  .service-card:nth-child(3n + 1),
  .service-card:nth-child(3n + 2),
  .service-card:nth-child(3n + 3) {
    background:
      radial-gradient(circle at 100% 0%, rgba(42, 108, 255, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.94));
  }

  .service-card:nth-child(3n + 2) {
    background:
      radial-gradient(circle at 100% 0%, rgba(18, 183, 173, 0.16), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.94));
  }

  .service-card:nth-child(3n + 3) {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 143, 111, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(22, 33, 56, 0.94));
  }

  .hero-figure-badge {
    background: rgba(21, 33, 57, 0.88);
    color: #f4f7fb;
  }

  .btn-secondary,
  .section-index a,
  .chip,
  .nav-links a,
  .menu-close,
  .menu-toggle,
  .field input,
  .field select,
  .field textarea {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
  }

  .nav-links a::after {
    color: var(--ink-soft);
  }
}
