/* ============================================
   Wealth on AutoPilot — Webinar Landing
   Light theme · Conversion-first
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-tint: #fff5f0;
  --surface: #ffffff;
  --border: #ececec;
  --border-strong: #1a1a1a;

  --text: #0e0e10;
  --text-2: #4a4a52;
  --text-3: #8a8a93;

  --primary: #ff5722;
  --primary-dark: #e64a19;
  --primary-soft: #fff1eb;

  --success: #10b981;
  --success-soft: #ecfdf5;
  --danger: #ef4444;
  --warn: #f59e0b;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 15, 20, 0.04), 0 1px 1px rgba(15, 15, 20, 0.03);
  --shadow: 0 6px 24px -8px rgba(15, 15, 20, 0.08), 0 2px 6px rgba(15, 15, 20, 0.04);
  --shadow-lg: 0 20px 48px -16px rgba(15, 15, 20, 0.12), 0 8px 20px -8px rgba(15, 15, 20, 0.06);
  --shadow-orange: 0 14px 30px -10px rgba(255, 87, 34, 0.4);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', 'Georgia', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px; /* room for sticky CTA */
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.container.narrow { max-width: 880px; }

.serif { font-family: var(--font-serif); font-weight: 400; }
.italic { font-style: italic; }
.up { color: var(--success); font-weight: 700; }
.up.big { font-size: 1.1em; }

/* Redacted past-performance numbers. The original % stays in the DOM for
   accessibility but is visually covered by a dark block. We pair with a
   small "LIVE" tag near the masked element on each Titan card. */
.masked {
  background: #0e0e10;
  color: transparent !important;
  border-radius: 4px;
  padding: 2px 8px;
  text-shadow: none;
  user-select: none;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
}
.masked::after {
  content: "LIVE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff7a4d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
}
.strike-soft { color: var(--text-3); text-decoration: line-through; font-weight: 500; }

/* ============ Announcement bar ============ */
.announcement-bar {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2218 50%, #1a1a1a 100%);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  flex-wrap: wrap;
}
.announcement-inner strong { color: #ff7a4d; font-weight: 700; }
.pulse-dot {
  width: 9px; height: 9px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6);
  animation: pulse 1.5s infinite;
}
.pulse-dot.small { width: 7px; height: 7px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

/* ============ Navigation ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
/* Footer brand sits on a soft background; allow a touch more breathing room */
.footer .brand-logo { height: 40px; }
@media (max-width: 640px) {
  .brand-logo { height: 30px; }
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--primary); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -12px rgba(255, 87, 34, 0.5);
}
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 17px 28px; font-size: 16.5px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }
.btn-sticky {
  padding: 13px 22px;
  font-size: 15px;
  border-radius: 12px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 50px 0 60px;
  background:
    radial-gradient(ellipse at top right, rgba(255, 87, 34, 0.07), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 200, 170, 0.18), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.live-dot {
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 18px 0 14px;
}
.hero-title .serif {
  background: linear-gradient(90deg, var(--primary), #ff8a65);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05em;
  letter-spacing: -0.01em;
}
.hero-tagline {
  font-size: 19px;
  color: var(--text-2);
  margin: 0 0 12px;
  font-weight: 500;
}
.hero-tagline strong { color: var(--text); font-weight: 700; }
.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 30px;
  max-width: 540px;
}

/* Reserve card */
.reserve-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.reserve-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.price-row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.price-strike {
  color: var(--text-3);
  font-weight: 500;
  text-decoration: line-through;
  font-size: 17px;
}
.price-now {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-off {
  background: var(--success-soft);
  color: var(--success);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.price-sub { color: var(--text-3); font-size: 13px; margin-top: 4px; }

.countdown {
  display: flex; gap: 6px;
}
.cd-item {
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.cd-item span {
  font-size: 18px; font-weight: 800; letter-spacing: -0.02em;
  display: block; line-height: 1;
}
.cd-item small {
  font-size: 9.5px; opacity: 0.65; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.countdown-label {
  font-size: 11px; color: var(--text-3);
  text-align: right; margin-top: 5px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.reserve-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-2);
  justify-content: center;
}

.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.trust-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-item small {
  font-size: 12.5px;
  color: var(--text-3);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card-1 {
  transform: rotate(-1.5deg);
}
.hero-card-1 .hc-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.hero-card-1 .hc-label::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--success); border-radius: 50%;
  display: inline-block;
}
.hc-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed #f0f0f0;
  gap: 10px;
}
.hc-code {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-size: 14px;
  margin-right: 6px;
  letter-spacing: -0.01em;
}
.hc-row:last-of-type { border-bottom: none; }
.hc-foot {
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 12px;
}
.hero-card-2 {
  align-self: flex-end;
  max-width: 75%;
  background: #fafaf7;
  transform: rotate(1.5deg);
}
.hc-mini {
  font-size: 13px;
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
  color: var(--text-2);
}
.dot-green, .dot-orange, .dot-blue {
  width: 8px; height: 8px; border-radius: 50%;
}
.dot-green { background: var(--success); }
.dot-orange { background: var(--primary); }
.dot-blue { background: #3b82f6; }

.hero-card-3 {
  align-self: flex-start;
  max-width: 70%;
  transform: rotate(-1deg);
  display: flex; align-items: center; gap: 14px;
}
.hc-spark { width: 80px; height: 36px; flex-shrink: 0; }
.hc-spark svg { width: 100%; height: 100%; }
.hc-spark-text strong {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.hc-spark-text small {
  font-size: 11.5px;
  color: var(--text-3);
}

/* ============ Press strip ============ */
.press-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  background: #fff;
}
.press-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.press-logos {
  display: flex; gap: 22px; justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--text-2);
  font-size: 15px;
}
.press-logos .dot { color: var(--text-3); }

/* ============ Section base ============ */
.section { padding: 78px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eye {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
  max-width: 760px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ Pain section ============ */
.section-pain {
  background: var(--bg-soft);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0 30px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.pain-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.pain-card h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 8px;
}
.pain-card p { font-size: 14.5px; color: var(--text-2); margin: 0; }
.pain-conclude {
  text-align: center;
  font-size: 19px;
  margin-top: 36px;
  color: var(--text);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Learn / Steps ============ */
.steps {
  display: flex; flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.step {
  display: flex; gap: 26px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step-alt { background: var(--bg-tint); border-color: #ffe0d0; }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  line-height: 0.9;
  color: var(--primary);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step-body p {
  color: var(--text-2);
  margin: 0 0 14px;
  font-size: 15.5px;
}
.step-checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.step-checks li {
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-2);
}
.step-alt .step-checks li { background: rgba(255,255,255,0.7); }

/* ============ Algos ============ */
.section-algos { background: var(--bg-soft); }
.algo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.algo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.algo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d8d8d8;
}
.algo-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.08);
}
.algo-badge {
  position: absolute;
  top: -10px; right: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.algo-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.algo-tag {
  font-size: 11.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.algo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.algo-stats > div {
  text-align: center;
}
.algo-stats strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.algo-stats small {
  font-size: 10.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.algo-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0 0 14px;
  line-height: 1.5;
}
.algo-foot {
  display: flex; justify-content: space-between;
  font-size: 12.5px;
}
.algo-cap { color: var(--text-3); font-weight: 600; }
.algo-live {
  color: var(--success);
  font-weight: 700;
}
.algo-cta {
  text-align: center;
  margin-top: 36px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.algo-cta p { margin: 0 0 14px; color: var(--text-2); font-size: 15.5px; }

.algo-cta-wrap { margin-top: 40px; }
.algo-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  background: linear-gradient(135deg, #0e0e10 0%, #2a1a14 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.algo-cta-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.aca-left { color: #fff; position: relative; }
.aca-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.18);
  color: #ff7a4d;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.aca-pill .pulse-dot { width: 7px; height: 7px; }
.aca-left h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.aca-left h3 .serif {
  background: linear-gradient(90deg, #ff7a4d, #ffaa80);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.aca-left p {
  color: #d9d9d9;
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.55;
}
.aca-checks {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px;
  color: #34d399;
  font-weight: 600;
}
.aca-right {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.aca-price {
  margin-bottom: 16px;
}
.aca-price strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.aca-strike {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.aca-price small {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.aca-meta {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.algo-cta-foot {
  text-align: center;
  margin-top: 14px;
}

/* ============ Engine flow ============ */
.engine-flow {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ef-node {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ef-icon { font-size: 30px; display: block; margin-bottom: 8px; }
.ef-node strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ef-node small {
  font-size: 12px;
  color: var(--text-3);
}
.ef-arrow {
  font-size: 22px;
  color: var(--primary);
  font-weight: 800;
}

/* ============ Social proof ============ */
.section-proof { background: #1a1a1a; color: #fff; }
.section-proof .section-eye { color: #ff7a4d; }
.section-proof .section-title { color: #fff; }
.section-proof .serif {
  background: linear-gradient(90deg, #ff7a4d, #ffaa80);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.ps-item {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  background: #232323;
}
.ps-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.ps-item small {
  font-size: 12.5px;
  color: #a8a8a8;
  letter-spacing: 0.04em;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.t-card {
  background: #232323;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 22px;
}
.t-stars { color: #ffb547; font-size: 14px; margin-bottom: 8px; }
.t-card p {
  font-size: 14.5px;
  color: #d9d9d9;
  margin: 0 0 18px;
  line-height: 1.55;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
}
.t-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.18);
  object-fit: cover;
}
.t-badge {
  display: inline-block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: #ff7a4d;
  background: rgba(255, 122, 77, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.t-author strong { display: block; font-size: 14px; color: #fff; }
.t-author small { font-size: 12px; color: #a8a8a8; }

/* ============ Fit section ============ */
.section-fit {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 90px 0;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 40px 0 30px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.fit-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fit-col:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fit-yes {
  border-color: #c7f0d7;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 70%);
}
.fit-no {
  border-color: #fcd5d5;
  background: linear-gradient(180deg, #fff5f5 0%, #fff 70%);
}
.fit-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 20px;
}
.fit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fit-icon-yes { background: #10b981; color: #fff; box-shadow: 0 8px 16px -8px rgba(16, 185, 129, 0.5); }
.fit-icon-no { background: #ef4444; color: #fff; box-shadow: 0 8px 16px -8px rgba(239, 68, 68, 0.5); }
.fit-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.fit-yes .fit-label { color: #0a8a4d; }
.fit-no .fit-label { color: #b03030; }
.fit-col h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.fit-yes h3 { color: #0a3a24; }
.fit-no h3 { color: #4a1010; }
.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fit-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-2);
}
.fl-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fit-yes .fl-icon { background: #d1fae5; }
.fit-no .fl-icon { background: #fee2e2; }
.fit-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.fit-list small {
  display: block;
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.5;
}
.fit-footnote {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.fit-footnote strong { color: var(--text); }

/* ============ Bonus ============ */
.section-bonus {
  background:
    radial-gradient(ellipse at top, rgba(255, 87, 34, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  padding: 90px 0;
}
.bonus-eye-pill {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #ff8a65);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px -10px rgba(255, 87, 34, 0.45);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.bonus-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff8a65);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.bonus-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}
.bc-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 10px -2px rgba(255, 87, 34, 0.4);
  z-index: 2;
}
.bc-ribbon-hot {
  background: linear-gradient(135deg, #ff5722 0%, #ef4444 100%);
  box-shadow: 0 4px 10px -2px rgba(239, 68, 68, 0.5);
}
.bc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
/* When a featured card has a ribbon, push the head row down so the ribbon
   and the price chip don't overlap. */
.bonus-card:has(.bc-ribbon) .bc-head { margin-top: 26px; }
.bc-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.bc-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.bc-strike {
  font-size: 11.5px;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 600;
}
.bc-free {
  font-size: 13px;
  font-weight: 800;
  color: var(--success);
  background: var(--success-soft);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.bc-icon {
  font-size: 32px;
  margin-bottom: 10px;
  background: var(--primary-soft);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.bonus-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.bonus-card p {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}

/* Plus bonuses (compact row) */
.bonus-plus-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 18px;
}
.bp-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.bp-pill {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.bonus-plus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bonus-mini {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.bonus-mini:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.bonus-mini-hot {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 70%);
  border-color: var(--primary);
}
.bm-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.bonus-mini-hot .bm-icon { background: #fff; }
.bm-body h4 {
  font-size: 14.5px;
  font-weight: 800;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.bm-body p {
  font-size: 12.5px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.45;
}
.bm-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.bm-strike {
  font-size: 11.5px;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 600;
}
.bm-free {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--success);
  background: var(--success-soft);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* Bonus total bar */
.bonus-total {
  margin-top: 36px;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #0e0e10 0%, #2a1a14 100%);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bonus-total::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.25) 0%, transparent 60%);
}
.bt-left, .bt-right { position: relative; z-index: 1; }
.bt-eye {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #a8a8a8;
  margin-bottom: 4px;
}
.bt-strike {
  font-size: 28px;
  font-weight: 700;
  color: #d9d9d9;
  text-decoration: line-through;
  letter-spacing: -0.02em;
}
.bt-arrow {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.bt-right strong {
  font-size: 36px;
  font-weight: 800;
  color: #ff7a4d;
  letter-spacing: -0.03em;
}
.bt-cta {
  justify-self: end;
  position: relative;
  z-index: 1;
}

/* ============ Pricing box ============ */
.section-pricing {
  background: linear-gradient(180deg, var(--bg-tint), var(--bg-soft));
}
.pricing-box {
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(255, 87, 34, 0.2);
}
.pb-eye {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: 0.05em;
}
.pricing-box h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.big-price {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2em;
}
.pb-sub {
  color: var(--text-2);
  font-size: 16px;
  margin: 0 0 24px;
}
.pb-list {
  list-style: none; padding: 0;
  max-width: 360px;
  margin: 0 auto 26px;
  text-align: left;
}
.pb-list li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.pb-list li:last-child { border-bottom: none; }
.pb-foot {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--text-3);
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap;
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============ Urgency band ============ */
.urgency-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a14 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.urgency-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  line-height: 1.15;
}
.urgency-band .serif {
  background: linear-gradient(90deg, var(--primary), #ffaa80);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.urgency-sub {
  margin: 18px 0 0;
  color: #a8a8a8;
  font-size: 14px;
}
.urgency-sub strong { color: #fff; }

/* ============ Footer ============ */
.footer {
  background: #fafaf7;
  padding-top: 50px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-tag {
  color: var(--text-3);
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 280px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.fc-sub {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 4px;
  line-height: 1.4;
}
.footer-entity {
  margin: 8px 0 6px !important;
  font-size: 12.5px !important;
  color: var(--text-2) !important;
}
.footer-entity strong { color: var(--text); font-weight: 700; }
.fc-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 12px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 4px 0;
}
.footer-cols a:hover { color: var(--primary); }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: #fff;
}
.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-3);
  margin: 0 0 6px;
  line-height: 1.6;
}

/* ============ Sticky CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px -10px rgba(0,0,0,0.08);
  z-index: 100;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.sc-price-row {
  display: flex; align-items: baseline; gap: 8px;
}
.sc-strike {
  color: var(--text-3);
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 500;
}
.sc-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sc-meta {
  font-size: 12.5px;
  color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.sc-meta strong { color: var(--primary); font-weight: 700; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: 2; }
  .pain-grid { grid-template-columns: 1fr; }
  .algo-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .engine-flow { flex-direction: column; gap: 12px; }
  .engine-flow .ef-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  body { padding-bottom: 96px; }
  .section { padding: 56px 0; }
  .hero { padding: 30px 0 40px; }
  .hero-title { font-size: 42px; }
  .hero-card-1, .hero-card-2, .hero-card-3 {
    transform: none;
    max-width: 100%;
  }
  .reserve-top { flex-direction: column; align-items: stretch; }
  .countdown-label { text-align: left; }
  .reserve-meta { justify-content: flex-start; }
  .hero-trust { gap: 22px; }
  .trust-item strong { font-size: 18px; }
  .algo-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .step { padding: 24px 22px; gap: 16px; flex-direction: column; }
  .step-num { font-size: 44px; }
  .step-body h3 { font-size: 19px; }
  .pricing-box { padding: 26px 20px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .announcement-bar { font-size: 11.5px; padding: 8px 0; }
  .announce-text { font-size: 11.5px; }
  .sticky-inner { gap: 10px; padding: 0 16px; }
  .sc-price { font-size: 18px; }
  .sc-meta { font-size: 11px; }
  .btn-sticky { padding: 10px 14px; font-size: 13.5px; }
  .urgency-band { padding: 50px 0; }
  .urgency-band h2 { font-size: 26px; }
  .ps-item strong { font-size: 22px; }
  .press-logos { gap: 14px; font-size: 13px; }
  .pain-card { padding: 22px 18px; }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .price-now { font-size: 32px; }
  .cd-item { min-width: 38px; padding: 5px 7px; }
  .cd-item span { font-size: 16px; }
}

/* ============================================================
   ADDITIONS — Returns Wealth (Titan Series, founders, risk, etc.)
   ============================================================ */

/* Brain flow (Explore → Brain → Activate) */
.brain-flow {
  display: grid;
  grid-template-columns: 1fr 60px 1.05fr 60px 1fr;
  gap: 0;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.bf-node {
  text-align: center;
  position: relative;
  padding: 6px;
}
.bf-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  border-radius: 18px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.bf-icon img { width: 60px; height: 60px; display: block; }
.bf-num {
  position: absolute;
  top: 0; right: 28%;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bf-node strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.bf-node small {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
}
.bf-node-brain .bf-icon {
  background: #0e0e10;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}
.bf-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bf-arrow svg { width: 100%; height: 24px; }

/* Step icons (SVG) */
.step-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  padding: 6px;
  align-self: flex-start;
}
.step-icon img { width: 76px; height: 76px; display: block; }
.step .step-num {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 6px;
}
.step-alt .step-icon { background: #fff; }

/* Step tags (Explore / Brain / Activate) */
.step-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.step-alt .step-tag {
  background: #fff;
  color: var(--primary-dark);
}

/* Promise strip — 4 pillars below 3-step section */
.promise-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #0e0e10;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.promise-strip .ps-item {
  text-align: center;
  color: #fff;
  padding: 6px 8px;
}
.promise-strip .ps-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}
.promise-strip strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.promise-strip small {
  display: block;
  font-size: 12px;
  color: #a8a8a8;
  line-height: 1.4;
}

/* ===================================================
   Process Engine (3-step interactive)
   =================================================== */
.process-engine {
  background: linear-gradient(180deg, #fff 0%, #fafaf7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

/* Step nav (left rail) */
.pe-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pe-step {
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 10px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease;
  position: relative;
}
.pe-step:hover { background: #fff5f0; }
.pe-step.active { background: #fff; box-shadow: var(--shadow-sm); }

.pe-arrow {
  grid-row: 1;
  grid-column: 1;
  color: var(--text-3);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease, color .2s ease;
}
.pe-step.active .pe-arrow { opacity: 1; color: var(--primary); }

.pe-num {
  grid-row: 1;
  grid-column: 2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-3);
  transition: color .2s ease;
}
.pe-step.active .pe-num { color: var(--primary); }

.pe-title {
  grid-row: 2;
  grid-column: 2;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 4px;
  color: var(--text);
  letter-spacing: -0.01em;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  opacity: 0.45;
  transition: opacity .2s ease;
}
.pe-step.active .pe-title { opacity: 1; }

.pe-desc {
  grid-row: 3;
  grid-column: 2;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .2s ease, margin-top .2s ease;
}
.pe-step.active .pe-desc {
  max-height: 100px;
  opacity: 1;
}

/* Right canvas */
.pe-canvas {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px 14px;
  overflow: hidden;
}
.pe-100gb {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--primary-soft);
  border: 1px solid #ffd0bf;
  border-radius: 10px;
  padding: 6px 14px;
  text-align: center;
  z-index: 2;
}
.pe-100gb strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pe-100gb small {
  display: block;
  font-size: 8px;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  margin-top: 2px;
  font-weight: 700;
}

.pe-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------- Stage highlighting by data-step ----------- */
/* Default: everything visible */
.pe-svg .pe-filters,
.pe-svg .pe-funnel,
.pe-svg .pe-exec,
.pe-svg .pe-engine,
.pe-svg .pe-datacenter,
.pe-svg .pe-sources,
.pe-svg [class^="pe-conn"] {
  transition: opacity .5s ease, filter .5s ease;
}

/* STEP 1 — sources + DC + engine lit; filters, funnel, exec are dim */
.process-engine[data-step="1"] .pe-filters,
.process-engine[data-step="1"] .pe-funnel,
.process-engine[data-step="1"] .pe-exec,
.process-engine[data-step="1"] .pe-conn-3,
.process-engine[data-step="1"] .pe-conn-4,
.process-engine[data-step="1"] .pe-conn-5 {
  opacity: 0.18;
  filter: grayscale(0.8);
}

/* STEP 2 — sources + DC + engine + filters lit; funnel + exec dim */
.process-engine[data-step="2"] .pe-funnel,
.process-engine[data-step="2"] .pe-exec,
.process-engine[data-step="2"] .pe-conn-4,
.process-engine[data-step="2"] .pe-conn-5 {
  opacity: 0.18;
  filter: grayscale(0.8);
}

/* STEP 3 — everything lit (default) */

/* Engine pulse animation when active */
@keyframes peStripPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.pe-svg .pe-strip-1 { animation: peStripPulse 2s ease-in-out infinite; }
.pe-svg .pe-strip-2 { animation: peStripPulse 2s ease-in-out infinite 0.3s; }
.pe-svg .pe-strip-3 { animation: peStripPulse 2s ease-in-out infinite 0.6s; }

/* Atom slow rotate */
@keyframes peAtomSpin {
  to { transform: rotate(360deg); }
}
.pe-svg .pe-atom {
  transform-origin: center;
  transform-box: fill-box;
  animation: peAtomSpin 14s linear infinite;
}

/* Data center LEDs blink */
@keyframes peLed { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.pe-led { animation: peLed 1.8s ease-in-out infinite; }
.pe-led-2 { animation-delay: 0.6s; }
.pe-led-3 { animation-delay: 1.2s; }

/* Connector dashed flow on the active arrows */
@keyframes peDash { to { stroke-dashoffset: -40; } }
.pe-svg [class^="pe-conn"] {
  stroke-dasharray: 8 6;
  animation: peDash 1.4s linear infinite;
}
.process-engine[data-step="1"] .pe-conn-3,
.process-engine[data-step="1"] .pe-conn-4,
.process-engine[data-step="1"] .pe-conn-5,
.process-engine[data-step="2"] .pe-conn-4,
.process-engine[data-step="2"] .pe-conn-5 {
  animation: none;
  stroke: #d8d8d8;
}

/* Bottom feature row inside engine card */
.pe-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.pe-features > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 600;
}
.pe-features span { font-size: 14px; }

/* Engine diagram (legacy SVG embed — kept for asset fallback if reused) */
.engine-diagram {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px 24px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.engine-diagram object {
  width: 100%;
  height: auto;
  display: block;
}
.engine-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.engine-stats > div {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
}
.engine-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.engine-stats small {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Mission layout (text + India map) */
.mission-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.mission-text { text-align: left; }
.mission-text .mission-title {
  font-size: clamp(32px, 4.4vw, 50px);
  text-align: left;
}
.mission-text .mission-sub {
  margin: 0 0 32px;
  font-size: 17px;
  text-align: left;
}
.mission-text .mission-pillars { margin-top: 0; }
.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission-visual object {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* Performance chart */
.performance-chart {
  margin-top: 50px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.performance-chart object {
  width: 100%;
  height: auto;
  display: block;
}

/* Risk hero (text + shield) */
.risk-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.risk-hero-text { text-align: left; }
.risk-hero-text .section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: left;
  max-width: none;
}
.risk-hero-text .section-sub {
  text-align: left;
  margin: 14px 0 0;
}
.risk-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.risk-hero-visual object {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* Titan card mini payoff diagrams */
.tc-payoff {
  background: #fafaf7;
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 4px 0 0;
}
.tc-payoff svg {
  width: 100%;
  height: auto;
  display: block;
}
.tc-payoff .po-zero {
  stroke: #cfcfcf;
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.tc-payoff .po-curve {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tc-payoff .po-naked {
  fill: none;
  stroke: #ef4444;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.7;
}
.tc-payoff .po-floor {
  stroke: #10b981;
  stroke-width: 1.5;
  stroke-dasharray: 3 3;
}
.tc-payoff .po-sl {
  stroke: #f59e0b;
  stroke-width: 2;
  stroke-dasharray: none;
}
.tc-payoff .po-saved {
  fill: #fee2e2;
  opacity: 0.5;
  stroke: none;
}
.tc-payoff .po-x {
  font: 600 8px 'Inter', sans-serif;
  fill: #8a8a93;
  letter-spacing: 0.04em;
}
.tc-payoff .po-tag {
  font: 700 8.5px 'Inter', sans-serif;
  fill: #10b981;
  letter-spacing: 0.04em;
}
.tc-payoff .po-tag-sl { fill: #f59e0b; }
.tc-payoff .po-tag-up {
  font: 700 8.5px 'Inter', sans-serif;
  fill: var(--primary);
  letter-spacing: 0.04em;
}
.tc-payoff .po-sl-label {
  font: 800 8.5px 'Inter', sans-serif;
  fill: #f59e0b;
  letter-spacing: 0.08em;
}
.tc-payoff .po-tag-naked {
  font: 700 8px 'Inter', sans-serif;
  fill: #ef4444;
  letter-spacing: 0.04em;
}
.tc-payoff[data-kind="naked"] {
  background: #fff8f0;
  border-color: #ffd9a8;
}
.tc-payoff[data-kind="expiry"] {
  background: #f0f6ff;
  border-color: #c7dcff;
}

/* Founders — origin quote */
.founder-origin {
  max-width: 760px;
  margin: 0 auto 40px;
  background: var(--bg-tint);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  position: relative;
}
.founder-origin p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
.founder-origin p strong {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  color: var(--primary-dark);
}



/* Hero "Live in webinar" pill */
.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e0e10;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-live-pill strong { color: #ff7a4d; font-weight: 700; }
.hlp-dot {
  width: 9px; height: 9px;
  background: #ff5722;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

/* Press logos — stylised wordmarks */
.press-strip { padding: 30px 0; }
.press-logos {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.plogo {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #4a4a52;
  opacity: 0.78;
  transition: opacity .15s ease;
  white-space: nowrap;
}
.plogo:hover { opacity: 1; }
.plogo strong { font-weight: 800; color: #1a1a1a; }
.plogo em { font-style: normal; }
.plogo-ys { font-family: 'Inter', sans-serif; }
.plogo-ys strong { color: #ff4f4f; }
.plogo-inc42 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}
.plogo-inc42 em { color: #1a1a1a; font-weight: 800; }
.plogo-inc42 strong { color: #ff5722; }
.plogo-mc {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #4a4a52;
}
.plogo-mc strong { color: #e60023; }
.plogo-et {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
  color: #1a1a1a;
}
.plogo-bs {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a3a8f;
}
.plogo-mint {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: #d4163c;
  letter-spacing: -0.02em;
}

/* ===== Mission section ===== */
.section-mission {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
  border-bottom: 1px solid var(--border);
}
.mission-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.mission-eye {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.mission-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.mission-num {
  background: linear-gradient(90deg, var(--primary), #ff8a65);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.mission-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 40px;
}
.mission-sub strong { color: var(--text); }
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.mp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  position: relative;
}
.mp-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-size: 24px;
  letter-spacing: -0.02em;
}
.mp strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  margin: 6px 0 4px;
  letter-spacing: -0.01em;
}
.mp small {
  display: block;
  font-size: 13.5px;
  color: var(--text-3);
}

/* ===== Titan Series ===== */
.section-algos { background: var(--bg-soft); }
.now-live-pill {
  display: inline-block;
  background: #0e0e10;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.titan-legend {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tl-chip {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}
.tl-hedged { color: #0a8a4d; }
.tl-hedged::first-letter { color: #10b981; }
.tl-expiry { color: #1d4ed8; }
.tl-naked { color: #c2410c; }
.titan-family {
  margin-bottom: 50px;
}
.tf-head {
  margin-bottom: 18px;
  text-align: left;
  padding-left: 4px;
}
.tf-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.tf-head p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}
.titan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.titan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.titan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.titan-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.08);
}
.titan-card[data-family="hedged"] { border-top: 3px solid #10b981; }
.titan-card[data-family="expiry"] { border-top: 3px solid #3b82f6; }
.titan-card[data-family="naked"] { border-top: 3px solid #f59e0b; }
.tc-top {
  display: flex; justify-content: space-between;
  align-items: center;
}
.tc-code {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tc-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-3);
  background: #f7f7f5;
  padding: 4px 8px;
  border-radius: 6px;
}
.tc-tag-naked { color: #c2410c; background: #fff4e6; }
.titan-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.tc-sub {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0;
}
.tc-points {
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  color: var(--text-2);
}
.tc-points span { line-height: 1.45; }
.tc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.tc-stats > div { text-align: center; }
.tc-stats strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.tc-stats small {
  font-size: 9.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
  line-height: 1.2;
}
.tc-foot { margin-top: auto; }
.tc-live {
  font-size: 11.5px;
  color: var(--success);
  font-weight: 700;
}
.algo-cta-foot {
  margin-top: 14px;
}
.algo-cta-foot small {
  color: var(--text-3);
  font-size: 11.5px;
}

/* ===== Risk Management ===== */
.section-risk {
  background: #fff;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
.risk-eye { color: #c2410c !important; }
.risk-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.rp-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.rp-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.rp-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.rp-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.rp-card p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0 0 14px;
  line-height: 1.55;
}
.rp-card p strong { color: var(--text); }
.rp-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.risk-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #0e0e10;
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 30px;
}
.rsr-item {
  text-align: center;
  color: #fff;
}
.rsr-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ff7a4d;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.rsr-item small {
  font-size: 12.5px;
  color: #a8a8a8;
  display: block;
  margin-top: 6px;
}
.risk-quote {
  background: var(--bg-tint);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 30px;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.rq-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--primary);
  line-height: 0.4;
  position: absolute;
  top: 24px;
  left: 12px;
  opacity: 0.4;
}
.risk-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.rq-author {
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Live P&L callout ===== */
.section-live-pnl {
  background: var(--bg-soft);
  padding: 70px 0;
}
.lp-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lp-left {
  padding: 38px;
}
.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.lp-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.lp-left h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.lp-left p {
  font-size: 15px;
  color: var(--text-2);
  margin: 0 0 20px;
}
.lp-left p strong { color: var(--text); }
.lp-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-checks li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-2);
  border-bottom: 1px dashed var(--border);
}
.lp-checks li:last-child { border-bottom: none; }
.lp-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--success);
  font-weight: 800;
}
.lp-right {
  background: linear-gradient(135deg, #0e0e10 0%, #1a1612 100%);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-pnl-card {
  background: #1a1a1c;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 22px;
  width: 100%;
  color: #fff;
}
.lp-pnl-head {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12.5px;
  color: #a8a8a8;
  letter-spacing: 0.04em;
}
.lp-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff7a4d;
  font-weight: 700;
  font-size: 11px;
}
.lp-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px dashed #2a2a2a;
  color: #d9d9d9;
}
.lp-row .up { color: #34d399 !important; }
.lp-flat { color: #a8a8a8; font-weight: 600; }
.lp-foot {
  display: flex; justify-content: space-between;
  font-weight: 800;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid #2a2a2a;
  font-size: 15px;
  color: #fff;
}
.lp-foot .up.big {
  color: #34d399 !important;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.lp-disc {
  display: block;
  margin-top: 14px;
  font-size: 10.5px;
  color: #777;
  text-align: right;
  letter-spacing: 0.04em;
}

/* ===== Founders ===== */
.section-founders {
  background: #fff;
  padding: 80px 0;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.founder-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.founder-card:hover {
  border-color: #d8d8d8;
  box-shadow: var(--shadow);
}
.fc-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  font-size: 38px;
  letter-spacing: -0.02em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.fc-photo-1, .fc-photo-2 { background: var(--bg-soft); }
.fc-initials { line-height: 1; color: var(--text-2); }
.fc-photo-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
/* For portrait-orientation source photos (taller than wide), bias the
   crop toward the top so the face stays centered in the circle. */
.fc-photo-tall {
  object-position: center 18%;
}
.fc-body { flex: 1; min-width: 0; }
.fc-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.fc-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-role-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--primary);
  flex-shrink: 0;
}

/* Editorial stats row */
.fc-stats {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.fc-stat {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.fc-stat dt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}
.fc-stat dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}

/* LinkedIn — subtle, single accent */
.fc-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.fc-linkedin:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.fc-li-svg {
  flex-shrink: 0;
  color: #0a66c2;
  transition: color .15s ease;
}
.fc-linkedin:hover .fc-li-svg { color: #fff; }
.founders-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-2);
  font-size: 15px;
}

/* ===== Responsive additions ===== */
@media (max-width: 960px) {
  .mission-pillars { grid-template-columns: 1fr; }
  .titan-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-pillars { grid-template-columns: 1fr; }
  .risk-stat-row { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 20px; }
  .lp-card { grid-template-columns: 1fr; }
  .lp-left { padding: 28px; }
  .lp-right { padding: 28px; }
  .founders-grid { grid-template-columns: 1fr; }
  .promise-strip { grid-template-columns: repeat(2, 1fr); }
  .brain-flow { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .brain-flow .bf-arrow { transform: rotate(90deg); height: 26px; }
  .brain-flow .bf-arrow svg { height: 18px; }
  .bonus-total {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px;
  }
  .bt-arrow { display: none; }
  .bt-cta { grid-column: 1 / -1; justify-self: stretch; }
  .mission-layout { grid-template-columns: 1fr; gap: 30px; }
  .mission-text .mission-title,
  .mission-text .mission-sub { text-align: center; }
  .mission-text { text-align: center; }
  .mission-visual { order: -1; }
  .mission-visual object { max-width: 360px; }
  .risk-hero { grid-template-columns: 1fr; gap: 24px; }
  .risk-hero-text .section-title,
  .risk-hero-text .section-sub { text-align: center; }
  .risk-hero-visual object { max-width: 360px; }
  .engine-stats { grid-template-columns: repeat(2, 1fr); }
  .algo-cta-card { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .process-engine { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .pe-nav { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 6px; }
  .pe-step { min-width: 220px; flex-shrink: 0; }
  .pe-step.active { background: #fff5f0; }
  .pe-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .press-logos { gap: 22px; }
  .plogo { font-size: 14px; }
  .plogo-et { font-size: 17px; }
  .plogo-mint { font-size: 19px; }
  .mission-title { font-size: 38px; }
  .titan-grid { grid-template-columns: 1fr; }
  .titan-card { padding: 20px; }
  .tc-code { font-size: 24px; }
  .rp-card { padding: 22px; }
  .lp-left, .lp-right { padding: 22px; }
  .lp-left h2 { font-size: 22px; }
  .founder-card { padding: 22px; flex-direction: column; align-items: center; text-align: center; }
  .fc-photo, .fc-photo-img { width: 84px; height: 84px; font-size: 34px; }
  .fc-role { justify-content: center; }
  .fc-stats { text-align: left; width: 100%; }
  .fc-stat { grid-template-columns: 88px 1fr; gap: 12px; padding: 10px 0; }
  .fc-linkedin { align-self: center; }
  .hero-live-pill { font-size: 12px; padding: 9px 12px; }
  .rsr-item strong { font-size: 22px; }
  .risk-quote p { font-size: 17px; }
  .risk-quote { padding: 22px 22px 22px 28px; }
  .rq-mark { font-size: 48px; left: 8px; }
  .promise-strip { grid-template-columns: 1fr 1fr; padding: 18px; gap: 10px; }
  .promise-strip strong { font-size: 14px; }
  .promise-strip small { font-size: 11.5px; }
  .founder-origin { padding: 20px 22px; }
  .founder-origin p { font-size: 17px; }
  .step-icon { width: 64px; height: 64px; padding: 4px; }
  .step-icon img { width: 56px; height: 56px; }
  .step { gap: 14px; }
  .engine-diagram { padding: 18px 14px 14px; overflow-x: auto; }
  .engine-diagram object { min-width: 720px; }
  .performance-chart { padding: 14px; overflow-x: auto; }
  .performance-chart object { min-width: 640px; }
  .risk-hero-visual object { max-width: 280px; }
  .mission-visual object { max-width: 300px; }
  .engine-stats strong { font-size: 18px; }
  .tc-payoff { padding: 6px 8px; }
  .pe-canvas { padding: 16px 12px 10px; overflow-x: auto; }
  .pe-svg { min-width: 720px; }
  .pe-100gb strong { font-size: 14px; }
  .pe-100gb { padding: 4px 10px; }
  .pe-features { grid-template-columns: 1fr 1fr; }
  .pe-title { font-size: 16px; }
  .fit-col { padding: 22px; }
  .fit-list strong { font-size: 14px; }
  .bonus-card { padding: 22px 18px; }
  .bt-strike { font-size: 22px; }
  .bt-right strong { font-size: 28px; }
  .aca-price strong { font-size: 36px; }
  .bonus-plus-grid { grid-template-columns: 1fr; }
  .bonus-mini { padding: 14px; grid-template-columns: 40px 1fr auto; }
  .bm-icon { width: 40px; height: 40px; font-size: 18px; }
}

