:root {
  --ink: #071526;
  --navy: #0b1f36;
  --blue: #1769ff;
  --cyan: #1ed8ff;
  --violet: #6a5cff;
  --mint: #44d7b6;
  --amber: #f5b84b;
  --paper: #f7fafc;
  --line: #d9e4ee;
  --line-strong: #b8c9da;
  --muted: #617188;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 21, 38, 0.12);
  --shadow-soft: 0 14px 34px rgba(7, 21, 38, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

img { max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid rgba(30, 216, 255, 0.4);
  outline-offset: 3px;
}

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

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 228, 238, 0.8);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(7, 21, 38, 0.07);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--blue) 62%, var(--cyan));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.22);
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: #26384f;
  font-size: 0.93rem;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a:focus { color: var(--blue); }

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus {
  border-color: rgba(23, 105, 255, 0.45);
  box-shadow: 0 10px 24px rgba(23, 105, 255, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease;
}

.nav-toggle:hover { border-color: var(--line-strong); }

.nav-toggle-bars {
  display: block;
  width: 18px;
  margin: 0 auto;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 200ms ease, opacity 150ms ease;
}

.nav-toggle.is-active .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(30, 216, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f9fcff 0%, #eef5fb 46%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
  min-height: 710px;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
}

h2 { font-size: clamp(2rem, 3vw, 3.4rem); }

h3 { font-size: 1.22rem; }

.hero-subhead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #34465d;
  font-size: 1.22rem;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(23, 105, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus {
  background: #0f58dc;
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.credibility {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 650;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-signals span {
  padding: 8px 11px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #2b425a;
  font-size: 0.84rem;
  font-weight: 800;
}

.orchestration-map {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(217, 228, 238, 0.85);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 105, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 255, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.orchestration-map::before,
.orchestration-map::after {
  content: "";
  position: absolute;
  inset: 17% 12%;
  border: 1px solid rgba(23, 105, 255, 0.22);
  border-radius: 50%;
}

.orchestration-map::after {
  inset: 30% 24%;
  border-color: rgba(30, 216, 255, 0.35);
}

.map-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(23, 105, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #334960;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(7, 21, 38, 0.08);
}

.map-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(68, 215, 182, 0.18);
}

.map-panel {
  position: absolute;
  z-index: 2;
  width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(7, 21, 38, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 21, 38, 0.14);
}

.map-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.map-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
}

.map-core {
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.map-core:hover { transform: translate(-50%, calc(-50% - 3px)); }

.map-core span { color: #9fb4cc; }
.map-a { top: 10%; left: 9%; }
.map-b { top: 12%; right: 8%; }
.map-c { bottom: 15%; left: 7%; }
.map-d { bottom: 10%; right: 10%; }
.map-e { bottom: 39%; right: 28%; }

.section {
  position: relative;
  padding: 96px 0;
  isolation: isolate;
}

.section-muted {
  background: var(--paper);
}

.section + .section::before,
.section + .cta-band::before,
.cta-band + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1040px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.18), rgba(30, 216, 255, 0.26), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 16%, rgba(30, 216, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--navy), #071526 72%);
  color: var(--white);
}

.section-dark h2,
.section-dark .eyebrow { color: var(--white); }

.dark-copy {
  max-width: 520px;
  margin-top: 20px;
  color: #b7c7d8;
  font-size: 1.04rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.split > p {
  margin: 0;
  color: #34465d;
  font-size: 1.12rem;
}

.narrative-block {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  box-shadow: var(--shadow-soft);
}

.narrative-block p {
  margin: 0;
  color: #34465d;
  font-size: 1.08rem;
}

.editorial-bridge {
  padding: 110px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, var(--paper) 42%, var(--paper) 100%);
  overflow: hidden;
}

.editorial-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.field-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #10233d, #1769ff 62%, #1ed8ff);
  background-size: auto, 36px 36px, 36px 36px, auto;
  box-shadow: 0 26px 60px rgba(7, 21, 38, 0.12);
}

.field-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.68));
  pointer-events: none;
}

.field-visual-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.field-visual-bar span {
  padding: 17px 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 900;
}

.field-visual-bar span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.field-visual-body {
  position: relative;
  min-height: 300px;
}

.signal-line,
.signal-node {
  position: absolute;
  z-index: 2;
}

.signal-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(30, 216, 255, 0.88));
  transform-origin: left center;
}

.signal-line-a {
  top: 92px;
  left: 14%;
  width: 54%;
  transform: rotate(11deg);
}

.signal-line-b {
  top: 174px;
  left: 20%;
  width: 48%;
  transform: rotate(-8deg);
}

.signal-line-c {
  top: 222px;
  left: 42%;
  width: 32%;
  background: linear-gradient(90deg, rgba(245, 184, 75, 0.2), rgba(245, 184, 75, 0.9));
  transform: rotate(7deg);
}

.signal-node {
  display: grid;
  gap: 2px;
  width: 154px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 42px rgba(7, 21, 38, 0.16);
}

.signal-node span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-node strong {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
}

.signal-node-a {
  top: 58px;
  left: 8%;
}

.signal-node-b {
  top: 150px;
  left: 42%;
}

.signal-node-c {
  right: 8%;
  bottom: 42px;
}

.js .field-visual .signal-line {
  animation: orquestaSignalPulse 5.8s ease-in-out infinite;
}

.js .field-visual .signal-node {
  animation: orquestaNodeFloat 6.5s ease-in-out infinite;
}

.js .field-visual .signal-node-b { animation-delay: 700ms; }
.js .field-visual .signal-node-c { animation-delay: 1200ms; }

.field-visual p {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.field-note-card {
  position: relative;
  z-index: 3;
  margin-left: 0;
  padding: 34px 36px;
  border: 1px solid rgba(217, 228, 238, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(7, 21, 38, 0.1);
}

.field-note-card h2 {
  max-width: 520px;
  font-size: clamp(1.85rem, 2.55vw, 2.85rem);
  line-height: 1.02;
}

.field-note-card p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #34465d;
  font-size: 1.03rem;
}

.field-note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.field-note-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.focus-rail {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: -34px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 251, 254, 0.92);
}

.focus-rail a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #293b52;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.focus-rail a + a {
  border-left: 0;
}

.focus-rail a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(23, 105, 255, 0.28);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.focus-rail a::after {
  content: " \2197";
  margin-left: 8px;
  color: var(--blue);
}

.focus-rail a:hover,
.focus-rail a:focus {
  color: var(--blue);
  transform: translateY(-1px);
}

.focus-rail a:hover::before,
.focus-rail a:focus::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.services-section {
  padding-top: 116px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 21, 38, 0.02);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  opacity: 0.85;
}

.service-card:hover {
  border-color: rgba(23, 105, 255, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(30, 216, 255, 0.14));
  color: var(--blue);
}

.card-icon .icon { width: 24px; height: 24px; }

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  color: var(--blue);
  font-weight: 800;
}

.service-card a::after {
  content: " ->";
}

.process-section {
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.06) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
}

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

.process-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.process-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--cyan);
}

.process-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: #34465d;
}

.process-connector {
  position: absolute;
  top: 44px;
  right: -20px;
  z-index: 1;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #293b52;
  font-weight: 750;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pill-row span:hover {
  border-color: rgba(23, 105, 255, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.pill-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.pill-icon .icon { width: 18px; height: 18px; }

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

.proof-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #e6eef8;
  font-weight: 750;
  transition: border-color 180ms ease, background 180ms ease;
}

.proof-grid div:hover {
  border-color: rgba(30, 216, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 8px;
  background: rgba(30, 216, 255, 0.14);
  color: var(--cyan);
}

.proof-icon .icon { width: 18px; height: 18px; }

.proof-cta {
  margin-top: 28px;
}

.faq-section { background: var(--paper); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:hover { color: var(--blue); }

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }

.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq-item[open] summary { border-bottom: 1px solid var(--line); }

.faq-item p {
  margin: 0;
  padding: 4px 20px 20px;
  color: var(--muted);
}

.section-action {
  margin-top: 26px;
}

.blog-hero {
  padding: 90px 0 70px;
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbfe, #eef6fc);
  background-size: 42px 42px, 42px 42px, auto;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: end;
}

.blog-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #34465d;
  font-size: 1.16rem;
}

.blog-search {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.blog-search label {
  color: var(--ink);
  font-weight: 850;
}

.blog-search div {
  display: flex;
  gap: 10px;
}

.blog-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.blog-main {
  display: grid;
  gap: 24px;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #293b52;
  font-size: 0.86rem;
  font-weight: 850;
}

.blog-chip:hover,
.blog-chip:focus,
.blog-chip.is-active {
  border-color: rgba(23, 105, 255, 0.35);
  background: #eef5ff;
  color: var(--blue);
}

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

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

.blog-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 21, 38, 0.02);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.insight-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 238, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #10233d, #1769ff 60%, #1ed8ff);
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow: 0 18px 40px rgba(7, 21, 38, 0.09);
  isolation: isolate;
}

.insight-visual-card {
  margin: -8px -8px 20px;
}

.insight-visual-hero {
  min-height: 390px;
  align-self: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.insight-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.66));
  pointer-events: none;
}

.insight-visual-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.insight-visual-bar span {
  min-width: 0;
  padding: 13px 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-visual-bar span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-visual-body {
  position: relative;
  min-height: 148px;
}

.insight-visual-hero .insight-visual-body {
  min-height: 326px;
}

.insight-line,
.insight-node {
  position: absolute;
  z-index: 2;
}

.insight-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(30, 216, 255, 0.86));
  transform-origin: left center;
}

.insight-line-a {
  top: 42%;
  left: 13%;
  width: 58%;
  transform: rotate(11deg);
}

.insight-line-b {
  top: 57%;
  left: 21%;
  width: 50%;
  transform: rotate(-8deg);
}

.insight-line-c {
  top: 72%;
  left: 42%;
  width: 34%;
  background: linear-gradient(90deg, rgba(245, 184, 75, 0.22), rgba(245, 184, 75, 0.92));
  transform: rotate(7deg);
}

.insight-node {
  display: grid;
  gap: 2px;
  width: 118px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(7, 21, 38, 0.15);
}

.insight-node span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-node strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1;
}

.insight-node-1 {
  top: 24px;
  left: 7%;
}

.insight-node-2 {
  top: 72px;
  left: 41%;
}

.insight-node-3 {
  right: 7%;
  bottom: 18px;
}

.insight-visual-hero .insight-node {
  width: 154px;
  padding: 15px;
}

.insight-visual-hero .insight-node strong {
  font-size: 1.25rem;
}

.insight-visual-hero .insight-node-1 {
  top: 68px;
  left: 8%;
}

.insight-visual-hero .insight-node-2 {
  top: 168px;
  left: 42%;
}

.insight-visual-hero .insight-node-3 {
  right: 8%;
  bottom: 44px;
}

.insight-visual p {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.insight-visual-slack {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #2f185f, #1769ff 58%, #1ed8ff);
}

.insight-visual-agentforce {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #132033, #4461ff 58%, #36e7ba);
}

.insight-visual-automation {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #10233d, #008bd2 58%, #1ed8ff);
}

.insight-visual-implementation {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #18314c, #1769ff 58%, #f5b84b);
}

.insight-visual-optimization {
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #0f2d3d, #1769ff 58%, #36e7ba);
}

.js .insight-visual .insight-line {
  animation: orquestaSignalPulse 5.6s ease-in-out infinite;
}

.js .insight-visual .insight-node {
  animation: orquestaNodeFloat 6.2s ease-in-out infinite;
}

.js .insight-visual .insight-node-2 { animation-delay: 650ms; }
.js .insight-visual .insight-node-3 { animation-delay: 1150ms; }

.blog-card:hover {
  border-color: rgba(23, 105, 255, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-card-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.32rem;
  line-height: 1.15;
}

.blog-card p {
  color: var(--muted);
}

.blog-card-link {
  align-self: end;
  color: var(--blue);
  font-weight: 850;
}

.blog-card-link::after {
  content: " ->";
}

.blog-pagination {
  margin-top: 8px;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.blog-pagination .current {
  background: var(--blue);
  color: var(--white);
}

.blog-sidebar,
.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.sidebar-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sidebar-panel h2 {
  font-size: 1.05rem;
}

.sidebar-panel p {
  margin: 0;
  color: var(--muted);
}

.sidebar-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-panel a:not(.button) {
  color: #293b52;
  font-weight: 800;
}

.sidebar-panel a:not(.button):hover,
.sidebar-panel a:not(.button):focus {
  color: var(--blue);
}

.sidebar-visual-panel {
  padding: 16px;
}

.sidebar-visual-panel h2 {
  padding: 0 4px;
}

.sidebar-visual-panel .insight-visual-card {
  min-height: 210px;
  margin: 0;
}

.article-hero {
  padding: 84px 0 66px;
  background: linear-gradient(135deg, var(--ink), #112a48 58%, #103b72);
  color: var(--white);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.article-hero-inner {
  max-width: 900px;
}

.article-hero h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.article-hero p {
  max-width: 760px;
  color: #c7d5e3;
  font-size: 1.16rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e6eef8;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 48px;
  align-items: start;
}

.article-content {
  color: #26384f;
  font-size: 1.08rem;
}

.article-content h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.article-content p,
.article-content li {
  color: #34465d;
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.cta-band {
  position: relative;
  padding: 58px 0;
  background: linear-gradient(135deg, var(--ink), #112a48 58%, #103b72);
  color: var(--white);
  isolation: isolate;
}

.cta-band h2,
.cta-band .eyebrow { color: var(--white); }

.cta-band p { color: #c7d5e3; }

.cta-inner {
  justify-content: space-between;
  gap: 30px;
}

.cta-inner div { max-width: 760px; }

.page-hero {
  padding: 90px 0 72px;
  background: linear-gradient(135deg, #f8fbfe, #eaf3fb);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: #34465d;
  font-size: 1.18rem;
}

.about-hero {
  overflow: hidden;
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 78% 18%, rgba(30, 216, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbfe, #eef6fc 58%, #ffffff);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.86fr);
  gap: 64px;
  align-items: center;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #34465d;
  font-size: 1.16rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-image-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(7, 21, 38, 0.64)),
    radial-gradient(circle at 26% 22%, rgba(245, 184, 75, 0.55), transparent 20%),
    linear-gradient(135deg, #78c9f7 0%, #b6d7ff 42%, #1c3f68 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.about-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.about-skyline {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 78px;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
}

.tower {
  display: block;
  width: 18%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px 6px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    rgba(7, 21, 38, 0.72);
  background-size: 16px 16px;
  box-shadow: 0 20px 40px rgba(7, 21, 38, 0.24);
}

.tower-a { height: 118px; }
.tower-b { height: 158px; }
.tower-c { height: 132px; }
.tower-d { height: 182px; }
.tower-e { height: 96px; }

.about-dashboard {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: min(250px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(7, 21, 38, 0.16);
}

.about-dashboard span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-dashboard strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
}

.about-dashboard-bars {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.about-dashboard-bars i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.about-dashboard-bars i:nth-child(1) { width: 86%; }
.about-dashboard-bars i:nth-child(2) { width: 64%; }
.about-dashboard-bars i:nth-child(3) { width: 74%; background: linear-gradient(90deg, var(--mint), var(--cyan)); }

.about-image-card figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-profile-grid,
.about-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.about-story p:not(.eyebrow) {
  color: #34465d;
  font-size: 1.08rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-metrics div {
  min-height: 145px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.about-metrics div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.about-metrics div:nth-child(n + 3) {
  border-bottom: 0;
}

.about-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.85rem;
  line-height: 1;
}

.about-metrics span {
  display: block;
  margin-top: 10px;
  color: #34465d;
  font-weight: 750;
}

.about-method-graphic {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 105, 255, 0.07) 1px, transparent 1px),
    #ffffff;
  background-size: 38px 38px;
  box-shadow: var(--shadow-soft);
}

.about-method-graphic::before,
.about-method-graphic::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(23, 105, 255, 0.22);
  border-radius: 50%;
}

.about-method-graphic::after {
  inset: 31%;
  border-color: rgba(30, 216, 255, 0.34);
}

.method-node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 136px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 21, 38, 0.1);
  color: #26384f;
  font-weight: 900;
}

.method-node span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-node-core {
  top: 50%;
  left: 50%;
  min-width: 190px;
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.method-node-core span {
  color: #aebfd2;
}

.method-node-a { top: 9%; left: 9%; }
.method-node-b { top: 12%; right: 9%; }
.method-node-c { bottom: 10%; right: 10%; }
.method-node-d { bottom: 12%; left: 10%; }

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

.about-focus-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 21, 38, 0.02);
}

.about-focus-grid h2 {
  margin-top: 22px;
  font-size: 1.35rem;
}

.about-focus-grid p {
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 20px;
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(7, 21, 38, 0.05);
}

.detail-panel p { color: var(--muted); }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--blue);
  background: var(--paper);
}

.contact-proof {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-proof span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #293b52;
  font-weight: 750;
}

.consultation-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 254, 0.98));
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consultation-form label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 3px solid rgba(30, 216, 255, 0.28);
  border-color: var(--blue);
}

.consultation-form.is-submitting {
  opacity: 0.78;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(68, 215, 182, 0.35);
  border-radius: var(--radius);
  background: rgba(68, 215, 182, 0.1);
  color: #0e6a55;
  font-weight: 800;
}

.form-status.is-visible { display: block; }

.site-footer {
  padding: 58px 0 28px;
  background: #06111f;
  color: #d6e2ee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 44px;
}

.brand-footer .brand-mark { box-shadow: none; }

.site-footer h2 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li { margin-top: 8px; }

.site-footer a:hover,
.site-footer a:focus { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a5ba;
  font-size: 0.84rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .primary-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .primary-nav ul {
    display: grid;
    gap: 12px;
  }

  .hero-grid,
  .article-hero-grid,
  .about-hero-grid,
  .about-profile-grid,
  .about-method-grid,
  .split,
  .editorial-bridge-grid,
  .detail-panel,
  .contact-grid,
  .blog-hero-grid,
  .blog-layout,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .about-hero-grid,
  .about-profile-grid,
  .about-method-grid {
    gap: 36px;
  }

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

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

  .editorial-bridge {
    padding-top: 86px;
  }

  .field-note-card {
    margin-left: 0;
    max-width: 720px;
  }

  .focus-rail {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 18px;
  }

  .focus-rail a:nth-child(3) {
    border-top: 0;
  }

  .focus-rail a:nth-child(4) {
    border-top: 0;
  }

  .services-section {
    padding-top: 116px;
  }

  .process-connector { display: none; }

  .blog-sidebar,
  .article-aside {
    position: static;
  }

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

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .hero-grid { padding: 52px 0; }
  .about-hero { padding: 62px 0 56px; }
  .about-image-card { min-height: 360px; }
  .about-dashboard {
    top: 18px;
    right: 18px;
    width: calc(100% - 36px);
  }
  .about-skyline {
    left: 18px;
    right: 18px;
    bottom: 64px;
    gap: 8px;
    height: 150px;
  }
  .about-image-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }
  .about-metrics {
    grid-template-columns: 1fr;
  }
  .about-metrics div,
  .about-metrics div:nth-child(odd),
  .about-metrics div:nth-child(n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-metrics div:last-child {
    border-bottom: 0;
  }
  .about-method-graphic {
    min-height: 520px;
  }
  .method-node {
    left: 18px;
    right: 18px;
    min-width: 0;
  }
  .method-node-core {
    top: 50%;
    left: 18px;
    right: 18px;
    transform: translateY(-50%);
  }
  .method-node-a { top: 18px; }
  .method-node-b { top: 112px; }
  .method-node-c { bottom: 112px; }
  .method-node-d { bottom: 18px; }
  h1 { font-size: 2.25rem; }
  .hero-subhead { font-size: 1.08rem; }
  .section { padding: 60px 0; }
  .editorial-bridge {
    padding: 64px 0 0;
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 34%, var(--paper) 34%, var(--paper) 100%);
  }

  .editorial-bridge-grid {
    gap: 22px;
    margin-bottom: 30px;
  }

  .field-visual {
    min-height: 300px;
  }

  .field-visual-bar {
    grid-template-columns: 1fr;
  }

  .field-visual-bar span {
    padding: 11px 14px;
  }

  .field-visual-bar span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .signal-node {
    width: 126px;
    padding: 12px;
  }

  .signal-node strong {
    font-size: 1.08rem;
  }

  .signal-node-a {
    left: 7%;
  }

  .signal-node-b {
    top: 142px;
    left: 31%;
  }

  .signal-node-c {
    right: 5%;
    bottom: 34px;
  }

  .field-note-card {
    padding: 24px 20px;
  }

  .field-note-card h2 {
    font-size: 1.95rem;
  }

  .field-note-card p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .focus-rail {
    margin-bottom: 0;
    padding: 10px 0;
  }

  .focus-rail a {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.92rem;
  }

  .focus-rail a + a,
  .focus-rail a:nth-child(3),
  .focus-rail a:nth-child(4) {
    border-left: 0;
    border-top: 0;
  }

  .services-section {
    padding-top: 60px;
  }

  .card-grid,
  .check-list,
  .proof-grid,
  .blog-grid,
  .blog-preview-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .orchestration-map { min-height: 460px; }
  .map-panel { width: 132px; padding: 13px; }
  .map-e { right: 18%; }
  .footer-bottom { display: block; }

  .hero-actions .button,
  .cta-inner .button {
    width: 100%;
  }

  .service-card,
  .process-card {
    min-height: 0;
  }

  .faq-item summary { padding: 16px; font-size: 0.96rem; }
  .faq-item p { padding: 0 16px 18px; }
  .blog-search div { display: grid; }
  .blog-card { min-height: 0; }
  .insight-visual-card {
    min-height: 170px;
    margin: -6px -6px 18px;
  }
  .insight-visual-hero {
    min-height: 300px;
  }
  .insight-visual-hero .insight-visual-body {
    min-height: 240px;
  }
  .insight-node,
  .insight-visual-hero .insight-node {
    width: 116px;
    padding: 11px;
  }
  .insight-node strong,
  .insight-visual-hero .insight-node strong {
    font-size: 1rem;
  }
  .insight-visual-hero .insight-node-1 {
    top: 46px;
  }
  .insight-visual-hero .insight-node-2 {
    top: 124px;
    left: 34%;
  }
  .insight-visual-hero .insight-node-3 {
    bottom: 34px;
  }
  .article-hero { padding: 64px 0 52px; }

  body { padding-bottom: 76px; }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .mobile-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes orquestaHeroUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes orquestaSignalPulse {
  0%, 100% {
    opacity: 0.58;
    filter: saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: saturate(1.25);
  }
}

@keyframes orquestaNodeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.js .hero-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: orquestaHeroUp 680ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  animation-delay: var(--enter-delay, 0ms);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(0.2, 0.72, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .card-stagger {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms cubic-bezier(0.2, 0.72, 0.2, 1), transform 560ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--stagger-delay, 0ms);
}

.js .card-stagger.is-visible {
  opacity: 1;
  transform: none;
}

.js .service-card.card-stagger.is-visible:hover,
.js .process-card.card-stagger.is-visible:hover,
.js .blog-card.card-stagger.is-visible:hover {
  transform: translateY(-3px);
}

.js .pill-row > span.card-stagger.is-visible:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .js .hero-enter,
  .js .reveal,
  .js .card-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
