/* ==================================================================================
   Atlas Integro — Marketing Site CSS
   site.css | Mobile-first | Light theme | No framework
   ================================================================================== */

/* === Google Fonts loaded via <link> in HTML === */
/* Fraunces (display), Inter (body), JetBrains Mono (metrics) */

/* === Tokens ====================================================================== */
:root {
  --bg:            #f9fafb;
  --surface:       #ffffff;
  --surface-2:     #f3f4f6;
  --surface-alt:   #f3f4f6;
  --border:        #e5e7eb;
  --accent:        #26CAC8;
  --accent-dim:    rgba(38, 202, 200, 0.10);
  --accent-glow:   rgba(38, 202, 200, 0.06);
  --text:          #111827;
  --text-muted:    #374151;
  --text-dim:      #6b7280;
  --success:       #059669;
  --warning:       #d97706;
  --danger:        #dc2626;
  --radius:        10px;
  --radius-sm:     6px;

  --accent-bright: #1db8b6;
  --text-bright:   #000000;
  --radius-lg:     16px;
  --max-w-hero:    1400px;
  --max-w-content: 1120px;
  --max-w-prose:   680px;
  --nav-h:         80px;
}

/* === Dark component overrides — terminal/code cards stay dark on light bg ======== */
.terminal-card { background: #161b22; border-color: #30363d; }
.terminal-header { background: #0d1117; border-color: #30363d; }
.t-title { color: #6e7681; }
.t-col-time { color: #6e7681; }
.t-col-event { color: #e1ebf8; }
.t-col-detail { color: #8b949e; }
.terminal-cursor-row { color: #6e7681; }
.hash-card { background: #0d1117; border-color: #30363d; color: #e1ebf8; }
.hash-header { color: #6e7681; border-color: #30363d; }
.hash-row { border-color: #30363d; }
.hash-key { color: #6e7681; min-width: 148px; flex-shrink: 0; }
.hash-val { color: #8b949e; word-break: break-all; }
.hash-val.immutable { color: #3fb950; }
.delta-card { background: #0d1117; border-color: #30363d; color: #e1ebf8; }
.delta-row { border-color: #30363d; }
.delta-key { color: #6e7681; }
.delta-val { color: #8b949e; }
.delta-val.positive { color: #3fb950; }
.delta-val.accent { color: #26CAC8; font-weight: 600; }

/* === Reset ======================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 106.25%; /* 17px equivalent at default 16px browser base; respects user font-size preference */
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* === Accessibility =============================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* === Typography ================================================================== */
.t-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  color: var(--text-bright);
}

.t-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: var(--text-bright);
}

.t-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.04em;
}

/* === Layout ====================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-hero {
  width: 100%;
  max-width: var(--max-w-hero);
  margin-inline: auto;
  padding-inline: 24px;
}

.section       { padding-block: 80px; }
.section--sm   { padding-block: 48px; }
.section--lg   { padding-block: 128px 96px; }

main { padding-top: var(--nav-h); }

/* === Buttons ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.15s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* === Nav ========================================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, backdrop-filter 0.2s, border-color 0.2s;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w-hero);
  margin-inline: auto;
  padding-inline: 24px;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta { display: none; }

/* Nav right — phone + CTA, desktop only */
.nav-right {
  display: none;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--accent); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s, background 0.15s;
}
.nav-hamburger:hover span { background: var(--text); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  padding: calc(var(--nav-h) + 40px) 24px 40px;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  transition: color 0.15s;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-overlay a:hover { color: var(--accent); }
.nav-mobile-overlay .btn {
  margin-top: 16px;
  align-self: flex-start;
  border-bottom: none;
}

@media (min-width: 960px) {
  .nav-links     { display: flex; }
  .nav-right     { display: flex; }
  .nav-cta       { display: inline-flex; }
  .nav-hamburger { display: none; }
  .nav-brand     { margin-right: 32px; }
}
@media (max-width: 1199px) {
  .nav-phone { display: none; }
}

/* === Footer — minimalist dark, site-wide ========================================== */
.site-footer {
  background: #0a0e13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2vw, 1.75rem);
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.site-footer .footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
  align-items: start;
}
@media (min-width: 769px) {
  .site-footer .footer-cols {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: clamp(1.25rem, 2vw, 2rem);
  }
}
.site-footer .footer-brand { display: inline-block; margin-bottom: 1rem; }
.site-footer .footer-tagline {
  color: #8b949e;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 260px;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .footer-col-title {
  color: #f0f6fc;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li { line-height: 1.6; }
.site-footer .footer-links a {
  color: #c9d1d9;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 180ms ease;
}
.site-footer .footer-links a:hover { color: var(--accent); }
.site-footer .footer-contact-item {
  color: #c9d1d9;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.25rem;
}
.site-footer .footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}
.site-footer .footer-contact-item a:hover { color: var(--accent); }
.site-footer .footer-contact-item a[href*="contact.html"] {
  color: var(--accent);
  font-weight: 500;
}
.site-footer .footer-contact-item a[href*="contact.html"]:hover { color: #5fdedc; }

.site-footer .footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.75rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .footer-bar-copy,
.site-footer .footer-bar-links {
  color: #6e7681;
  font-size: 0.82rem;
  margin: 0;
}
.site-footer .footer-bar-links {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer .footer-bar-links a {
  color: #6e7681;
  text-decoration: none;
  transition: color 180ms ease;
}
.site-footer .footer-bar-links a:hover { color: var(--accent); }
.site-footer .footer-bar-sep { color: #3a4048; }
@media (max-width: 540px) {
  .site-footer .footer-cols { gap: 1.5rem; }
  .site-footer .footer-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .site-footer .footer-bar-links { justify-content: center; }
}

/* === Section headers ============================================================== */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }

.section-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}
.section-header.centered .section-sub { margin-inline: auto; }

/* === Hero ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 120px 96px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 50%, rgba(38,202,200,0.055) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-content { flex: 1; min-width: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(38,202,200,.4); }
  50% { opacity: .8; box-shadow: 0 0 0 5px rgba(38,202,200,0); }
}

.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--text-bright);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Terminal widget */
.hero-terminal {
  flex-shrink: 0;
  width: 460px;
  display: none;
}

.terminal-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.t-dot:nth-child(1) { background: #f85149; }
.t-dot:nth-child(2) { background: #d29922; }
.t-dot:nth-child(3) { background: #3fb950; }
.t-title { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; color: var(--text-dim); margin-left: 6px; }

.terminal-body {
  padding: 16px;
  height: 256px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.terminal-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
}

.terminal-line {
  display: grid;
  grid-template-columns: 70px 160px 120px 80px;
  gap: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
}
.terminal-line.visible { opacity: 1; transform: none; }
.t-col-time   { color: var(--text-dim); }
.t-col-event  { color: var(--text); }
.t-col-detail { color: var(--text-muted); }
.t-col-status { color: var(--success); }

.terminal-cursor-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--text-dim);
}
.terminal-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (min-width: 1100px) {
  .hero-terminal { display: block; }
}

/* === Stats section ================================================================ */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* === Systems (4 features) ========================================================= */
.systems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .systems-grid { grid-template-columns: repeat(4, 1fr); }
}

.system-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  transition: border-color 0.15s, background 0.15s;
}
.system-card:hover {
  border-color: rgba(38, 202, 200, 0.3);
  background: var(--surface-alt);
}

.system-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.system-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.system-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === Performance-fee / Baseline =================================================== */
.baseline-section {
  background: var(--surface-2);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
}

.baseline-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 960px) {
  .baseline-inner { grid-template-columns: 1fr 1fr; }
}

.hash-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
}

.hash-header {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.hash-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.hash-row:last-child { border-bottom: none; }

/* hash-key/val colors defined in dark-override block above */

/* === Verticals cards (home page) ================================================== */
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .verticals-grid { grid-template-columns: repeat(3, 1fr); }
}

.vertical-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  display: block;
}
.vertical-card:hover {
  border-color: rgba(38, 202, 200, 0.35);
  background: var(--surface-alt);
}

.vert-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.vert-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.vert-hook {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.vert-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}
.vertical-card:hover .vert-link { gap: 8px; }

/* === CTA section ================================================================== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(38,202,200,0.055) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta-body {
  max-width: 500px;
  margin-inline: auto;
  margin-block: 14px 40px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* === Timeline (How It Works) ====================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 760px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 21px; top: 46px; bottom: 46px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(38,202,200,.35), rgba(38,202,200,.05));
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 28px;
  padding-bottom: 56px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-phase {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 10px;
}

.timeline-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.timeline-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* Delta / calculation card */
.delta-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  max-width: 520px;
  margin-top: 28px;
}

.delta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.delta-row:last-child { border-bottom: none; }
/* delta-key/val colors defined in dark-override block above */

/* Small legal note box */
.small-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 560px;
}

/* === Contact page ================================================================= */

.direct-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .direct-contact { grid-template-columns: repeat(3, 1fr); }
}

.dc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.dc-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.dc-value a { transition: color 0.15s; }
.dc-value a:hover { color: var(--accent); }

.form-embed-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 720px;
  margin-inline: auto;
  scroll-margin-top: calc(var(--nav-h) + 16px);
  text-align: center;
}

.form-embed-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.form-embed-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.ghl-iframe {
  width: 100%;
  min-height: 560px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
}

/* === Legal / Prose pages ========================================================== */
.legal-banner {
  background: rgba(210, 153, 34, 0.1);
  border: 1px solid rgba(210, 153, 34, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--warning);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 64px;
}

.prose { max-width: var(--max-w-prose); }

.prose h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin-bottom: 10px;
}

.prose .effective {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 56px;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-top: 56px;
  margin-bottom: 14px;
}

.prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
}

.prose p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.prose ul, .prose ol {
  margin-bottom: 14px;
  padding-left: 20px;
}
.prose li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  list-style: disc;
}
.prose ol li { list-style: decimal; }

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.prose a:hover { color: var(--accent-bright); }

/* === Scroll reveal ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 60ms; }
[data-reveal][data-delay="2"] { transition-delay: 120ms; }
[data-reveal][data-delay="3"] { transition-delay: 180ms; }
[data-reveal][data-delay="4"] { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .terminal-cursor { animation: none; opacity: 1; }
  .hero-eyebrow-dot { animation: none; }
}

/* === Responsive ================================================================== */
@media (max-width: 639px) {
  .section       { padding-block: 64px; }
  .section--lg   { padding-block: 80px 64px; }
  .hero          { padding-block: 72px 56px; }
  .section-header { margin-bottom: 40px; }
}

@media (min-width: 1280px) {
  .section       { padding-block: 96px; }
  .section--lg   { padding-block: 140px 112px; }
}

/* === About page ================================================================== */
.about-hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-hero-text { padding-top: 8px; }
.about-hero-headshot { max-width: 380px; width: 100%; }

.headshot-wrap {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface);
}
.headshot-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; z-index: 2;
  width: 32px; height: 32px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius) 0 0 0;
  pointer-events: none;
}
.headshot-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.prose .founder-sig {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 8px;
}

/* === Founder block (Home page) ==================================================== */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.founder-block-headshot { max-width: 400px; }

.founder-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text);
  line-height: 1.75;
}
.founder-quote p { margin-bottom: 18px; }
.founder-attribution {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}
.founder-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 24px;
  transition: color 0.15s;
}
.founder-read-more:hover { color: var(--accent-bright); }

/* === LinkedIn button ============================================================== */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
  margin-top: 12px;
}
.linkedin-btn:hover { border-color: var(--accent); color: var(--accent); }

/* === FAQ accordion ================================================================ */
.faq-accordion { margin-top: 40px; max-width: 720px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

/* hide default marker in all browsers */
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--text-bright); }

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.22s ease-out, color 0.15s, border-color 0.15s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: var(--accent);
}

.faq-a {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* === Thank You page timeline ====================================================== */
.thankyou-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.thankyou-timeline::before {
  content: '';
  position: absolute;
  top: 7px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--border);
}
.ty-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.ty-step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.ty-step-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === Responsive additions ========================================================= */
@media (max-width: 767px) {
  .about-hero        { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-headshot { max-width: 220px; }
  .founder-block     { grid-template-columns: 1fr; gap: 40px; }
  .founder-block-headshot { max-width: 220px; }
  .thankyou-timeline { grid-template-columns: 1fr; gap: 32px; }
  .thankyou-timeline::before { display: none; }
}

/* === Page fade-in ================================================================ */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
body { animation: pageIn 0.22s ease-out; }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

/* === Capabilities marquee ======================================================== */
.marquee-section {
  background: var(--bg);
  overflow: hidden;
}
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding-block: 40px 48px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 55s linear infinite;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-pill {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  cursor: default;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-wrapper { mask-image: none; -webkit-mask-image: none; overflow: auto; }
}

/* === Industries grid (home page) ================================================= */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.industry-card:hover {
  border-color: rgba(38,202,200,0.4);
  box-shadow: 0 2px 16px rgba(38,202,200,0.07);
}
.industry-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.industry-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.industry-card-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.industry-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.industry-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
}

/* === Sub-vertical tags (verticals page) ========================================= */
.is-businesses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.is-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}

/* ==================================================================================
   Phase 1 — Global Components
   ================================================================================== */

/* === Mega-menu dropdown buttons ================================================== */
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-drop-btn:hover { color: var(--text); background: var(--surface-2); }
.nav-drop-btn[aria-expanded="true"] { color: var(--text); background: var(--surface-2); }

.nav-chevron {
  width: 12px; height: 12px;
  flex-shrink: 0;
  transition: transform 0.18s ease;
  stroke: currentColor;
}
.nav-drop-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-direct-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-direct-link:hover { color: var(--text); background: var(--surface-2); }
.nav-direct-link[aria-current="page"],
.nav-direct-link.active { color: var(--text); }

/* === Mega-menu panels ============================================================= */
.mega-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s, transform 0.18s ease;
  z-index: 200;
}
.mega-panel.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .mega-panel { transition: opacity 0.1s, visibility 0.1s; transform: none; }
}

.mega-inner { padding-block: 28px 32px; }

.mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 20px;
}
.mega-cols--3 { grid-template-columns: repeat(3, 1fr); }
.mega-cols--2 { grid-template-columns: repeat(2, 1fr); }

.mega-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.mega-link {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.12s;
}
.mega-link:hover { color: var(--accent); }

.mega-industry-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.mega-industry-link:hover {
  border-color: rgba(38,202,200,0.4);
  background: var(--surface-2);
}

.mega-industry-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.mega-industry-sub {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.mega-cta-row {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mega-overview-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.mega-overview-link:hover { color: var(--accent-bright); }

/* === Mega backdrop ================================================================ */
.mega-backdrop {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(0,0,0,0.22);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s;
}
.mega-backdrop.open { opacity: 1; visibility: visible; }
@media (prefers-reduced-motion: reduce) {
  .mega-backdrop { transition: opacity 0.1s, visibility 0.1s; }
}

/* === Mobile nav — details/summary accordion ======================================= */
.mob-nav-group {
  border-bottom: 1px solid var(--border);
}

.mob-nav-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.mob-nav-summary::-webkit-details-marker { display: none; }
.mob-nav-summary::marker { display: none; }
.mob-nav-summary:hover { color: var(--accent); }

.mob-nav-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.18s ease;
}
.mob-nav-group[open] .mob-nav-chevron { transform: rotate(180deg); }
.mob-nav-group[open] .mob-nav-summary { color: var(--text); }

.mob-nav-panel {
  padding: 4px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mob-nav-panel a {
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding: 8px 16px !important;
  border-bottom: none !important;
  color: var(--text-muted) !important;
  transition: color 0.15s !important;
}
.mob-nav-panel a:hover { color: var(--accent) !important; }

.mob-nav-section-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 16px 4px;
}

/* === Final CTA Band — dark 3-card ================================================= */
.cta-band {
  background: #0d1117;
  border-top: 1px solid #30363d;
  padding-block: 80px;
}

.cta-band-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 960px) {
  .cta-band-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.cta-band-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}
.cta-band-card:hover { border-color: rgba(38,202,200,0.25); }
.cta-band-card--featured {
  border-color: rgba(38,202,200,0.3);
  background: linear-gradient(160deg, #161b22 60%, rgba(38,202,200,0.05));
  box-shadow: 0 0 24px rgba(38,202,200,0.08);
}

.cta-band-icon {
  font-size: 1.75rem;
  margin-bottom: 18px;
  line-height: 1;
}

.cta-band-title,
.cta-band-heading {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #f0f6fc;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.cta-band-body,
.cta-band-sub {
  font-size: 0.9375rem;
  color: #c9d1d9;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 24px;
}

.cta-band-card .cta-band-eyebrow {
  margin: 0 0 10px;
}

.cta-band-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.cta-band-btn--primary {
  background: var(--accent);
  color: #0d1117;
  border-color: var(--accent);
}
.cta-band-btn--primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}
.cta-band-btn--outline {
  background: transparent;
  color: #c9d1d9;
  border-color: #30363d;
}
.cta-band-btn--outline:hover {
  border-color: rgba(38,202,200,0.5);
  color: var(--accent);
}

/* === Trust badges ================================================================= */
.trust-badges {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.trust-badges-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 960px) {
  .trust-badges-inner { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-badge-icon {
  width: 32px; height: 32px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-badge-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.trust-badge-sub {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* === Image-rich section patterns ================================================== */
.section-split-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .section-split-2col { grid-template-columns: 1fr 1fr; gap: 80px; }
  .section-split-2col.reverse-desktop > :first-child { order: 2; }
  .section-split-2col.reverse-desktop > :last-child  { order: 1; }
}

.section-image-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .section-image-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .section-image-cards { grid-template-columns: repeat(3, 1fr); } }

.section-showcase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Home redesign === */

/* Hero — dark, full viewport */
.hero--dark {
  background: #0d1117;
  min-height: 100svh;
}
.hero--dark::before { display: none; }
.hero--dark .hero-inner { position: relative; z-index: 1; }
.hero--dark .hero-h1   { color: #e6edf3; }
.hero--dark .hero-sub  { color: #8b949e; }
.hero--dark .btn-secondary { color: #c9d1d9; border-color: rgba(255,255,255,0.14); }
.hero--dark .btn-secondary:hover { background: rgba(255,255,255,0.06); color: #e6edf3; }

/* Hero single-column centered layout (dark video hero) */
.hero--dark .hero-inner {
  justify-content: center;
  text-align: center;
}
.hero--dark .hero-content {
  max-width: 780px;
}
.hero--dark .hero-sub {
  max-width: 600px;
  margin-inline: auto;
}
.hero--dark .hero-ctas {
  justify-content: center;
}
.hero--dark .hero-eyebrow {
  justify-content: center;
}

/* Standalone ticker widget — overrides default display:none and hero sizing */
.hero-terminal--standalone {
  display: block;
  width: auto;
  max-width: 640px;
}

/* Hero animated mesh bg + video */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(38,202,200,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 82% 65%, rgba(38,202,200,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 50% 18%, rgba(38,202,200,0.04) 0%, transparent 65%);
  overflow: hidden;
}
@keyframes home-mesh {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg { animation: home-mesh 18s ease-in-out infinite; }
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* Hero photo variant — replaces radial mesh with a cover image + readability overlay.
   Image URL is set inline per-page via style="background-image:url(...)". */
.hero-bg--photo {
  background-color: #0d1117;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg--photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.55) 0%, rgba(13,17,23,0.85) 100%);
}

/* Hero-to-page transition fade — bridges dark hero to light content */
.hero-fade {
  height: 80px;
  background: linear-gradient(to bottom, #0d1117 0%, var(--surface) 100%);
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero-fade { display: none; }
}

/* Source strip — visual publication badges */
.source-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}
.source-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.source-strip-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.7;
}
.source-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.source-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
a.source-badge:hover { border-color: var(--accent); color: var(--accent); }

/* Stats — larger numbers */
.stats-section .stat-number {
  font-size: clamp(4rem, 7vw, 6.5rem);
}

/* Industries tabs */
.ind-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 960px) {
  .ind-tabs { grid-template-columns: 200px 1fr; gap: 0; align-items: start; }
}

.ind-tab-list {
  display: flex;
  flex-direction: row;
  gap: 8px;
  list-style: none;
  padding: 0 0 4px;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ind-tab-list::-webkit-scrollbar { display: none; }
@media (min-width: 960px) {
  .ind-tab-list {
    flex-direction: column;
    gap: 2px;
    overflow-x: visible;
    padding: 0;
    border-right: 1px solid var(--border);
    padding-right: 0;
  }
}

.ind-tab-list li { display: contents; }

.ind-tab-btn {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  text-align: left;
}
.ind-tab-btn:hover { color: var(--text); background: var(--surface-2); }
@media (min-width: 960px) {
  .ind-tab-btn {
    width: 100%;
    border: none;
    border-right: 2px solid transparent;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 10px 16px;
  }
}
.ind-tab-btn[aria-selected="true"] {
  color: var(--accent);
  background: rgba(38,202,200,0.06);
  border-color: var(--accent);
}
@media (min-width: 960px) {
  .ind-tab-btn[aria-selected="true"] {
    border-color: transparent;
    border-right-color: var(--accent);
  }
}

.ind-panels { }
@media (min-width: 960px) { .ind-panels { padding-left: 48px; } }

.ind-panel { display: none; }
.ind-panel[aria-hidden="false"] { display: block; }

.ind-panel-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 600px;
}
.ind-panel-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.ind-panel-link:hover { opacity: 0.75; }

/* How It Works preview — horizontal stepper */
.hiw-preview-section { background: var(--surface-2); }
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 720px) {
  .hiw-steps {
    grid-template-columns: repeat(7, 1fr); /* 4 steps + 3 connectors */
    align-items: start;
    gap: 0;
  }
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
@media (min-width: 720px) {
  .hiw-step { grid-column: span 1; padding: 0; }
}
.hiw-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  opacity: 0.8;
}
.hiw-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.hiw-step-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 180px;
}
.hiw-connector {
  display: none;
}
@media (min-width: 720px) {
  .hiw-connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18px; /* aligns with step-num */
    color: var(--border);
    font-size: 1rem;
  }
  .hiw-connector::after {
    content: '→';
    color: var(--accent);
    opacity: 0.4;
    font-size: 1.25rem;
  }
}
.hiw-preview-cta { margin-top: 40px; }

/* mobile HIW: left border accent on steps */
@media (max-width: 719px) {
  .hiw-step {
    border-left: 2px solid var(--border);
    padding-left: 20px;
    margin-left: 12px;
  }
  .hiw-step + .hiw-connector { display: none; }
}

/* === Services page ================================================= */

/* Hero modifier: 60vh min-height */
.hero--60vh { min-height: 60vh; }

/* Centered hero content (no terminal widget beside it) */
.hero-content--centered { max-width: 760px; }

/* Section with alternate surface background */
.section--alt { background: var(--surface-2); }

/* § Intro 3-card row */
.svc-intro-cards {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
@media (min-width: 640px)  { .svc-intro-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .svc-intro-cards { grid-template-columns: repeat(3, 1fr); } }

.svc-intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 200ms, box-shadow 200ms;
}
.svc-intro-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(38,202,200,0.07);
}

.svc-intro-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc-intro-icon svg { width: 100%; height: 100%; }

.svc-intro-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.svc-intro-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* § Capability group: content side */
.svc-group-content { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.svc-group-content .section-label { margin-bottom: 8px; }
.svc-group-content .section-h2   { margin-bottom: 16px; }
.svc-group-content .section-sub  { margin-bottom: 24px; }

.svc-capability-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-capability-list li {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.svc-capability-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* § Integrations strip */
.integrations-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.integrations-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.integrations-strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.integrations-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.integration-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  white-space: nowrap;
  transition: border-color 200ms, color 200ms;
}
.integration-pill:hover {
  border-color: var(--accent);
  color: var(--text);
}

.integrations-strip-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* § CTA band header (eyebrow + H2 above the cards) */
.cta-band-header {
  text-align: center;
  margin-bottom: 40px;
}
.cta-band-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 12px;
}
.cta-band-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #e6edf3;
  margin: 0;
  letter-spacing: -0.02em;
}

/* === Industries overview page ================================================= */

.hero--50vh { min-height: 50vh; }

.ind-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) { .ind-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ind-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.ind-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ind-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(38,202,200,0.08);
  transform: translateY(-2px);
}

.ind-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}
.ind-card-img img { width: 100%; height: 100%; object-fit: cover; }

.ind-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ind-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.ind-card-hook {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ind-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ind-card-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  padding-top: 4px;
  transition: gap 0.15s;
}
.ind-card:hover .ind-card-explore { gap: 10px; }

.ind-dont-see {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.ind-dont-see-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.ind-dont-see-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* === Industry sub-pages ======================================================= */

.problem-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) { .problem-stats-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.problem-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.problem-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 8px;
}
.problem-stat-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
}

.capability-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { .capability-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .capability-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.capability-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.capability-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.capability-card-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.scenario-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 760px;
}
.scenario-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.scenario-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.scenario-body p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.scenario-body p:last-child { margin-bottom: 0; }
.scenario-outcomes {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.scenario-outcome-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.scenario-outcome-label {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.related-industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 640px) { .related-industries-grid { grid-template-columns: repeat(3, 1fr); } }

.related-industry-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.related-industry-card:hover { border-color: var(--accent); }
.related-industry-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.related-industry-sub {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}
.related-industry-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
  display: block;
}


/* === Resources & Blog === */

/* Page hero variants */
.page-hero {
  padding-block: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero--dark {
  background: #0d1117;
  min-height: 50vh;
}
.page-hero--light {
  background: var(--surface-2);
  min-height: 40vh;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 760px; }
.page-hero--dark .page-hero-eyebrow { color: var(--accent); }
.page-hero--dark .page-hero-h1 { color: #e6edf3; }
.page-hero--dark .page-hero-sub  { color: #8b949e; }

.page-hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 20px;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

/* Featured post card */
.featured-post-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  transition: border-color 0.15s;
}
@media (min-width: 960px) {
  .featured-post-card { grid-template-columns: 1fr 1fr; }
}
.featured-post-card:hover { border-color: var(--accent); }
.featured-post-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-post-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (max-width: 959px) { .featured-post-body { padding: 28px; } }
.post-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.post-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 16px;
}
.post-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}
.post-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.post-meta-sep { opacity: 0.4; }
.post-read-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.post-read-more:hover { opacity: 0.75; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.blog-card:not(.blog-card--placeholder):hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem; }
.blog-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 12px;
}
.blog-card-excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }
.blog-card-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.blog-card--placeholder { opacity: 0.5; cursor: default; }

/* Glossary */
.glossary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 640px) { .glossary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .glossary-grid { grid-template-columns: repeat(4, 1fr); } }

.glossary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.glossary-term {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.glossary-def {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Filter pills */
.filter-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.filter-pill {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.filter-pill:hover {
  border-color: rgba(38,202,200,0.4);
  color: var(--accent);
}
.filter-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.filter-pill--active,
.filter-pill--active:hover {
  background: rgba(38,202,200,0.08);
  border-color: rgba(38,202,200,0.4);
  color: var(--accent);
}

/* Blog post page layout */
.post-page-hero {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding-block: 80px 56px;
}
.post-page-hero-inner { max-width: 800px; }
.post-author-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-author-name { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.post-author-detail { font-size: 0.8125rem; color: var(--text-muted); }

/* Post body layout: TOC sidebar + content */
.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  padding-block: 64px;
}
@media (min-width: 960px) {
  .post-layout { grid-template-columns: 200px 1fr; gap: 64px; }
}

.post-toc { display: none; }
@media (min-width: 960px) {
  .post-toc {
    display: block;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
  }
}
.post-toc-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.post-toc-list { list-style: none; padding: 0; margin: 0; }
.post-toc-link {
  display: block;
  padding: 5px 0 5px 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.5;
}
.post-toc-link:hover { color: var(--text); border-left-color: var(--text-muted); }

/* Post body typography */
.post-body { max-width: 680px; }
.post-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 52px 0 18px;
  line-height: 1.3;
}
.post-body p {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.78;
  margin: 0 0 22px;
}
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { opacity: 0.8; }
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.post-body th, .post-body td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.post-body th {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--surface-2);
}
.post-body td { color: var(--text-muted); }
.post-body tr:last-child td { border-bottom: none; }
.post-body .post-result-row td { font-weight: 700; color: var(--text); background: rgba(38,202,200,0.05); }
.post-example-block {
  background: rgba(38,202,200,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.post-example-block p { margin-bottom: 12px; }
.post-example-block p:last-child { margin-bottom: 0; }
.post-closing { padding-top: 16px; border-top: 1px solid var(--border); margin-top: 48px; }
.post-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Author bio card */
.author-bio-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 56px;
}
.author-bio-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-bio-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); margin: 0 0 2px; }
.author-bio-role { font-size: 0.8125rem; color: var(--text-muted); margin: 0 0 10px; }
.author-bio-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Related posts */
.related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 640px) { .related-posts-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Contact paths (Phase 6) === */
.contact-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .contact-paths { grid-template-columns: repeat(3, 1fr); }
}
.contact-path {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-path--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(38,202,200,0.10);
}
.contact-path-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0;
}
.contact-path-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.contact-path-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.contact-path .btn { align-self: flex-start; margin-top: 8px; }

/* === About: Built on + Based in (Phase 6) === */
.built-on-section { background: var(--surface-2, #f3f4f6); }
.built-on-inner { text-align: center; }
.built-on-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.built-on-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.built-on-pill {
  display: inline-block;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.based-in-inner {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.based-in-map-placeholder {
  width: 120px;
  height: 80px;
  background: var(--surface-2, #f3f4f6);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.based-in-pin { display: block; }
.based-in-city {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}
.based-in-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* btn-outline variant */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong, #d1d5db);
}
.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--text-muted);
}

/* === Phase 7 — Content pass === */

/* Stat source citation */
.problem-stat-source { font-size: 0.75rem; color: var(--text-dim); margin-top: 12px; }
.problem-stat-source a { color: var(--text-dim); text-decoration: underline; }
.problem-stat-source a:hover { color: var(--accent); }

/* Qualification cards (solutions.html) */
.qualification-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 720px) { .qualification-grid { grid-template-columns: 1fr 1fr; } }
.qualification-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.qualification-card--yes { border-left: 3px solid var(--accent); }
.qualification-card--no { border-left: 3px solid #d1d5db; }
.qualification-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; }
.qualification-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.qualification-list li { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; padding-left: 20px; position: relative; }
.qualification-card--yes .qualification-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.qualification-card--no .qualification-list li::before { content: "✕"; position: absolute; left: 0; color: #9ca3af; font-weight: 600; }

/* Pricing anchor block (solutions.html) */
.pricing-anchor-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 720px) { .pricing-anchor-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-anchor-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.pricing-anchor-item--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-anchor-num { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; color: var(--accent); letter-spacing: -0.02em; margin: 0 0 8px; }
.pricing-anchor-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin: 0 0 16px; }
.pricing-anchor-body { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ROI Calculator (solutions.html) */
.roi-calc { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; max-width: 960px; margin-inline: auto; }
@media (min-width: 820px) { .roi-calc { grid-template-columns: 1fr 1fr; gap: 48px; } }
.roi-calc-inputs { display: flex; flex-direction: column; gap: 20px; }
.roi-calc-field { display: flex; flex-direction: column; gap: 6px; }
.roi-calc-field span { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.roi-calc-field input { font-family: inherit; font-size: 1.125rem; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); }
.roi-calc-field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.roi-calc-output { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.roi-calc-output-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin: 0 0 12px; }
.roi-calc-output-num { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400; color: var(--accent); letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1; }
.roi-calc-output-note { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5; margin: 0 0 24px; }
.roi-calc-output .btn { align-self: flex-start; }

/* Founder strip (index.html) */
.founder-strip { background: var(--surface-2); }
.founder-strip-inner { display: flex; gap: 32px; align-items: center; max-width: 860px; margin-inline: auto; flex-direction: column; text-align: center; }
@media (min-width: 640px) { .founder-strip-inner { flex-direction: row; text-align: left; } }
.founder-strip-img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); background: var(--surface-2); }
.founder-strip-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin: 0 0 8px; }
.founder-strip-quote { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; font-style: italic; color: var(--text); line-height: 1.5; margin: 0 0 8px; }
.founder-strip-name { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 12px; font-weight: 500; }
.founder-strip-link { font-size: 0.875rem; color: var(--accent); font-weight: 600; text-decoration: none; }
.founder-strip-link:hover { text-decoration: underline; }

/* === Services page — full-bleed alternating capability blocks ================== */
.svc-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background: #0d1117;
  overflow: hidden;
}
.svc-block .section-label { color: var(--accent); }
.svc-block .section-h2    { color: #f5f7fa; }
.svc-block .section-sub   { color: #b8c1cc; }
.svc-block .svc-capability-list li { color: #c9d1d9; }
.svc-block .svc-capability-list li::before { background: var(--accent); }
.svc-block-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d1117;
}
.svc-block-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.svc-block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}
.svc-block-content .section-label {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}
.svc-block-content .section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: translateY(-50%);
}
.svc-block-content .section-h2 {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.svc-block-content .section-sub {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.55;
  margin-bottom: 28px;
}
.svc-block-content .svc-capability-list { margin-bottom: 36px; }
.svc-block-content .svc-capability-list li {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.45;
  padding-block: 4px;
  transition: color 180ms ease, transform 180ms ease;
}

/* .svc-block--dark retained as no-op for backward compat — base is now dark */

/* Image-edge fade overlay — softens the seam where image meets text */
.svc-block-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,17,23,0) 70%, rgba(13,17,23,0.25) 100%);
}

@media (min-width: 960px) {
  .svc-block {
    grid-template-columns: 60fr 40fr;
    min-height: 80vh;
    align-items: stretch;
  }
  .svc-block--reverse { grid-template-columns: 40fr 60fr; }
  .svc-block-image { aspect-ratio: auto; height: 100%; min-height: 80vh; }
  .svc-block-content {
    padding-block: 96px;
    padding-inline: clamp(48px, 5vw, 80px);
    max-width: 760px;
    margin-inline: 0;
  }

  /* Default: image LEFT, content RIGHT */
  .svc-block .svc-block-image   { grid-column: 1; grid-row: 1; }
  .svc-block .svc-block-content { grid-column: 2; grid-row: 1; }

  /* Reverse: image RIGHT, content LEFT */
  .svc-block--reverse .svc-block-image   { grid-column: 2; grid-row: 1; }
  .svc-block--reverse .svc-block-content { grid-column: 1; grid-row: 1; margin-inline-start: auto; }

  /* Edge fade — directional based on which side image sits */
  .svc-block .svc-block-image::after {
    background: linear-gradient(90deg, rgba(13,17,23,0) 80%, rgba(13,17,23,0.4) 100%);
  }
  .svc-block--reverse .svc-block-image::after {
    background: linear-gradient(270deg, rgba(13,17,23,0) 80%, rgba(13,17,23,0.4) 100%);
  }

  /* Bullet hover — desktop only */
  .svc-block-content .svc-capability-list li:hover {
    color: #fff;
    transform: translateX(2px);
  }
}

/* Scroll-reveal animations — directional slide + fade */
[data-svc-reveal] {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-svc-reveal="image-left"]  { transform: translateX(-32px); }
[data-svc-reveal="image-right"] { transform: translateX(32px); }
[data-svc-reveal="text"]        { transform: translateY(20px); transition-delay: 200ms; }
[data-svc-reveal].visible       { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-svc-reveal] { opacity: 1; transform: none; transition: none; }
}

/* === Services hero — cinematic ops dashboard =================================== */
.hero-bg--ops {
  background: #0a0e13;
  animation: none !important; /* override the home-mesh pulse from .hero-bg */
  overflow: hidden;
}
.hero-bg--ops > * { position: absolute; }

/* Layer 1 — soft teal glow centerpiece */
.ops-glow {
  top: 50%; left: 50%;
  width: 1000px; height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(38,202,200,0.18) 0%, rgba(38,202,200,0.08) 30%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

/* Layer 2 — base dot grid (background field) */
.ops-grid {
  inset: 0;
  background-image: radial-gradient(circle, rgba(38,202,200,0.35) 1.2px, transparent 1.6px);
  background-size: 60px 60px;
  background-position: 0 0;
  opacity: 0.4;
}

/* Layer 3 — SVG network: active nodes + connecting lines */
.ops-network {
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.ops-line {
  stroke: rgba(38,202,200,0.35);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}
.ops-node {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(38,202,200,0.7));
}

/* Layer 4 — readability overlay (above network, below cards) */
.ops-overlay {
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(10,14,19,0.7) 0%, rgba(10,14,19,0.55) 60%, rgba(10,14,19,0.3) 100%);
  pointer-events: none;
}

/* Layer 5 — floating impact cards */
.ops-cards {
  inset: 0;
  pointer-events: none;
}
.ops-card {
  position: absolute;
  width: 250px;
  background: rgba(10,14,19,0.78);
  border: 1px solid rgba(38,202,200,0.28);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  z-index: 4;
  display: none; /* hidden by default; shown on wide viewports below */
}
.ops-card-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(201,209,217,0.55);
  margin: 0 0 12px;
}
.ops-card-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.ops-card-before {
  font-size: 0.9375rem;
  color: rgba(201,209,217,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(201,209,217,0.25);
  white-space: nowrap;
}
.ops-card-arrow {
  color: rgba(38,202,200,0.55);
  font-size: 0.875rem;
}
.ops-card-after {
  font-size: 1.625rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ops-card-after--pulse {
  animation: ops-after-pulse 3s ease-in-out infinite;
}
@keyframes ops-after-pulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%      { text-shadow: 0 0 14px rgba(38,202,200,0.65); }
}
.ops-card-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #4ade80;
  margin-bottom: 8px;
  font-weight: 500;
}
.ops-card-trend-icon { font-size: 0.875rem; }
.ops-card-context {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  color: rgba(201,209,217,0.55);
  line-height: 1.4;
  margin: 0;
}

/* Card positions — corners with safe nav clearance */
.ops-card--tl { top: 110px; left: 32px; }
.ops-card--tr { top: 110px; right: 32px; }
.ops-card--bl { bottom: 100px; left: 32px; }
.ops-card--br { bottom: 100px; right: 32px; }

/* Show cards only on screens wide enough that they don't collide with the 780px headline */
@media (min-width: 1180px) {
  .ops-card { display: block; }
}

/* Animations */
@keyframes ops-glow-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
@keyframes ops-node-pulse {
  0%, 100% { opacity: 0.45; r: 4; }
  50%      { opacity: 1;   r: 5; }
}
@keyframes ops-line-shimmer {
  0%   { stroke-dashoffset: 0; opacity: 0.25; }
  50%  { opacity: 0.45; }
  100% { stroke-dashoffset: -20; opacity: 0.25; }
}
@keyframes ops-card-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: no-preference) {
  .ops-glow { animation: ops-glow-pulse 8s ease-in-out infinite; }
  .ops-node { animation: ops-node-pulse 3s ease-in-out infinite; }
  .ops-line { animation: ops-line-shimmer 6s linear infinite; }
  .ops-card { animation: ops-card-float 6s ease-in-out infinite; }
  .ops-card--tr { animation-delay: -1.5s; }
  .ops-card--bl { animation-delay: -3s; }
  .ops-card--br { animation-delay: -4.5s; }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE-SCOPED — solutions.html bottom-section premium upgrade
   All overrides under .page-services to leave other pages untouched.
   ═══════════════════════════════════════════════════════════════════ */

.page-services .section,
.page-services .section--alt,
.page-services .section--sm,
.page-services .integrations-strip,
.page-services .trust-badges,
.page-services .cta-band {
  background: #0a0e13;
  color: #e6edf3;
  position: relative;
  overflow: hidden;
}
.page-services .section--alt { background: #0d1117; }
.page-services .section-h2 { color: #f0f6fc; }
.page-services .section-sub { color: #8b949e; }
.page-services .section-label {
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.78rem;
}

/* Atmospheric dot grid behind every dark services section */
.page-services .section::before,
.page-services .section--alt::before,
.page-services .integrations-strip::before,
.page-services .trust-badges::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38, 202, 200, 0.10) 1px, transparent 1.5px);
  background-size: 80px 80px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.page-services .section > .container,
.page-services .section--alt > .container,
.page-services .integrations-strip > .container,
.page-services .trust-badges > .container,
.page-services .cta-band > .container {
  position: relative;
  z-index: 1;
}

/* Wider content area for the redesigned bottom sections */
.page-services .integrations-strip > .container,
.page-services .qualification-grid,
.page-services .pricing-anchor-grid,
.page-services .roi-calc,
.page-services .trust-badges-inner,
.page-services .cta-band-cards {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ── § 7 Integrations strip ───────────────────────────────────────── */
.page-services .integrations-strip {
  border-top: 1px solid rgba(38, 202, 200, 0.12);
  border-bottom: 1px solid rgba(38, 202, 200, 0.12);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.page-services .integrations-strip-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.page-services .integrations-strip-eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.82rem;
  margin: 0 0 0.85rem;
}
.page-services .integrations-strip-h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f0f6fc;
  margin: 0 0 1rem;
  font-weight: 600;
}
.page-services .integrations-strip-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #8b949e;
  line-height: 1.55;
  margin: 0;
}
.page-services .integrations-groups {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 1100px;
  margin-inline: auto;
}
.page-services .integration-group:nth-child(1) { grid-column: 1 / span 2; }
.page-services .integration-group:nth-child(2) { grid-column: 3 / span 2; }
.page-services .integration-group:nth-child(3) { grid-column: 5 / span 2; }
.page-services .integration-group:nth-child(4) { grid-column: 2 / span 2; }
.page-services .integration-group:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 900px) {
  .page-services .integrations-groups { grid-template-columns: repeat(2, 1fr); }
  .page-services .integration-group:nth-child(n) { grid-column: auto; }
}
@media (max-width: 600px) {
  .page-services .integrations-groups { grid-template-columns: 1fr; }
}
.page-services .integration-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-services .integration-group-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(38, 202, 200, 0.18);
}
.page-services .integration-group-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.page-services .integration-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(38, 202, 200, 0.18);
  border-radius: 999px;
  color: #e6edf3;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: visible;
  backdrop-filter: blur(10px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  min-width: 0;
}
.page-services .integration-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(38, 202, 200, 0.6);
  flex-shrink: 0;
}
.page-services .integration-pill:hover {
  border-color: rgba(38, 202, 200, 0.55);
  background: rgba(38, 202, 200, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(38, 202, 200, 0.12);
}
.page-services .integrations-strip-note {
  text-align: center;
  color: #6e7681;
  font-size: 0.9rem;
  margin: 0;
}

/* ── § 8 Qualification (fit test) ─────────────────────────────────── */
.page-services section[aria-label="Is this a fit for you?"]::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 700px;
  max-width: 90vw;
  background: radial-gradient(ellipse at center, rgba(38, 202, 200, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-services .qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-services .qualification-grid { grid-template-columns: 1fr; }
}
.page-services .qualification-card {
  background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.page-services .qualification-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}
.page-services .qualification-card--yes:hover { border-color: rgba(38, 202, 200, 0.4); }
.page-services .qualification-card--no:hover  { border-color: rgba(248, 113, 113, 0.35); }
.page-services .qualification-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-services .qualification-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.page-services .qualification-icon svg { width: 22px; height: 22px; }
.page-services .qualification-card--yes .qualification-icon {
  background: rgba(38, 202, 200, 0.12);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.3), 0 0 16px rgba(38, 202, 200, 0.25);
}
.page-services .qualification-card--no .qualification-icon {
  background: rgba(248, 113, 113, 0.10);
  color: #f87171;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.28);
}
.page-services .qualification-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b949e;
  margin: 0;
}
.page-services .qualification-card--yes .qualification-label { color: var(--accent); }
.page-services .qualification-card--no  .qualification-label { color: #f87171; }
.page-services .qualification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-services .qualification-list li {
  position: relative;
  padding-left: 1.7rem;
  padding-bottom: 1rem;
  color: #c9d1d9;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.6;
}
.page-services .qualification-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.page-services .qualification-card--yes .qualification-list li::before {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(38, 202, 200, 0.5);
}
.page-services .qualification-card--no .qualification-list li::before {
  background: #f87171;
  opacity: 0.7;
}

/* ── § 9 Pricing anchor ───────────────────────────────────────────── */
.page-services section[aria-label="Pricing"]::after {
  content: "";
  position: absolute;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  max-width: 80vw;
  background: radial-gradient(circle at center, rgba(38, 202, 200, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-services .pricing-anchor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .page-services .pricing-anchor-grid { grid-template-columns: 1fr; }
}
.page-services .pricing-anchor-item {
  background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
  position: relative;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.page-services .pricing-anchor-item:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 202, 200, 0.3);
}
.page-services .pricing-anchor-item--featured {
  background: linear-gradient(180deg, rgba(38, 202, 200, 0.08) 0%, #0d1117 100%);
  border-color: rgba(38, 202, 200, 0.4);
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.2), 0 12px 40px rgba(38, 202, 200, 0.15);
  transform: translateY(-6px);
}
.page-services .pricing-anchor-item--featured:hover {
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.35), 0 16px 50px rgba(38, 202, 200, 0.22);
}
.page-services .pricing-anchor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(38, 202, 200, 0.10);
  color: var(--accent);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.22);
}
.page-services .pricing-anchor-icon svg { width: 26px; height: 26px; }
.page-services .pricing-anchor-num {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: #f0f6fc;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
}
.page-services .pricing-anchor-item--featured .pricing-anchor-num {
  background: linear-gradient(135deg, var(--accent) 0%, #4dd9d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-services .pricing-anchor-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.page-services .pricing-anchor-body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #8b949e;
  margin: 0;
}

/* ── § 10 ROI Calculator ──────────────────────────────────────────── */
.page-services section[aria-label="ROI calculator"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 202, 200, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 202, 200, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.page-services .roi-calc {
  background: linear-gradient(180deg, #161b22 0%, #0a0e13 100%);
  border: 1px solid rgba(38, 202, 200, 0.18);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .page-services .roi-calc { grid-template-columns: 1fr; }
}
.page-services .roi-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.page-services .roi-calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-services .roi-calc-field span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b949e;
}
.page-services .roi-calc-field input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #f0f6fc;
  font-size: 1.05rem;
  font-weight: 500;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.page-services .roi-calc-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(38, 202, 200, 0.06);
  box-shadow: 0 0 0 3px rgba(38, 202, 200, 0.15);
}
.page-services .roi-calc-output {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
  background: rgba(38, 202, 200, 0.04);
  border: 1px solid rgba(38, 202, 200, 0.18);
  border-radius: 12px;
}
.page-services .roi-calc-output-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.page-services .roi-calc-output-num {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #4dd9d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 220ms ease;
}
.page-services .roi-calc-output-num.is-pulse {
  animation: roi-pulse 420ms ease;
}
@keyframes roi-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.page-services .roi-calc-output-note {
  font-size: 0.85rem;
  color: #8b949e;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

/* ── § 11 Trust badges ───────────────────────────────────────────── */
.page-services .trust-badges {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid rgba(38, 202, 200, 0.10);
  border-bottom: 1px solid rgba(38, 202, 200, 0.10);
}
.page-services .trust-badges-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 900px) {
  .page-services .trust-badges-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .page-services .trust-badges-inner { grid-template-columns: 1fr; }
}
.page-services .trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: border-color 220ms ease, transform 220ms ease;
}
.page-services .trust-badge:hover {
  border-color: rgba(38, 202, 200, 0.3);
  transform: translateY(-2px);
}
.page-services .trust-badge-icon {
  width: 34px; height: 34px;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(38, 202, 200, 0.5));
}
.page-services .trust-badge-title {
  color: #f0f6fc;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.page-services .trust-badge-sub {
  color: #8b949e;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Final CTA Band ──────────────────────────────────────────────── */
.page-services .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(38, 202, 200, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-services .cta-band-eyebrow { color: var(--accent); }
.page-services .cta-band-h2 { color: #f0f6fc; }
.page-services .cta-band-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
  position: relative;
}
.page-services .cta-band-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 202, 200, 0.4);
  background: linear-gradient(180deg, rgba(38, 202, 200, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(38, 202, 200, 0.15);
}
.page-services .cta-band-card--featured {
  border-color: rgba(38, 202, 200, 0.35);
  background: linear-gradient(180deg, rgba(38, 202, 200, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.20), 0 14px 36px rgba(38, 202, 200, 0.12);
}
.page-services .cta-band-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.page-services .cta-band-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(38, 202, 200, 0.12);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(38, 202, 200, 0.25);
  flex-shrink: 0;
}
.page-services .cta-band-mini-icon svg { width: 18px; height: 18px; }
.page-services .cta-band-title {
  color: #f0f6fc;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.page-services .cta-band-body {
  color: #8b949e;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.page-services .cta-band-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Phone card waveform */
.page-services .cta-band-waveform {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}
.page-services .cta-band-waveform span {
  display: inline-block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.85;
  height: 30%;
}
@media (prefers-reduced-motion: no-preference) {
  .page-services .cta-band-waveform span {
    animation: cta-wave 1.1s ease-in-out infinite;
  }
  .page-services .cta-band-waveform span:nth-child(1)  { animation-delay: -1.0s; }
  .page-services .cta-band-waveform span:nth-child(2)  { animation-delay: -0.9s; }
  .page-services .cta-band-waveform span:nth-child(3)  { animation-delay: -0.8s; }
  .page-services .cta-band-waveform span:nth-child(4)  { animation-delay: -0.7s; }
  .page-services .cta-band-waveform span:nth-child(5)  { animation-delay: -0.6s; }
  .page-services .cta-band-waveform span:nth-child(6)  { animation-delay: -0.5s; }
  .page-services .cta-band-waveform span:nth-child(7)  { animation-delay: -0.4s; }
  .page-services .cta-band-waveform span:nth-child(8)  { animation-delay: -0.3s; }
  .page-services .cta-band-waveform span:nth-child(9)  { animation-delay: -0.2s; }
  .page-services .cta-band-waveform span:nth-child(10) { animation-delay: -0.1s; }
  .page-services .cta-band-waveform span:nth-child(11) { animation-delay: 0s; }
  .page-services .cta-band-waveform span:nth-child(12) { animation-delay: -0.55s; }
}
@keyframes cta-wave {
  0%, 100% { height: 25%; opacity: 0.55; }
  50%      { height: 95%; opacity: 1; }
}

/* Phone CTA — pulsing live dot */
.page-services .cta-band-btn--live { position: relative; }
.page-services .cta-band-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(38, 202, 200, 0.6);
}
@media (prefers-reduced-motion: no-preference) {
  .page-services .cta-band-live-dot {
    animation: cta-live-pulse 1.6s ease-out infinite;
  }
}
@keyframes cta-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(38, 202, 200, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(38, 202, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 202, 200, 0); }
}

/* Book card — slot pill */
.page-services .cta-band-slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  background: rgba(38, 202, 200, 0.10);
  border: 1px solid rgba(38, 202, 200, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.page-services .cta-band-slot-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(38, 202, 200, 0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .page-services .cta-band-slot-dot {
    animation: cta-slot-blink 2.4s ease-in-out infinite;
  }
}
@keyframes cta-slot-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* Audit card — sparkline */
.page-services .cta-band-spark {
  width: 80px;
  height: 28px;
  color: var(--accent);
  filter: drop-shadow(0 0 4px rgba(38, 202, 200, 0.4));
}

