/* ═══════════════════════════════════════════════════════════════
   Workflow Autopilot — Dark Theme Design System
   Inspired by modern SaaS agency aesthetics
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --wa-black: #050505;
  --wa-bg: #0a0a0a;
  --wa-surface: #111113;
  --wa-surface-2: #18181b;
  --wa-surface-3: #1e1e22;
  --wa-border: #27272a;
  --wa-border-light: #333338;
  --wa-text: #fafafa;
  --wa-text-dim: #a1a1aa;
  --wa-text-muted: #71717a;
  --wa-purple: #814ac8;
  --wa-purple-light: #9d6dd7;
  --wa-purple-glow: rgba(129, 74, 200, 0.25);
  --wa-purple-subtle: rgba(129, 74, 200, 0.08);
  --wa-green: #22c55e;
  --wa-green-dim: rgba(34, 197, 94, 0.15);
  --wa-amber: #f59e0b;
  --wa-red: #ef4444;
  --wa-radius: 12px;
  --wa-radius-lg: 20px;
  --wa-radius-xl: 28px;
  --wa-radius-pill: 100px;
  --wa-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --wa-max-w: 1240px;
  --wa-font: 'Figtree', system-ui, -apple-system, sans-serif;
  --wa-mono: 'Fragment Mono', 'SF Mono', 'Fira Code', monospace;
  --wa-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Light Mode Variables ───────────────────────────────────────── */
[data-theme="light"] {
  --wa-black:          #f0f0f2;
  --wa-bg:             #f2f1ee;
  --wa-surface:        #ffffff;
  --wa-surface-2:      #f4f4f5;
  --wa-surface-3:      #e4e4e7;
  --wa-border:         #e4e4e7;
  --wa-border-light:   #d4d4d8;
  --wa-text:           #09090b;
  --wa-text-dim:       #3f3f46;
  --wa-text-muted:     #71717a;
  --wa-text-secondary: #52525b;
  --wa-purple:         #6d3db0;
  --wa-purple-light:   #814ac8;
  --wa-purple-glow:    rgba(109, 61, 176, 0.18);
  --wa-purple-subtle:  rgba(109, 61, 176, 0.07);
  --wa-green:          #16a34a;
  --wa-green-dim:      rgba(22, 163, 74, 0.12);
  --wa-amber:          #d97706;
  --wa-red:            #dc2626;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--wa-font);
  background: var(--wa-bg);
  color: var(--wa-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

::selection {
  background: var(--wa-purple);
  color: #fff;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--wa-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--wa-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-purple-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-purple);
  box-shadow: 0 0 8px var(--wa-purple-glow);
}

.section-desc {
  color: var(--wa-text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Canonical section head. Same shape as the homepage's .home-systems-head:
   label, title at 3rem, supporting line, left aligned. */
.section-header {
  max-width: 780px;
  margin-bottom: 2.5rem;
}
.section-header h1,
.section-header h2 {
  font-size: 3rem;
  line-height: 1.02;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-header .section-desc {
  margin: 1rem 0 0;
  max-width: 620px;
  font-size: 1.08rem;
}
/* Page heroes stay centered like the homepage hero, one step above a section title. */
.section-header.is-hero {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.is-hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.08; }
.section-header.is-hero .section-desc { margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  .section-header h1,
  .section-header h2 { font-size: 2.15rem; line-height: 1.08; }
}

/* ── Container ── */
.wa-container {
  width: 100%;
  max-width: var(--wa-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wa-section {
  padding: 6rem 0;
  position: relative;
}

.wa-section + .wa-section {
  border-top: 1px solid var(--wa-border);
}

/* ── Noise overlay ── */
.wa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--wa-noise);
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.wa-section > * { position: relative; z-index: 1; }

/* ── Navigation ── */
.wa-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--wa-border);
  transition: background var(--wa-transition);
}

.wa-nav-inner {
  max-width: var(--wa-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wa-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}
.wa-nav-logo img {
  height: 36px;
  width: auto;
}

.wa-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wa-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wa-text-dim);
  transition: color var(--wa-transition);
  position: relative;
}
.wa-nav-links a:hover,
.wa-nav-links a.active {
  color: var(--wa-text);
}
.wa-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wa-purple);
  transition: width var(--wa-transition);
}
.wa-nav-links a:hover::after,
.wa-nav-links a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.wa-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.wa-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wa-text);
  margin: 5px 0;
  transition: var(--wa-transition);
  border-radius: 2px;
}
.wa-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.wa-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.wa-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--wa-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--wa-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--wa-purple);
  color: #fff;
  box-shadow: 0 0 0 0 var(--wa-purple-glow);
}
.btn-primary:hover {
  background: var(--wa-purple-light);
  box-shadow: 0 8px 30px var(--wa-purple-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--wa-text);
  border: 1px solid var(--wa-border-light);
}
.btn-outline:hover {
  border-color: var(--wa-purple);
  color: var(--wa-purple-light);
  background: var(--wa-purple-subtle);
}

.btn-ghost {
  background: var(--wa-surface-2);
  color: var(--wa-text);
  border: 1px solid var(--wa-border);
}
.btn-ghost:hover {
  border-color: var(--wa-border-light);
  background: var(--wa-surface-3);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ── Hero ── */
.wa-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.wa-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--wa-purple-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wa-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}

.wa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wa-text-dim);
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.6s ease-out both;
}
.wa-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 8px var(--wa-green);
  animation: pulse 2s infinite;
}

.wa-hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s ease-out 0.1s both;
}
.wa-hero h1 .hero-accent {
  background: linear-gradient(135deg, var(--wa-purple-light), var(--wa-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wa-hero-sub {
  font-size: 1.15rem;
  color: var(--wa-text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
  animation: fadeSlideUp 0.6s ease-out 0.2s both;
}

.wa-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease-out 0.3s both;
}

/* ── Trust Bar ── */
.wa-trust {
  padding: 3rem 0;
}

.wa-trust-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--wa-text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.wa-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.45;
  transition: opacity var(--wa-transition);
}
.wa-trust-logos:hover { opacity: 0.7; }

.wa-trust-logos .trust-logo {
  font-family: var(--wa-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wa-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ── Card Grid ── */
.wa-grid {
  display: grid;
  gap: 1.5rem;
}
.wa-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wa-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wa-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Service Cards ── */
.service-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--wa-transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--wa-purple);
  box-shadow: 0 0 40px var(--wa-purple-glow);
  transform: translateY(-4px);
}

.service-card-mockup {
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.service-card-label {
  font-family: var(--wa-mono);
  font-size: 0.75rem;
  color: var(--wa-purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--wa-text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-tags,
.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.service-card-tags span,
.service-tags .tag {
  padding: 0.3rem 0.75rem;
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--wa-text-dim);
}

/* Service category label (used in HTML as .service-category) */
.service-category {
  font-family: var(--wa-mono);
  font-size: 0.72rem;
  color: var(--wa-purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}

/* Service feature list */
/* No flex:1. With the per-card button gone the list would stretch to fill the
   card and push the tags away from the bullets; any slack belongs at the
   bottom of the card instead. */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--wa-text-dim);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--wa-purple);
  font-size: 0.75rem;
  top: 0.05em;
}

/* ── Mockup internals ── */
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mock-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: var(--wa-surface-3);
  border-radius: 8px;
  font-size: 0.82rem;
}
.mock-list-item .mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-list-item .mock-name {
  flex: 1;
  margin-left: 0.75rem;
  color: var(--wa-text);
  font-weight: 500;
}
.mock-list-item .mock-meta {
  color: var(--wa-text-muted);
  font-size: 0.75rem;
}

.mock-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wa-text-dim);
}

.mock-progress {
  height: 6px;
  background: var(--wa-surface-3);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.mock-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--wa-purple), var(--wa-purple-light));
}

.mock-chat-bubble {
  background: var(--wa-surface-3);
  border-radius: 12px 12px 12px 4px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--wa-text-dim);
  max-width: 90%;
  line-height: 1.5;
}
.mock-chat-bubble.outgoing {
  background: var(--wa-purple);
  color: #fff;
  border-radius: 12px 12px 4px 12px;
  margin-left: auto;
}

.mock-code {
  font-family: var(--wa-mono);
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--wa-text-muted);
}
.mock-code .code-keyword { color: var(--wa-purple-light); }
.mock-code .code-string { color: var(--wa-green); }
.mock-code .code-comment { color: var(--wa-text-muted); opacity: 0.6; }

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--wa-transition);
}
.process-step:hover {
  border-color: var(--wa-border-light);
}

.process-step-number {
  font-family: var(--wa-mono);
  font-size: 0.75rem;
  color: var(--wa-purple-light);
  margin-bottom: 0.5rem;
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--wa-text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-step-visual {
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius);
  padding: 1rem;
  margin-top: 1.5rem;
  min-height: 100px;
}

/* ── Case Studies Grid ── */
.cases-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.case-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  overflow: hidden;
  transition: all var(--wa-transition);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  border-color: var(--wa-purple);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

.case-card-img {
  height: 180px;
  background: var(--wa-surface-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-industry {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--wa-radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wa-purple-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-card-body {
  padding: 1.5rem;
  flex: 1;
}
.case-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.case-card-body p {
  color: var(--wa-text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}

.case-card-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wa-border);
}
.case-card-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--wa-purple-light);
}
.case-card-stat span {
  font-size: 0.75rem;
  color: var(--wa-text-muted);
}

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
  transition: all var(--wa-transition);
}
.benefit-card:hover {
  border-color: var(--wa-border-light);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--wa-purple-subtle);
  border: 1px solid rgba(129, 74, 200, 0.15);
  border-radius: var(--wa-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.benefit-card p {
  color: var(--wa-text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.pricing-toggle-inner {
  display: flex;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-pill);
  padding: 4px;
  gap: 2px;
}
.pricing-toggle-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--wa-text-dim);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--wa-radius-pill);
  transition: all var(--wa-transition);
  border: none;
}
.pricing-toggle-btn.active {
  background: var(--wa-purple);
  color: #fff;
}
.pricing-toggle-btn:hover:not(.active) {
  color: var(--wa-text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--wa-transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--wa-purple);
  box-shadow: 0 0 60px var(--wa-purple-glow);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--wa-radius-lg);
  background: linear-gradient(180deg, var(--wa-purple), transparent 60%);
  z-index: -1;
  opacity: 0.15;
}
.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wa-purple);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: var(--wa-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-tier {
  font-family: var(--wa-mono);
  font-size: 0.78rem;
  color: var(--wa-purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--wa-text-muted);
}

.pricing-desc {
  color: var(--wa-text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-divider {
  border: none;
  height: 1px;
  background: var(--wa-border);
  margin: 1.5rem 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--wa-text-dim);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--wa-purple-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--wa-amber);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wa-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa-surface-3);
  border: 2px solid var(--wa-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--wa-purple-light);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--wa-text-muted);
}

/* ── FAQ ── */
.faq-list {
  max-width: 770px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius);
  overflow: hidden;
  transition: border-color var(--wa-transition);
}
.faq-item.open {
  border-color: var(--wa-border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--wa-text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--wa-transition);
}
.faq-question:hover { color: var(--wa-purple-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--wa-text-dim);
  transition: all var(--wa-transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--wa-purple);
  border-color: var(--wa-purple);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--wa-text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Resources */
.resources-hero {
  padding-top: calc(72px + 5rem);
  padding-bottom: 4rem;
}

.resources-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 4rem;
  align-items: center;
}

.resource-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.resource-featured {
  min-height: 360px;
  background:
    linear-gradient(145deg, var(--wa-purple-subtle), transparent 58%),
    var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: all var(--wa-transition);
}

.resource-featured::before {
  content: '';
  position: absolute;
  inset: 1.25rem 1.25rem auto auto;
  width: 118px;
  height: 154px;
  border: 1px solid var(--wa-border-light);
  border-radius: var(--wa-radius);
  background:
    linear-gradient(var(--wa-border-light), var(--wa-border-light)) 22px 34px / 58px 2px no-repeat,
    linear-gradient(var(--wa-border-light), var(--wa-border-light)) 22px 52px / 74px 2px no-repeat,
    linear-gradient(var(--wa-border-light), var(--wa-border-light)) 22px 70px / 46px 2px no-repeat,
    var(--wa-surface-2);
  opacity: 0.58;
  transform: rotate(4deg);
}

.resource-featured:hover,
.resource-row:hover {
  border-color: var(--wa-purple);
  box-shadow: 0 18px 50px var(--wa-purple-glow);
  transform: translateY(-3px);
}

.resource-type {
  font-family: var(--wa-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--wa-purple-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.resource-featured h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 430px;
  margin-bottom: 1rem;
}

.resource-featured p {
  color: var(--wa-text-dim);
  max-width: 460px;
}

.resource-open {
  color: var(--wa-purple-light);
  font-weight: 700;
  margin-top: 1.5rem;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 940px;
  margin: 0 auto;
}

.resource-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius);
  transition: all var(--wa-transition);
}

.resource-row-mark {
  font-family: var(--wa-mono);
  color: var(--wa-purple-light);
  font-size: 0.78rem;
}

.resource-row-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.resource-row-main strong {
  font-size: 1.02rem;
  color: var(--wa-text);
}

.resource-row-main span {
  color: var(--wa-text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.resource-row-action {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--wa-purple-light);
  white-space: nowrap;
}

/* ── CTA Banner ── */
.wa-cta-banner {
  text-align: center;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-xl);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.wa-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--wa-purple-glow) 0%, transparent 65%);
  pointer-events: none;
}
.wa-cta-banner > * { position: relative; z-index: 1; }

.wa-cta-banner h2 {
  max-width: 600px;
  margin: 0 auto 1rem;
}
.wa-cta-banner p {
  color: var(--wa-text-dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.wa-cta-banner .home-final-exit {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--wa-text-dim);
}
.wa-cta-banner .home-final-exit a {
  color: var(--wa-purple);
  text-decoration: underline;
}
.wa-cta-banner .home-cta-steps {
  list-style: none;
  counter-reset: wa-step;
  margin: 1.75rem auto 2rem;
  padding: 0;
  max-width: 520px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.wa-cta-banner .home-cta-steps li {
  counter-increment: wa-step;
  position: relative;
  padding-left: 2.4rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--wa-text-dim);
}
.wa-cta-banner .home-cta-steps li::before {
  content: counter(wa-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--wa-purple);
  color: #fff;
  font-family: var(--wa-mono);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-cta-banner .home-cta-steps strong {
  color: var(--wa-text);
}

/* ── Two-up outcome cards (shared by /call and /flight-plan) ── */
.what-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .what-next-grid { grid-template-columns: 1fr; }
}
.what-next-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: 12px;
  padding: 2rem;
}
.what-next-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.what-next-card p {
  color: var(--wa-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
/* Three-up variant for the Flight Plan deliverables */
.what-next-grid.is-three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .what-next-grid.is-three { grid-template-columns: 1fr; }
}
.what-next-card p:last-child { margin-bottom: 0; }

/* ── Testimonials (shared by /call and the homepage proof section) ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.call-testimonial {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.call-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wa-surface-2);
  object-fit: cover;
  margin-bottom: 1rem;
}
.call-testimonial blockquote {
  font-size: 0.88rem;
  color: var(--wa-text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1rem;
}
.call-testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
}
.call-testimonial cite strong {
  display: block;
  color: var(--wa-text);
  font-size: 0.88rem;
}
.call-testimonial cite span {
  color: var(--wa-purple);
}

/* ── Footer ── */
.wa-footer {
  border-top: 1px solid var(--wa-border);
  padding: 4rem 0 2rem;
}

.wa-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.wa-footer-brand p {
  color: var(--wa-text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.6;
}

.wa-footer-newsletter {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.wa-footer-newsletter input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-pill);
  color: var(--wa-text);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--wa-font);
}
.wa-footer-newsletter input::placeholder {
  color: var(--wa-text-muted);
}
.wa-footer-newsletter input:focus {
  border-color: var(--wa-purple);
}

.wa-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--wa-text);
}
.wa-footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--wa-text-dim);
  transition: color var(--wa-transition);
}
.wa-footer-col a:hover {
  color: var(--wa-purple-light);
}

.wa-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--wa-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--wa-text-muted);
}

/* ── Contact / Cal embed ── */
.cal-embed-wrapper {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 1.5rem;
  min-height: 500px;
  overflow: hidden;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.contact-info-card .contact-icon {
  width: 48px;
  height: 48px;
  background: var(--wa-purple-subtle);
  border-radius: var(--wa-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}
.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.contact-info-card p, .contact-info-card a {
  color: var(--wa-text-dim);
  font-size: 0.88rem;
}

/* ── About Page ── */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
}
.about-value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.about-value-card p {
  color: var(--wa-text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-process-step {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 2rem;
  text-align: center;
}
.about-process-step .step-num {
  font-family: var(--wa-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wa-purple);
  margin-bottom: 0.75rem;
}
.about-process-step h3 { margin-bottom: 0.6rem; }
.about-process-step p {
  color: var(--wa-text-dim);
  font-size: 0.9rem;
}

/* ── Blog & Case Study listing (dark) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  overflow: hidden;
  transition: all var(--wa-transition);
  display: block;
}
.blog-card:hover {
  border-color: var(--wa-border-light);
  transform: translateY(-2px);
}

.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body .blog-date {
  font-family: var(--wa-mono);
  font-size: 0.75rem;
  color: var(--wa-text-muted);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.blog-card-body p {
  color: var(--wa-text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}
.blog-card-body .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--wa-purple-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--wa-transition);
}
.blog-card:hover .blog-read-more { gap: 0.6rem; }

/* ── Animations ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wa-grid-4, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: span 2; }
  .wa-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .wa-nav-links { display: none; }
  .wa-nav-toggle { display: block; }

  .wa-nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--wa-bg);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--wa-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  }
  .wa-nav-links.mobile-open a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--wa-border);
    font-size: 1rem;
    color: var(--wa-text);
    font-weight: 500;
  }
  .wa-nav-links.mobile-open a:hover {
    color: var(--wa-purple);
  }

  .wa-grid-2, .wa-grid-3, .benefits-grid, .testimonials-grid,
  .process-grid, .about-values, .about-process-row, .resources-hero-grid {
    grid-template-columns: 1fr;
  }

  .resource-featured {
    min-height: 300px;
  }

  .resource-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .resource-row-action {
    justify-self: start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card:last-child { grid-column: auto; }

  .wa-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wa-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .wa-section { padding: 4rem 0; }
  .wa-hero-content { padding: 2.5rem 0; }
  .wa-hero-actions { flex-direction: column; }
  .wa-hero-actions .btn { width: 100%; }

  .wa-cta-banner { padding: 3rem 1.5rem; }

  .cases-scroll { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .wa-trust-logos { gap: 1.5rem; }
  .wa-trust-logos .trust-logo { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════
   Light Mode Component Overrides
   ═══════════════════════════════════════════════════════════════ */

/* Hero: soft lavender instead of near-black gradient */
[data-theme="light"] .wa-hero {
  background: linear-gradient(135deg, #f0ebff 0%, #e8d5ff 40%, #f5f0ff 100%) !important;
}

/* Nav: lighter blur backdrop */
/* Footer: light background + logo de-invert */
/* The footer is the same on every page. It redefines the light tokens on
   itself, so every rule inside it resolves light even on /roi, which forces
   the dark theme for its calculator. */
.wa-footer {
  --wa-bg:             #f2f1ee;
  --wa-surface:        #ffffff;
  --wa-surface-2:      #f4f4f5;
  --wa-border:         #e4e4e7;
  --wa-border-light:   #d4d4d8;
  --wa-text:           #09090b;
  --wa-text-dim:       #3f3f46;
  --wa-text-muted:     #71717a;
  --wa-text-secondary: #52525b;
  --wa-purple:         #6d3db0;
  --wa-purple-light:   #814ac8;
  background: var(--wa-bg);
  border-top-color: var(--wa-border);
}
.wa-footer img,
.wa-footer-brand img {
  filter: none !important;
}

/* Hero badge */
[data-theme="light"] .wa-hero-badge {
  background: rgba(109, 61, 176, 0.09);
  border-color: rgba(109, 61, 176, 0.22);
  color: var(--wa-purple);
}

/* Trust bar */
[data-theme="light"] .wa-trust {
  background: var(--wa-surface-2);
}

/* Pricing featured card */
[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(145deg, rgba(109,61,176,0.07), rgba(109,61,176,0.03));
}

/* Code/mono mockups */
[data-theme="light"] .mock-code {
  background: var(--wa-surface-2);
  border-color: var(--wa-border);
}

/* ═══════════════════════════════════════════════════════════════
   Theme Toggle Button
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   FIX 1 — Nav logo: white bg on anchor (not img) — no size change
   ═══════════════════════════════════════════════════════════════ */
[data-theme="dark"] .wa-nav-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 4px 10px;
  opacity: 1;
  isolation: isolate;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 2 — Button contrast: force white text on primary buttons
   ═══════════════════════════════════════════════════════════════ */
.btn-primary,
a.btn-primary { color: #ffffff !important; }

/* ═══════════════════════════════════════════════════════════════
   FIX — Trust label centering (services page uses .trust-label)
   ═══════════════════════════════════════════════════════════════ */
.trust-label {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--wa-text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

[data-theme="dark"] .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] .btn-outline:hover {
  border-color: var(--wa-purple-light);
}

/* ═══════════════════════════════════════════════════════════════
   FIX 6 — Tech belt logos (call page)
   ═══════════════════════════════════════════════════════════════ */
.tech-belt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.tech-belt img {
  height: 30px;
  width: auto;
  opacity: 0.75;
}
/* Light mode: make white/light logos visible as dark gray */
[data-theme="light"] .tech-belt img {
  filter: brightness(0) saturate(0);
  opacity: 0.45;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 7 — Legal footer text
   ═══════════════════════════════════════════════════════════════ */
.wa-footer-legal {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--wa-text-muted);
  line-height: 1.5;
  padding-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 9 — Trust logo text pill badges (services page)
   ═══════════════════════════════════════════════════════════════ */
.trust-logo-text {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wa-text-dim);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 10 — Services 2-column grid
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ROI Calculator v3 — Unified card on dark page
   ═══════════════════════════════════════════════════════════════ */

/* ---- Dark page shell ---- */
body.roi-dark-page {
  background: #0a0a0a;
}

/* Kill sitewide section-top border on /roi (user wants no horizontal lines) */
body.roi-dark-page .wa-section + .wa-section {
  border-top: none;
}

/* Tighten the gap between calculator card and CTA on /roi */
body.roi-dark-page .wa-section {
  padding: 3rem 0;
}
body.roi-dark-page .wa-cta-banner {
  margin-top: 0;
}
/* Remove the dark-theme white-box wrapper on the nav logo (we now have a light nav bg) */
body.roi-dark-page .wa-nav .wa-nav-logo {
  background: transparent;
  padding: 0;
}
body.roi-dark-page .section-header h1,
body.roi-dark-page .section-header h2 {
  color: #fafafa;
}
body.roi-dark-page .section-header .section-desc {
  color: #a1a1aa;
}

/* Minimal nav variant (logo + Book a Call only) */
/* ---- Calculator card shell (light surface on dark page) ---- */
.roi-card-shell {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.75rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .roi-card-shell {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

/* ---- Zone labels ---- */
.roi-zone-label {
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #71717a;
  margin-bottom: 1.25rem;
}
.roi-zone-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #814ac8;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ---- Input grid (inside calculator card) ---- */
.roi-card-shell .roi-input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: none;
  margin: 0;
}
@media (max-width: 700px) {
  .roi-card-shell .roi-input-grid { grid-template-columns: 1fr; }
}

/* Input "card" becomes a transparent wrapper — no border/bg */
.roi-card-shell .roi-input-card {
  background: transparent;
  border: none;
  padding: 0;
  transition: none;
}
.roi-card-shell .roi-input-card label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #09090b;
  margin-bottom: 0.35rem;
}
.roi-card-shell .roi-input-card label i {
  color: #814ac8;
  font-size: 0.85rem;
  width: 1.1rem;
  text-align: center;
}
.roi-card-shell .roi-input-card .roi-helper {
  font-size: 0.78rem;
  color: #71717a;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

/* Input fields on light bg */
.roi-card-shell .roi-input-card input[type="number"],
.roi-card-shell .roi-input-card select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  color: #09090b;
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 1.05rem;
  transition: border-color 0.2s ease;
  -moz-appearance: textfield;
  box-sizing: border-box;
}
.roi-card-shell .roi-input-card input[type="number"]::-webkit-inner-spin-button,
.roi-card-shell .roi-input-card input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
  height: 1.8rem;
}
.roi-card-shell .roi-input-card input[type="number"]:focus,
.roi-card-shell .roi-input-card select:focus {
  outline: none;
  border-color: #814ac8;
}
.roi-card-shell .roi-input-card select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371717a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
.roi-card-shell .roi-input-card select option {
  background: #ffffff;
  color: #09090b;
}

/* Currency prefix on light bg */
.roi-card-shell .roi-currency-wrap { position: relative; }
.roi-card-shell .roi-currency-wrap::before {
  content: '$';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 1.05rem;
  color: #71717a;
  pointer-events: none;
}
.roi-card-shell .roi-currency-wrap input[type="number"] {
  padding-left: 1.8rem;
}

/* Range slider on light bg */
.roi-card-shell .roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.roi-card-shell .roi-slider-wrap input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e4e4e7;
  border-radius: 3px;
  outline: none;
}
.roi-card-shell .roi-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #814ac8;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #814ac8;
}
.roi-card-shell .roi-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #814ac8;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #814ac8;
}
.roi-card-shell .roi-slider-val {
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: #09090b;
  min-width: 2.5rem;
  text-align: right;
}

/* ---- Output grid (inside calculator card) ---- */
.roi-card-shell .roi-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 0;
}
@media (max-width: 700px) {
  .roi-card-shell .roi-output-grid { grid-template-columns: 1fr; }
}

/* Output cards — display only, no interactivity */
.roi-card-shell .roi-card {
  background: #f4f4f5;
  border: none;
  border-radius: 20px;
  padding: 1.75rem;
  cursor: default;
  text-align: left;
  transition: none;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  overflow: hidden;
}
.roi-card-shell .roi-card:hover {
  background: #f4f4f5;
  transform: none;
  box-shadow: none;
}

/* Card icon on light bg */
.roi-card-shell .roi-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(129, 74, 200, 0.1);
  color: #814ac8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Big number on light bg */
.roi-card-shell .roi-card-value {
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: #09090b;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  display: inline-block;
  min-height: 1em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
  .roi-card-shell .roi-card-value { font-size: 2.2rem; }
}

.roi-card-shell .roi-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #09090b;
  margin-bottom: 0.4rem;
}
.roi-card-shell .roi-card-sub {
  font-size: 0.82rem;
  color: #52525b;
  line-height: 1.5;
}

/* Scramble state — light bg variant */
.roi-card-shell .roi-card-value.is-scrambling {
  color: #a1a1aa;
}
.roi-card-shell .roi-card-value.is-resolving {
  color: #09090b;
}
@media (prefers-reduced-motion: reduce) {
  .roi-card-shell .roi-card-value.is-scrambling,
  .roi-card-shell .roi-card-value.is-resolving {
    color: #09090b;
  }
}

/* ---- Output card drill-down (click to expand math) ---- */

/* Restore interactivity on output cards */
.roi-card-shell .roi-card {
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.roi-card-shell .roi-card:hover {
  background: #eeeef0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(129, 74, 200, 0.12);
}

/* "See the math →" cue at bottom-right of each card */
.roi-card-cue {
  margin-top: auto;
  padding-top: 1rem;
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #71717a;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}
.roi-card-shell .roi-card:hover .roi-card-cue {
  color: #814ac8;
}

/* Expanded content hidden by default */
.roi-card-expanded {
  display: none;
}

/* When a card is active, it fills the grid; others hide */
.roi-card-shell .roi-output-grid.has-expanded .roi-card:not(.is-active) {
  display: none;
}
.roi-card-shell .roi-output-grid.has-expanded .roi-card.is-active {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  cursor: default;
  min-height: 340px;
  background: #f4f4f5;
  transform: none;
  box-shadow: none;
  animation: roiCardExpand 0.3s ease;
}
.roi-card-shell .roi-output-grid.has-expanded .roi-card.is-active:hover {
  background: #f4f4f5;
  transform: none;
  box-shadow: none;
}
.roi-card-shell .roi-output-grid.has-expanded .roi-card.is-active .roi-card-cue {
  display: none;
}
.roi-card-shell .roi-output-grid.has-expanded .roi-card.is-active .roi-card-expanded {
  display: block;
  animation: roiFadeIn 0.4s ease 0.1s both;
}

@keyframes roiCardExpand {
  from { opacity: 0.5; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes roiFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Expanded inner — no border, use spacing only */
.roi-card-expanded-body {
  margin-top: 1.5rem;
  padding-top: 0;
}
.roi-card-expanded-body p {
  color: #3f3f46;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
.roi-card-expanded-body strong {
  color: #09090b;
  font-weight: 600;
}

/* Math block on light bg */
.roi-math-lines {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 0.88rem;
  color: #3f3f46;
  line-height: 1.8;
  margin: 1rem 0;
  overflow-x: auto;
}
.roi-math-lines > span,
.roi-math-lines > strong {
  display: block;
}
.roi-math-lines > strong {
  color: #09090b;
  font-weight: 600;
  margin-top: 0.75rem;
}
.roi-math-lines > strong:first-child { margin-top: 0; }
.roi-math-lines .roi-math-result {
  color: #814ac8;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Pill back button — upgraded from v2 */
.roi-card-close {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.1rem;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 100px;
  color: #3f3f46;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.roi-card-close:hover {
  border-color: #814ac8;
  color: #814ac8;
}

/* ---- CTA banner overrides on dark page ---- */
body.roi-dark-page .wa-cta-banner {
  background: linear-gradient(135deg, #814ac8 0%, #6d3db0 100%);
  color: #ffffff;
  text-align: center;
  padding: 3rem 2.5rem;
  border-radius: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
body.roi-dark-page .wa-cta-banner h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}
body.roi-dark-page .wa-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.65;
}
/* Higher-specificity + !important to beat the global .btn-primary !important rule */
body.roi-dark-page .wa-cta-banner .btn.btn-primary,
body.roi-dark-page .wa-cta-banner a.btn.btn-primary {
  background: #ffffff !important;
  color: #09090b !important;
  border: none;
}
body.roi-dark-page .wa-cta-banner .btn.btn-primary:hover,
body.roi-dark-page .wa-cta-banner a.btn.btn-primary:hover {
  background: #f4f4f5 !important;
  color: #09090b !important;
  transform: translateY(-1px);
}
body.roi-dark-page .wa-cta-banner p:last-child {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.82rem;
}

/* ---- Small disclaimer ---- */
.roi-disclaimer-small {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

/* ---- 3-step hero instructions ---- */
.roi-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  max-width: 770px;
}
.roi-steps li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
}
.roi-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(129, 74, 200, 0.2);
  color: #b58ce0;
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .roi-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
  }
  .roi-steps li { font-size: 0.95rem; }
}

/* ---- Industry preset tabs ---- */
.roi-preset-intro {
  font-family: 'Fragment Mono', 'SF Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
  margin-bottom: 0.75rem;
}
.roi-preset-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: none;
}
.roi-preset-tab {
  padding: 0.5rem 1.1rem;
  background: transparent;
  border: 1px solid #e4e4e7;
  border-radius: 100px;
  color: #52525b;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.roi-preset-tab:hover {
  border-color: #814ac8;
  color: #814ac8;
}
.roi-preset-tab.is-active {
  background: #814ac8;
  border-color: #814ac8;
  color: #ffffff;
}
.roi-preset-tab.is-active:hover {
  background: #6d3db0;
  color: #ffffff;
}
@media (max-width: 480px) {
  .roi-preset-tab {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-size: 0.82rem;
  }
}

/* ---- Scroll-to-CTA link in drill-down cards ---- */
.roi-card-fix-link {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  color: #814ac8;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid #814ac8;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.roi-card-fix-link:hover {
  color: #6d3db0;
  border-color: #6d3db0;
}

/* Smooth scrolling for the anchor link */
html {
  scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════════════════════════
   /roadmap/ lead magnet pages
   ═══════════════════════════════════════════════════════════════ */

body.roadmap-page {
	background: #0a0a0a;
	margin: 0;
}

/* Floating "back to home" pill */
.roadmap-back {
	position: fixed;
	top: 1.25rem;
	left: 1.25rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	text-decoration: none;
	padding: 0.4rem 0.85rem;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: color 0.2s ease, background 0.2s ease;
	z-index: 10;
}
.roadmap-back:hover {
	color: #fafafa;
	background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 640px) {
	.roadmap-back {
		top: 1rem;
		left: 1rem;
		font-size: 0.78rem;
		padding: 0.35rem 0.7rem;
	}
}

/* Page wrapper */
.roadmap-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 3rem 1.5rem 4rem;
	text-align: center;
}
@media (max-width: 640px) {
	.roadmap-wrap { padding: 2rem 1rem 3rem; }
}

/* Centered logo at top */
.roadmap-logo {
	display: inline-block;
	margin-bottom: 2.5rem;
}
.roadmap-logo img {
	height: 40px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity 0.2s ease;
}
.roadmap-logo:hover img { opacity: 1; }
@media (max-width: 640px) {
	.roadmap-logo { margin-bottom: 1.75rem; }
	.roadmap-logo img { height: 32px; }
}

/* Hero */
.roadmap-wrap h1 {
	font-size: 2.5rem;
	margin: 0 0 1rem 0;
	color: #fafafa;
	font-weight: 700;
	line-height: 1.15;
}
.roadmap-subtitle {
	font-size: 1.05rem;
	color: #a1a1aa;
	max-width: 560px;
	margin: 0 auto 2.5rem;
	line-height: 1.6;
}
@media (max-width: 640px) {
	.roadmap-wrap h1 { font-size: 1.95rem; }
	.roadmap-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
}

/* "What's inside" bullets */
.roadmap-bullets {
	list-style: none;
	padding: 0;
	margin: 0 auto 2.5rem;
	max-width: 560px;
	text-align: left;
}
.roadmap-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: #d4d4d8;
	font-size: 0.98rem;
	line-height: 1.55;
	padding: 0.55rem 0;
}
.roadmap-bullets li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #814ac8;
	flex-shrink: 0;
	margin-top: 0.55rem;
}
@media (max-width: 640px) {
	.roadmap-bullets { margin-bottom: 2rem; }
	.roadmap-bullets li { font-size: 0.92rem; }
}

/* Form */
.roadmap-form {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 2rem 1.75rem;
	max-width: 560px;
	margin: 0 auto;
	text-align: left;
}
@media (max-width: 640px) {
	.roadmap-form { padding: 1.5rem 1.25rem; }
}

.roadmap-form-field { margin-bottom: 1rem; }
.roadmap-form-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #fafafa;
	margin-bottom: 0.4rem;
}
.roadmap-form-field .roadmap-helper {
	font-size: 0.78rem;
	color: #a1a1aa;
	margin: 0 0 0.55rem 0;
	line-height: 1.45;
}

.roadmap-form input[type="email"],
.roadmap-form input[type="tel"],
.roadmap-form select {
	width: 100%;
	padding: 0.75rem 0.9rem;
	background: #18181b;
	border: 1px solid #27272a;
	border-radius: 10px;
	color: #fafafa;
	font-family: 'Figtree', system-ui, sans-serif;
	font-size: 0.95rem;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}
.roadmap-form input::placeholder { color: #71717a; }
.roadmap-form input:focus,
.roadmap-form select:focus {
	outline: none;
	border-color: #814ac8;
}
.roadmap-form input:disabled,
.roadmap-form select:disabled,
.roadmap-form button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Honeypot */
.roadmap-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.roadmap-submit {
	width: 100%;
	padding: 0.85rem 1rem;
	background: #814ac8;
	color: #ffffff !important;
	border: none;
	border-radius: 10px;
	font-family: 'Figtree', system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 0.5rem;
	transition: background 0.2s ease;
}
.roadmap-submit:hover:not(:disabled) { background: #6d3db0; }

.roadmap-consent {
	font-size: 0.78rem;
	color: #a1a1aa;
	margin-top: 1rem;
	line-height: 1.55;
}
.roadmap-consent a {
	color: #b58ce0;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.roadmap-consent a:hover { color: #d4b5ff; }

.roadmap-error {
	font-size: 0.85rem;
	color: #ef4444;
	margin: 0.75rem 0 0 0;
	line-height: 1.45;
}

/* Success state (replaces form via JS) */
.roadmap-success {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}
.roadmap-success-icon {
	font-size: 2rem;
	color: #22c55e;
	margin-bottom: 1rem;
}
.roadmap-success h3 {
	font-size: 1.4rem;
	color: #fafafa;
	margin: 0 0 0.75rem 0;
	font-weight: 600;
}
.roadmap-success p {
	color: #a1a1aa;
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 0 0 0.75rem 0;
}
.roadmap-success p:last-child { margin-bottom: 0; }
.roadmap-success strong { color: #fafafa; }

/* Hub page: 2x2 industry-preview grid */
.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	max-width: 720px;
	margin: 0 auto 3rem;
}
@media (max-width: 640px) {
	.roadmap-grid { grid-template-columns: 1fr; }
}
.roadmap-grid-card {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 14px;
	padding: 1.25rem 1.4rem;
	text-decoration: none;
	color: inherit;
	display: block;
	transition: border-color 0.2s ease, transform 0.2s ease;
	text-align: left;
}
.roadmap-grid-card:hover {
	border-color: #814ac8;
	transform: translateY(-2px);
}
.roadmap-grid-card-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fafafa;
	margin: 0 0 0.35rem 0;
}
.roadmap-grid-card-desc {
	font-size: 0.85rem;
	color: #a1a1aa;
	margin: 0;
	line-height: 1.5;
}

/* Top-right "Book a Call" button (kept as escape hatch on /roadmap/ pages) */
.roadmap-topcta {
	position: fixed;
	top: 1.25rem;
	right: 1.25rem;
	z-index: 10;
}
@media (max-width: 640px) {
	.roadmap-topcta { top: 1rem; right: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   /roadmap/ AI stage quiz
   ═══════════════════════════════════════════════════════════════ */

.roadmap-wrap-wide { max-width: 780px; }

/* Progress */
.quiz-progress {
	max-width: 560px;
	margin: 0 auto 1.5rem;
}
.quiz-progress-bar {
	height: 4px;
	background: #27272a;
	border-radius: 100px;
	overflow: hidden;
}
.quiz-progress-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: #814ac8;
	border-radius: 100px;
	transition: width 0.3s ease;
}
.quiz-progress-label {
	font-size: 0.78rem;
	color: #71717a;
	margin: 0.55rem 0 0 0;
	letter-spacing: 0.02em;
}

/* Card */
.quiz-card {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 2rem 1.75rem;
	max-width: 560px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}
@media (max-width: 640px) {
	.quiz-card { padding: 1.5rem 1.25rem; }
}

.quiz-back {
	background: none;
	border: none;
	color: #71717a;
	font-family: 'Figtree', system-ui, sans-serif;
	font-size: 0.82rem;
	padding: 0;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: color 0.2s ease;
}
.quiz-back:hover { color: #d4d4d8; }

.quiz-question {
	font-size: 1.3rem;
	font-weight: 600;
	color: #fafafa;
	margin: 0 0 0.5rem 0;
	line-height: 1.35;
}
.quiz-helper {
	font-size: 0.88rem;
	color: #a1a1aa;
	margin: 0 0 1.25rem 0;
	line-height: 1.5;
}
.quiz-question + .quiz-options { margin-top: 1.25rem; }

/* Options */
.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.quiz-option {
	width: 100%;
	text-align: left;
	padding: 0.9rem 1.1rem;
	background: #18181b;
	border: 1px solid #27272a;
	border-radius: 10px;
	color: #e4e4e7;
	font-family: 'Figtree', system-ui, sans-serif;
	font-size: 0.95rem;
	line-height: 1.45;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.quiz-option:hover {
	border-color: #814ac8;
	background: #1c1c20;
	transform: translateX(2px);
}
.quiz-option.is-selected {
	border-color: #814ac8;
	background: rgba(129, 74, 200, 0.12);
	color: #fafafa;
}

/* Inputs and selects inside the stepped card */
.quiz-card input[type="text"],
.quiz-card input[type="email"],
.quiz-card input[type="tel"],
.quiz-card select {
	width: 100%;
	padding: 0.75rem 0.9rem;
	background: #18181b;
	border: 1px solid #27272a;
	border-radius: 10px;
	color: #fafafa;
	font-family: 'Figtree', system-ui, sans-serif;
	font-size: 0.95rem;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}
.quiz-card input::placeholder { color: #71717a; }
.quiz-card input:focus,
.quiz-card select:focus {
	outline: none;
	border-color: #814ac8;
}
.quiz-card input:disabled,
.quiz-card select:disabled,
.quiz-card button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
/* Step 4 stacks three labelled selects, so give the labels more room */
.quiz-screen[data-step="4"] .roadmap-form-field { margin-bottom: 1.35rem; }
.quiz-screen[data-step="4"] label { line-height: 1.4; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════════════
   /roadmap/result/
   ═══════════════════════════════════════════════════════════════ */

.result-eyebrow {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #814ac8;
	margin: 0 0 0.75rem 0;
	font-weight: 600;
}

.result-block {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 1.75rem;
	margin: 0 auto 1.25rem;
	max-width: 640px;
	text-align: left;
}
@media (max-width: 640px) {
	.result-block { padding: 1.35rem 1.15rem; }
}
.result-block h2 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #71717a;
	margin: 0 0 0.85rem 0;
	font-weight: 600;
}
.result-block p {
	color: #d4d4d8;
	font-size: 0.98rem;
	line-height: 1.65;
	margin: 0 0 0.85rem 0;
}
.result-block p:last-child { margin-bottom: 0; }

.result-block-accent { border-color: #814ac8; }

.result-constraint {
	font-size: 1.15rem !important;
	font-weight: 600;
	color: #fafafa !important;
	margin-bottom: 0.5rem !important;
}
.result-quote {
	font-style: italic;
	color: #a1a1aa !important;
	border-left: 3px solid #814ac8;
	padding-left: 0.9rem;
	margin-bottom: 1rem !important;
}
.result-timesink {
	color: #a1a1aa !important;
	font-size: 0.9rem !important;
}

/* Ladder */
.result-ladder {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}
.result-ladder-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.7rem 0.85rem;
	border-radius: 10px;
	border: 1px solid transparent;
	position: relative;
}
.result-ladder-item.is-current {
	background: rgba(129, 74, 200, 0.12);
	border-color: #814ac8;
}
.result-ladder-num {
	font-family: 'Fragment Mono', monospace;
	font-size: 0.85rem;
	color: #71717a;
	flex-shrink: 0;
	padding-top: 0.15rem;
}
.result-ladder-item.is-current .result-ladder-num { color: #b58ce0; }
.result-ladder-body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	flex: 1;
	min-width: 0;
}
.result-ladder-body strong {
	color: #e4e4e7;
	font-size: 0.95rem;
	font-weight: 600;
}
.result-ladder-item.is-current .result-ladder-body strong { color: #fafafa; }
.result-ladder-desc {
	font-size: 0.85rem;
	color: #71717a;
	line-height: 1.45;
}
.result-ladder-you {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #b58ce0;
	font-weight: 600;
	flex-shrink: 0;
	padding-top: 0.25rem;
}
@media (max-width: 560px) {
	.result-ladder-you { display: none; }
}

/* CTA */
.result-cta {
	background: #111113;
	border: 1px solid #27272a;
	border-radius: 16px;
	padding: 2rem 1.75rem;
	margin: 2rem auto 0;
	max-width: 640px;
	text-align: center;
}
.result-cta h2 {
	font-size: 1.35rem;
	color: #fafafa;
	margin: 0 0 0.65rem 0;
	font-weight: 600;
	line-height: 1.3;
	text-transform: none;
	letter-spacing: normal;
}
.result-cta p {
	color: #a1a1aa;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
}
.result-cta-row {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* === Roadmap page proof + objections === */
.roadmap-proof {
	border-left: 3px solid var(--wa-purple);
	padding: 0.875rem 1.125rem;
	margin: 1.25rem 0 1.5rem;
	background: rgba(124, 92, 255, 0.08);
	border-radius: 0 var(--wa-radius) var(--wa-radius) 0;
}
.roadmap-proof p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--wa-text);
	font-style: italic;
}
.roadmap-proof .roadmap-proof-attr {
	margin-top: 0.4rem;
	font-size: 0.825rem;
	color: var(--wa-text-muted);
	font-style: normal;
}
.roadmap-objections {
	list-style: none;
	padding: 1.25rem;
	margin: 1.5rem 0 0;
	display: grid;
	gap: 0.65rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--wa-border);
	border-radius: var(--wa-radius);
}
.roadmap-objections li {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--wa-text-muted);
	padding-left: 1.25rem;
	position: relative;
}
.roadmap-objections li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wa-green, #34d399);
	font-weight: 700;
}

/* === Hero proof / explainer / objections (6-element framework) === */
.wa-hero-proof {
	border-left: 3px solid var(--wa-purple);
	padding: 1rem 1.25rem;
	margin: 1.75rem 0;
	background: rgba(var(--wa-purple-rgb, 124, 92, 255), 0.06);
	border-radius: 0 var(--wa-radius) var(--wa-radius) 0;
}
.wa-hero-proof-quote {
	font-size: 1rem;
	line-height: 1.55;
	color: var(--wa-text);
	margin: 0 0 0.5rem;
	font-style: italic;
}
.wa-hero-proof-attribution {
	font-size: 0.875rem;
	color: var(--wa-text-muted);
	margin: 0;
}
.wa-hero-proof-attribution strong {
	color: var(--wa-text);
}
.wa-hero-explainer {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wa-text-muted);
	margin: 1.25rem 0 1.75rem;
	max-width: 56ch;
}
.wa-hero-objections {
	list-style: none;
	padding: 0;
	margin: 1.75rem 0 0;
	display: grid;
	gap: 0.75rem;
	max-width: 64ch;
}
.wa-hero-objections li {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--wa-text-muted);
	padding-left: 1.25rem;
	position: relative;
}
.wa-hero-objections li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--wa-purple);
	font-weight: 600;
}
.wa-hero-objections strong {
	color: var(--wa-text);
	display: block;
	margin-bottom: 0.125rem;
}

/* === Home roadmap teaser === */
.home-roadmap-tease-card {
	background: var(--wa-surface);
	border: 1px solid var(--wa-border);
	border-radius: var(--wa-radius-lg);
	padding: 2.5rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.home-roadmap-tease-text h2 {
	margin: 0.5rem 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.15;
}
.home-roadmap-tease-text p {
	color: var(--wa-text-muted);
	margin: 0 0 1.5rem;
	line-height: 1.6;
}
.home-roadmap-tease-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}
.home-roadmap-tease-bullets li {
	padding-left: 1.5rem;
	position: relative;
	color: var(--wa-text);
	font-size: 0.95rem;
	line-height: 1.5;
}
.home-roadmap-tease-bullets li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wa-green, #34d399);
	font-weight: 700;
}
@media (max-width: 768px) {
	.home-roadmap-tease-card {
		grid-template-columns: 1fr;
		padding: 1.75rem;
		gap: 1.5rem;
	}
}

/* ======================================================================
   Homepage v2: Autopilot Systems
   ====================================================================== */
body.home-autopilot h1,
body.home-autopilot h2,
body.home-autopilot h3,
body.home-autopilot strong {
	letter-spacing: 0;
}

.home-autopilot .wa-topline {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1002;
	min-height: 24px;
	padding: 0.15rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	background: var(--wa-purple);
	color: #ffffff;
	font-size: 0.88rem;
	line-height: 1.2;
	text-align: center;
}

.home-autopilot .wa-topline span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 0.55rem;
	border-radius: var(--wa-radius-pill);
	background: rgba(255, 255, 255, 0.18);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.home-autopilot .wa-topline strong {
	font-weight: 700;
}

.home-autopilot .wa-nav {
	top: 24px;
	background: rgba(8, 9, 14, 0.96);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home-autopilot .wa-nav-links a[href^="#"].active::after {
	width: 0;
}

.home-autopilot .wa-nav-logo img {
	filter: brightness(0) invert(1);
}

/* Homepage nav is always dark: the logo is already inverted to white, so the
   dark-theme white-pill wrapper would render white-on-white. Neutralize it. */
[data-theme="dark"] .home-autopilot .wa-nav-logo {
	background: transparent;
	padding: 0;
}

.home-autopilot .wa-nav-links a {
	color: rgba(255, 255, 255, 0.78);
}

.home-autopilot .wa-nav-links a:hover,
.home-autopilot .wa-nav-links a.active {
	color: #ffffff;
}

.home-autopilot .wa-nav-toggle span {
	background: #ffffff;
}

.home-hero {
	position: relative;
	min-height: 100svh;
	padding: 154px 0 6rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #f2f1ee;
	color: #111827;
}

.home-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

.home-hero-copy {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.home-hero h1 {
	color: #111827;
	font-size: clamp(3.6rem, 7vw, 6.25rem);
	font-weight: 800;
	line-height: 0.94;
	margin: 0 0 1.35rem;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeSlideUp 0.55s ease-out 0.08s both;
}

.home-hero-sub {
	color: #202437;
	font-size: clamp(1.1rem, 1.7vw, 1.35rem);
	line-height: 1.45;
	max-width: 650px;
	margin: 0 auto 2rem;
	animation: fadeSlideUp 0.55s ease-out 0.16s both;
}

.home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
	animation: fadeSlideUp 0.55s ease-out 0.24s both;
}

.home-hero .btn-outline {
	border-color: rgba(17, 24, 39, 0.2);
	color: #111827;
	background: rgba(255, 255, 255, 0.46);
}

.home-hero .btn-outline:hover {
	background: #ffffff;
	border-color: rgba(129, 74, 200, 0.5);
	color: var(--wa-purple);
}

.home-hero .btn-lg {
	min-width: 310px;
	padding: 1.05rem 2rem;
}

.home-question-board {
	position: relative;
	z-index: 1;
	padding: 4.75rem 0 4.25rem;
	background: #0b0c12;
	color: #ffffff;
	border-top: 1px solid #0b0c12;
	border-bottom: 1px solid #171923;
}

.home-autopilot section[id] {
	scroll-margin-top: 0;
}

.home-question-header {
	display: block;
	text-align: center;
	margin: 0 auto 2.5rem;
	max-width: 900px;
}

.home-question-header h2 {
	color: #ffffff;
	font-size: clamp(2.35rem, 4.6vw, 4.25rem);
	font-weight: 800;
	line-height: 0.98;
	margin: 0;
}

.home-question-header .section-label {
	justify-content: center;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 1.15rem;
}

.home-question-header .section-label::before {
	background: var(--wa-purple);
	box-shadow: 0 0 18px rgba(129, 74, 200, 0.55);
}

.home-question-sub {
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.08rem;
	line-height: 1.65;
	max-width: 720px;
	margin: 0.95rem auto 0;
}

.home-question-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	max-width: 980px;
	margin: 0 auto;
}

.home-question-card {
	min-height: 104px;
	padding: 1.05rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.045);
	color: #ffffff;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 1.1rem;
	transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.home-question-card::after {
	content: "->";
	font-family: var(--wa-mono);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.48);
	justify-self: end;
	transition: transform 0.22s ease, color 0.22s ease;
}

.home-question-card:hover {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(129, 74, 200, 0.58);
	transform: translateY(-2px);
}

.home-question-card:hover::after {
	color: #ffffff;
	transform: translateX(4px);
}

.home-question-index {
	font-family: var(--wa-mono);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.52);
	letter-spacing: 0.08em;
}

.home-question-copy {
	display: grid;
	gap: 0.35rem;
}

.home-question-card strong {
	display: block;
	font-size: clamp(1.35rem, 2.4vw, 2.1rem);
	line-height: 1.02;
	color: #ffffff;
}

.home-question-card em {
	display: block;
	font-style: normal;
	font-size: 0.98rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.62);
}

.home-question-card-cta {
	background: var(--wa-purple);
	border-color: var(--wa-purple);
}

.home-question-card-cta .home-question-index,
.home-question-card-cta em {
	color: rgba(255, 255, 255, 0.82);
}

.home-question-card-cta::after {
	color: rgba(255, 255, 255, 0.74);
}

.home-fit-grid,
.home-company-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 4rem;
	align-items: center;
}

.home-fit-copy h2,
.home-company-copy h2,
.home-proof-head h2,
.home-systems-head h2 {
	font-size: 3rem;
	line-height: 1.02;
	margin-bottom: 1rem;
}

.home-fit-copy p,
.home-company-copy p,
.home-proof-head p,
.home-systems-head p {
	color: var(--wa-text-dim);
	font-size: 1.08rem;
	line-height: 1.7;
	max-width: 620px;
	margin-bottom: 1.25rem;
}

.home-text-link {
	display: inline-flex;
	align-items: center;
	color: var(--wa-purple-light);
	font-weight: 800;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.15rem;
}

.home-process-line span,
.system-index {
	font-family: var(--wa-mono);
	font-size: 0.76rem;
	color: var(--wa-purple-light);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.home-systems {
	background: var(--wa-surface);
}

.home-systems-head,
.home-proof-head {
	max-width: 780px;
	margin-bottom: 2.5rem;
}

.autopilot-system-list {
	border-top: 1px solid var(--wa-border-light);
}

.autopilot-system-row {
	border-bottom: 1px solid var(--wa-border-light);
}

.autopilot-system-row summary {
	list-style: none;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.4rem;
	padding: 1.45rem 0;
	cursor: pointer;
}

.autopilot-system-row summary::-webkit-details-marker {
	display: none;
}

.system-main {
	display: grid;
	gap: 0.25rem;
}

.system-main strong {
	font-size: 1.65rem;
	line-height: 1.05;
	color: var(--wa-text);
}

.system-main em {
	font-style: normal;
	color: var(--wa-text-dim);
	font-size: 1rem;
	line-height: 1.45;
}

.system-toggle {
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--wa-border-light);
	border-radius: var(--wa-radius-pill);
	color: var(--wa-text-dim);
	font-size: 0.78rem;
	font-weight: 700;
	transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.autopilot-system-row[open] .system-toggle {
	background: var(--wa-purple);
	border-color: var(--wa-purple);
	color: #ffffff;
}

.system-detail {
	padding: 0 0 1.65rem 64px;
	max-width: 820px;
	animation: fadeSlideUp 0.24s ease both;
}

.system-detail p {
	color: var(--wa-text-dim);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0.8rem;
}

.system-detail a {
	color: var(--wa-purple-light);
	font-weight: 800;
}

.home-fit-grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-process-stack {
	border-top: 1px solid var(--wa-border);
}

.home-process-line {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 1.2rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--wa-border);
}

.home-process-line strong {
	font-size: 1.1rem;
	line-height: 1.45;
	color: var(--wa-text);
}

.home-proof {
	background: var(--wa-surface-2);
}

.home-proof-quote {
	max-width: 960px;
	border-left: 5px solid var(--wa-purple);
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin-bottom: 2.5rem;
}

.home-proof-quote p {
	font-size: 1.55rem;
	line-height: 1.35;
	color: var(--wa-text);
	margin-bottom: 0.8rem;
}

.home-proof-quote span {
	color: var(--wa-text-dim);
	font-weight: 700;
}

.home-proof-action {
	margin-top: 2.5rem;
	text-align: center;
}

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

.home-company-media {
	min-height: 390px;
	background: var(--wa-surface);
	overflow: hidden;
}

.home-company-media img {
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
}

.home-company-copy p + p {
	margin-top: -0.4rem;
}

.home-company-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.75rem 0 0;
}

.home-company-facts div {
	border-top: 1px solid var(--wa-border);
	padding-top: 1rem;
}

.home-company-facts strong {
	display: block;
	font-family: var(--wa-mono);
	font-size: 1.35rem;
	color: var(--wa-purple-light);
	line-height: 1;
	margin-bottom: 0.45rem;
}

.home-company-facts span {
	color: var(--wa-text-dim);
	font-size: 0.86rem;
}

[data-theme="light"] .home-autopilot .wa-topline {
	background: #6d3db0;
}

[data-theme="light"] .home-question-board {
	background: #0b0c12;
}

[data-theme="light"] .home-systems {
	background: #f4f4f5;
}

[data-theme="light"] .home-proof {
	background: #ffffff;
}

@media (max-width: 1180px) {
	.home-question-grid {
		grid-template-columns: 1fr;
	}
	.home-question-board {
		position: relative;
		top: auto;
	}
	.home-question-header {
		margin-bottom: 1.75rem;
	}
	.home-question-header h2 {
		font-size: clamp(2.15rem, 5.6vw, 3.25rem);
		line-height: 1.02;
	}
}

@media (max-width: 1024px) {
	.home-hero h1 {
		font-size: 3.7rem;
	}
	.home-fit-grid,
	.home-company-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.home-company-media,
	.home-company-media img {
		min-height: 315px;
	}
}

@media (max-width: 900px) {
	.home-autopilot .wa-nav-links.mobile-open {
		top: 72px;
	}
	.home-autopilot .wa-nav-links.mobile-open a[href^="#"] {
		color: var(--wa-text);
	}
	.home-hero {
		min-height: 100svh;
		padding: 140px 0 4rem;
	}
	.home-hero-copy {
		padding: 0;
	}
	.home-hero h1 {
		font-size: 3.25rem;
		line-height: 1.02;
	}
	.home-hero-sub {
		font-size: 1.08rem;
	}
	.home-hero-actions {
		flex-direction: column;
	}
	.home-hero-actions .btn {
		width: 100%;
	}
	.home-question-grid {
		grid-template-columns: 1fr;
	}
	.home-question-card {
		grid-template-columns: 44px minmax(0, 1fr);
		min-height: auto;
		gap: 0.85rem;
	}
	.home-question-card::after {
		display: none;
	}
	.home-question-card strong {
		font-size: 1.35rem;
		line-height: 1.08;
	}
	.home-question-card em {
		font-size: 0.9rem;
	}
	.home-fit-copy h2,
	.home-company-copy h2,
	.home-proof-head h2,
	.home-systems-head h2 {
		font-size: 2.15rem;
		line-height: 1.08;
	}
	.autopilot-system-row summary {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 0.9rem;
	}
	.system-toggle {
		grid-column: 2;
		justify-self: start;
	}
	.system-detail {
		padding-left: 44px;
	}
	.system-main strong {
		font-size: 1.3rem;
	}
	.home-process-line {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}
	.home-proof-quote p {
		font-size: 1.2rem;
	}
}

@media (max-width: 640px) {
	.home-autopilot .wa-topline {
		min-height: 50px;
		flex-direction: column;
		gap: 0.25rem;
		padding: 0.45rem 0.75rem;
	}
	.home-autopilot .wa-nav {
		top: 50px;
	}
	.home-autopilot .wa-nav-links.mobile-open {
		top: 72px;
	}
	.home-hero {
		padding: 132px 0 4rem;
	}
	.home-hero h1 {
		font-size: 2.65rem;
	}
	.home-company-facts {
		grid-template-columns: 1fr;
	}
	.home-company-media,
	.home-company-media img {
		min-height: 225px;
	}
	.autopilot-system-row summary {
		align-items: start;
	}
	.system-detail {
		padding-left: 0;
	}
}

/* Homepage testimonials: equal-height cards with the attribution pinned to the bottom */
body.home-autopilot .testimonials-grid .call-testimonial {
  display: flex;
  flex-direction: column;
}
body.home-autopilot .testimonials-grid .call-testimonial cite {
  margin-top: auto;
  padding-top: 1rem;
}

/* Services: tools and integrations grid (data-driven from _data/tools.yml) */
.tools-featured,
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
/* Chips sit on the page ground, so they need to be a surface rather than the
   same colour as what is behind them. */
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--wa-border-light);
  border-radius: 999px;
  background: var(--wa-surface);
  color: var(--wa-text);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(17, 17, 26, 0.04), 0 3px 8px rgba(17, 17, 26, 0.05);
}
.tool-chip img { width: 24px; height: 24px; object-fit: contain; }
.tools-all { margin-top: 1.5rem; }
.tools-all summary {
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--wa-purple-light);
  border-radius: 999px;
  color: var(--wa-purple);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--wa-transition), color var(--wa-transition);
}
.tools-all summary:hover {
  background: var(--wa-purple);
  color: #fff;
}
.tools-all .tools-grid {
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem 0.5rem;
}

/* Homepage "What We Build": Flight Plan feature card, connectors, three autopilot cards */
.wb-flow { margin-top: 2.5rem; }
.wb-eyebrow { display: flex; justify-content: center; margin-bottom: 1rem; }
.wb-feature {
  background: var(--wa-surface);
  border: 1px solid var(--wa-purple);
  border-radius: var(--wa-radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.wb-feature h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.wb-feature-sub { color: var(--wa-text); font-size: 1.05rem; margin-bottom: 0.35rem; }
.wb-feature-line { color: var(--wa-purple-light); font-size: 0.9rem; margin-bottom: 2rem; }
.wb-feature-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2.5rem;
  text-align: left;
  max-width: 860px;
  margin: 0 auto 1.75rem;
}
.wb-feature-bullets ul, .wb-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.wb-feature-bullets li, .wb-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--wa-text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}
.wb-feature-bullets li::before, .wb-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--wa-purple);
}
.wb-feature-note { color: var(--wa-text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }

/* connectors: stem down, bar across, one drop per card, each ending in an arrowhead */
.wb-connector { position: relative; height: 64px; }
.wb-stem, .wb-bar, .wb-drop { position: absolute; background: var(--wa-border); }
.wb-stem { top: 0; left: 50%; width: 2px; height: 22px; transform: translateX(-50%); }
.wb-bar { top: 22px; left: 16.666%; right: 16.666%; height: 2px; }
.wb-drop { top: 22px; width: 2px; height: 34px; }
.wb-drop:nth-of-type(3) { left: 16.666%; }
.wb-drop:nth-of-type(4) { left: 50%; transform: translateX(-50%); }
.wb-drop:nth-of-type(5) { left: 83.333%; }
.wb-drop::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--wa-border);
}
.wb-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.wb-card {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 1.75rem;
}
.wb-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.wb-card > p { color: var(--wa-text-dim); font-size: 0.92rem; margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .wb-feature { padding: 1.75rem; }
  .wb-feature-bullets { grid-template-columns: 1fr; }
  .wb-cards { grid-template-columns: 1fr; }
  .wb-connector { height: 44px; }
  .wb-bar, .wb-drop:nth-of-type(3), .wb-drop:nth-of-type(5) { display: none; }
  .wb-drop:nth-of-type(4) { top: 22px; height: 22px; }
}

/* Homepage banner image between the hero and What We Build */
.home-banner { padding-top: 0; padding-bottom: 0; }
.home-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--wa-radius-lg);
  border: 1px solid var(--wa-border);
}
@media (max-width: 700px) {
  .home-banner-img { border-radius: var(--wa-radius); }
}

/* Homepage: lift the hero copy toward the top and cap the banner width */
.home-hero {
  min-height: 0;
  align-items: flex-start;
  padding-bottom: 1.5rem;
}
/* black chrome now ends at 97px (24px topline + 73px nav); 161px leaves 64px of light space */
@media (min-width: 901px) {
  .home-hero { padding-top: 161px; }
}
.home-banner { padding-top: 0; }
.home-banner-img {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

/* Systems section top padding; label lands near 1050px */
@media (min-width: 901px) {
  .home-systems { padding-top: 61px; }
}

/* Hero art direction: smaller display type, grouped spacing, shared 770px edge with the banner */
@media (min-width: 901px) {
  .home-hero h1 {
    /* two lines by design: the headline needs ~17.9x its font-size in width, so a
       single line inside the 1080px column would cap at 60px, smaller than before.
       Two lines lets it run large instead. */
    font-size: clamp(3rem, 5.4vw, 5rem);
    max-width: none;
    margin: 0 auto 0.75rem;                 /* tight to the subline, one thought */
  }
  .home-hero-sub {
    max-width: 770px;
    margin: 0 auto 2.5rem;                  /* real break before the buttons */
  }
  .home-hero { padding-bottom: 4.5rem; }    /* wider break before the image */
}

/* What We Build: one alignment, a card that reads as the hero, grouped deliverables */
.home-systems-head h2 { text-wrap: balance; }

.wb-eyebrow { justify-content: flex-start; }

.wb-feature {
  text-align: left;
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.10);
}
.wb-feature h3 { font-size: clamp(1.9rem, 2.6vw, 2.35rem); }
.wb-feature-sub { font-size: 1.15rem; }
.wb-feature-bullets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  max-width: none;
  margin-bottom: 1.5rem;
}
.wb-group h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wa-purple-light);
  margin: 0 0 0.75rem;
}
.wb-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.wb-feature-note { margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .wb-feature-bullets { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Flight Plan card: smaller centered header, credit line under the CTA, tighter overall */
.wb-feature { padding: 1.9rem 2rem; }
.wb-feature h3 {
  font-size: clamp(1.45rem, 1.9vw, 1.7rem);
  text-align: center;
  margin-bottom: 0.2rem;
}
.wb-feature-sub {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}
.wb-feature-bullets {
  gap: 1.35rem 2rem;
  margin-bottom: 1.6rem;
}
.wb-group h4 { margin-bottom: 0.55rem; }
.wb-group ul { gap: 0.5rem; }
.wb-feature-bullets li { font-size: 0.88rem; line-height: 1.5; }
.wb-feature-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.wb-feature-cta .wb-feature-line { margin: 0; font-size: 0.86rem; }

/* Sales / Marketing / Operations cards: scaled down, tighter bullet rhythm */
.wb-cards { gap: 1.25rem; }
.wb-card { padding: 1.4rem 1.45rem; }
.wb-card h4 { font-size: 0.98rem; margin-bottom: 0.3rem; }
.wb-card > p { font-size: 0.86rem; margin-bottom: 1rem; line-height: 1.45; }
.wb-card ul { gap: 0.45rem; }
.wb-card li {
  font-size: 0.855rem;
  line-height: 1.45;
  padding-left: 0.95rem;
}
.wb-card li::before {
  top: 0.5em;
  width: 4px;
  height: 4px;
}

/* Entry point outranks its children, and the children respond to the pointer */
.wb-feature {
  border-width: 2px;
  box-shadow: 0 24px 55px rgba(109, 61, 176, 0.16);
}
.wb-card {
  transition: transform var(--wa-transition), border-color var(--wa-transition), box-shadow var(--wa-transition);
}
.wb-card:hover,
.wb-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--wa-purple);
  box-shadow: 0 14px 30px rgba(109, 61, 176, 0.14);
}
.wb-card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  margin-bottom: 0.7rem;
  color: var(--wa-purple);
  background: var(--wa-purple-subtle);
  border: 1px solid var(--wa-border);
}
.wb-card-icon svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) {
  .wb-card, .wb-card:hover, .wb-card:focus-within { transition: none; transform: none; }
}

/* ── Autopilot tiles: per-product accent, layered hover, sibling dimming ────── */
.autopilot-tile {
  /* three points along the blue-to-magenta arc in the hero banner.
     sampled from the banner image: the blue hub glow, the violet midpoint of the
     connector run, and the magenta dots. --accent is decorative;
     --accent-ink is the text tone, always dark enough to stay legible. */
  --accent: #364cba;
  --accent-ink: #293a8e;
  --accent-tint: rgba(54, 76, 186, 0.11);
  --accent-shadow: rgba(54, 76, 186, 0.24);
  --accent-glow: rgba(54, 76, 186, 0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-lg);
  padding: 1.4rem 1.45rem 1.2rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, opacity .28s ease;
}
.autopilot-tile--marketing {
  --accent: #a636ba;
  --accent-ink: #7f298e;
  --accent-tint: rgba(166, 54, 186, 0.11);
  --accent-shadow: rgba(166, 54, 186, 0.24);
  --accent-glow: rgba(166, 54, 186, 0.14);
}
.autopilot-tile--operations {
  --accent: #6636ba;
  --accent-ink: #4e298e;
  --accent-tint: rgba(102, 54, 186, 0.11);
  --accent-shadow: rgba(102, 54, 186, 0.24);
  --accent-glow: rgba(102, 54, 186, 0.14);
}

/* glow bleeding down from the top edge */
.autopilot-tile::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
/* accent hairline drawing across the top */
.autopilot-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}
.autopilot-tile > * { position: relative; z-index: 1; }

.autopilot-tile__icon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid var(--wa-border);
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.autopilot-tile__icon svg { width: 19px; height: 19px; }
.autopilot-tile h4 { font-size: 0.98rem; margin: 0 0 0.3rem; transition: color .28s ease; }
.autopilot-tile__sub { color: var(--wa-text-dim); font-size: 0.86rem; line-height: 1.45; margin: 0 0 1rem; }
.autopilot-tile ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.45rem; }
.autopilot-tile li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--wa-text-dim);
  font-size: 0.855rem;
  line-height: 1.45;
}
.autopilot-tile li::before {          /* square by default, diamond on hover */
  content: '';
  position: absolute;
  left: 0; top: 0.52em;
  width: 5px; height: 5px;
  border-radius: 1px;
  background: var(--accent);
  transition: transform .28s ease;
}
.autopilot-tile__link {
  margin-top: auto;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent-ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease;
}
.autopilot-tile__link span { display: inline-block; transition: transform .28s ease; }

/* hover and keyboard focus share the same state */
.autopilot-tile:hover,
.autopilot-tile:focus-visible {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px var(--accent-shadow);
  outline: none;
}
.autopilot-tile:hover::before,
.autopilot-tile:focus-visible::before { opacity: 1; }
.autopilot-tile:hover::after,
.autopilot-tile:focus-visible::after { transform: scaleX(1); }
.autopilot-tile:hover .autopilot-tile__icon,
.autopilot-tile:focus-visible .autopilot-tile__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.autopilot-tile:hover h4,
.autopilot-tile:focus-visible h4 { color: var(--accent-ink); }
.autopilot-tile:hover li::before,
.autopilot-tile:focus-visible li::before { transform: rotate(45deg); }
.autopilot-tile:hover .autopilot-tile__link,
.autopilot-tile:focus-visible .autopilot-tile__link { opacity: 1; transform: translateY(0); }
.autopilot-tile:hover .autopilot-tile__link span { transform: translateX(4px); }

/* the hovered tile comes forward because its siblings step back */
.autopilot-row:has(.autopilot-tile:hover) .autopilot-tile:not(:hover),
.autopilot-row:has(.autopilot-tile:focus-visible) .autopilot-tile:not(:focus-visible) { opacity: 0.55; }

.autopilot-shared {
  text-align: center;
  color: var(--wa-text-dim);
  font-size: 0.9rem;
  margin: 1.5rem auto 0;
}
.autopilot-shared b { color: var(--wa-text); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .autopilot-tile,
  .autopilot-tile::before, .autopilot-tile::after,
  .autopilot-tile__icon, .autopilot-tile h4,
  .autopilot-tile li::before,
  .autopilot-tile__link, .autopilot-tile__link span { transition: none; }
  .autopilot-tile:hover, .autopilot-tile:focus-visible { transform: none; }
  .autopilot-tile__link { opacity: 1; transform: none; }   /* never hide the way out */
  .autopilot-row:has(.autopilot-tile:hover) .autopilot-tile:not(:hover) { opacity: 1; }
}

/* Close the 193px trough between the autopilot tiles and the ROI band, by half */
.home-systems { padding-bottom: 3rem; }
#roi { padding-top: 3rem; }

/* ── ROI teaser: dark band, two sliders, one withheld number ───────────────── */
.roi-teaser {
  position: relative;
  overflow: hidden;
  background: #141726;
  color: #ffffff;
}
.roi-teaser-glow {
  position: absolute;
  top: -180px; left: 50%;
  width: 900px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 79, 216, 0.30), rgba(139, 79, 216, 0) 70%);
  pointer-events: none;
}
.roi-teaser > .wa-container { position: relative; z-index: 1; }
.roi-teaser-head { max-width: 720px; margin-bottom: 2.25rem; }
.roi-teaser-eyebrow {
  display: block;
  font-family: var(--wa-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A9F2;
  margin-bottom: 0.75rem;
}
.roi-teaser h2 { color: #fff; margin: 0 0 0.75rem; text-wrap: balance; }
.roi-teaser-head p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 1.02rem; }

.roi-teaser-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.roi-panel {
  background: #1D2036;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 30px 28px;
}
.roi-panel--result {
  background: linear-gradient(160deg, #231C3E, #1B1E33);
  border-color: rgba(139, 79, 216, 0.34);
  display: flex;
  flex-direction: column;
}

.roi-field + .roi-field { margin-top: 1.75rem; }
.roi-field label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.35rem;
}
.roi-field-value {
  display: block;
  font-family: var(--wa-mono);
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.roi-field input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #8B4FD8;
  border: 2px solid #fff;
  cursor: pointer;
}
.roi-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #8B4FD8;
  border: 2px solid #fff;
  cursor: pointer;
}
.roi-field input[type="range"]:focus-visible { outline: 3px solid #C9A9F2; outline-offset: 4px; }
.roi-field-scale {
  display: flex; justify-content: space-between;
  font-family: var(--wa-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
}
.roi-hint {
  margin: 1.75rem 0 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.roi-result-label {
  font-family: var(--wa-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A9F2;
}
.roi-result-number {
  margin: 0.5rem 0 0;
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.roi-result-unit { margin: 0.4rem 0 0; color: rgba(255, 255, 255, 0.82); font-size: 1rem; }
.roi-result-aside { margin: 0.75rem 0 0; color: rgba(255, 255, 255, 0.58); font-size: 0.88rem; }

.roi-locked { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.roi-locked-head {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.roi-locked ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.roi-locked li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.roi-locked svg { width: 15px; height: 15px; flex: none; color: #C9A9F2; }

.roi-teaser-cta { margin-top: 1.5rem; align-self: flex-start; background: #8B4FD8; }
.roi-teaser-cta:hover { background: #9d6dd7; }
.roi-reassure { margin: 0.7rem 0 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.roi-disclaimer {
  margin: 1.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  max-width: 760px;
}

@media (max-width: 840px) {
  .roi-teaser-grid { grid-template-columns: 1fr; }
  .roi-panel { padding: 24px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .roi-teaser *, .roi-teaser *::before, .roi-teaser *::after { transition: none !important; animation: none !important; }
}

/* ROI teaser at 80% of its original vertical coverage: every band scaled, not just padding */
.roi-teaser { padding-top: 16px; padding-bottom: 18px; }
.roi-teaser-head { margin-bottom: 10px; }
.roi-teaser-head p { font-size: 0.97rem; }
.roi-panel { padding: 13px 18px; }
.roi-field + .roi-field { margin-top: 0.9rem; }
.roi-field-value { font-size: 1.35rem; margin-bottom: 0.3rem; }
.roi-hint { margin-top: 0.85rem; font-size: 0.78rem; }
.roi-result-number { font-size: clamp(1.9rem, 3.2vw, 2.4rem); margin-top: 0.2rem; }
.roi-result-unit { font-size: 0.94rem; }
.roi-result-aside { margin-top: 0.35rem; font-size: 0.82rem; }
.roi-locked { margin-top: 0.6rem; padding-top: 0.55rem; }
.roi-locked-head { margin-bottom: 0.45rem; }
.roi-locked ul { gap: 0.18rem; }
.roi-locked li { font-size: 0.79rem; }
.roi-teaser-cta { margin-top: 1.3rem; }
.roi-reassure { margin-top: 0.35rem; }
.roi-disclaimer { margin-top: 0.45rem; font-size: 0.74rem; }

/* second pass: the header block also carries less air */
/* matches .home-systems-head h2 exactly at desktop: 3rem / 1.02 */
.roi-teaser h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.02; }
.roi-teaser-head p { font-size: 0.92rem; }
.roi-result-label { font-size: 0.7rem; }
.roi-result-unit { font-size: 0.88rem; }
.roi-field label { font-size: 0.85rem; }

/* One warm field down the whole homepage on #f2f1ee. Each section states it
   explicitly, because a transparent section shows the page background through
   the seam instead. The ROI teaser is the deliberate exception: it carries its
   own dark band. */
[data-theme="light"] .home-hero,
[data-theme="light"] .home-banner,
[data-theme="light"] .home-systems,
[data-theme="light"] .home-proof,
[data-theme="light"] .home-company,
[data-theme="light"] .home-faq,
[data-theme="light"] .home-final-cta { background: #f2f1ee; }

/* Every section label sits the same 95px below its seam, matching What We Build.
   The padding differs per section because each has its own internal offset above
   the label (~31-34px), so the padding is set to land the label, not to match. */
#roi { padding-top: 64px; }
.home-proof { padding-top: 61px; }

/* ── Industry picker in Proof and Examples ────────────────────────────────── */
.industry-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--wa-border);
  background: #fff;
  color: var(--wa-text);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--wa-transition), border-color var(--wa-transition), color var(--wa-transition);
}
.industry-chip svg { width: 14px; height: 14px; flex: none; opacity: 0.75; }
.industry-chip:hover { border-color: var(--wa-purple); }
.industry-chip.is-selected {          /* fill, not colour alone */
  background: var(--wa-purple);
  border-color: var(--wa-purple);
  color: #fff;
}
.industry-chip:focus-visible { outline: 3px solid var(--wa-purple-light); outline-offset: 3px; }

.industry-stage {
  border: 1px solid var(--wa-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--wa-surface);
}
.industry-panel { display: grid; grid-template-columns: 44% 1fr; }
.industry-panel[hidden] { display: none; }
.industry-panel-media { position: relative; min-height: 340px; }
.industry-panel-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-panel-body {
  display: flex;
  flex-direction: column;
  padding: 2rem 2.25rem;
}
.industry-panel-body h3 { font-size: 1.35rem; margin: 0 0 0.6rem; }
.industry-panel-body > p { color: var(--wa-text-dim); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.industry-panel-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wa-border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.industry-metric { display: grid; gap: 0.15rem; }
.industry-metric-figure {
  font-family: var(--wa-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wa-purple);
}
.industry-metric-what { font-size: 0.9rem; font-weight: 600; color: var(--wa-text); }
.industry-metric-who { font-size: 0.8rem; color: var(--wa-text-muted); }
.industry-panel-link { font-size: 0.9rem; font-weight: 600; color: var(--wa-purple); white-space: nowrap; }
.industry-panel-link:focus-visible { outline: 3px solid var(--wa-purple-light); outline-offset: 3px; border-radius: 4px; }

/* crossfade: photo scales in, content lifts */
.industry-panel.is-entering .industry-panel-media img { animation: industryPhotoIn 460ms ease-out both; }
.industry-panel.is-entering .industry-panel-body { animation: industryBodyIn 340ms ease-out both; }
@keyframes industryPhotoIn { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
@keyframes industryBodyIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.home-proof .testimonials-grid { margin-top: 2.5rem; }

@media (max-width: 880px) {
  .industry-panel { grid-template-columns: 1fr; }
  .industry-panel-media { min-height: 220px; }
  .industry-panel-body { padding: 1.5rem 1.35rem; }
}
@media (prefers-reduced-motion: reduce) {
  .industry-panel.is-entering .industry-panel-media img,
  .industry-panel.is-entering .industry-panel-body { animation: none; }
  .industry-chip { transition: none; }
}

/* About: close the 192px trough where the founders block meets Who We Are.
   Two 6rem paddings were stacking; each is halved so the seam reads as one break. */
/* Same seam rhythm as the homepage: 3rem a side, so every gap is ~96px rather
   than the 192px two stacked 6rem paddings produce. The founders section keeps its
   inline top padding for nav clearance. */
body.about-page .wa-section { padding-top: 3rem; padding-bottom: 3rem; }

/* About: the Who We Are heading is an h1 for document structure, but it should read
   at the same size as the h2 section headings above and below it. */
/* Resources hero title sits at page-hero size. */
.resources-hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.08; }

/* ---- About: Why We Exist ---- */
/* Seam into Why We Exist is halved: 24px + 48px instead of 48px + 96px. */
body.about-page .about-founders { padding-bottom: 24px; }
.about-why { padding: 48px 0 96px; }
.about-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.about-why-grid h1 { font-size: 3rem; line-height: 1.02; margin: 0; }
.about-why-body { max-width: 60ch; }
.about-why-body p { color: var(--wa-text-dim); font-size: 1.05rem; line-height: 1.8; margin: 0; }
.about-why-body p + p { margin-top: 1.25rem; }

/* ---- About: The Point (full-bleed band) ---- */
.about-point {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(135deg, #6d3db0, #814ac8 55%, #9d6dd7);
}
/* Anchored off-canvas so only the falloff reads as a glow. */
.about-point::before {
  content: "";
  position: absolute;
  top: -40%; right: -14%;
  width: 62%; padding-bottom: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.about-point .wa-container { position: relative; }
.about-point-eyebrow {
  font-family: var(--wa-mono); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #c6aee6; display: block; margin-bottom: 1rem;
}
.about-point-statement {
  font-size: clamp(26px, 4vw, 46px); font-weight: 700; line-height: 1.14;
  letter-spacing: -.028em; max-width: 20ch; margin: 0;
}
.about-point-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 56px; padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.about-point-stat + .about-point-stat {
  border-left: 1px solid rgba(255,255,255,.22); padding-left: 2rem;
}
.about-point-num {
  font-family: var(--wa-mono); font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700; color: #fff; line-height: 1.1;
}
.about-point-label { font-size: 13.5px; color: rgba(255,255,255,.76); margin-top: 0.5rem; }

/* ---- About: How We Think ---- */
.about-steps-wrap { position: relative; }
/* Connecting rule sits behind the cards and shows through the gaps. */
.about-steps-wrap::before {
  content: ""; position: absolute; top: 21px; left: 6%; right: 6%;
  height: 2px; background: var(--wa-border);
}
.about-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.about-step {
  position: relative; z-index: 1;
  background: var(--wa-surface); border: 1px solid var(--wa-border); border-radius: 18px;
  padding: 52px 26px 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.about-step::before {
  content: ""; position: absolute; top: 12px; left: 24px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--wa-purple); box-shadow: 0 0 0 6px var(--wa-surface);
}
.about-step:hover {
  border-color: var(--wa-purple-light); transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17,17,26,.10);
}
.about-step-num { font-family: var(--wa-mono); font-size: 0.8rem; color: var(--wa-text-muted); }
.about-step h3 { font-size: 1.15rem; margin: 0.35rem 0 0.6rem; }
.about-step p { color: var(--wa-text-dim); font-size: 0.95rem; line-height: 1.65; margin: 0; }

@media (max-width: 768px) {
  .about-why { padding: 32px 0 64px; }
  .about-why-grid { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .about-why-grid h1 { font-size: 2.15rem; line-height: 1.08; }
  .about-point { padding: 64px 0; }
  .about-point-stats { grid-template-columns: 1fr; }
  .about-point-stat + .about-point-stat {
    border-left: 0; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.22); margin-top: 1.5rem; padding-top: 1.5rem;
  }
  .about-steps { grid-template-columns: 1fr; }
  .about-steps-wrap::before { display: none; }
}

/* ---- Services: Included With Every Build ----
   Condensed ~25%. The label carries a bottom margin meant for a heading that
   this block does not have, so that gap is closed rather than merely reduced.
   Scoped, since .about-value-card is shared with the about page. */
/* Ink band with a purple glow, the same treatment as the ROI band on the
   homepage. Everything inside is re-coloured for the dark ground, scoped so
   the about page's cards are untouched. */
.services-included {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: #141726;
  color: #fff;
}
.services-included::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 900px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 79, 216, 0.30), rgba(139, 79, 216, 0) 70%);
  pointer-events: none;
}
.services-included > .wa-container { position: relative; z-index: 1; }
.services-included .section-header { margin-bottom: 2rem; }
.services-included .section-label { margin-bottom: 0; color: #c6aee6; }
.services-included .section-label::before { background: #c6aee6; box-shadow: none; }
.services-included .about-value-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.services-included .about-value-card h3 { color: #fff; }
.services-included .about-value-card p { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   FLIGHT PLAN / PRICING PAGE
   Colours and type come from the site tokens so the page follows
   the theme toggle and renders in Figtree like every other page.
   ============================================================ */

.fp2{
  --fp-p:var(--wa-purple); --fp-p-d:#6d3db0; --fp-p-l:var(--wa-purple-light); --fp-p-2:var(--wa-purple-light);
  /* translucent tints read correctly on both the light and dark ground */
  --fp-p-05:rgba(129,74,200,.05); --fp-p-10:rgba(129,74,200,.10); --fp-p-20:rgba(129,74,200,.30);
  --fp-ink:var(--wa-text); --fp-ink-2:var(--wa-text-secondary); --fp-body:var(--wa-text-dim); --fp-dim:var(--wa-text-muted);
  --fp-line:var(--wa-border); --fp-line-2:var(--wa-border-light); --fp-surface:var(--wa-surface-2);
  --fp-r-s:10px; --fp-r-m:14px; --fp-r-l:20px;
  background:var(--wa-bg);
  color:var(--fp-ink);
  -webkit-font-smoothing:antialiased;
}
.fp2 *,.fp2 *::before,.fp2 *::after{box-sizing:border-box;}
.fp2 p{margin:0;}
.fp2 h1,.fp2 h2,.fp2 h3,.fp2 h4{margin:0;font-weight:640;}
.fp2 ul{margin:0;padding:0;}

.fp2-wrap{max-width:1080px;margin:0 auto;padding:0 28px;}

/* type */
.fp2-meta{font-family:var(--wa-mono);font-size:11.5px;letter-spacing:.13em;
          text-transform:uppercase;color:var(--fp-dim);}
/* Section eyebrows take the same purple as .section-label sitewide. Direct
   child only, so the labels inside the panel and the fork cards stay quiet. */
.fp2-wrap > .fp2-meta{color:var(--wa-purple-light);}
.fp2-h1{font-size:clamp(34px,4.3vw,52px);line-height:1.05;letter-spacing:-.035em;font-weight:680;}
.fp2-h2{font-size:clamp(23px,2.9vw,32px);line-height:1.12;letter-spacing:-.028em;font-weight:660;}
.fp2-h3{font-size:17.5px;line-height:1.3;letter-spacing:-.016em;font-weight:650;}
.fp2-lead{font-size:17.5px;line-height:1.55;color:var(--fp-body);}
.fp2-body{font-size:15px;line-height:1.66;color:var(--fp-body);margin-top:5px;}
.fp2-tiny{font-size:12.5px;line-height:1.5;color:var(--fp-dim);}

.fp2-pill{display:inline-flex;align-items:center;gap:8px;background:var(--fp-p-10);
          border:1px solid var(--fp-p-20);color:var(--fp-p-l);border-radius:999px;
          padding:6px 13px 6px 9px;font-size:12.5px;font-weight:600;
          letter-spacing:.06em;text-transform:uppercase;}
.fp2-pill i{width:7px;height:7px;border-radius:50%;background:var(--fp-p);flex:none;margin-left:3px;}

/* buttons */
.fp2 .fp2-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
     background:var(--fp-p);color:#fff;text-decoration:none;font-weight:620;font-size:14.5px;
     padding:12px 20px;border-radius:var(--fp-r-s);border:0;
     box-shadow:0 1px 2px rgba(12,14,20,.14),0 6px 18px rgba(129,74,200,.22);
     transition:transform .15s ease,background .15s ease,box-shadow .15s ease;}
.fp2 .fp2-btn:hover{transform:translateY(-1px);background:var(--fp-p-d);color:#fff;}
.fp2 .fp2-btn.fp2-wide{width:100%;}

/* hero: the 72px nav is fixed, so it has to be cleared before the hero's own space */
.fp2-hero{position:relative;overflow:hidden;padding:calc(72px + 58px) 0 64px;
          background:linear-gradient(180deg,var(--fp-p-05),var(--wa-bg) 72%);}
.fp2-hero::before{content:"";position:absolute;inset:-34% -18% auto auto;width:64%;height:118%;
  background:radial-gradient(closest-side,rgba(157,109,215,.2),transparent 72%);pointer-events:none;}
.fp2-hero-in{position:relative;display:grid;grid-template-columns:1.06fr .94fr;gap:56px;align-items:center;}
.fp2-hero .fp2-h1{margin:14px 0 0;max-width:12ch;}
.fp2-hero .fp2-lead{margin-top:15px;max-width:38ch;}
.fp2-hero .fp2-tiny{margin-top:18px;}

/* offer card */
.fp2-offer{border:1px solid var(--fp-line-2);border-radius:var(--fp-r-l);background:var(--wa-surface);overflow:hidden;
           box-shadow:0 1px 2px rgba(12,14,20,.05),0 18px 44px rgba(12,14,20,.1);}
.fp2-offer-top{padding:24px 24px 20px;background:linear-gradient(180deg,var(--fp-p-05),var(--wa-surface));
               border-bottom:1px solid var(--fp-line);}
.fp2-offer-price{display:flex;align-items:baseline;gap:9px;}
.fp2-offer-price b{font-size:36px;font-weight:700;letter-spacing:-.032em;line-height:1;}
.fp2-offer-price span{font-size:13.5px;color:var(--fp-dim);}
.fp2-offer-top p{margin-top:10px;font-size:13.8px;line-height:1.5;color:var(--fp-body);}
.fp2-offer-list{list-style:none;padding:6px 24px 4px;}
/* Inset the row content so the ticks sit inside the divider rather than flush
   with where it starts. The border still spans the full width. */
.fp2-offer-list li{display:flex;gap:10px;align-items:flex-start;padding:11px 0 11px 6px;
                   border-bottom:1px solid var(--fp-line);
                   font-size:14.2px;line-height:1.45;color:var(--fp-ink-2);}
.fp2-offer-list li:last-child{border-bottom:none;}
.fp2-offer-list svg{flex:none;margin-top:2px;color:var(--fp-p);}
.fp2-offer-foot{padding:18px 24px 22px;}
.fp2-offer-foot .fp2-tiny{margin-top:11px;text-align:center;}

/* sections */
.fp2-sec{padding:64px 0;}
.fp2-sec.fp2-flush{padding-top:0;}
.fp2-div{border-top:1px solid var(--fp-line);}
.fp2-sec .fp2-h2{margin-top:10px;max-width:22ch;}

/* deliverables list */
.fp2-list{margin-top:28px;border:1px solid var(--fp-line-2);border-radius:var(--fp-r-m);
          overflow:hidden;background:var(--wa-surface);}
.fp2-row{display:grid;grid-template-columns:44px 200px 1fr;gap:20px;align-items:start;padding:20px 22px;
         border-bottom:1px solid var(--fp-line);transition:background .15s ease;}
.fp2-row:last-child{border-bottom:none;}
.fp2-row:hover{background:var(--fp-p-05);}
.fp2-ic{width:34px;height:34px;border-radius:9px;background:var(--fp-p-10);color:var(--fp-p);
        border:1px solid var(--fp-p-20);display:grid;place-items:center;}
.fp2-row h3{padding-top:5px;}
.fp2-row p{font-size:14.6px;line-height:1.62;color:var(--fp-body);padding-top:6px;max-width:56ch;}

/* engagement panel */
.fp2-panel{border-radius:var(--fp-r-l);padding:30px 32px;color:#fff;position:relative;overflow:hidden;
           margin-top:6px;
           background:linear-gradient(135deg,var(--fp-p-d),var(--fp-p) 56%,var(--fp-p-l));}
.fp2-panel::after{content:"";position:absolute;inset:-40% -10% auto auto;width:54%;height:150%;
  background:radial-gradient(closest-side,rgba(255,255,255,.18),transparent 70%);}
.fp2-panel-in{position:relative;display:grid;grid-template-columns:.9fr 2.1fr;gap:34px;align-items:center;}
.fp2-panel .fp2-meta{color:rgba(255,255,255,.7);}
.fp2-panel h2{font-size:22px;line-height:1.18;letter-spacing:-.022em;color:#fff;margin-top:8px;max-width:16ch;}
.fp2-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.fp2-step{padding-left:16px;border-left:1px solid rgba(255,255,255,.28);}
.fp2-step .fp2-n{font-family:var(--wa-mono);font-size:11px;letter-spacing:.14em;
                 color:rgba(255,255,255,.7);}
.fp2-step h4{font-size:15.5px;font-weight:645;margin-top:7px;}
.fp2-step p{font-size:13.6px;line-height:1.55;color:rgba(255,255,255,.8);margin-top:5px;}

/* fork */
.fp2-fork{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px;}
.fp2-plan{border:1px solid var(--fp-line-2);border-radius:var(--fp-r-m);padding:24px 22px;background:var(--wa-surface);
          position:relative;transition:transform .16s ease,box-shadow .16s ease;}
.fp2-plan:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(12,14,20,.07);}
.fp2-plan.fp2-hi{border-color:var(--fp-p-2);background:linear-gradient(180deg,var(--fp-p-05),var(--wa-surface) 62%);}
.fp2-plan .fp2-h3{margin:9px 0 7px;}
.fp2-plan p{font-size:14.4px;line-height:1.6;color:var(--fp-body);}

/* faq */
.fp2-faq{margin-top:24px;border-top:1px solid var(--fp-line);}
.fp2-q{border-bottom:1px solid var(--fp-line);}
.fp2-q button{width:100%;background:none;border:0;padding:15px 0;display:flex;
              justify-content:space-between;align-items:center;gap:18px;cursor:pointer;
              font:inherit;text-align:left;
              font-size:15.2px;font-weight:620;letter-spacing:-.012em;color:var(--fp-ink);}
.fp2-sign{flex:none;width:16px;height:16px;position:relative;opacity:.8;}
.fp2-sign::before,.fp2-sign::after{content:"";position:absolute;background:var(--fp-p);border-radius:2px;
  left:50%;top:50%;transform:translate(-50%,-50%);transition:transform .22s ease,opacity .22s ease;}
.fp2-sign::before{width:11px;height:1.8px;}
.fp2-sign::after{width:1.8px;height:11px;}
.fp2-q.fp2-open .fp2-sign::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0;}
.fp2-a{max-height:0;overflow:hidden;transition:max-height .28s ease;}
.fp2-q.fp2-open .fp2-a{max-height:220px;}
.fp2-a p{font-size:14.5px;line-height:1.66;color:var(--fp-body);margin:0 0 15px;max-width:66ch;}

/* close */
.fp2-close{border:1px solid var(--fp-line-2);border-radius:var(--fp-r-l);background:var(--fp-surface);
           padding:26px 30px;display:flex;align-items:center;justify-content:space-between;gap:24px;}

/* responsive */
@media (max-width:920px){
  .fp2-hero-in{grid-template-columns:1fr;gap:30px;}
  .fp2-hero{padding:calc(72px + 42px) 0 46px;}
  .fp2-row{grid-template-columns:34px 1fr;gap:14px;}
  .fp2-row h3{padding-top:0;grid-column:2;}
  .fp2-row p{grid-column:2;padding-top:4px;}
  .fp2-panel-in{grid-template-columns:1fr;gap:22px;}
  .fp2-steps,.fp2-fork{grid-template-columns:1fr;}
  .fp2-step{padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.28);padding-top:14px;}
  .fp2-sec{padding:48px 0;}
  .fp2-close{flex-direction:column;align-items:flex-start;}
}
@media (prefers-reduced-motion:reduce){
  .fp2 .fp2-btn,.fp2-plan,.fp2-row,.fp2-a,.fp2-sign::before,.fp2-sign::after{transition:none;}
}

/* ── Nav: black on every page ──────────────────────────────────────────
   The bar keeps its own colours instead of the theme tokens. --wa-text-dim
   is dark ink in the light theme, which would be unreadable on black. */
.wa-nav {
  background: rgba(10, 10, 10, 0.85);
  border-bottom-color: #27272a;
}
.wa-nav-links a { color: #a1a1aa; }
.wa-nav-links a:hover,
.wa-nav-links a.active { color: #fafafa; }
.wa-nav-toggle span { background: #fafafa; }

@media (max-width: 900px) {
  .wa-nav-links.mobile-open {
    background: #0a0a0a;
    border-bottom-color: #27272a;
  }
  .wa-nav-links.mobile-open a {
    color: #fafafa;
    border-bottom-color: #27272a;
  }
}

/* Logo left, links centred, call to action right. */
.wa-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
}
.wa-nav-logo { justify-self: start; }
.wa-nav-links { justify-content: center; }
.wa-nav-cta { justify-self: end; }

@media (max-width: 900px) {
  /* The links collapse into the dropdown, so the button and the toggle
     group on the right instead. */
  .wa-nav-inner { grid-template-columns: 1fr auto auto; }
  .wa-nav-cta { justify-self: end; }
}

/* Who Built This: image with the figures beneath it, copy and link opposite. */
.home-company-left { display: flex; flex-direction: column; }

/* The company link closes the copy column under a rule, echoing the top
   borders on the figures in the column opposite. */
.home-company-cta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wa-border);
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  /* Stacked, a right-flush link reads as stranded. */
  .home-company-cta { justify-content: flex-start; }
}

/* Service card chips: the same purple ramp as the About band and the Flight
   Plan panel, so the three treatments read as one family. Size, padding and
   radius stay as they were. */
.service-tags .tag {
  background: linear-gradient(135deg, #6d3db0, #814ac8 55%, #9d6dd7);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

/* Lilac wash behind the review list, so it separates from the page ground.
   Brand purple at low alpha, the same tint family as the rest of the site. */
.proof-unfiltered { background: rgba(129, 74, 200, 0.09); }

/* Homepage Flight Plan card: small "See more" link, bottom right */
.wb-feature{position:relative;}
.wb-feature-more{position:absolute;right:2rem;bottom:1.6rem;font-size:0.86rem;color:var(--wa-purple);text-decoration:underline;text-underline-offset:3px;}
.wb-feature-more:hover,.wb-feature-more:focus-visible{color:var(--wa-purple-light);}
@media (max-width:900px){
  .wb-feature-more{position:static;display:block;text-align:center;margin-top:1rem;}
}

/* Nav logo: white on the black bar, on every page */
.wa-nav .wa-nav-logo img { filter: brightness(0) invert(1); }
[data-theme="dark"] .wa-nav .wa-nav-logo { background: transparent; padding: 0; }

/* ── Flight Plan page (/flight-plan): scoped to .fp3 ──────────────────── */
.fp3{--p:#6d3db0;--pl:#814ac8;--ink:#14121a;--dim:#5b5766;--line:#e4e1ea;--tint:#f1ecf9;--mono:'Fragment Mono',monospace;
  background:#f7f6f3;color:var(--ink);font-family:Figtree,system-ui,sans-serif;line-height:1.5;}
.fp3 *{box-sizing:border-box;}
.fp3 .wrap{max-width:1040px;margin:0 auto;padding:0 24px;}
.fp3 .eyebrow{font-family:var(--mono);font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--pl);}
.fp3 h1{font-size:clamp(34px,4.6vw,54px);line-height:1.05;letter-spacing:-.03em;margin:12px 0 0;font-weight:700;color:var(--ink);}
.fp3 h2{font-size:clamp(26px,3vw,34px);line-height:1.12;letter-spacing:-.025em;margin:6px 0 0;font-weight:700;color:var(--ink);}
.fp3 p{margin:0;}
.fp3 .dim{color:var(--dim);}
.fp3 .btn{display:inline-block;background:var(--p);color:#fff;text-decoration:none;font-weight:600;font-size:15px;padding:13px 24px;border-radius:10px;border:0;}
.fp3 .btn:hover,.fp3 .btn:focus-visible{background:#5a3194;color:#fff;}
.fp3 section{padding:72px 0;}
.fp3 section+section{border-top:1px solid var(--line);}
.fp3 .center{text-align:center;}
.fp3 .hero{padding-top:calc(72px + 88px);}
.fp3 .hero .lead{font-size:19px;max-width:44ch;margin:18px auto 0;}
.fp3 .hero .facts{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:22px;font-family:var(--mono);font-size:12.5px;color:var(--dim);}
.fp3 .hero .facts span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:6px 14px;}
.fp3 .hero .cta{margin-top:26px;}
.fp3 .hero .tiny{font-size:13px;margin-top:10px;}
.fp3 .mapart{margin:44px auto 0;max-width:820px;width:100%;display:block;}
.fp3 .card{max-width:640px;margin:34px auto 0;background:#fff;border:2px solid var(--p);border-radius:18px;overflow:hidden;box-shadow:0 24px 55px rgba(109,61,176,.14);text-align:left;}
.fp3 .card .top{padding:26px 30px 22px;background:var(--tint);display:flex;justify-content:space-between;align-items:flex-end;gap:16px;flex-wrap:wrap;}
.fp3 .card .price{font-size:44px;font-weight:700;letter-spacing:-.03em;line-height:1;}
.fp3 .card .price small{font-size:14px;font-weight:500;color:var(--dim);margin-left:8px;letter-spacing:0;}
.fp3 .card .credit{font-size:14.5px;margin-top:8px;}
.fp3 .card .meta{font-family:var(--mono);font-size:12px;color:var(--dim);text-align:right;line-height:1.7;}
.fp3 .card .list{padding:10px 30px 6px;}
.fp3 .card .row{display:grid;grid-template-columns:26px 1fr;gap:12px;padding:14px 0;border-top:1px solid var(--line);align-items:start;}
.fp3 .card .row:first-child{border-top:0;}
.fp3 .card .row i{width:22px;height:22px;border-radius:50%;background:var(--tint);color:var(--p);display:grid;place-items:center;font-style:normal;font-size:13px;margin-top:2px;}
.fp3 .card .row b{display:block;font-size:16px;}
.fp3 .card .row span{font-size:14.5px;color:var(--dim);}
.fp3 .card .foot{padding:18px 30px 26px;text-align:center;}
.fp3 .card .foot .btn{width:100%;text-align:center;}
.fp3 .card .foot p{font-size:13px;color:var(--dim);margin-top:10px;}
.fp3 .steps{display:grid;grid-template-columns:repeat(3,1fr);margin-top:38px;position:relative;}
.fp3 .steps::before{content:"";position:absolute;left:16%;right:16%;top:22px;height:2px;background:var(--line);}
.fp3 .step{text-align:center;padding:0 16px;position:relative;}
.fp3 .step .n{width:44px;height:44px;border-radius:50%;background:var(--p);color:#fff;display:grid;place-items:center;font-weight:700;margin:0 auto 14px;position:relative;}
.fp3 .step b{display:block;font-size:17px;}
.fp3 .step p{font-size:14.5px;color:var(--dim);margin-top:4px;}
.fp3 .step .t{font-family:var(--mono);font-size:11.5px;color:var(--pl);margin-top:8px;display:block;}
.fp3 .results{display:flex;justify-content:center;gap:56px;margin-top:34px;flex-wrap:wrap;}
.fp3 .result .num{font-size:44px;font-weight:700;letter-spacing:-.03em;line-height:1;color:var(--p);}
.fp3 .result p{font-size:14px;color:var(--dim);margin:6px auto 0;max-width:22ch;}
.fp3 .reviews{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:38px;text-align:left;}
.fp3 .review{background:#fff;border:1px solid var(--line);border-radius:14px;padding:22px;}
.fp3 .review q{display:block;font-size:15.5px;line-height:1.6;quotes:"\201C" "\201D";}
.fp3 .review .who{display:flex;align-items:center;gap:10px;margin-top:14px;font-size:13.5px;color:var(--dim);}
.fp3 .review .who img{width:38px;height:38px;border-radius:50%;object-fit:cover;}
.fp3 .review .who b{display:block;color:var(--ink);}
.fp3 .founders{display:flex;justify-content:center;align-items:center;gap:14px;margin-top:38px;}
.fp3 .founders img{width:64px;height:64px;border-radius:50%;object-fit:cover;border:3px solid #fff;box-shadow:0 2px 10px rgba(0,0,0,.08);}
.fp3 .founders img+img{margin-left:-24px;}
.fp3 .founders p{font-size:15px;max-width:40ch;text-align:left;}
.fp3 .proof .more{margin-top:22px;font-size:14.5px;}
.fp3 .proof .more a{color:var(--p);font-weight:600;}
.fp3 .fit{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:34px;text-align:left;}
.fp3 .fit .col{background:#fff;border:1px solid var(--line);border-radius:14px;padding:22px;}
.fp3 .fit .col b{display:block;font-size:16px;margin-bottom:10px;}
.fp3 .fit ul{margin:0;padding:0;list-style:none;}
.fp3 .fit li{padding:7px 0 7px 26px;position:relative;font-size:15px;color:var(--dim);}
.fp3 .fit li::before{content:"";position:absolute;left:4px;top:15px;width:8px;height:8px;border-radius:50%;background:var(--p);}
.fp3 .fit .no li::before{background:#c9c5d2;}
.fp3 .faq{max-width:720px;margin:26px auto 0;text-align:left;}
.fp3 .q{border-top:1px solid var(--line);padding:16px 0;}
.fp3 .q b{display:block;font-size:16px;}
.fp3 .q p{font-size:15px;color:var(--dim);margin-top:6px;}
.fp3 .close .box{background:#141726;color:#fff;border-radius:18px;padding:44px 32px;}
.fp3 .close h2{color:#fff;}
.fp3 .close p{color:#c9c4d6;margin:10px auto 0;font-size:16px;max-width:62ch;}
.fp3 .close .btn{background:#fff;color:var(--p);margin-top:22px;}
@media (max-width:820px){
  .fp3 .steps,.fp3 .reviews,.fp3 .fit{grid-template-columns:1fr;}
  .fp3 .steps{gap:26px;}
  .fp3 .steps::before{display:none;}
  .fp3 .card .top{flex-direction:column;align-items:flex-start;}
  .fp3 .card .meta{text-align:left;}
  .fp3 .founders{flex-direction:column;}
  .fp3 .founders p{text-align:center;}
  .fp3 .hero{padding-top:calc(72px + 56px);}
}
.fp3 .hero .card{margin-top:40px;}
.fp3 .sub-label{font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--dim);margin-top:30px;}
.fp3 .fitsec .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:14px;}
.fp3 .fitsec .cell{background:#fff;border:1px solid var(--line);border-radius:14px;padding:22px 22px 20px;text-align:left;}
.fp3 .fitsec .cell b{display:block;font-size:17px;font-weight:600;line-height:1.4;}
.fp3 .cta-row{margin-top:34px;}
@media (max-width:820px){ .fp3 .fitsec .grid{grid-template-columns:1fr;} }
.fp3 .card-after{margin-top:18px;font-size:15.5px;font-weight:600;color:var(--ink);}
.fp3 .card-guarantee{margin-top:6px;font-size:14px;color:var(--dim);}
.fp3 .steps-note{margin:30px auto 0;max-width:56ch;font-size:15px;color:var(--dim);}
.fp3 .close .close-lead{color:#fff;font-size:19px;font-weight:600;margin-top:12px;}

/* Footer disclaimer: present on every page, kept quiet */
.wa-footer .wa-footer-legal { color: #a1a1aa; }
