/* ═══════════════════════════════════════════════
   SIMPLICITY FINTECH — Main Stylesheet
   Fonts: Instrument Serif · DM Sans · JetBrains Mono
   Palette: Navy #1A2744 · Gold #B8862A · Warm White #FAFAF8
═══════════════════════════════════════════════ */

:root {
  --bg:            #FAFAF8;
  --bg-warm:       #F4F1EC;
  --surface:       #FFFFFF;
  --surface-soft:  #F7F5F2;
  --border:        rgba(0,0,0,0.08);
  --border-mid:    rgba(0,0,0,0.12);
  --navy:          #1A2744;
  --navy-soft:     #2D3F6B;
  --gold:          #B8862A;
  --gold-light:    #D4A340;
  --gold-dim:      rgba(184,134,42,0.10);
  --teal:          #1A7F6E;
  --teal-dim:      rgba(26,127,110,0.10);
  --text-body:     #5A5F72;
  --text-muted:    #9299AA;
  --text-ink:      #1A2744;
  --serif:         'Instrument Serif', Georgia, serif;
  --sans:          'DM Sans', sans-serif;
  --mono:          'JetBrains Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--text-ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-headline em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ─── NAVBAR ─── */
.sf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sf-nav .navbar-brand { padding: 0; }

.sf-nav .nav-link {
  color: var(--text-body) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 8px 0 !important;
}

.sf-nav .nav-link:hover { color: var(--navy) !important; }

.sf-nav .navbar-toggler {
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 6px 10px;
}

.sf-nav .navbar-toggler:focus { box-shadow: none; }

.sf-nav .navbar-collapse {
  background: rgba(250,250,248,0.98);
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 992px) {
  .sf-nav .navbar-collapse {
    background: transparent;
    padding: 0;
    border: none;
  }
}

.btn-nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--navy-soft) !important;
  transform: translateY(-1px);
}

/* ─── LOGO SVG ─── */
.logo-svg { height: 40px; width: auto; display: block; }
.logo-svg-sm { height: 34px; width: auto; display: block; }

/* ─── BUTTONS ─── */
.btn-primary-sf {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary-sf:hover {
  background: var(--navy-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,39,68,0.18);
}

.btn-ghost-sf {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border-mid);
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost-sf:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,39,68,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,39,68,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(184,134,42,0.07) 0%, rgba(26,127,110,0.03) 50%, transparent 75%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(184,134,42,0.22);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 820px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── AI TERMINAL ─── */
.terminal-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,39,68,0.10), 0 4px 16px rgba(26,39,68,0.06);
  max-width: 680px;
  margin: 0 auto;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}

.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red    { background: #FF5F57; }
.t-yellow { background: #FEBC2E; }
.t-green  { background: #28C840; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 2;
}

.t-line { display: flex; gap: 10px; align-items: flex-start; }
.t-prompt { color: var(--gold); flex-shrink: 0; }
.t-text   { color: var(--text-body); }
.t-text strong { color: var(--navy); font-weight: 500; }
.t-agent  { color: #7C5CBF; }
.t-ok     { color: var(--teal); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--navy);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── PROOF BAR ─── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 24px;
  white-space: nowrap;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: var(--border-mid);
  flex-shrink: 0;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 24px;
  white-space: nowrap;
}

.proof-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.proof-item span {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 400;
}

/* ─── PROBLEM SECTION ─── */
.problem-section { background: var(--bg); }

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.2s;
}

.problem-card:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,134,42,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover::before { opacity: 1; }

.problem-num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: rgba(26,39,68,0.06);
  margin-bottom: 16px;
  font-style: italic;
}

.problem-text { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.problem-text strong { color: var(--navy); font-weight: 500; }

.problem-bridge {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  text-align: center;
}

.problem-bridge em { color: var(--gold); font-style: normal; }

/* ─── PLATFORM ─── */
.platform-section { background: var(--surface); }

.platform-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.platform-card:hover {
  border-color: rgba(184,134,42,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,39,68,0.07);
}

.platform-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(184,134,42,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.platform-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.platform-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─── AGENTIC AI ─── */
.ai-section { background: var(--bg-warm); }

.ai-step-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.ai-step-wrap::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,42,0.3), rgba(26,127,110,0.2), transparent);
}

.ai-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  gap: 12px;
}

.ai-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(26,39,68,0.06);
  flex-shrink: 0;
}

.ai-step-title { font-size: 12px; font-weight: 500; color: var(--navy); }
.ai-step-desc  { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.outcome-card:hover {
  border-color: rgba(184,134,42,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,39,68,0.08);
}

.outcome-stat {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.outcome-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.outcome-desc  { font-size: 13px; color: var(--text-body); line-height: 1.65; margin: 0; }

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 6px 15px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text-body);
  letter-spacing: 0.03em;
}

.ai-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ─── SPOTLIGHTS ─── */
.spotlight-section { background: var(--bg); }
.spotlight-alt     { background: var(--surface); }

.spotlight-visual {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(26,39,68,0.07);
}

.spotlight-alt .spotlight-visual {
  background: var(--surface-soft);
}

.spotlight-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.spotlight-visual-inner { padding: 22px; }

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-title { font-size: 12px; font-weight: 500; color: var(--navy); font-family: var(--mono); }

.mock-badge {
  font-size: 10px; padding: 3px 8px;
  border-radius: 4px; font-family: var(--mono);
}

.mock-badge.green { background: rgba(26,127,110,0.12); color: #1A7F6E; }
.mock-badge.amber { background: rgba(184,134,42,0.12); color: #A0721A; }
.mock-badge.red   { background: rgba(200,60,60,0.10);  color: #C03C3C; }
.mock-badge.navy  { background: rgba(26,39,68,0.10);   color: #1A2744; }

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--surface-soft);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

.mock-row:last-child { margin-bottom: 0; }

.mock-row-left { display: flex; align-items: center; gap: 9px; }

.mock-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,134,42,0.2), rgba(26,127,110,0.15));
  border: 1px solid var(--border-mid);
  flex-shrink: 0;
}

.mock-name { font-size: 12px; color: var(--navy); font-weight: 500; line-height: 1.3; }
.mock-sub  { font-size: 10px; color: var(--text-muted); line-height: 1.3; }

.spotlight-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.spotlight-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.spotlight-title em { font-style: italic; color: var(--gold); }
.spotlight-body { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 22px; }

.spotlight-features { list-style: none; padding: 0; margin: 0; }
.spotlight-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  padding: 4px 0;
}

.sf-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ─── INTEGRATIONS ─── */
.integrations-section { background: var(--bg-warm); }

.integration-pill {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.integration-pill:hover {
  border-color: rgba(184,134,42,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,39,68,0.07);
}

.integration-name { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.integration-desc { font-size: 11px; font-family: var(--mono); color: var(--text-muted); letter-spacing: 0.04em; margin: 0; }

/* ─── STATS ─── */
.stats-section { background: var(--surface); }

.stat-cell {
  text-align: center;
  padding: 50px 20px;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child { border-right: none; }

@media (max-width: 767px) {
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 20px;
  }
  .stat-cell:last-child { border-bottom: none; }
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.stats-border {
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  overflow: hidden;
}

/* ─── RESEARCH TOOLS ─── */
.research-section { background: var(--bg); }

.research-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.research-card:hover {
  border-color: rgba(184,134,42,0.3);
  box-shadow: 0 6px 20px rgba(26,39,68,0.06);
}

.research-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.research-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.research-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── CTA ─── */
.cta-section { background: var(--bg); }

.cta-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(184,134,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--teal), transparent);
  opacity: 0.6;
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}

.cta-headline em { font-style: italic; color: var(--gold-light); }

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.cta-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: rgba(184,134,42,0.6); }

.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  font-family: var(--mono);
  letter-spacing: 0.03em;
  position: relative; z-index: 1;
}

@media (max-width: 600px) {
  .cta-form { flex-direction: column; }
  .cta-box { padding: 48px 24px; }
}

/* ─── FOOTER ─── */
.sf-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--navy); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--mono);
  margin: 0;
}

/* ─── PAGE HERO VARIANTS (inner pages) ─── */
.page-hero {
  padding: 130px 0 70px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero .hero-grid {
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black, transparent);
}

.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.page-hero-headline em { font-style: italic; color: var(--gold); }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── UTILITY ─── */
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.text-muted-sf { color: var(--text-muted) !important; }
.bg-warm     { background: var(--bg-warm) !important; }
.bg-surface  { background: var(--surface) !important; }
.bg-navy     { background: var(--navy) !important; }
.border-sf   { border: 1px solid var(--border-mid); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 2px; }

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 991px) {
  .hero-section { padding: 110px 20px 60px; }
  .ai-step-wrap::before { display: none; }
  .ai-step { flex-direction: row; text-align: left; gap: 14px; padding: 12px 0; }
  .ai-step-num { flex-shrink: 0; }
  .spotlight-visual { margin-bottom: 32px; }
}

@media (max-width: 767px) {
  .proof-inner { flex-direction: column; gap: 12px; }
  .proof-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary-sf, .btn-ghost-sf { width: 100%; justify-content: center; }
  .terminal-body { padding: 16px; font-size: 12px; }
  .cta-form { flex-direction: column; }
}

/* pricing page */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,39,68,0.09);
}

.pricing-card.featured {
  border-color: var(--navy);
  border-width: 2px;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-tier { font-size: 13px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pricing-price {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-desc { font-size: 14px; color: var(--text-body); margin-bottom: 28px; line-height: 1.6; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-body);
  padding: 5px 0;
}
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

/* about page */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--teal-dim));
  border: 2px solid var(--border-mid);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
}

.team-name { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; font-family: var(--mono); letter-spacing: 0.05em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.team-bio  { font-size: 13px; color: var(--text-body); line-height: 1.6; margin: 0; }

/* value prop timeline */
.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--border-mid);
}

.timeline-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
}

.timeline-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.timeline-desc  { font-size: 14px; color: var(--text-body); line-height: 1.65; margin: 0; }

.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.mt-6 { margin-top: 5rem !important; }

