/* ============================================
   BSI | BizImage Solutions Intelligence
   Spinner Law Firm Presentation — March 2026
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --crimson: #A6192E;
  --crimson-dark: #8B1425;
  --crimson-light: #C42A3F;
  --navy: #002D56;
  --navy-dark: #001B36;
  --navy-light: #003D73;
  --gold: #C5A059;
  --gold-light: #D4B674;
  --gold-dark: #A8873D;
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --light-gray: #EDECE8;
  --medium-gray: #9A9A9A;
  --dark-gray: #2A2A2A;
  --near-black: #111111;
  --amber: #E8A317;
  --amber-bg: #2D2209;
  --green: #22C55E;
  --green-bg: #0D2818;
  --red-alert: #EF4444;
  --red-bg: #2D0F0F;
  --glass-white: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(197, 160, 89, 0.2);
  --glass-border-hover: rgba(197, 160, 89, 0.4);
  --shadow-gold: rgba(197, 160, 89, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

/* === UTILITY CLASSES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gold-accent {
  color: var(--gold);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #D4A67D, var(--gold), #D4B674);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pill {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
}

/* === SCROLL ANIMATION === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* === SECTION SPACING === */
section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* ============================================
   HEADER BAR
   ============================================ */
.bsi-header-bar {
  background: var(--navy-dark);
  padding: 14px 0;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  backdrop-filter: blur(12px);
}

.bsi-header-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bsi-header-bar__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.bsi-header-bar__logo span {
  color: var(--gold);
}

.bsi-header-bar__prepared {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, #0A3A6B 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(166, 25, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.hero__date {
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero__browser-frame {
  max-width: 850px;
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url-bar {
  background: rgba(255, 255, 255, 0.08);
  margin: 0 14px 14px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
}

.hero__browser-frame img {
  width: 100%;
  display: block;
}

/* ============================================
   AI VOICE AGENT SECTION
   ============================================ */
.ai-agent {
  background: var(--off-white);
  position: relative;
}

.ai-agent__header {
  text-align: center;
  margin-bottom: 60px;
}

.ai-agent__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.ai-agent__title em {
  color: var(--crimson);
  font-style: normal;
}

.ai-agent__subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.ai-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.ai-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.ai-feature-card:hover::before {
  transform: scaleX(1);
}

.ai-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.ai-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.ai-feature-card__icon--crimson { background: rgba(166, 25, 46, 0.1); color: var(--crimson); }
.ai-feature-card__icon--gold { background: rgba(197, 160, 89, 0.15); color: var(--gold-dark); }
.ai-feature-card__icon--navy { background: rgba(0, 45, 86, 0.1); color: var(--navy); }
.ai-feature-card__icon--green { background: rgba(34, 197, 94, 0.1); color: #16A34A; }

.ai-feature-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.ai-feature-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Transcript */
.transcript-container {
  max-width: 700px;
  margin: 0 auto 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.transcript-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.transcript-header__indicator {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.transcript-header__title {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.transcript-header__time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin-left: auto;
  font-family: 'Montserrat', sans-serif;
}

.transcript-body {
  padding: 28px;
}

.transcript-msg {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}

.transcript-msg:last-child {
  margin-bottom: 0;
}

.transcript-msg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.transcript-msg__avatar--ai {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
}

.transcript-msg__avatar--caller {
  background: var(--light-gray);
  color: var(--dark-gray);
}

.transcript-msg__content {
  flex: 1;
}

.transcript-msg__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.transcript-msg__text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* QR Live Demo Section */
.qr-live-demo {
  background: linear-gradient(145deg, #0a0f1a 0%, var(--navy-dark) 50%, #0f1a2e 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
  margin-bottom: 32px;
}

.qr-live-demo::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(166, 25, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.qr-live-demo::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.qr-live-demo__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.qr-live-demo__code-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-live-demo__badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--white);
  background: var(--crimson);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(166, 25, 46, 0.5); }
  50% { box-shadow: 0 0 20px 6px rgba(166, 25, 46, 0.2); }
}

.qr-live-demo__frame {
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 0 40px rgba(197, 160, 89, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.qr-live-demo__frame:hover {
  box-shadow: 0 0 60px rgba(197, 160, 89, 0.25), 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.qr-live-demo__img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.qr-live-demo__phone {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.qr-live-demo__phone a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.qr-live-demo__phone a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

.qr-live-demo__cta-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.qr-live-demo__try-it {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  margin-top: 20px;
  max-width: 260px;
  text-align: center;
}

.qr-live-demo__copy-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.qr-live-demo__copy-side h3 em {
  color: var(--gold);
  font-style: normal;
}

.qr-live-demo__lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-style: italic;
}

.qr-live-demo__copy-side p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.qr-live-demo__copy-side p strong {
  color: var(--white);
  font-weight: 700;
}

.qr-live-demo__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.qr-live-demo__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}

.qr-live-demo__stat:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-2px);
}

.qr-live-demo__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.qr-live-demo__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.qr-live-demo__closer {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gold-light) !important;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 20px;
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 900px) {
  .qr-live-demo__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .qr-live-demo__code-side {
    order: -1;
  }
  .qr-live-demo {
    padding: 36px 24px;
  }
  .qr-live-demo__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* QR Section */
.qr-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.qr-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.qr-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
}

.qr-section h3 em {
  color: var(--gold);
  font-style: normal;
}

.qr-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  position: relative;
}

.qr-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}

.qr-flow__step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.qr-flow__step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.qr-flow__step-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
}

.qr-flow__arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .qr-flow {
    flex-direction: column;
  }
  .qr-flow__arrow {
    transform: rotate(90deg);
  }
  .qr-section {
    padding: 32px 24px;
  }
}

/* ============================================
   DIGITAL HEALTH SECTION
   ============================================ */
.digital-health {
  background: var(--near-black);
  color: var(--white);
}

.digital-health__header {
  text-align: center;
  margin-bottom: 60px;
}

.digital-health__eyebrow {
  color: var(--amber);
}

.digital-health__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-top: 12px;
}

.digital-health__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.scorecard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.scorecard:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.scorecard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.scorecard__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scorecard__grade {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
}

.scorecard__grade--good { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.scorecard__grade--warning { background: rgba(232, 163, 23, 0.15); color: var(--amber); }
.scorecard__grade--critical { background: rgba(239, 68, 68, 0.15); color: var(--red-alert); }

/* Circular gauge */
.gauge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.gauge {
  position: relative;
  width: 120px;
  height: 120px;
}

.gauge svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.gauge__fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge__fill--good { stroke: var(--green); }
.gauge__fill--warning { stroke: var(--amber); }
.gauge__fill--critical { stroke: var(--red-alert); }

.gauge__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.scorecard__items {
  list-style: none;
}

.scorecard__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.scorecard__item-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

.scorecard__item-icon--good { color: var(--green); }
.scorecard__item-icon--warning { color: var(--amber); }
.scorecard__item-icon--critical { color: var(--red-alert); }

/* ============================================
   COMPETITIVE LANDSCAPE
   ============================================ */
.competitive {
  background: var(--white);
}

.competitive__header {
  text-align: center;
  margin-bottom: 60px;
}

.competitive__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-top: 12px;
}

.competitive__subtitle {
  font-size: 1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 12px auto 0;
}

.competitor-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
}

.competitor-table thead {
  background: var(--navy);
  color: var(--white);
}

.competitor-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.competitor-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
}

.competitor-table tbody tr:hover {
  background: rgba(0, 45, 86, 0.03);
}

.competitor-table .highlight-row {
  background: rgba(166, 25, 46, 0.04);
  font-weight: 600;
}

.competitor-table .highlight-row td {
  border-left: 3px solid var(--crimson);
}

.opportunity-box {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(166, 25, 46, 0.04), rgba(197, 160, 89, 0.06));
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.opportunity-box h4 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.opportunity-box p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .competitor-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .competitor-table {
    min-width: 600px;
  }
}

/* ============================================
   GROWTH PLAN / ROADMAP
   ============================================ */
.growth-plan {
  background: var(--off-white);
}

.growth-plan__header {
  text-align: center;
  margin-bottom: 60px;
}

.growth-plan__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-top: 12px;
}

.roadmap {
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--crimson), var(--gold), var(--green));
}

@media (max-width: 768px) {
  .roadmap::before {
    left: 20px;
  }
}

.roadmap-phase {
  position: relative;
  padding-left: 80px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .roadmap-phase {
    padding-left: 56px;
  }
}

.roadmap-phase:last-child {
  margin-bottom: 0;
}

.roadmap-phase__marker {
  position: absolute;
  left: 17px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
}

@media (max-width: 768px) {
  .roadmap-phase__marker {
    left: 5px;
    width: 32px;
    height: 32px;
  }
}

.roadmap-phase__marker--1 { background: var(--crimson); }
.roadmap-phase__marker--2 { background: var(--gold-dark); }
.roadmap-phase__marker--3 { background: #16A34A; }

.roadmap-phase__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
}

.roadmap-phase__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.roadmap-phase__label--1 { color: var(--crimson); }
.roadmap-phase__label--2 { color: var(--gold-dark); }
.roadmap-phase__label--3 { color: #16A34A; }

.roadmap-phase__name {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.roadmap-phase__timeline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.roadmap-phase__items {
  list-style: none;
  margin-bottom: 20px;
}

.roadmap-phase__items li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--dark-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.roadmap-phase__items li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gold);
}

.roadmap-phase__impact {
  background: rgba(0, 45, 86, 0.04);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border-left: 3px solid var(--navy);
}

.roadmap-phase__impact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.roadmap-phase__impact p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */
.dashboard-section {
  background: linear-gradient(175deg, var(--near-black) 0%, #0D1B2A 50%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 0 120px;
}

.dashboard-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.dashboard-section__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-top: 12px;
}

.dashboard-section__title em {
  color: var(--gold);
  font-style: normal;
}

.dashboard-section__intro {
  max-width: 740px;
  margin: 24px auto 0;
  text-align: center;
}

.dashboard-section__intro p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.dashboard-frame {
  max-width: 900px;
  margin: 48px auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(197, 160, 89, 0.06);
}

.dashboard-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.4);
}

.dashboard-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-frame__dot--red { background: #FF5F57; }
.dashboard-frame__dot--yellow { background: #FEBC2E; }
.dashboard-frame__dot--green { background: #28C840; }

.dashboard-frame img {
  width: 100%;
  display: block;
}

.dashboard-caption {
  text-align: center;
  margin-top: 16px;
}

.dashboard-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  line-height: 1.6;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
}

@media (max-width: 768px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.1);
}

.dashboard-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.dashboard-card__icon--gold { background: rgba(197, 160, 89, 0.15); color: var(--gold); }
.dashboard-card__icon--rose { background: rgba(212, 166, 125, 0.15); color: #D4A67D; }
.dashboard-card__icon--green { background: rgba(34, 197, 94, 0.12); color: var(--green); }

.dashboard-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.dashboard-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.dashboard-closing {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.dashboard-closing em {
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   SPINNER ADVANTAGE
   ============================================ */
.spinner-advantage {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.spinner-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.spinner-advantage__header {
  text-align: center;
  margin-bottom: 60px;
}

.spinner-advantage__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-top: 12px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.advantage-card {
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(197, 160, 89, 0.3);
}

.advantage-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(166, 25, 46, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.advantage-amplify {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.advantage-amplify h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.advantage-amplify h3 em {
  color: var(--gold);
  font-style: normal;
}

.advantage-amplify p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #0A3A6B 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(166, 25, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta__partnership {
  text-align: center;
  margin-bottom: 72px;
}

.cta__partnership h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta__partnership h2 em {
  color: var(--gold);
  font-style: normal;
}

.cta__partnership p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Team block */
.team-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 64px;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .team-block {
    padding: 28px 20px;
  }
}

.team-block__eyebrow {
  text-align: center;
  margin-bottom: 28px;
}

.team-block__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.team-block__photo img {
  width: 100%;
  display: block;
}

.team-block p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.team-block__kicker {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

/* CTA action area */
.cta-action {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(166, 25, 46, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 100px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(166, 25, 46, 0.5);
  color: var(--white);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-contact {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.cta-contact a {
  color: var(--gold);
  transition: color var(--transition);
}

.cta-contact a:hover {
  color: var(--gold-light);
}

/* Data Sharing Invite */
.data-invite {
  max-width: 720px;
  margin: 48px auto;
}

.data-invite__inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.data-invite h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.data-invite p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.data-invite__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.data-invite__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.data-invite__item:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.data-invite__icon {
  font-size: 1.2rem;
}

.data-invite__closer {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold) !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.01em;
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  .data-invite__items {
    grid-template-columns: 1fr;
  }
  .data-invite__inner {
    padding: 28px 20px;
  }
}

/* File Upload */
.file-upload-area {
  max-width: 500px;
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.file-upload-area__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.file-upload-area h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.file-upload-area p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.closing-quote {
  text-align: center;
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.closing-quote blockquote em {
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.bsi-footer {
  background: var(--near-black);
  padding: 28px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.bsi-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bsi-footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.bsi-footer__brand span {
  color: var(--gold);
}

.bsi-footer__copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Hidden attribution link for Perplexity */
.bsi-footer__pplx-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.bsi-footer__pplx-link:hover {
  color: rgba(255, 255, 255, 0);
}

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 768px) {
  .bsi-header-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .ai-features-grid {
    grid-template-columns: 1fr;
  }

  .scorecard-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .competitor-table th,
  .competitor-table td {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero__browser-frame {
    border-radius: var(--radius-md);
  }
}
