/* LinkPath AI — Shared Design System
 * Palette derived from the logo: deep navy background with warm→cool gradient accent
 */

:root {
  /* Backgrounds */
  --bg: #0a0d2e;              /* Main background — matches logo bg */
  --bg-2: #12163d;            /* Elevated panels */
  --bg-3: #1a1f4d;            /* Hover states / secondary panels */
  --border: #262c5c;
  --border-strong: #3a4380;

  /* Text */
  --text: #f5f7ff;
  --text-dim: #a5aed0;
  --text-muted: #6c7599;

  /* Brand gradient (from logo) */
  --grad-warm: #ff4d8f;       /* Pink */
  --grad-mid: #a855f7;        /* Purple */
  --grad-cool: #38bdf8;       /* Sky blue */
  --grad-full: linear-gradient(135deg, #ff4d8f 0%, #f97316 20%, #a855f7 55%, #38bdf8 100%);
  --grad-cool-only: linear-gradient(135deg, #a855f7, #38bdf8);
  --grad-warm-only: linear-gradient(135deg, #ff4d8f, #f97316);

  /* Accents */
  --accent: #38bdf8;
  --accent-2: #a855f7;
  --accent-warm: #ff4d8f;
  --success: #4ade80;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;

  /* Radii / shadows */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--text-dim); }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-2); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* NAVIGATION */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 24px;
  background: rgba(10, 13, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta {
  padding: 10px 20px;
  background: var(--grad-cool-only);
  color: var(--text) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .mobile-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-cool-only);
  color: var(--text);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
  color: var(--text);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--accent);
  color: var(--text);
}
.btn-arrow { font-size: 18px; transition: transform 0.15s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* SECTIONS */
section { padding: 64px 0; position: relative; z-index: 1; }
section.compact { padding: 40px 0; }

/* When two full sections stack directly, collapse the boundary gap.
   This preserves internal breathing room but tightens page rhythm. */
section + section { padding-top: 48px; }
section.compact + section,
section + section.compact { padding-top: 32px; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 20px; }
.section-lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 88px 0 56px;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 24px;
  max-width: 900px;
}
.hero h1 .grad-text {
  background: var(--grad-full);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* CARDS */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--grad-cool-only);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* FEATURE ROWS */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.feature-row.reverse .feature-visual { order: -1; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-visual { order: 0; }
}
.feature-visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRODUCT SHOWCASE */
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-full);
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.product-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.product-tagline {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 15px;
}
.product-description {
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}
.product-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.status-live {
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
  border: 1px solid rgba(74, 222, 128, 0.3);
}
.status-beta {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.3);
}
.status-development {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-2);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* CREDENTIALS BAR */
.credentials-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 22, 61, 0.5);
}
.credentials-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.credential {
  text-align: center;
}
.credential-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: var(--grad-cool-only);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.credential-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* PROCESS / TIMELINE */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 40px auto;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 60px;
  bottom: -12px;
  width: 2px;
  background: var(--border);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-cool-only);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p { font-size: 15px; }

/* FOOTER */
footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.footer-brand img { height: 40px; }
.footer-tagline {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); font-size: 14px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-legal { font-size: 11px; line-height: 1.6; margin-top: 12px; max-width: 900px; }

/* FORMS */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* PAGE HEADER (for internal pages) */
.page-header {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-header .container { max-width: 800px; }

/* UTILITY */
.grad-text {
  background: var(--grad-full);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-center { text-align: center; }
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 60px; }

/* CTA BANNER */
.cta-banner {
  margin: 60px 0;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(56, 189, 248, 0.08));
  border: 1px solid var(--border-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ==========================================================
   PILOT PROGRAM COMPONENTS
   ========================================================== */

/* Scarcity pill — hero banner */
.pilot-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 77, 143, 0.10);
  border: 1px solid rgba(255, 77, 143, 0.32);
  color: var(--accent-warm);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pilot-pill .pilot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 0 rgba(255, 77, 143, 0.6);
  animation: pilotPulse 2.4s ease-out infinite;
  flex: none;
}
@keyframes pilotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 143, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 77, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 143, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .pilot-pill .pilot-dot { animation: none; }
}

/* Screenshot / preview cards */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.shot-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.shot-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
.shot-frame {
  display: block;
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.shot-card .shot-body { display: block; padding: 20px 22px 24px; }
.shot-card .shot-title {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.shot-card .shot-caption {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.shot-card .shot-expand {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.shot-card:hover .shot-expand { color: var(--accent-2); }

/* Large single screenshot (product tour) */
.shot-feature {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 32px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.shot-feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.shot-feature img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--border); }
.shot-feature figcaption,
.shot-feature .shot-body { padding: 22px 28px 26px; }
.shot-feature .shot-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.shot-feature .shot-caption { font-size: 15px; color: var(--text-dim); margin: 0; }

/* Pilot program panel */
.pilot-panel {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.pilot-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-full);
}
.pilot-panel h2 { margin-bottom: 16px; }
.pilot-panel p { font-size: 17px; max-width: 720px; margin-bottom: 28px; }
.pilot-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}
.pilot-points li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 14px 16px 14px 34px;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pilot-points li::before {
  content: "◆";
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--accent-2);
  font-size: 10px;
}
@media (max-width: 700px) {
  .pilot-panel { padding: 28px 22px; }
}

/* Inline callout (contact form) */
.pilot-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.pilot-callout .pilot-callout-mark {
  font-size: 13px;
  color: var(--accent-2);
  line-height: 1.5;
  flex: none;
}
.pilot-callout p { font-size: 14.5px; color: var(--text-dim); margin: 0; line-height: 1.6; }

.shot-feature .shot-body { display: block; }
.shot-feature .shot-caption { display: block; }

/* ============================================================
   THINKERS TICKER — top of homepage
   ============================================================ */
.thinkers-ticker {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 77, 143, 0.08) 0%, rgba(168, 85, 247, 0.06) 50%, rgba(56, 189, 248, 0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.5rem;
  overflow: hidden;
  font-size: 0.88rem;
  min-height: 42px;
}
.thinkers-ticker .ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.thinkers-ticker .ticker-inner {
  opacity: 1;
  transform: translateY(0);
}
.thinkers-ticker .ticker-inner.ticker-fading {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.thinkers-ticker .ticker-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.thinkers-ticker .ticker-icon {
  color: #ff4d8f;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.thinkers-ticker .ticker-typewriter {
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  font-variant-numeric: tabular-nums;
  direction: ltr;
}
.thinkers-ticker .ticker-quote-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.thinkers-ticker .ticker-cursor {
  display: inline-block;
  width: 0.55ch;
  color: #ff4d8f;
  font-weight: 600;
  animation: linkpath-cursor-blink 1.05s steps(1) infinite;
  margin-left: 1px;
}
@keyframes linkpath-cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.thinkers-ticker .ticker-attribution {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.thinkers-ticker .ticker-attribution strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
@media (max-width: 720px) {
  .thinkers-ticker { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .thinkers-ticker .ticker-content { gap: 0.5rem; }
  .thinkers-ticker .ticker-attribution { display: none; }
}

/* ============================================================
   THINKERS GALLERY — bottom of philosophy page
   ============================================================ */
.thinkers-gallery {
  max-width: 1100px;
  margin: 5rem auto 4rem;
  padding: 0 1.5rem;
}
.thinkers-gallery .gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.thinkers-gallery .gallery-eyebrow {
  display: inline-block;
  color: #ff4d8f;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.thinkers-gallery h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.thinkers-gallery .gallery-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.thinkers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.thinker-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.thinker-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, #ff4d8f, #a855f7, #38bdf8);
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.thinker-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 77, 143, 0.25);
  transform: translateY(-2px);
}
.thinker-card:hover::before { opacity: 1; }
.thinker-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.thinker-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  margin: 0;
}
.thinker-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.thinker-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  margin: 0;
  min-height: calc(1.6em * 3);
  position: relative;
}
.thinker-quote .tq-text {
  color: rgba(255, 255, 255, 0.9);
}
.thinker-quote .tq-cursor {
  display: inline-block;
  width: 0.55ch;
  color: #ff4d8f;
  font-weight: 600;
  animation: linkpath-cursor-blink 1.05s steps(1) infinite;
  margin-left: 1px;
}
.thinker-quote.tq-done .tq-cursor {
  display: none;
}
.thinker-quote .tq-open,
.thinker-quote .tq-close {
  color: #ff4d8f;
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -0.3rem;
  font-family: Georgia, serif;
}
.thinker-connection {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.thinker-sleeve-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 600;
}
.thinker-connection-note {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.thinker-source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}
.thinker-source a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
}
.thinker-source a:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
 * LIGHT THEME (opt-in via <html data-theme="light">)
 * Nitrogen/Asset-Map lane: clean white, warm-teal accent, generous whitespace.
 * Dark stays the default; toggle switches this on.
 * ============================================================ */
html[data-theme="light"] {
  --bg: #fafbfc;
  --bg-2: #ffffff;
  --bg-3: #f4f6fa;
  --border: #e5e8ee;
  --border-strong: #d0d5de;

  --text: #0f1729;
  --text-dim: #4a5468;
  --text-muted: #7a8395;

  /* Warm-teal accent lane (advisor-tech feel) */
  --grad-warm: #ff8f5e;
  --grad-mid:  #14b8a6;
  --grad-cool: #0891b2;
  --grad-full: linear-gradient(135deg, #ff8f5e 0%, #f97316 25%, #14b8a6 65%, #0891b2 100%);
  --grad-cool-only: linear-gradient(135deg, #0d9488, #0891b2);
  --grad-warm-only: linear-gradient(135deg, #ff8f5e, #f97316);

  --accent: #0891b2;
  --accent-2: #14b8a6;
  --accent-warm: #ff8f5e;
  --success: #059669;

  --shadow-glow: 0 8px 32px rgba(20, 184, 166, 0.10);
}

html[data-theme="light"] body { color: var(--text); }
html[data-theme="light"] body::before {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09) 0%, transparent 60%);
}
html[data-theme="light"] body::after {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 60%);
}
html[data-theme="light"] nav.main-nav {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .btn-primary,
html[data-theme="light"] .nav-cta {
  color: #ffffff !important;
}
html[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.28);
}
html[data-theme="light"] .btn-secondary {
  color: var(--text);
  border-color: var(--border-strong);
  background: #ffffff;
}
html[data-theme="light"] .btn-secondary:hover {
  background: var(--bg-3);
  color: var(--text);
  border-color: var(--accent);
}
html[data-theme="light"] .section-eyebrow {
  background: rgba(20, 184, 166, 0.10);
  border-color: rgba(20, 184, 166, 0.30);
  color: #0e766a;
}
html[data-theme="light"] .hero-eyebrow {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.28);
  color: #0e766a;
}
html[data-theme="light"] .card {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(15, 23, 41, 0.04), 0 8px 24px rgba(15, 23, 41, 0.04);
}
html[data-theme="light"] .card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(15, 23, 41, 0.08);
}
html[data-theme="light"] .product-card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 41, 0.04), 0 12px 32px rgba(15, 23, 41, 0.05);
}
html[data-theme="light"] .product-card:hover {
  border-color: var(--accent);
}
html[data-theme="light"] .feature-visual {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 41, 0.04);
}
html[data-theme="light"] .status-live { background: rgba(5, 150, 105, 0.10); color: #047857; border-color: rgba(5, 150, 105, 0.28); }
html[data-theme="light"] .status-beta { background: rgba(8, 145, 178, 0.10); color: #0e7490; border-color: rgba(8, 145, 178, 0.28); }
html[data-theme="light"] .pilot-pill {
  background: rgba(20, 184, 166, 0.10);
  border-color: rgba(20, 184, 166, 0.30);
  color: #0e766a;
}
html[data-theme="light"] .credentials-bar {
  background: #ffffff;
  border-color: var(--border);
}
html[data-theme="light"] .thinkers-ticker {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-muted);
  border-bottom-color: var(--border);
}

/* Theme toggle (works in both themes) */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: 6px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--accent); background: var(--bg-2); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ============================================================
 * TWO-PATH HERO CARDS (client / advisor split)
 * ============================================================ */
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  max-width: 720px;
}
@media (max-width: 620px) {
  .hero-paths { grid-template-columns: 1fr; }
}
.hero-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-2);
  color: var(--text) !important;
  text-decoration: none !important;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
.hero-path::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56,189,248,0.35), rgba(168,85,247,0.15) 55%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
  transition: opacity 0.2s;
}
.hero-path:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 48px -20px rgba(56,189,248,.32);
}
.hero-path:hover::before { opacity: 1; }
.hero-path-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-path-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hero-path-copy {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-dim);
}
.hero-path-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.18s;
}
.hero-path:hover .hero-path-arrow { transform: translateX(4px); }

.hero-path-client .hero-path-eyebrow { color: var(--grad-warm); }
html[data-theme="light"] .hero-path-client .hero-path-eyebrow { color: var(--accent-warm); }
html[data-theme="light"] .hero-path::before {
  background: linear-gradient(135deg, rgba(20,184,166,0.35), rgba(255,143,94,0.15) 55%, transparent);
}

/* ============================================================
 * WORKING WITH JASON — client-facing landing page
 * ============================================================ */
.hero-client .hero-eyebrow { color: var(--accent-warm); background: rgba(255,77,143,.08); border-color: rgba(255,77,143,.28); }
html[data-theme="light"] .hero-client .hero-eyebrow { color: var(--accent-warm); background: rgba(255,143,94,.12); border-color: rgba(255,143,94,.32); }

/* Mockup visual (right column of client hero) */
.client-hero-visual { align-self: stretch; }
.visual-mockup {
  width: 100%;
  max-width: 460px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-title {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mockup-node {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  transition: transform 0.3s, border-color 0.3s;
}
.mockup-node:hover { transform: translateY(-2px); border-color: var(--accent); }
.mockup-node.accent-warm { border-color: rgba(255,77,143,.35); background: rgba(255,77,143,.06); }
.mockup-node.accent-cool { border-color: rgba(56,189,248,.35); background: rgba(56,189,248,.06); }
html[data-theme="light"] .mockup-node.accent-warm { border-color: rgba(255,143,94,.4); background: rgba(255,143,94,.08); }
html[data-theme="light"] .mockup-node.accent-cool { border-color: rgba(8,145,178,.35); background: rgba(8,145,178,.06); }
.mockup-caption {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Client steps (Step 1 / Step 2 cards) */
.client-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 24px; }
@media (max-width: 900px) { .client-steps { grid-template-columns: 1fr; gap: 20px; } }

.client-step {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.client-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--grad-full);
}
.client-step:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: 0 24px 50px -24px rgba(0,0,0,.4); }
html[data-theme="light"] .client-step:hover { box-shadow: 0 24px 50px -24px rgba(15,23,41,.15); }
.step-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.client-step h3 { margin-bottom: 12px; font-size: 24px; }
.step-lead { color: var(--text-dim); line-height: 1.6; margin-bottom: 18px; }
.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.step-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Expect grid */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 800px) { .expect-grid { grid-template-columns: 1fr; } }
.expect-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.expect-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-cool-only);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.expect-item h4 { margin-bottom: 8px; font-size: 18px; }
.expect-item p { font-size: 15px; line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 780px; margin-top: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.15s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 15px;
}

/* Client CTA note */
.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Light-theme CTA banner override */
html[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(255,143,94,0.06));
  border-color: var(--border-strong);
}
html[data-theme="light"] .cta-banner::before {
  background: radial-gradient(circle at center, rgba(20,184,166,0.12) 0%, transparent 40%);
}
html[data-theme="light"] footer { border-top: 1px solid var(--border); background: #ffffff; }
html[data-theme="light"] .visual-mockup {
  background: linear-gradient(160deg, #ffffff, #f4f6fa);
  box-shadow: 0 30px 60px -30px rgba(15,23,41,.15);
}
html[data-theme="light"] .mockup-node { background: #fafbfc; }
html[data-theme="light"] .expect-num { color: #ffffff; }

/* ============================================================
 * Hero grid — shared across homepage and working-with-jason
 * ============================================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Client hero visual: keep visible on mobile, let it shrink */
@media (max-width: 600px) {
  .visual-mockup { padding: 16px; max-width: 100%; }
  .mockup-node { font-size: 11px; }
}
@media (max-width: 400px) {
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
 * Jason portrait card (client hero)
 * ============================================================ */
.jason-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-2);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.55);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jason-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,77,143,.5), rgba(168,85,247,.25) 45%, transparent 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}
.jason-card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -25px rgba(0,0,0,.65); }
.jason-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
}
.jason-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.jason-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), transparent);
  border-top: 1px solid var(--border);
}
.jason-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.jason-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}
.jason-firm {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

html[data-theme="light"] .jason-card {
  background: #ffffff;
  box-shadow: 0 30px 60px -25px rgba(15,23,41,.18);
}
html[data-theme="light"] .jason-card::before {
  background: linear-gradient(160deg, rgba(255,143,94,.45), rgba(20,184,166,.25) 45%, transparent 75%);
}
html[data-theme="light"] .jason-caption {
  background: linear-gradient(180deg, rgba(15,23,41,.02), transparent);
}

@media (max-width: 900px) {
  .jason-card { max-width: 320px; }
}
@media (max-width: 600px) {
  .jason-card { max-width: 280px; }
  .jason-caption { padding: 16px 18px 18px; }
  .jason-name { font-size: 18px; }
}

/* ============================================================
 * "In the meeting" layout — mockup + numbered flow
 * ============================================================ */
.expect-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .expect-layout { grid-template-columns: 1fr; gap: 32px; }
  .expect-mockup { max-width: 380px; margin: 0 auto; }
}
.expect-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expect-flow .expect-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: transform 0.2s, border-color 0.2s;
}
.expect-flow .expect-item:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.expect-flow .expect-num { margin-bottom: 0; }
.expect-body h4 { margin-bottom: 6px; font-size: 17px; }
.expect-body p { font-size: 14.5px; line-height: 1.55; }

/* CTA banner with portrait */
.cta-with-portrait {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-portrait {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 3px solid var(--border-strong);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.45);
  background: var(--bg-2);
  margin-bottom: 20px;
  display: block;
}
html[data-theme="light"] .cta-portrait {
  border-color: rgba(15,23,41,.08);
  box-shadow: 0 12px 32px -8px rgba(15,23,41,.18);
}

/* Founder-portrait sizing (smaller than hero) */
.founder-portrait { max-width: 320px; }
@media (max-width: 900px) {
  .founder-portrait { max-width: 280px; }
}
