/* =========================================================
   BCT Ventures — Main Stylesheet
   bctventures.co · Flat / editorial / premium theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* === ROOT VARIABLES === */
:root {
  /* Dark ink tones (dark sections / footer / headings) */
  --navy-900: #10151B;   /* deep warm ink */
  --navy-800: #161D26;
  --navy-700: #1A1F27;   /* primary heading / body ink */
  --navy-600: #2C333D;
  --navy-500: #3D4550;
  /* Brand blue (restrained, premium) */
  --blue-400: #3C8CAE;
  --blue-300: #6FA9C2;
  --blue-200: #C4DAE3;
  --blue-100: #E5EEF2;
  --blue-50:  #F1F6F8;
  /* Brand green/teal (restrained) */
  --teal-400: #2FA28B;
  --teal-300: #5FBBA6;
  --teal-200: #BDDDD4;
  --teal-100: #E2F0EC;
  --teal-50:  #F0F7F5;
  /* Accent used very sparingly */
  --gradient: linear-gradient(135deg, var(--blue-400), var(--teal-400));
  --gradient-soft: linear-gradient(135deg, var(--blue-100), var(--teal-100));
  /* Paper / neutrals — warm off-white base */
  --white: #FFFFFF;
  --off-white: #F5F3EE;   /* warm cream — main section base */
  --gray-50:  #F1EFE9;
  --gray-100: #E9E6DF;
  --gray-200: #DCD8CF;    /* hairline borders */
  --gray-300: #BBB5A9;
  --gray-400: #8A8578;
  --gray-600: #5B584F;
  --gray-800: #2B2925;
  /* Soft, flat shadows (barely there) */
  --shadow-xs: 0 1px 2px rgba(16,21,27,.03);
  --shadow-sm: 0 1px 3px rgba(16,21,27,.05);
  --shadow-md: 0 4px 14px rgba(16,21,27,.06);
  --shadow-lg: 0 10px 30px rgba(16,21,27,.08);
  --shadow-xl: 0 16px 44px rgba(16,21,27,.10);
  /* Minimal rounding — flat */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: all .25s var(--ease);
  --transition-slow: all .5s var(--ease);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* === RESET === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevents mobile horizontal black bar */
}
body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  opacity: 0;
  transition: opacity .4s ease;
  -webkit-font-smoothing: antialiased;
}
section, header, footer, div { max-width: 100%; }
body.loaded { opacity: 1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.12; color: var(--navy-700); letter-spacing: -.01em; font-weight: 500; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.0625rem; line-height: 1.75; color: var(--gray-600); }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--gray-800); font-weight: 300; }
strong { color: var(--navy-700); font-weight: 600; }

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 112px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 22px;
}
.section-label::before {
  content: ''; width: 18px; height: 1px;
  background: var(--teal-400); display: inline-block;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 18px; }
.text-center { text-align: center; }

/* === BUTTONS (flat) === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900); color: var(--white);
  border-color: var(--navy-900);
}
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn-outline {
  background: transparent; color: var(--navy-700);
  border: 1px solid var(--gray-300);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--blue-400); padding: 10px 0; border: none; }
.btn-ghost:hover { color: var(--teal-400); }
.btn-teal {
  background: var(--teal-400); color: var(--white); border-color: var(--teal-400);
}
.btn-teal:hover { background: var(--teal-300); border-color: var(--teal-300); }

/* === NAVIGATION === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 22px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(245,243,238,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy-700); letter-spacing: .01em;
}
.navbar.hero-nav .nav-logo-text { color: var(--navy-700); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 400;
  color: var(--gray-600); letter-spacing: .02em;
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--teal-400);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-700); }
.navbar.hero-nav .nav-links a { color: var(--gray-600); }
.navbar.hero-nav .nav-links a:hover, .navbar.hero-nav .nav-links a.active { color: var(--navy-700); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy-700); transition: var(--transition);
  border-radius: 2px;
}
.navbar.hero-nav .hamburger span { background: var(--navy-700); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed;
  inset: 0; background: var(--navy-900);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 500;
  color: var(--white); transition: var(--transition);
}
.mobile-menu a.btn { font-family: var(--font-body); font-size: 1rem; margin-top: 8px; }
.mobile-menu a:hover { color: var(--teal-300); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.75rem; line-height: 1;
}

/* === HERO — INDEX (light, flat) === */
.hero {
  min-height: 92vh;
  background: var(--off-white);
  position: relative; display: flex;
  flex-direction: column; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,31,39,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,31,39,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero-orb { display: none; }  /* removed — flat theme */
.hero-content { position: relative; z-index: 1; padding: 150px 0 96px; max-width: 940px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: var(--font-mono);
  color: var(--gray-600); font-size: .72rem; font-weight: 400;
  letter-spacing: .06em; margin-bottom: 34px;
  animation: fadeInUp .6s ease forwards; animation-delay: .1s; opacity: 0;
}
.hero-badge .pulse-dot {
  width: 6px; height: 6px;
  background: var(--teal-400); border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.hero h1 {
  color: var(--navy-700); max-width: 940px;
  margin-bottom: 30px; line-height: 1.06;
  animation: fadeInUp .8s ease forwards; animation-delay: .25s; opacity: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-400);
}
.hero-sub {
  color: var(--gray-600);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  max-width: 620px; margin-bottom: 44px; line-height: 1.7;
  animation: fadeInUp .7s ease forwards; animation-delay: .45s; opacity: 0;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp .7s ease forwards; animation-delay: .65s; opacity: 0;
}

/* === TICKER STRIP (flat dark band) === */
.ticker-strip {
  background: var(--navy-900);
  padding: 16px 0; overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px; white-space: nowrap;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.4); font-size: .74rem;
  font-weight: 400; letter-spacing: .04em; text-transform: uppercase;
}
.ticker-item strong { color: rgba(255,255,255,.78); font-weight: 500; }
.ticker-sep { color: var(--teal-400); }

/* === OPPORTUNITY (flat) === */
.opportunity { background: var(--white); }
.belief-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--gray-200); }
.belief-card {
  background: transparent;
  padding: 40px 36px 40px 0; margin-right: 36px;
  border-right: 1px solid var(--gray-200);
  position: relative; transition: var(--transition);
}
.belief-card:last-child { border-right: none; margin-right: 0; }
.belief-num {
  font-family: var(--font-mono);
  font-size: .8rem; font-weight: 500;
  color: var(--teal-400); line-height: 1; margin-bottom: 28px;
  letter-spacing: .1em;
}
.belief-card h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--navy-700); font-weight: 500; line-height: 1.25; }
.belief-card p { font-size: .95rem; line-height: 1.72; }

/* === WHO WE ARE === */
.who-we-are { background: var(--white); }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 84px; }
.stat-card {
  background: var(--gradient); border-radius: var(--radius-md);
  padding: 44px 32px; color: var(--white);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  line-height: 1; margin-bottom: 10px; color: var(--white);
}
.stat-label { font-size: .875rem; opacity: .85; line-height: 1.55; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-text h2 { margin-bottom: 22px; }
.who-text p { margin-bottom: 18px; }
.who-text p:last-of-type { margin-bottom: 0; }
.who-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--gray-50);
  border-radius: var(--radius-sm); transition: var(--transition);
  border: 1px solid transparent;
}
.feature-item:hover { background: var(--blue-50); border-color: var(--blue-200); }
.feature-icon {
  width: 46px; height: 46px; background: var(--gradient);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.15rem;
}
.feature-item h4 { font-family: 'Jost',sans-serif; font-size: .9375rem; font-weight: 600; color: var(--navy-700); margin-bottom: 4px; }
.feature-item p { font-size: .875rem; line-height: 1.65; margin: 0; }

/* === HOW IT WORKS === */
.how-it-works { background: var(--navy-900); overflow: hidden; }
.how-it-works .section-label { color: var(--teal-300); }
.how-it-works h2 { color: var(--white); }
.how-it-works .section-header .lead { color: rgba(255,255,255,.62); }
.steps-wrap { margin-top: 60px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps-line {
  position: absolute; top: 47px;
  left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px; background: rgba(75,172,198,.2); z-index: 0;
}
.steps-line-fill {
  height: 100%; width: 0;
  background: var(--gradient);
  transition: width 1.6s var(--ease) .3s;
}
.steps-line-fill.run { width: 100%; }
.step-col { padding: 0 16px; position: relative; z-index: 1; text-align: center; }
.step-ring {
  width: 94px; height: 94px; border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid rgba(75,172,198,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; transition: var(--transition-slow);
}
.step-ring:hover { border-color: var(--teal-400); box-shadow: 0 0 40px rgba(43,191,168,.28); }
.step-num-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--blue-300);
}
.step-col h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.step-col p { font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.65; }
.flywheel-callout {
  margin-top: 56px; padding: 32px 44px;
  background: rgba(75,172,198,.07);
  border: 1px solid rgba(75,172,198,.2);
  border-radius: var(--radius-md);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.flywheel-callout p { color: rgba(255,255,255,.72); font-size: 1.0625rem; line-height: 1.72; text-align: center; }
.flywheel-callout strong { color: var(--teal-300); }

/* === AI AT THE CORE === */
.ai-core { background: var(--off-white); }
.ai-core .section-header { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.ai-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 52px; }
.ai-pillar {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 28px; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.ai-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ai-pillar-icon {
  width: 56px; height: 56px; background: var(--gradient);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.ai-pillar h3 { font-size: 1.05rem; margin-bottom: 10px; }
.ai-pillar p { font-size: .9rem; line-height: 1.7; }
.ai-apps-label {
  text-align: center; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray-300); margin-bottom: 28px;
}
.ai-apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ai-app { background: var(--white); border-radius: var(--radius-sm); padding: 28px 24px; border: 1px solid var(--gray-200); transition: var(--transition); }
.ai-app:nth-child(1) { grid-column: 1 / 3; }
.ai-app:nth-child(2) { grid-column: 3 / 5; }
.ai-app:nth-child(3) { grid-column: 5 / 7; }
.ai-app:nth-child(4) { grid-column: 2 / 4; }
.ai-app:nth-child(5) { grid-column: 4 / 6; }
.ai-app:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.ai-app-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--blue-200); line-height: 1; margin-bottom: 12px;
}
.ai-app h4 { font-family: 'Jost',sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy-700); margin-bottom: 8px; }
.ai-app p { font-size: .875rem; line-height: 1.65; }
.ai-bottom {
  margin-top: 56px; background: var(--navy-900);
  border-radius: var(--radius-md); padding: 48px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 44px; align-items: center;
}
.ai-bottom h3 { color: var(--white); margin-bottom: 14px; font-size: 1.5rem; }
.ai-bottom p { color: rgba(255,255,255,.62); }
.ai-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.ai-tag {
  background: rgba(75,172,198,.14);
  border: 1px solid rgba(75,172,198,.28);
  border-radius: var(--radius-full);
  padding: 8px 18px; color: var(--blue-300);
  font-size: .875rem; font-weight: 500; white-space: nowrap;
}

/* === PAGE HEROES (non-index) — light, flat === */
.page-hero {
  padding: 168px 0 76px; position: relative; overflow: hidden;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero-dark, .page-hero-gradient { background: var(--off-white); }
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,31,39,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,31,39,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 90% at 30% 30%, #000 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 30% 30%, #000 20%, transparent 90%);
}
.page-hero-orb { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy-700); margin-bottom: 18px; }
.page-hero .lead { color: var(--gray-600); max-width: 640px; }
.page-hero .section-label { color: var(--teal-400) !important; }

/* === TEAM PAGE === */
.team-intro { padding: 52px 0 0; }
.team-intro-text { max-width: 720px; margin: 0 auto; text-align: center; }
.team-intro-text h2 { margin-bottom: 16px; }
.founder-cards { padding: 40px 0 80px; display: flex; flex-direction: column; gap: 40px; }
.founder-card {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; align-items: start;
  padding: 44px; background: var(--off-white);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
}
.founder-card:nth-child(even) { grid-template-columns: 1fr 280px; }
.founder-card:nth-child(even) .founder-photo-col { order: 2; }
.founder-card:nth-child(even) .founder-info-col { order: 1; }
.founder-card:hover { box-shadow: var(--shadow-xl); border-color: var(--blue-200); }
.founder-photo-col { position: relative; }
.founder-photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
}
.founder-card:hover .founder-photo { transform: scale(1.02); }
.founder-photo-glow {
  position: absolute; inset: -14px;
  background: var(--gradient); border-radius: calc(var(--radius-lg) + 14px);
  z-index: -1; opacity: .12; transition: var(--transition-slow);
}
.founder-card:hover .founder-photo-glow { opacity: .22; inset: -18px; }
.founder-info-col { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.founder-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500;
  color: var(--navy-700); margin-bottom: 6px;
}
.founder-role { font-size: 1rem; font-weight: 500; color: var(--teal-400); margin-bottom: 4px; letter-spacing: .02em; }
.founder-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: var(--gray-400); margin-bottom: 28px;
}
.founder-points { list-style: none; margin-bottom: 32px; }
.founder-points li {
  font-size: .9375rem; color: var(--gray-600); line-height: 1.72;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.founder-points li:last-child { border-bottom: none; padding-bottom: 0; }
.founder-points li strong { color: var(--navy-700); font-weight: 600; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px; background: var(--navy-700); color: var(--white);
  border-radius: var(--radius-full); font-size: .875rem; font-weight: 500;
  transition: var(--transition); width: fit-content;
}
.linkedin-btn:hover { background: var(--blue-400); transform: translateY(-2px); }
.linkedin-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* === FOR DOCTORS PAGE === */
.doctors-benefits { padding: 100px 0; background: var(--white); }
.benefits-intro { max-width: 680px; margin-bottom: 60px; }
.benefits-intro h2 { margin-bottom: 16px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.benefit-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px; background: var(--off-white);
  border-radius: var(--radius-md); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.benefit-icon {
  width: 54px; height: 54px; background: var(--gradient);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.35rem;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { font-size: .9rem; line-height: 1.72; }
.doctors-pitch {
  padding: 100px 0; background: var(--navy-900);
  position: relative; overflow: hidden;
}
.doctors-pitch::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75,172,198,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,172,198,.065) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.doctors-pitch .container { position: relative; z-index: 1; }
.doctors-pitch h2 { color: var(--white); margin-bottom: 20px; }
.doctors-pitch p { color: rgba(255,255,255,.62); margin-bottom: 40px; max-width: 640px; }
.doctors-process { padding: 100px 0; background: var(--gray-50); }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start; transition: var(--transition);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .process-step-num { background: var(--gradient); color: var(--white); }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gray-100); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: var(--navy-700); transition: var(--transition);
}
.process-step h4 { font-family: 'Jost',sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; }
.process-step p { font-size: .9375rem; line-height: 1.72; margin: 0; }

/* === INVESTORS PAGE === */
.investors-pitch { padding: 100px 0; background: var(--white); }
.pitch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pitch-text h2 { margin-bottom: 20px; }
.pitch-text p { margin-bottom: 18px; }
.pitch-credentials { display: flex; flex-direction: column; gap: 16px; }
.credential {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 22px; background: var(--off-white);
  border-radius: var(--radius-sm); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.credential:hover { border-color: var(--blue-300); background: var(--blue-50); }
.credential-icon {
  width: 42px; height: 42px; background: var(--gradient);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem;
}
.credential-val { font-family: 'Cormorant Garamond',serif; font-size: 1.7rem; font-weight: 600; color: var(--navy-700); line-height: 1; }
.credential-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.45; }
.investors-cta-block { padding: 100px 0; background: var(--off-white); }
.cta-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 72px 80px; border: 1px solid var(--gray-200);
  text-align: center; max-width: 820px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.cta-card h2 { margin-bottom: 20px; }
.cta-card p { max-width: 600px; margin: 0 auto 40px; font-size: 1.0625rem; }
.cta-card .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.contact-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon {
  width: 54px; height: 54px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.25rem;
}
.contact-card h5 {
  font-family: 'Jost',sans-serif; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gray-400); margin-bottom: 8px;
}
.contact-card a { font-size: 1rem; font-weight: 500; color: var(--navy-700); transition: var(--transition); word-break: break-all; }
.contact-card a:hover { color: var(--teal-400); }
.contact-form-section { padding: 80px 0; background: var(--gray-50); }
.contact-form-wrap { max-width: 680px; margin: 0 auto; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap p { margin-bottom: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .875rem; font-weight: 500; color: var(--navy-700); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 18px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: 'Jost',sans-serif;
  font-size: .9375rem; color: var(--navy-700);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(75,172,198,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 8px; }

/* === FOOTER === */
footer { background: var(--navy-900); padding: 72px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: start;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 36px;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond',serif; font-size: 1.5rem;
  font-weight: 600; color: var(--white); display: block; margin-bottom: 14px;
}
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.42); max-width: 360px; line-height: 1.65; }
.footer-sub { font-size: .8rem; color: rgba(255,255,255,.28); margin-top: 10px; }
.footer-cols { display: flex; gap: 60px; }
.footer-col h6 {
  font-family: 'Jost',sans-serif; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .9rem;
  color: rgba(255,255,255,.55); margin-bottom: 11px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: rgba(255,255,255,.28);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* === SCROLL REVEAL ANIMATIONS === */
:root { --ease-out: cubic-bezier(.16,1,.3,1); } /* smooth premium easing */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-left  { opacity: 0; transform: translateX(-44px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-right { opacity: 0; transform: translateX(44px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-scale { opacity: 0; transform: scale(.94); filter: blur(6px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); filter: blur(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .28s; }
.delay-4 { transition-delay: .38s; }
.delay-5 { transition-delay: .48s; }

/* === KEYFRAMES === */
@keyframes floatOrb {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-22px) rotate(1.2deg); }
  66%      { transform: translateY(12px) rotate(-1.2deg); }
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .45; transform: scale(.75); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0) translateY(-100%); opacity: 1; }
  50%  { transform: scaleY(1) translateY(0);     opacity: 1; }
  100% { transform: scaleY(1) translateY(100%);  opacity: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .belief-grid  { grid-template-columns: repeat(2,1fr); }
  .who-grid     { grid-template-columns: 1fr; gap: 44px; }
  .steps-grid   { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .steps-line   { display: none; }
  .ai-pillars   { grid-template-columns: repeat(2,1fr); }
  .ai-apps-grid { grid-template-columns: repeat(2,1fr); }
  .ai-app:nth-child(n) { grid-column: auto; }
  .ai-bottom    { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 220px 1fr; gap: 32px; padding: 32px; }
  .founder-card:nth-child(even) { grid-template-columns: 1fr 220px; }
  .pitch-grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer-top   { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols  { gap: 40px; }
  .cta-card     { padding: 56px 48px; }
}

@media (max-width: 1024px) {
  .why-now-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .belief-grid   { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .ai-pillars    { grid-template-columns: 1fr; }
  .ai-apps-grid  { grid-template-columns: 1fr; }
  .ai-app:nth-child(n) { grid-column: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .founder-card  { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .founder-card:nth-child(even) { grid-template-columns: 1fr; }
  .founder-card:nth-child(even) .founder-photo-col,
  .founder-card:nth-child(even) .founder-info-col { order: unset; }
  .founder-photo { max-width: 280px; }
  .nav-links, .navbar .btn { display: none; }
  .hamburger     { display: flex; }
  .footer-cols   { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-card      { padding: 40px 24px; }
  .ai-bottom     { padding: 32px 28px; }
  .flywheel-callout { padding: 28px 24px; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}

/* =========================================================
   NEW SECTIONS — Repositioning rebuild
   ========================================================= */

/* === CONTRAST STRIP (flat) === */
.contrast-strip {
  background: var(--navy-900);
  padding: 40px 0;
}
.contrast-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 0;
}
.contrast-sep { color: var(--navy-600); margin: 0 4px; font-weight: 300; }

/* === ENGINE CARDS v2 (flat) === */
.platform-section { background: var(--off-white); }
.platform-section .section-label { color: var(--teal-400); }
.platform-section h2 { color: var(--navy-700); }
.platform-section .lead { color: var(--gray-600); }

.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--gray-200);
}
.engine-card-v2 {
  background: transparent;
  border-right: 1px solid var(--gray-200);
  padding: 44px 34px 40px;
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0;
}
.engine-card-v2:last-child { border-right: none; }
.engine-card-v2:hover { background: var(--white); }
.ecv2-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.ecv2-num {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 500; line-height: 1;
  color: var(--teal-400); letter-spacing: .1em;
}
.ecv2-icon {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-400); flex-shrink: 0;
}
.ecv2-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ecv2-label {
  display: block; font-family: var(--font-mono);
  font-size: .66rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 8px;
}
.ecv2-name {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 500;
  color: var(--navy-700); margin-bottom: 16px;
  line-height: 1; letter-spacing: -.01em;
}
.ecv2-desc {
  font-size: .9375rem; line-height: 1.74;
  color: var(--gray-600); margin-bottom: 24px; flex: 1;
}
.ecv2-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 0;
}
.ecv2-points li {
  font-size: .875rem; color: var(--gray-600); line-height: 1.55;
  padding: 11px 0 11px 18px; position: relative;
  border-top: 1px solid var(--gray-100);
}
.ecv2-points li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal-400);
}
.ecv2-points li.ecv2-highlight {
  color: var(--navy-700); font-weight: 600;
}

/* Engine loop statement (flat) */
.engine-loop {
  display: flex; gap: 18px; align-items: center;
  margin-top: 48px; padding: 30px 36px;
  background: var(--navy-900); border-radius: var(--radius-md);
}
.loop-arrow {
  font-family: var(--font-mono);
  font-size: 1.6rem; color: var(--teal-400); flex-shrink: 0; line-height: 1;
}
.engine-loop p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.7; margin: 0; }
.engine-loop strong { color: var(--teal-300); }

/* === TEAM TEASER (dark) === */
.team-teaser-section {
  background: var(--navy-800);
  padding: 88px 0;
}
.tts-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.tts-founders {
  display: flex; flex-direction: column; gap: 16px;
}
.tts-founder {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  text-decoration: none; transition: var(--transition);
}
.tts-founder:hover {
  background: rgba(75,172,198,.1);
  border-color: rgba(75,172,198,.3);
  transform: translateX(4px);
}
.tts-founder img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.15);
}
.tts-founder-info { display: flex; flex-direction: column; gap: 3px; }
.tts-founder-info strong { font-size: .9375rem; font-weight: 600; color: var(--white); }
.tts-founder-info span { font-size: .8125rem; color: rgba(255,255,255,.5); }

/* === SVG ICON SYSTEM (replaces all emoji) === */
.svg-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svg-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.feature-icon .svg-icon,
.benefit-icon .svg-icon,
.ai-pillar-icon .svg-icon,
.contact-card-icon .svg-icon,
.credential-icon .svg-icon { width: 28px; height: 28px; }

/* === UTILITY — responsive two-column grid === */
.two-col-grid { display: grid; }
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* === RESPONSIVE — new sections === */
@media (max-width: 1024px) {
  .engine-grid { grid-template-columns: 1fr; }
  .engine-card-v2 { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .engine-card-v2:last-child { border-bottom: none; }
  .tts-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .engine-grid { grid-template-columns: 1fr; }
  .engine-loop { flex-direction: column; gap: 12px; padding: 24px; align-items: flex-start; }
  .contrast-text { font-size: 1.15rem; }
  .tts-inner { grid-template-columns: 1fr; gap: 36px; }
  .team-teaser-section { padding: 60px 0; }
}


/* =========================================================
   FLAT THEME REFINEMENTS — applies across all pages
   (overrides earlier heavier component styles)
   ========================================================= */

/* Belief grid: stack cleanly on smaller screens */
@media (max-width: 900px) {
  .belief-grid { grid-template-columns: 1fr; }
  .belief-card {
    border-right: none; margin-right: 0;
    border-bottom: 1px solid var(--gray-200);
    padding: 32px 0;
  }
  .belief-card:last-child { border-bottom: none; }
}

/* Stat cards — flat, bordered, no gradient/shadow */
.stat-card {
  background: var(--white) !important;
  border: 1px solid var(--gray-200);
  color: var(--navy-700) !important;
  box-shadow: none !important;
  border-radius: var(--radius-md);
}
.stat-card::before { display: none !important; }
.stat-card:hover { transform: none; box-shadow: var(--shadow-sm) !important; }
.stat-value { color: var(--navy-700) !important; font-family: var(--font-display); }
.stat-label { color: var(--gray-600) !important; opacity: 1 !important; }

/* Generic cards — flat hairline, soft hover, minimal radius */
.belief-card, .feature-item, .benefit-card, .contact-card,
.credential, .process-step, .cta-card, .ai-pillar, .ai-app {
  box-shadow: none !important;
  border-radius: var(--radius-md);
}
.feature-item:hover, .benefit-card:hover, .contact-card:hover,
.credential:hover, .ai-pillar:hover, .ai-app:hover {
  transform: none !important;
  box-shadow: var(--shadow-sm) !important;
  border-color: var(--gray-300) !important;
}

/* Icon boxes — flat outline instead of gradient fill */
.feature-icon, .benefit-icon, .ai-pillar-icon,
.contact-card-icon, .credential-icon {
  background: transparent !important;
  border: 1px solid var(--gray-200);
  color: var(--blue-400) !important;
  border-radius: var(--radius-sm) !important;
}
.contact-card-icon { border-radius: 50% !important; }
.feature-icon .svg-icon, .benefit-icon .svg-icon,
.ai-pillar-icon .svg-icon, .contact-card-icon .svg-icon,
.credential-icon .svg-icon { color: var(--blue-400); }

/* Numbers / values use display serif, restrained color */
.belief-num, .stat-value, .credential-val,
.ai-app-num, .ai-pillar-icon { line-height: 1; }
.credential-val { font-family: var(--font-display); color: var(--navy-700); }

/* Inner-page heroes already light (see .page-hero above) */
.page-hero-orb { display: none !important; }

/* CTA card — flat */
.cta-card {
  border: 1px solid var(--gray-200);
  box-shadow: none !important;
  border-radius: var(--radius-lg);
}

/* Doctors pitch / dark sections stay dark but flat */
.doctors-pitch, .investors-cta-block .cta-card { box-shadow: none; }

/* Forms — flatter inputs */
.form-group input, .form-group select, .form-group textarea {
  border-radius: var(--radius-sm);
  border-color: var(--gray-200);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(60,140,174,.1);
}

/* Section label on dark backgrounds: brighter mark */
.team-teaser-section .section-label::before,
.doctors-pitch .section-label::before,
.team-cta .section-label::before { background: var(--teal-300); }

/* Process-step number: flat hover (navy, not gradient) */
.process-step:hover .process-step-num {
  background: var(--navy-900) !important;
  border-color: var(--navy-900) !important;
  color: var(--white) !important;
}
.process-step-num { border-radius: var(--radius-sm) !important; }

/* Mobile menu primary button needs to stand out on navy */
.mobile-menu .btn-primary {
  background: var(--teal-400); border-color: var(--teal-400); color: var(--white);
}
.mobile-menu .btn-primary:hover { background: var(--teal-300); border-color: var(--teal-300); }

/* Footer flat */
footer { border-top: 1px solid rgba(255,255,255,.06); }

/* Flywheel callout (if present) flat */
.flywheel-callout {
  background: var(--navy-900) !important;
  border: none !important;
  border-radius: var(--radius-md);
}

/* Remove leftover heavy lift transitions globally on cards */
.belief-card, .engine-card-v2, .stat-card, .feature-item,
.benefit-card, .contact-card, .credential, .ai-pillar, .ai-app {
  transition: var(--transition);
}


/* =========================================================
   ANIMATION LAYER — micro-interactions & liveliness
   (works on desktop + mobile, respects reduced-motion)
   ========================================================= */

/* --- Buttons: lively press + sheen --- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary:hover { box-shadow: 0 8px 22px rgba(16,21,27,.18); }
.btn-teal:hover { box-shadow: 0 8px 22px rgba(47,162,139,.28); }
/* sheen sweep */
.btn::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn-outline::after { background: linear-gradient(120deg, transparent, rgba(60,140,174,.12), transparent); }

/* --- Nav: entrance + link lift --- */
.navbar { animation: navDrop .7s var(--ease-out) both; }
@keyframes navDrop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
.nav-links a { transition: color .25s var(--ease), transform .25s var(--ease-out); }
.nav-links a:hover { transform: translateY(-1px); }
.nav-logo-text { transition: opacity .25s var(--ease); }
.nav-logo:hover .nav-logo-text { opacity: .7; }

/* --- Section label dash grows when revealed --- */
.section-label::before { transition: width .6s var(--ease-out) .15s; }
.reveal .section-label::before,
.reveal-left .section-label::before { width: 0; }
.reveal.visible .section-label::before,
.reveal-left.visible .section-label::before { width: 18px; }

/* --- Card hovers: subtle lift across the site --- */
.belief-card:hover,
.engine-card-v2:hover { transform: translateY(-4px); }
.belief-card, .engine-card-v2 { transition: transform .35s var(--ease-out), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease) !important; }
.feature-item:hover, .benefit-card:hover, .contact-card:hover, .credential:hover { transform: translateY(-3px); }
.team-cap { transition: background .3s var(--ease); }
.team-cap:hover { background: var(--blue-50); }

/* --- Engine icon spins subtly on card hover --- */
.engine-card-v2:hover .ecv2-icon { border-color: var(--blue-300); transform: rotate(-6deg) scale(1.08); }
.ecv2-icon { transition: transform .4s var(--ease-out), border-color .3s var(--ease); }

/* --- Hero badge dot already pulses; add hero grid drift --- */
.hero-grid { animation: gridDrift 24s ease-in-out infinite alternate; }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 40px 30px; } }

/* --- tts founder rows (homepage) lift --- */
.tts-founder { transition: transform .3s var(--ease-out), background .3s var(--ease), border-color .3s var(--ease); }

/* --- Links in footer slide --- */
.footer-col a { transition: color .25s var(--ease), padding-left .25s var(--ease-out); }
.footer-col a:hover { padding-left: 6px; }

/* --- LinkedIn buttons on team page --- */
.fp-linkedin { transition: transform .25s var(--ease-out), background .25s var(--ease); }
.fp-linkedin:hover { transform: translateY(-2px); }

/* --- Smooth anchor offset already set; add focus-visible polish --- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Respect users who prefer reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}
