﻿/* ============================================================
   OPERON AI LABS — Direction 3 "The Platform"
   Design System Stylesheet
   ============================================================ */

/* Fonts loaded via <link> tags in HTML — no @import to avoid render-blocking chain */

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --bg:           #F9F9FB;
  --white:        #FFFFFF;
  --ink:          #0F1117;
  --navy:         #0F172A;
  --navy-mid:     #1E293B;
  --slate:        #64748B;
  --muted:        #94A3B8;
  --blue:         #5a4fcf;
  --blue-dark:    #4840b8;
  --blue-light:   #f0effe;
  --blue-mid:     #c4bff5;
  --green:        #10B981;
  --green-light:  #ECFDF5;
  --border:       #E2E8F0;
  --border-dark:  #CBD5E1;
  --shadow-sm:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.05);
  --shadow-lg:    0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-blue:  0 8px 32px rgba(90,79,207,0.22);

  /* Typography — reliable Google Fonts pairing */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing (8px grid) — tightened for less scrolling */
  --space-1:  4px;  --space-2:  8px;  --space-3: 12px;
  --space-4: 16px;  --space-5: 20px;  --space-6: 24px;
  --space-8: 32px;  --space-10:40px;  --space-12:48px;
  --space-16:64px;  --space-20:80px;  --space-24:96px;

  /* Layout — reduced vertical padding to cut scrolling */
  --header-h:    64px;
  --section-px:  clamp(20px, 5vw, 80px);
  --section-py:  clamp(48px, 6vw, 80px);
  --max-w:       1200px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Transitions */
  --t-fast:   0.15s cubic-bezier(.22,1,.36,1);
  --t-mid:    0.25s cubic-bezier(.22,1,.36,1);
  --t-slow:   0.6s  cubic-bezier(.22,1,.36,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── BASE ── */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; }
.text-blue   { color: var(--blue); }
.text-slate  { color: var(--slate); }
.text-muted  { color: var(--muted); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }

/* ── BADGE / PILL LABEL ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--blue-mid);
  margin-bottom: var(--space-5);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.badge-dark {
  background: rgba(37,99,235,0.12);
  color: #93C5FD;
  border-color: rgba(37,99,235,0.2);
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
  border-color: #A7F3D0;
}
.badge-green .badge-dot { background: var(--green); animation: pulse-green 2s infinite; }

@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.85); }
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label-dark { color: #93C5FD; }
.section-label-dark::before { background: #93C5FD; }

/* ── HEADINGS ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display-white { color: var(--white); }
.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--t-mid);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-mid); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(37,99,235,0.28);
  transform: translateY(-1px);
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.btn-demo {
  font-size: 12px;
  padding: 7px 14px;
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue-mid);
}
.btn-demo:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  background: rgba(249,249,251,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  transition: box-shadow var(--t-mid), background var(--t-mid);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(249,249,251,0.97);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--ink); background: var(--border); }
.nav-link.active { color: var(--blue); background: var(--blue-light); font-weight: 600; }

.header-right { display: flex; align-items: center; gap: var(--space-3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) var(--section-px) var(--space-8);
  z-index: 299;
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  overflow-x: hidden;
  width: 100%;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: var(--space-3) var(--space-4);
  font-size: 15px;
  border-radius: var(--radius-sm);
}
.mobile-nav .btn { margin-top: var(--space-4); text-align: center; justify-content: center; }

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--header-h); }

/* ── SECTION ── */
.section {
  padding: var(--section-py) var(--section-px);
}
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-white { background: var(--white); }
.section-tint  { background: var(--blue-light); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--section-px);
}
.divider-navy { background: rgba(255,255,255,0.08); margin: 0; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--header-h));
  padding: clamp(40px, 5vw, 72px) var(--section-px) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  grid-column: 1 / -1;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 20%, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; }

.hero-title { margin-bottom: var(--space-5); }
.hero-title .accent { color: var(--blue); }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-10);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-value .unit { color: var(--blue); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── APPROACH CARDS ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-6) var(--space-8);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.approach-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: var(--space-6); right: var(--space-6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, #60A5FA 100%);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--t-mid);
}
.approach-card:hover::before { opacity: 1; }

.approach-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
.approach-step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-2);
}
.approach-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  color: var(--ink);
}
.approach-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
}
.approach-arrow {
  position: absolute;
  top: 50%; right: -17px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.approach-arrow svg { width: 11px; stroke: var(--blue); fill: none; stroke-width: 2; }

/* ── VERTICALS PAGE ── */
.verticals-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-16);
}
.verticals-hero-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.verticals-callout {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}
.verticals-callout strong { color: var(--ink); font-weight: 600; }

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}
.vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}
.vertical-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-dark);
}
.vertical-card.live {
  border-color: var(--blue-mid);
  background: var(--blue-light);
}
.vertical-card.live:hover { border-color: var(--blue); }
.vertical-card.live::after {
  content: 'Live';
  position: absolute;
  top: var(--space-3); right: var(--space-3);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: 100px;
  padding: 2px 8px;
}

.vertical-icon-wrap {
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.vertical-card.live .vertical-icon-wrap {
  background: var(--white);
  border-color: var(--blue-mid);
}
.vertical-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.3;
}
.vertical-card-tools {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.vertical-card-coming {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ── TOOL CARDS ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-6);
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tool-card-media {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--blue-light) 0%, #E0EFFE 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tool-card-media-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--blue-mid) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-mid) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}
.tool-card-media-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.play-btn {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.play-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.play-btn svg { width: 20px; height: 20px; fill: var(--blue); margin-left: 2px; }
.media-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--blue-mid);
}

.tool-card-body {
  padding: var(--space-5) var(--space-5) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tool-vertical-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-2);
}
.tool-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.tool-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  flex: 1;
  margin-bottom: var(--space-5);
}
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.tool-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--slate);
}

.tool-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.why-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.why-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.why-desc { font-size: 13px; line-height: 1.65; color: var(--slate); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: var(--space-12) var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.cta-strip-sub { font-size: 14px; color: #94A3B8; }
.cta-strip-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info {}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: var(--ink);
}
.contact-info-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: var(--space-8);
}
.contact-emails {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact-email-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.contact-email-item:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); }
.contact-email-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-email-icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.contact-email-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-email-addr { font-size: 14px; font-weight: 500; color: var(--blue); }

.trust-items { display: flex; flex-direction: column; gap: var(--space-3); }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.trust-bullet {
  width: 18px; height: 18px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-bullet svg { width: 10px; height: 10px; stroke: var(--blue); fill: none; stroke-width: 2.5; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-6);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-5); }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
  appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.form-footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-success {
  display: none;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-10);
  text-align: center;
}
.form-success-icon {
  width: 48px; height: 48px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-5);
}
.form-success-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; }
.form-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.form-success-title span { color: #60A5FA; }
.form-success p { font-size: 14px; color: #94A3B8; line-height: 1.6; }

/* ── DEMO MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-in 0.28s cubic-bezier(.22,1,.36,1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
}
.modal-close:hover { background: var(--ink); border-color: var(--ink); }
.modal-close:hover svg { stroke: var(--white); }
.modal-close svg { width: 14px; stroke: var(--slate); fill: none; stroke-width: 2; }
.modal-badge { margin-bottom: var(--space-3); }
.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-6);
  color: var(--ink);
  line-height: 1.2;
}
.modal-success {
  display: none;
  text-align: center;
  padding: var(--space-4) 0;
}
.modal-success-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
}
.modal-success-icon svg { width: 24px; stroke: var(--green); fill: none; stroke-width: 2; }
.modal-success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.modal-success p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: clamp(36px, 5vw, 64px) var(--section-px);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-glow {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.page-hero-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: #94A3B8;
  max-width: 520px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: clamp(36px, 5vw, 60px) var(--section-px) var(--space-6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-6);
}
.footer-brand .logo { color: var(--white); margin-bottom: var(--space-4); }
.footer-brand .logo-mark { background: rgba(37,99,235,0.3); }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: #64748B; max-width: 260px; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { font-size: 14px; color: #94A3B8; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #334155;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .verticals-hero-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .approach-grid { grid-template-columns: 1fr; }
  .approach-arrow { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-stats { gap: var(--space-8); }
  .form-card { padding: var(--space-6); }
  .modal { padding: var(--space-6); }
  .footer-top { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   INDEX — page-specific styles
   ============================================================ */
    /* ── HERO RIGHT PANEL ── */
    .hero-right-panel {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }
    .hero-stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-5) var(--space-6);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: var(--space-5);
    }
    .hero-stat-card-icon {
      width: 44px; height: 44px;
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .hero-stat-card-icon svg { width: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
    .hero-stat-card-num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.025em;
      line-height: 1;
      margin-bottom: 3px;
    }
    .hero-stat-card-num span { color: var(--blue); }
    .hero-stat-card-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .hero-tool-list {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .hero-tool-list-header {
      padding: var(--space-4) var(--space-5);
      border-bottom: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: var(--space-2);
    }
    .hero-tool-list-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-green 2s infinite; }
    .hero-tool-item {
      padding: var(--space-3) var(--space-5);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
    }
    .hero-tool-item:last-child { border-bottom: none; }
    .hero-tool-item-name { font-size: 13px; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .hero-tool-item-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: 100px;
      padding: 2px 8px;
      white-space: nowrap;
    }

    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right-panel { display: none; }
    }
    .announce-bar {
      background: var(--navy);
      padding: 10px var(--section-px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      position: relative;
      z-index: 201;
    }
    .announce-bar-inner {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #64748B;
      display: flex;
      align-items: center;
      gap: var(--space-3);
      flex-wrap: wrap;
      justify-content: center;
    }
    .announce-bar-inner strong { color: var(--white); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0; }
    .announce-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: pulse-green 2s infinite; }
    .announce-link { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; color: #a89ff0; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; transition: color var(--t-fast); }
    .announce-link:hover { color: var(--white); }
    .announce-link svg { width: 11px; stroke: currentColor; fill: none; stroke-width: 2; }
    .has-bar .site-header { top: 41px; }
    .has-bar .mobile-nav  { top: calc(var(--header-h) + 41px); }
    .has-bar .page        { padding-top: calc(var(--header-h) + 41px); }

    /* ── PROOF STRIP ── */
    .proof-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 13px var(--section-px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(8px, 2vw, 24px);
      flex-wrap: wrap;
      overflow: hidden;
    }
    .proof-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--slate); white-space: normal; }
    .proof-item svg { width: 13px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; }
    .proof-sep { width: 1px; height: 14px; background: var(--border-dark); flex-shrink: 0; }

    /* ── HERO EXTRAS ── */
    .btn-text-link { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--slate); display: inline-flex; align-items: center; gap: 6px; transition: color var(--t-fast); padding: 11px 0; }
    .btn-text-link:hover { color: var(--blue); }
    .btn-text-link svg { width: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ── PROCESS STRIP ── */
    .process-strip {
      background: var(--navy);
      padding: var(--space-10) var(--section-px);
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center;
    }
    .process-step { padding: 0 clamp(12px, 2.5vw, 36px); display: flex; flex-direction: column; align-items: center; text-align: center; }
    .process-step-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; line-height: 1; margin-bottom: var(--space-2); }
    .process-step-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .process-step-desc { font-size: 12px; color: #64748B; line-height: 1.55; max-width: 180px; }
    .process-sep { display: flex; align-items: center; }
    .process-sep svg { width: 20px; stroke: #334155; fill: none; stroke-width: 1.5; }

    /* ── SECTION HELPERS ── */
    .section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6); }
    .see-all { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; padding-bottom: 4px; transition: gap var(--t-fast); }
    .see-all:hover { gap: 10px; }
    .see-all svg { width: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ── VERTICALS TEASER ── */
    .teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
    .teaser-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-2); transition: box-shadow var(--t-mid), transform var(--t-mid), border-color var(--t-mid); text-decoration: none; }
    .teaser-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-mid); }
    .teaser-icon { font-size: 22px; }
    .teaser-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
    .teaser-desc { font-size: 13px; line-height: 1.6; color: var(--slate); flex: 1; }
    .teaser-link { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; margin-top: var(--space-1); }
    .teaser-link svg { width: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ── TOOLS TEASER ── */
    .tool-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
    .tool-teaser-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); display: flex; align-items: center; gap: var(--space-4); box-shadow: var(--shadow-sm); transition: box-shadow var(--t-mid), transform var(--t-mid); text-decoration: none; }
    .tool-teaser-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .tool-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--blue-mid); line-height: 1; flex-shrink: 0; letter-spacing: -0.02em; width: 34px; }
    .tool-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
    .tool-vert { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); }

    /* ── PITCH ROW ── */
    .pitch-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: center; }
    .pitch-points { display: flex; flex-direction: column; gap: var(--space-5); }
    .pitch-point { display: flex; gap: var(--space-4); align-items: flex-start; }
    .pitch-icon { width: 34px; height: 34px; background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: var(--radius-sm); display: grid; place-items: center; flex-shrink: 0; }
    .pitch-icon svg { width: 15px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
    .pitch-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
    .pitch-text span { font-size: 13px; color: var(--slate); line-height: 1.55; }

    /* ── CASE STUDIES ── */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
    }
    .case-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: box-shadow var(--t-mid), transform var(--t-mid);
    }
    .case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .case-card-top {
      background: var(--navy);
      padding: var(--space-5) var(--space-5) var(--space-6);
      position: relative;
    }
    .case-vertical {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #a89ff0;
      margin-bottom: var(--space-2);
    }
    .case-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: var(--space-3);
    }
    .case-client {
      font-size: 12px;
      color: #64748B;
      font-style: italic;
    }
    .case-card-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
    .case-section-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-1);
      margin-top: var(--space-4);
    }
    .case-section-label:first-child { margin-top: 0; }
    .case-text { font-size: 13px; line-height: 1.65; color: var(--slate); }
    .case-outcome {
      margin-top: var(--space-5);
      padding: var(--space-4);
      background: var(--green-light);
      border: 1px solid #A7F3D0;
      border-radius: var(--radius-sm);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }
    .case-outcome-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
    .case-outcome-stat { display: flex; align-items: center; gap: var(--space-3); }
    .case-outcome-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
    .case-outcome-desc { font-size: 12px; color: var(--slate); line-height: 1.4; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
    }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-6);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      transition: box-shadow var(--t-mid), transform var(--t-mid);
    }
    .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .testimonial-stars { display: flex; gap: 3px; }
    .testimonial-stars span { color: #F59E0B; font-size: 14px; }
    .testimonial-quote {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.55;
      color: var(--ink);
      letter-spacing: -0.01em;
      flex: 1;
    }
    .testimonial-quote::before { content: '\201C'; color: var(--blue); }
    .testimonial-quote::after  { content: '\201D'; color: var(--blue); }
    .testimonial-author { display: flex; align-items: center; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid var(--border); }
    .testimonial-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--blue);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .testimonial-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
    .testimonial-role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted); }

    /* ── PRICING TEASER ── */
    .pricing-teaser {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: var(--space-5);
      margin-top: var(--space-8);
    }
    .pricing-teaser-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-6);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: box-shadow var(--t-mid), transform var(--t-mid);
    }
    .pricing-teaser-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .pricing-teaser-card.featured { border-color: var(--blue); box-shadow: var(--shadow-blue); }
    .pricing-tier-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin-bottom: var(--space-2); }
    .pricing-tier-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; margin-bottom: var(--space-2); }
    .pricing-tier-desc { font-size: 13px; color: var(--slate); line-height: 1.55; margin-bottom: var(--space-5); }
    .pricing-tier-cta { display: block; }

    /* ── TRUST BAND ── */
    .trust-band { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: var(--space-8) var(--section-px); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
    .trust-item { display: flex; gap: var(--space-4); align-items: flex-start; }
    .trust-icon { width: 36px; height: 36px; background: rgba(90,79,207,0.15); border: 1px solid rgba(90,79,207,0.2); border-radius: var(--radius-sm); display: grid; place-items: center; flex-shrink: 0; }
    .trust-icon svg { width: 15px; stroke: #a89ff0; fill: none; stroke-width: 1.5; }
    .trust-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
    .trust-desc { font-size: 12px; color: #64748B; line-height: 1.55; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .process-strip { grid-template-columns: 1fr; gap: var(--space-6); padding: var(--space-8) var(--section-px); }
      .process-sep { display: none; }
      .process-step { align-items: flex-start; text-align: left; padding: 0; }
      .case-grid { grid-template-columns: 1fr; }
      .pricing-teaser { grid-template-columns: 1fr; }
    }
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right-panel { display: none; }
    }
    @media (max-width: 900px) {
      .teaser-grid { grid-template-columns: repeat(2, 1fr); }
      .tool-teaser-grid { grid-template-columns: repeat(2, 1fr); }
      .pitch-row { grid-template-columns: 1fr; }
      .trust-band { grid-template-columns: 1fr; gap: var(--space-5); }
      .proof-sep { display: none; }
    }
    @media (max-width: 520px) {
      .teaser-grid { grid-template-columns: 1fr; }
      .tool-teaser-grid { grid-template-columns: 1fr; }
      .has-bar .site-header { top: 60px; }
      .has-bar .page { padding-top: calc(var(--header-h) + 60px); }
      .has-bar .mobile-nav { top: calc(var(--header-h) + 60px); }
    }
  

/* ============================================================
   TOOLS — page-specific styles
   ============================================================ */
    /* ── ENRICHED TOOL CARD ── */
    .etool-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--t-mid);
      margin-bottom: var(--space-6);
    }
    .etool-card:hover { box-shadow: var(--shadow-lg); }

    .etool-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-6);
      align-items: start;
      padding: var(--space-6) var(--space-6) 0;
    }
    .etool-meta {}
    .etool-vertical {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: var(--space-2);
    }
    .etool-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.015em;
      margin-bottom: var(--space-3);
      line-height: 1.2;
    }
    .etool-summary {
      font-size: 14px;
      line-height: 1.7;
      color: var(--slate);
      max-width: 620px;
    }
    .etool-status-col {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: var(--space-3);
    }

    /* Media placeholder */
    .etool-media {
      margin: var(--space-5) var(--space-6);
      aspect-ratio: 16/6;
      background: linear-gradient(135deg, var(--blue-light) 0%, #dbeafe 100%);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .etool-media-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--blue-mid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue-mid) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.3;
    }
    .etool-media-content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-3);
    }
    .play-btn {
      width: 48px; height: 48px;
      background: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: transform var(--t-mid), box-shadow var(--t-mid);
    }
    .play-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
    .play-btn svg { width: 18px; height: 18px; fill: var(--blue); margin-left: 2px; }
    .media-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--white);
      padding: 3px 10px;
      border-radius: 100px;
      border: 1px solid var(--blue-mid);
    }

    /* 3-col info grid */
    .etool-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .etool-info-col {
      padding: var(--space-5) var(--space-6);
      border-right: 1px solid var(--border);
    }
    .etool-info-col:last-child { border-right: none; }
    .etool-info-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-3);
    }
    .etool-steps { display: flex; flex-direction: column; gap: var(--space-2); }
    .etool-step {
      display: flex;
      gap: var(--space-3);
      font-size: 13px;
      color: var(--slate);
      line-height: 1.5;
      align-items: flex-start;
    }
    .etool-step-num {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--blue);
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: 50%;
      width: 18px; height: 18px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .etool-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
    .etool-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--slate);
    }
    .etool-customise { font-size: 13px; line-height: 1.65; color: var(--slate); }
    .etool-customise strong { color: var(--ink); font-weight: 600; }

    /* footer bar */
    .etool-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-4) var(--space-6);
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .etool-who {
      font-size: 13px;
      color: var(--slate);
    }
    .etool-who strong { color: var(--ink); font-weight: 600; }

    @media (max-width: 760px) {
      .etool-header { grid-template-columns: 1fr; }
      .etool-status-col { align-items: flex-start; }
      .etool-info-grid { grid-template-columns: 1fr; }
      .etool-info-col { border-right: none; border-bottom: 1px solid var(--border); }
      .etool-info-col:last-child { border-bottom: none; }
    }
  

/* ============================================================
   VERTICALS — page-specific styles
   ============================================================ */
    /* Live vertical detail cards */
    .live-vertical-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-5);
      margin-bottom: var(--space-12);
    }
    .live-vertical-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-6);
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--t-mid), transform var(--t-mid);
      position: relative;
      overflow: hidden;
    }
    .live-vertical-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: var(--blue);
    }
    .live-vertical-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .lvc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--space-4);
    }
    .lvc-icon-title { display: flex; align-items: center; gap: var(--space-3); }
    .lvc-icon { font-size: 26px; }
    .lvc-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .lvc-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--slate);
      margin-bottom: var(--space-4);
    }
    .lvc-automations-title {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-3);
    }
    .lvc-automations {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .lvc-automation-item {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      font-size: 13px;
      color: var(--slate);
      line-height: 1.5;
    }
    .lvc-automation-item::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--blue);
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
    }
    .lvc-footer {
      margin-top: var(--space-5);
      padding-top: var(--space-4);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .lvc-tool-count {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
    }

    /* Coming soon grid */
    .coming-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: var(--space-4);
    }
    .coming-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--t-mid), transform var(--t-mid);
    }
    .coming-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .coming-card-header {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      margin-bottom: var(--space-3);
    }
    .coming-icon { font-size: 20px; }
    .coming-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }
    .coming-desc {
      font-size: 12px;
      line-height: 1.6;
      color: var(--muted);
    }

    /* Suggest panel */
    .suggest-panel {
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius-lg);
      padding: var(--space-8) var(--space-10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-8);
      flex-wrap: wrap;
      margin-top: var(--space-10);
    }
    .suggest-panel-text h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: var(--space-1);
      letter-spacing: -0.01em;
    }
    .suggest-panel-text p { font-size: 14px; color: var(--slate); }

    @media (max-width: 760px) {
      .live-vertical-grid { grid-template-columns: 1fr; }
    }
  

/* ============================================================
   PRICING — page-specific styles
   ============================================================ */
    /* ── ENGAGEMENT TIERS ── */
    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-10);
    }
    .tier-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-8) var(--space-8) var(--space-10);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: box-shadow var(--t-mid), transform var(--t-mid);
    }
    .tier-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .tier-card.featured {
      border-color: var(--blue);
      box-shadow: var(--shadow-blue);
    }
    .tier-card.featured:hover { box-shadow: 0 16px 48px rgba(37,99,235,0.22); }
    .tier-featured-label {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
    }
    .tier-icon {
      width: 44px; height: 44px;
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      margin-bottom: var(--space-5);
    }
    .tier-icon svg { width: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
    .tier-card.featured .tier-icon { background: var(--blue); border-color: var(--blue); }
    .tier-card.featured .tier-icon svg { stroke: var(--white); }
    .tier-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.015em;
      color: var(--ink);
      margin-bottom: var(--space-2);
    }
    .tier-tagline {
      font-size: 13px;
      color: var(--slate);
      margin-bottom: var(--space-5);
      line-height: 1.5;
    }
    .tier-price {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: var(--space-1);
    }
    .tier-price-note {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-6);
    }
    .tier-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: var(--space-5);
    }
    .tier-features {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      flex: 1;
      margin-bottom: var(--space-7);
    }
    .tier-feature {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      font-size: 13px;
      color: var(--slate);
      line-height: 1.5;
    }
    .tier-feature svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 1px; }
    .tier-feature.muted svg { stroke: var(--muted); }
    .tier-feature.muted { color: var(--muted); }

    /* ── WHAT'S INCLUDED TABLE ── */
    .included-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: var(--space-10);
    }
    .included-table th {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      padding: var(--space-3) var(--space-5);
      border-bottom: 2px solid var(--border);
      text-align: left;
      font-weight: 500;
    }
    .included-table th:not(:first-child) { text-align: center; }
    .included-table td {
      padding: var(--space-4) var(--space-5);
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--slate);
    }
    .included-table td:not(:first-child) { text-align: center; }
    .included-table tr:hover td { background: var(--bg); }
    .included-table .feature-name { color: var(--ink); font-weight: 500; }
    .check { color: var(--green); font-size: 16px; }
    .dash  { color: var(--muted); font-size: 16px; }
    .included-table .highlight-col { background: rgba(90,79,207,0.03); }

    /* ── FAQ ── */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-5);
      margin-top: var(--space-8);
    }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-6);
    }
    .faq-q {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: var(--space-3);
    }
    .faq-a { font-size: 13px; line-height: 1.7; color: var(--slate); }

    @media (max-width: 860px) {
      .tiers-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .included-table { display: none; }
    }
  