/* ── Design tokens (Splunk Dashboard Studio dark) ─────────── */
:root {
  --bg: #0b0c0e;
  --bg-elevated: #121316;
  --bg-card: #17181a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.98);
  --text-muted: rgba(255, 255, 255, 0.64);
  --accent: #65a637;
  --accent-2: #f05a28;
  --accent-3: #7fd06a;
  --accent-info: #5eb3ff;
  --accent-glow: rgba(101, 166, 55, 0.35);
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --container: min(1140px, calc(100% - 2.5rem));
  --header-h: 72px;
  --dash-panel: linear-gradient(180deg, rgba(15, 16, 18, 0.96) 0%, rgba(11, 12, 14, 0.99) 100%);
  --dash-chrome: rgba(255, 255, 255, 0.03);
  --dash-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset, 0 12px 32px rgba(0, 0, 0, 0.4);
  --text-label: 0.75rem;
  --text-small: 0.875rem;
  --text-body: 1.075rem;
  --heading-xl: clamp(1.85rem, 4vw, 2.55rem);
  --heading-lg: clamp(1.55rem, 3vw, 1.95rem);
  --heading-md: clamp(1.35rem, 2.6vw, 1.7rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Background effects ──────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 15%, transparent 72%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -2;
  pointer-events: none;
}
.bg-glow--1 {
  width: 600px;
  height: 600px;
  top: -180px;
  right: -120px;
  background: rgba(101, 166, 55, 0.06);
  animation: drift 18s ease-in-out infinite;
}
.bg-glow--2 {
  width: 480px;
  height: 480px;
  bottom: 5%;
  left: -140px;
  background: rgba(240, 90, 40, 0.05);
  animation: drift 22s ease-in-out infinite reverse;
}
.bg-glow--3 {
  width: 360px;
  height: 360px;
  top: 45%;
  right: 10%;
  background: rgba(94, 179, 255, 0.04);
  animation: drift 26s ease-in-out infinite 4s;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.55);
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: 4rem;
}
.section--cta {
  padding-bottom: 5rem;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.85) 35%, transparent);
}

/* ── Dashboard system ───────────────────────────────────────── */
.dash-board {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.dash-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dash-chrome);
}
.dash-chrome-title {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.dash-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(101, 166, 55, 0.75);
}
.dash-body {
  padding: 1rem;
}
.dash-body--flush {
  padding: 0;
}
.dash-body--grid {
  display: grid;
  gap: 0;
}
.dash-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-kpi:last-child { border-right: none; }
.dash-kpi-label {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.dash-kpi-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
.dash-kpi-meta {
  font-size: var(--text-small);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}
.dash-kpi--primary {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.08) 0%, transparent 72%);
}
.dash-kpi--primary .dash-kpi-meta { color: var(--accent-3); }
.dash-widget {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}
.dash-widget--featured {
  border-color: rgba(101, 166, 55, 0.35);
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.dash-widget-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}
.dash-sparkline {
  display: block;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(101, 166, 55, 0.85) 0%, rgba(94, 179, 255, 0.45) 55%, transparent 100%);
  opacity: 0.75;
}
.section--ai {
  padding-block: 4rem 5.5rem;
}

.section-header {
  max-width: 38rem;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: var(--heading-lg);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.section-lead {
  color: var(--text-muted);
  margin: 0;
  font-size: var(--text-body);
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.eyebrow--logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.eyebrow-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.92;
}

.gradient-text {
  color: var(--accent-info);
  background: none;
}

/* ── Header / Nav ──────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
  background: rgba(11, 12, 14, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  border-color: var(--border-strong);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.logo-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-brand {
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: #0b0c0e !important;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(94, 179, 255, 0.5);
  background: var(--accent-info);
  box-shadow: 0 0 16px rgba(94, 179, 255, 0.2);
  font-family: var(--mono);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta:hover {
  border-color: #8ecfff;
  background: #8ecfff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.1);
}
.hero--wide {
  width: var(--container);
  padding-bottom: 0;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-backdrop-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bridges-composite.png");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0.96;
  filter: saturate(1.04) brightness(0.74) contrast(1.12);
}
.hero-backdrop-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 12, 0.22) 0%, rgba(4, 6, 12, 0.38) 48%, rgba(4, 6, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(4, 6, 12, 0.42) 0%, rgba(4, 6, 12, 0.12) 42%, rgba(4, 6, 12, 0.08) 68%, rgba(4, 6, 12, 0.22) 100%);
}
.hero-backdrop-arc {
  position: absolute;
  top: 18%;
  left: 38%;
  width: 24%;
  height: 38%;
  border: 1px dashed rgba(56, 189, 248, 0.22);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  opacity: 0.7;
  animation: arcPulse 4s ease-in-out infinite;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.hero-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 8% 6% 0;
  z-index: 0;
  border-radius: 42% 42% 10% 10% / 38% 38% 12% 12%;
  background:
    radial-gradient(ellipse at 58% 18%, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.07) 42%, transparent 72%),
    radial-gradient(ellipse at 48% 100%, rgba(4, 6, 12, 0.58) 0%, rgba(4, 6, 12, 0.18) 60%, transparent 90%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(255, 255, 255, 0.06) 0%, transparent 46%),
    radial-gradient(ellipse at 52% 104%, rgba(4, 6, 12, 0.44) 0%, transparent 50%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-photo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42)) saturate(1.02) contrast(1.03);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 64%, rgba(0, 0, 0, 0.9) 76%, rgba(0, 0, 0, 0.5) 88%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 64%, rgba(0, 0, 0, 0.9) 76%, rgba(0, 0, 0, 0.5) 88%, transparent 100%);
}
.hero-photo-caption {
  margin: 0.75rem 0 0;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}
.hero-cta-label {
  margin: 1.25rem 0 0.35rem;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-cta-sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-offers {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.hero-offers li {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.hero-offers li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-size: var(--text-label);
}

/* Trust bar / overview dashboard */
.trust-bar {
  padding: 1.25rem 0 2rem;
}
.dash-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.dash-overview-grid .dash-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  min-height: 5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.dash-overview-grid .dash-kpi:last-child { border-right: none; }
.dash-overview-grid .dash-kpi--primary {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.08) 0%, transparent 72%);
}
.dash-overview-grid .dash-kpi--primary::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(101, 166, 55, 0.85) 0%, rgba(94, 179, 255, 0.45) 55%, transparent 100%);
  opacity: 0.75;
}
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-metric {
  text-align: left;
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.trust-metric:last-child { border-right: none; }
.trust-metric strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.trust-metric span {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}
.trust-metric::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(101, 166, 55, 0.75) 0%, transparent 100%);
  opacity: 0.6;
}

/* Value pitch */
.value-pitch-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.value-pitch-copy h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.value-pitch-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.value-pitch-copy .btn {
  margin-top: 0.5rem;
}
.value-pitch-visual {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.value-pitch-teams-heading {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.value-pitch-teams-scope {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-grid--compact {
  margin-top: 1rem;
}

/* Service detail cards */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-detail {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.service-detail:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.service-detail--featured {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), var(--bg-card));
}
.service-detail h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.service-detail p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.service-detail a {
  font-family: var(--mono);
  font-size: var(--text-small);
  color: var(--accent);
  text-decoration: none;
}
.service-detail a:hover {
  color: var(--text);
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.result-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.result-metrics {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.result-metrics strong {
  display: block;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-metrics span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.result-card > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Process steps */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.process-step {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.process-num {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 48rem;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hero--wide .hero-copy {
  text-shadow: 0 2px 20px rgba(4, 6, 12, 0.75), 0 1px 2px rgba(4, 6, 12, 0.85);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.hero--wide .hero-layout {
  align-items: end;
}
.hero--wide .hero-photo {
  align-self: end;
  justify-self: end;
  align-items: flex-end;
}
.hero--wide .hero-photo-img {
  object-position: right bottom;
  display: block;
  max-width: min(340px, 100%);
}
.hero--wide .hero-title {
  max-width: none;
  font-size: var(--heading-xl);
  line-height: 1.1;
}
.hero--wide .hero-tagline {
  max-width: none;
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  line-height: 1.55;
  color: #74d6ff;
}
.hero--wide .keyword-cloud {
  margin-top: 1.75rem;
}
.hero--wide .hero-stats {
  margin-top: 2rem;
}
.hero--wide .hero-actions {
  margin-top: 1.5rem;
}

.keyword-cloud {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.keyword-cloud li {
  font-family: var(--mono);
  font-size: var(--text-small);
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 12, 22, 0.75);
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}
.keyword-cloud li:nth-child(3n+1) { border-color: rgba(56, 189, 248, 0.25); color: var(--text); }
.keyword-cloud li:nth-child(3n+2) { border-color: rgba(167, 139, 250, 0.25); }
.keyword-cloud li:nth-child(3n) { border-color: rgba(52, 211, 153, 0.25); }
.hero--wide .keyword-cloud {
  gap: 0.6rem;
}
.hero--wide .keyword-cloud li {
  font-size: var(--text-small);
  padding: 0.45rem 0.85rem;
}

.compact-panel {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.15);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}
.panel--branded {
  position: relative;
  overflow: hidden;
}
.panel-watermark {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  width: 110px;
  height: auto;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}
.panel-watermark--contact {
  right: 1.5rem;
  top: 1.25rem;
  bottom: auto;
  width: 90px;
  opacity: 0.045;
}
.compact-panel h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.85rem;
}
.team-tags--inline {
  margin-top: 1.25rem;
}
.section-foot {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.section-foot a {
  color: var(--accent);
  text-decoration: none;
}
.section-foot a:hover { text-decoration: underline; }
.cards--compact .card {
  padding: 1.25rem 1.35rem;
}
.cards--compact .card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.cards--compact .card p {
  font-size: 0.9375rem;
}
.social-row--compact {
  margin-top: 1rem;
  gap: 1rem;
}

/* ── Playbooks section ───────────────────────────────────────── */
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.playbook-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.playbook-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}
.playbook-team {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.playbook-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.playbook-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}
.playbook-card-actions {
  display: flex;
  gap: 0.5rem;
}
.playbook-card-actions .btn-sm {
  margin-top: 0;
  flex: 1;
  justify-content: center;
}

.hero-kicker {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.hero-kicker .muted {
  font-weight: 500;
  color: var(--text-muted);
}
.hero-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-info);
  margin: 0 0 0.85rem;
  max-width: 34rem;
  letter-spacing: -0.01em;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-visual-stack {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(56, 189, 248, 0.08);
  z-index: 2;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 6, 12, 0.75));
  z-index: 1;
  pointer-events: none;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-visual-caption {
  margin: 1rem 0 0;
  font-family: var(--mono);
  font-size: var(--text-small);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* AI orbit (hero) */
.ai-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ai-core {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--mono);
  font-weight: 600;
  font-size: var(--text-small);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
  z-index: 3;
  animation: corePulse 3s ease-in-out infinite;
}
.ai-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  height: 88%;
  margin: -44% 0 0 -44%;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 50%;
}
.ai-ring--1 { animation: spin 16s linear infinite; }
.ai-ring--2 {
  width: 68%;
  height: 68%;
  margin: -34% 0 0 -34%;
  border-color: rgba(167, 139, 250, 0.2);
  animation: spin 11s linear infinite reverse;
}
.ai-node {
  position: absolute;
  font-family: var(--mono);
  font-size: var(--text-label);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 12, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: nodeGlow 4s ease-in-out infinite;
}
.ai-node--1 { top: 2%; left: 50%; transform: translateX(-50%); }
.ai-node--2 { right: -2%; top: 38%; animation-delay: 1s; }
.ai-node--3 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }
.ai-node--4 { left: -4%; top: 38%; animation-delay: 3s; }

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: var(--text-label);
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(12px);
  z-index: 4;
  animation: floatChip 5s ease-in-out infinite;
}
.hero-chip--1 { bottom: 18%; left: -4%; animation-delay: 0s; }
.hero-chip--2 { top: 28%; left: -8%; animation-delay: 1.5s; }
.hero-chip--3 { bottom: 6%; right: -2%; animation-delay: 3s; }
.hero-chip--4 { top: 8%; right: -6%; animation-delay: 0.75s; }
.hero-chip--5 { top: 52%; right: -10%; animation-delay: 2.25s; }
.hero-chip--6 { bottom: 32%; left: -10%; animation-delay: 3.75s; }
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.chip-dot--violet { background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); }
.chip-dot--emerald { background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(56, 189, 248, 0.45); }
  50% { box-shadow: 0 0 60px rgba(167, 139, 250, 0.55); }
}
@keyframes nodeGlow {
  0%, 100% { opacity: 0.65; border-color: rgba(255, 255, 255, 0.08); }
  50% { opacity: 1; border-color: rgba(56, 189, 248, 0.35); }
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.75rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.social-link:hover { color: var(--accent); }

.hero-dash,
.dash-board.hero-dash {
  display: inline-flex;
  flex-direction: column;
  width: min(100%, 34rem);
  margin-bottom: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.hero-dash-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.hero-dash-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 0.85rem 0.9rem;
  min-height: 5.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.hero-dash-kpi:last-child { border-right: none; }
.hero-dash-kpi--primary {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.08) 0%, transparent 72%), rgba(255, 255, 255, 0.015);
}
.hero-dash-kpi--primary::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(101, 166, 55, 0.85) 0%, rgba(94, 179, 255, 0.45) 55%, transparent 100%);
  opacity: 0.75;
}
.hero-dash-kpi-label,
.dash-kpi-label {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero-dash-chrome,
.dash-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dash-chrome);
}
.hero-dash-title,
.dash-chrome-title {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-dash-status,
.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.hero-dash-status-dot,
.dash-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(101, 166, 55, 0.75);
}
.hero-dash-kpi-value,
.dash-kpi-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
.hero-dash-kpi-meta,
.dash-kpi-meta {
  font-size: var(--text-small);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}
.hero-dash-kpi--primary .hero-dash-kpi-meta,
.dash-kpi--primary .dash-kpi-meta {
  color: var(--accent-3);
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-size: var(--heading-xl);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0 0 1rem;
}
.hero-title .gradient-text {
  color: #74d6ff;
  text-shadow: 0 0 22px rgba(94, 179, 255, 0.35);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #0b0c0e;
  background: var(--accent-info);
  border-color: rgba(94, 179, 255, 0.5);
  box-shadow: 0 4px 20px rgba(94, 179, 255, 0.25);
}
.btn-primary:hover {
  background: #8ecfff;
  box-shadow: 0 6px 28px rgba(94, 179, 255, 0.35);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: rgba(101, 166, 55, 0.45);
  background: rgba(101, 166, 55, 0.08);
}
.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9375rem;
  margin-top: 1.25rem;
}
.approach-copy .btn-sm + .btn-sm {
  margin-left: 0.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  border: none;
}
.stat-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.06);
}
.hero-stats dt {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.hero-stats dd {
  margin: 0;
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── AI panel ──────────────────────────────────────────────── */
.ai-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.18);
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.06) 0%, transparent 45%),
    linear-gradient(225deg, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
    var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 40px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.ai-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.6;
}
.ai-panel h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.ai-outcomes {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ai-outcomes li {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.5);
  transition: border-color 0.25s;
}
.ai-outcomes li:hover {
  border-color: rgba(56, 189, 248, 0.25);
}
.ai-outcomes strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.ai-outcomes span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.agent-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}
.flow-node {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.6);
}
.flow-node--core {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(167, 139, 250, 0.06));
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}
.flow-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.flow-value {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.flow-connector {
  width: 2px;
  height: 20px;
  margin-left: 1.5rem;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.4;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.metric {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.5);
}
.metric strong {
  display: block;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.2rem;
}
.metric span {
  font-size: var(--text-label);
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Pillars (expertise) ─────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pillar {
  padding: 1.6rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  border-color: rgba(56, 189, 248, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.pillar-icon {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.pillar h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.pillar p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.team-strip {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
}
.team-strip-label {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.team-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.team-tags li {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s;
}
.team-tags li:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.06);
}

/* ── Cards ───────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.55rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}
.card--featured {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.1), rgba(4, 6, 12, 0.6));
  position: relative;
  overflow: hidden;
}
.card--featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.card-icon {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Journey ─────────────────────────────────────────────────── */
.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.journey-stage {
  padding: 1.65rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.journey-stage:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.journey-stage--highlight {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.08), var(--bg-card));
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.06);
}
.journey-phase {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.journey-stage--highlight .journey-phase { color: var(--accent-3); }
.journey-stage h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.5rem 0 0.65rem;
  letter-spacing: -0.02em;
}
.journey-stage p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.growth-viz { margin-top: 0.5rem; }
.growth-chart {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
.growth-area {
  fill: url(#lineGrad);
  opacity: 0.12;
}
.growth-line {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.5s ease forwards;
}
.growth-dot {
  fill: var(--accent-2);
  opacity: 0;
  animation: popIn 0.4s 1.6s ease forwards;
}
.reveal.is-visible .growth-line { animation-play-state: running; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.growth-labels {
  display: flex;
  justify-content: space-between;
  max-width: 520px;
  font-family: var(--mono);
  font-size: var(--text-label);
  color: var(--text-muted);
  margin-top: 0.65rem;
}
.growth-unicorn {
  color: var(--accent-2);
  font-weight: 600;
}
.growth-ai {
  color: var(--accent-3);
  font-weight: 600;
}

/* Silicon Valley map */
.sv-map {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10, 14, 26, 0.55);
  overflow: hidden;
}
.sv-node {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.8125rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(4, 6, 12, 0.88);
  white-space: nowrap;
}
.sv-node--sv {
  top: 18%;
  left: 8%;
  border-color: rgba(167, 139, 250, 0.4);
}
.sv-node--syd {
  bottom: 22%;
  right: 12%;
  border-color: rgba(56, 189, 248, 0.4);
}
.sv-node--global {
  top: 42%;
  left: 42%;
}
.sv-arc {
  position: absolute;
  inset: 15% 10%;
  border: 2px dashed rgba(56, 189, 248, 0.22);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  animation: arcPulse 3s ease-in-out infinite;
}
.sv-pulse {
  position: absolute;
  top: 42%;
  left: 42%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes arcPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Team grid (promo-style) */
.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.98rem;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}
.team-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Numbered service list (promo-style) */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.svc {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.3s, transform 0.3s;
}
.svc:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.svc span {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.svc--featured {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), var(--bg-card));
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.06);
}

/* Standalone AI orbit (panel) */
.ai-orbit-wrap {
  display: grid;
  place-items: center;
  padding: 1rem;
}
.ai-orbit--standalone {
  position: relative;
  width: min(100%, 280px);
  height: min(100%, 280px);
  inset: auto;
  pointer-events: auto;
}
.ai-orbit--standalone .ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  font-size: 1rem;
}
.ai-orbit--standalone .ai-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
}
.ai-orbit--standalone .ai-ring--2 {
  width: 76%;
  height: 76%;
  margin: -38% 0 0 -38%;
}
.ai-orbit--standalone .ai-node--1 { top: -2%; left: 50%; transform: translateX(-50%); }
.ai-orbit--standalone .ai-node--2 { right: -6%; top: 50%; transform: translateY(-50%); }
.ai-orbit--standalone .ai-node--3 { bottom: -2%; left: 50%; transform: translateX(-50%); }
.ai-orbit--standalone .ai-node--4 { left: -6%; top: 50%; transform: translateY(-50%); }

.ai-panel-copy .section-lead {
  margin-bottom: 0;
}

/* ── Approach ────────────────────────────────────────────────── */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.approach h2 {
  font-size: clamp(1.6rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}
.approach-copy > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.quote {
  margin: 0;
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
}
.quote p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text-muted);
}
.quote footer {
  font-size: var(--text-small);
  color: var(--text-muted);
}
.quote cite { font-style: normal; color: var(--accent); }
.quote a {
  color: var(--accent);
  text-decoration: none;
}
.quote a:hover { text-decoration: underline; }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.timeline-item {
  position: relative;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
}
.timeline-item::before { display: none; }
.timeline-item time {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.timeline-item h3 {
  font-size: 1.15rem;
  margin: 0.25rem 0 0.15rem;
  font-weight: 600;
}
.cv-company-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.35rem 0 0.15rem;
}
.cv-company-logo {
  display: block;
  width: auto;
  height: 1.35rem;
  max-width: 7.5rem;
  object-fit: contain;
  object-position: left center;
}
.cv-company-logo--wide {
  max-width: 10.5rem;
}
.cv-company-logo--splunk {
  filter: brightness(0) saturate(100%) invert(62%) sepia(68%) saturate(4208%) hue-rotate(298deg) brightness(102%) contrast(101%);
}
.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;
}
.timeline-item .role {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.timeline-item p:last-child {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.credential {
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: transparent;
}
.credential:nth-child(2n) { border-right: none; }
.credential:nth-last-child(-n+2) { border-bottom: none; }
.credential-label {
  font-family: var(--mono);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.credential p {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── Connect ─────────────────────────────────────────────────── */
.connect-panel {
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
}
.connect-header { margin-bottom: 1.75rem; }
.connect-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 1rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(56, 189, 248, 0.1);
}
.connect-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.connect-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.connect-note {
  font-family: var(--mono);
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
}
.connect-note a {
  color: var(--accent);
  text-decoration: none;
}
.connect-note a:hover { text-decoration: underline; }

.link-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.25s, background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.link-btn:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.08);
}
.link-btn--primary {
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(167, 139, 250, 0.1));
}
.link-btn-desc {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Experience teaser ───────────────────────────────────────── */
.experience-teaser {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2.5rem;
  align-items: end;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}
.experience-teaser h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}
.experience-highlights {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.experience-highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.experience-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.experience-teaser-action {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ── Enquiry form ────────────────────────────────────────────── */
.enquiry-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.enquiry-intro {
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
}
.enquiry-intro h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.75rem;
}
.enquiry-intro p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.enquiry-direct {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.enquiry-direct a {
  font-family: var(--mono);
  font-size: var(--text-small);
  color: var(--accent-info);
  text-decoration: none;
}
.enquiry-direct a:hover { text-decoration: underline; }

.enquiry-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.enquiry-form input,
.enquiry-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: rgba(101, 166, 55, 0.45);
  box-shadow: 0 0 0 2px rgba(101, 166, 55, 0.12);
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
  min-height: 1.25rem;
}
.form-note.is-success { color: var(--accent-3); }
.form-note.is-error { color: #f87171; }

/* ── CV page ─────────────────────────────────────────────────── */
.cv-hero {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.cv-hero h1 {
  font-size: var(--heading-lg);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 1rem;
}
.cv-linkedin {
  margin: 1rem 0 0;
}
.cv-linkedin a {
  font-family: var(--mono);
  font-size: var(--text-small);
  color: var(--accent);
  text-decoration: none;
}
.cv-linkedin a:hover { text-decoration: underline; }
.cv-body {
  padding-top: 2rem;
}
.cv-section-title {
  font-family: var(--mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0;
  border-bottom: none;
}
.cv-section-title:first-child { margin-top: 0; }
.cv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.nav-links a[aria-current="page"] {
  color: var(--accent-3);
}

/* ── CTA (legacy panel — kept for reuse) ─────────────────────── */
.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 55%),
    linear-gradient(225deg, rgba(167, 139, 250, 0.06), transparent 50%),
    var(--bg-elevated);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent-3), transparent);
  opacity: 0.5;
}
.cta-content h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.75rem;
}
.cta-content p {
  color: var(--text-muted);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cta-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.5rem;
}
.cta-links a {
  font-size: var(--text-small);
  color: var(--text-muted);
  text-decoration: none;
}
.cta-links a:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border-strong);
  background: rgba(11, 12, 14, 0.6);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-logo {
  width: 118px;
  height: auto;
  opacity: 0.8;
  display: block;
}
.footer p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.footer-nav a {
  font-size: var(--text-small);
  color: var(--text-muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--accent); }

/* ── Fractional + org chart ──────────────────────────────────── */
.fractional-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.fractional-copy {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.fractional-copy h2 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}
.org-chart {
  padding: 1.25rem 1.5rem;
  border-radius: 0;
  border: none;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}
.org-chart::before {
  content: "Organisation model";
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  margin-bottom: 0.85rem;
}
.org-chart-node {
  font-size: var(--text-small);
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  margin: 0 auto;
  max-width: 100%;
}
.org-chart-node--ceo {
  display: inline-block;
  margin-bottom: 0.75rem;
  border-color: rgba(240, 90, 40, 0.35);
}
.org-chart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.org-chart-row--teams .org-chart-node {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}
.org-chart-node--exec { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); flex: 1; min-width: 5.5rem; }
.org-chart-connector {
  width: 2px;
  height: 1.25rem;
  margin: 0 auto 0.75rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.5;
}
.org-chart-node--fractional {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  border-style: dashed;
  border-color: rgba(101, 166, 55, 0.5);
  background: linear-gradient(145deg, rgba(101, 166, 55, 0.1), rgba(255, 255, 255, 0.02));
  color: var(--text);
  max-width: 20rem;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}
.org-chart-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(101, 166, 55, 0.45);
  box-shadow: 0 0 12px rgba(101, 166, 55, 0.2);
}
.org-chart-fractional-body {
  flex: 1;
  min-width: 0;
}
.org-chart-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 0.35rem;
}
.org-chart-note {
  margin: 1rem 0 0;
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.45;
}

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

/* ── Team profile tiles ──────────────────────────────────────── */
.leadership-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.leadership-badge {
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
}
.leadership-badge:last-child { border-right: none; }
.leadership-badge--highlight {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.1) 0%, transparent 100%);
}
.leadership-badge-type {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}
.leadership-badge p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.team-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.team-tile {
  padding: 0.9rem 1rem;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-left: none;
  background: transparent;
  transition: background 0.25s;
}
.team-tile:nth-child(3n) { border-right: none; }
.team-tile:nth-last-child(-n+3) { border-bottom: none; }
.team-tile:hover { background: rgba(255, 255, 255, 0.02); }
.team-tile--featured {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.1) 0%, transparent 100%);
}
.team-tile h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.team-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tag {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tag--region {
  color: var(--accent-info);
  border-color: rgba(94, 179, 255, 0.25);
  background: rgba(94, 179, 255, 0.08);
}
.tag--stage {
  color: var(--accent-3);
  border-color: rgba(101, 166, 55, 0.3);
  background: rgba(101, 166, 55, 0.1);
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: var(--text-small);
  color: var(--text-muted);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Capability matrix ─────────────────────────────────────── */
.theme-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.theme-pill {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.theme-pill--ops { color: var(--accent-info); border-color: rgba(94, 179, 255, 0.25); }
.theme-pill--ai { color: var(--accent-2); border-color: rgba(240, 90, 40, 0.3); }
.theme-pill--coach { color: var(--accent-3); border-color: rgba(101, 166, 55, 0.3); }
.capability-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.capability-pillar {
  padding: 0;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.capability-pillar-details {
  margin: 0;
}
.capability-pillar-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.capability-pillar-summary::-webkit-details-marker { display: none; }
.capability-pillar-summary::marker { content: ""; }
.capability-pillar-summary:hover,
.capability-pillar-details[open] > .capability-pillar-summary {
  background: rgba(255, 255, 255, 0.02);
}
.capability-pillar-summary h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.capability-pillar-chevron {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}
.capability-pillar-chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translate(-55%, -65%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s;
}
.capability-pillar-details[open] > .capability-pillar-summary .capability-pillar-chevron::before {
  transform: translate(-55%, -35%) rotate(-135deg);
  border-color: var(--text);
}
.capability-pillar-details > .capability-points {
  padding: 0.75rem 1.1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.capability-pillar:nth-child(2n) { border-right: none; }
.capability-pillar:nth-last-child(-n+2) { border-bottom: none; }
.capability-pillar--ops { border-left: 3px solid rgba(94, 179, 255, 0.55); }
.capability-pillar--ai { border-left: 3px solid rgba(240, 90, 40, 0.55); }
.capability-pillar--coach { border-left: 3px solid rgba(101, 166, 55, 0.55); }
.capability-pillar--partner { border-left: 3px solid rgba(94, 179, 255, 0.55); }
.capability-pillar h3,
.capability-pillar-summary h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.capability-pillar-summary h3 {
  margin: 0;
}
.capability-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.capability-points li {
  font-size: var(--text-small);
  line-height: 1.45;
  color: var(--text-muted);
}
.capability-points strong {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.1rem;
}

/* ── Engagement models ───────────────────────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.engagement-card {
  padding: 1rem 1.1rem;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.engagement-card:last-child { border-right: none; }
.engagement-card--featured {
  background: linear-gradient(180deg, rgba(101, 166, 55, 0.1) 0%, transparent 100%);
}
.engagement-num {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.engagement-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 0.95rem;
}
.process-flow {
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.process-flow-title {
  margin: 0;
  padding: 0.45rem 0.85rem;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dash-chrome);
  font-weight: 500;
}
.process-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-flow-steps li {
  padding: 0.85rem 1rem;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.process-flow-steps li:last-child { border-right: none; }
.process-flow-steps strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.2rem;
}
.process-flow-steps span {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── About me ──────────────────────────────────────────────── */
.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.about-copy {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.about-copy h2 {
  margin: 0.5rem 0 1rem;
  font-size: var(--heading-md);
}
.about-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-list li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.about-list strong { color: var(--text); }
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.015);
}
.about-slideshow {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-shadow: none;
}
.about-slideshow-viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.about-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(4, 6, 12, 0.88));
}
.about-slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-top: 1px solid var(--border);
}
.about-slideshow-btn {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(4, 6, 12, 0.5);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.about-slideshow-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.about-slideshow-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
}
.about-slideshow-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.about-slideshow-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}
.about-hyrox-card {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.1), rgba(4, 6, 12, 0.5));
  text-decoration: none;
  transition: border-color 0.25s;
}
.about-hyrox-card:hover { border-color: var(--accent-3); }
.about-hyrox-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 0.35rem;
}
.about-hyrox-text {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Experience: HQ + domains ──────────────────────────────── */
.cv-hq {
  display: block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin: 0.25rem 0 0.5rem;
}
.cv-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.domain-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--dash-panel);
  box-shadow: var(--dash-shadow);
  overflow: hidden;
}
.domain-matrix th,
.domain-matrix td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.domain-matrix th {
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: var(--dash-chrome);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.domain-matrix tr:last-child td { border-bottom: none; }
.domain-matrix td:first-child { font-weight: 600; }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dash-overview-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-overview-grid .dash-kpi:nth-child(3n) { border-right: none; }
  .dash-overview-grid .dash-kpi { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .dash-overview-grid .dash-kpi:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 960px) {
  .ai-panel { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: 1fr; }
  .approach { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .trust-metrics { grid-template-columns: repeat(2, 1fr); }
  .value-pitch-inner { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(4, 6, 12, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 1rem 0.5rem;
  }
  .nav-cta { border: none !important; background: none !important; box-shadow: none !important; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  .hero-backdrop-image {
    background-position: 58% 36%;
    opacity: 0.82;
    filter: saturate(1) brightness(0.66) contrast(1.1);
  }
  .hero-backdrop-scrim {
    background:
      linear-gradient(180deg, rgba(4, 6, 12, 0.28) 0%, rgba(4, 6, 12, 0.72) 55%, rgba(4, 6, 12, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 6, 12, 0.55) 0%, rgba(4, 6, 12, 0.2) 55%, rgba(4, 6, 12, 0.08) 100%);
  }
  .hero--wide .hero-layout {
    align-items: stretch;
    min-height: clamp(17rem, 52vw, 21rem);
    padding-bottom: 0;
  }
  .hero--wide .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 68%;
    padding-bottom: 1.35rem;
    padding-top: 0.35rem;
  }
  .hero-photo {
    order: unset;
    position: absolute;
    right: -10%;
    bottom: 0;
    width: min(58vw, 260px);
    max-width: none;
    margin: 0;
    isolation: auto;
    pointer-events: none;
  }
  .hero-photo::before,
  .hero-photo::after {
    display: none;
  }
  .hero--wide .hero-photo {
    align-self: auto;
    justify-self: auto;
    align-items: flex-end;
  }
  .hero--wide .hero-photo-img {
    width: 100%;
    max-width: none;
    mix-blend-mode: lighten;
    object-position: right bottom;
    -webkit-mask-image: radial-gradient(ellipse 88% 90% at 58% 36%, #000 48%, rgba(0, 0, 0, 0.82) 64%, transparent 80%);
    mask-image: radial-gradient(ellipse 88% 90% at 58% 36%, #000 48%, rgba(0, 0, 0, 0.82) 64%, transparent 80%);
    filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.42)) contrast(1.04) saturate(1.04);
  }
  .hero-kicker {
    display: none;
  }
  .hero--wide .hero-title {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    line-height: 1.12;
  }
  .hero--wide .hero-tagline {
    font-size: 1rem;
    line-height: 1.5;
  }
  .keyword-cloud {
    display: none;
  }
  .hero-offers {
    flex-direction: column;
    gap: 0.4rem;
  }
  .dash-overview-grid { grid-template-columns: 1fr; }
  .dash-overview-grid .dash-kpi {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .dash-overview-grid .dash-kpi:last-child { border-bottom: none; }
  .fractional-panel { grid-template-columns: 1fr; }
  .fractional-copy {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .team-tile-grid { grid-template-columns: 1fr; }
  .team-tile {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .team-tile:last-child { border-bottom: none; }
  .leadership-badges { grid-template-columns: 1fr; }
  .leadership-badge {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .leadership-badge:last-child { border-bottom: none; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .engagement-card:last-child { border-bottom: none; }
  .process-flow-steps { grid-template-columns: 1fr; }
  .process-flow-steps li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .process-flow-steps li:last-child { border-bottom: none; }
  .about-panel { grid-template-columns: 1fr; }
  .about-copy {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .capability-pillars { grid-template-columns: 1fr; }
  .capability-pillar {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .capability-pillar:last-child { border-bottom: none; }
  .enquiry-panel { grid-template-columns: 1fr; }
  .enquiry-intro {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .credentials { grid-template-columns: 1fr; }
  .credential {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .credential:last-child { border-bottom: none; }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .result-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .stat-card {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }
  .hero-stats dt {
    font-size: 0.95rem;
  }
  .hero-stats dd {
    font-size: 0.8125rem;
    line-height: 1.35;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .approach { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .credentials { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .experience-teaser { grid-template-columns: 1fr; }
  .enquiry-panel { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-chip--4 { right: 0; }
  .hero-chip--5 { right: 0; }
  .hero-chip--6 { left: 0; }
}

@media (max-width: 400px) {
  .hero--wide .hero-copy {
    max-width: 100%;
    padding-right: 34%;
  }
  .hero-photo {
    right: -14%;
    width: min(64vw, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse, .ai-ring, .ai-core, .hero-chip, .bg-glow,
  .card--featured::after, .growth-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .pillar:hover { transform: none; }
}
