@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ============================================
   DESIGN SYSTEM — HELIUM DEMO SCRIPT
   Palette: Rust · Navy · Olive · Charcoal
   ============================================ */

:root {
  --rust:        #B5451B;
  --rust-light:  #D4622E;
  --rust-pale:   #F0D5C8;
  --navy:        #1B2A3B;
  --navy-mid:    #243447;
  --navy-light:  #2E4260;
  --olive:       #5C6B3A;
  --olive-light: #7A8F4E;
  --olive-pale:  #D6DEC4;
  --charcoal:    #2C2C2C;
  --charcoal-mid:#3D3D3D;
  --charcoal-light:#5A5A5A;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --white:       #FFFFFF;
  --text-primary: #1E1E1E;
  --text-secondary: #4A4A4A;
  --text-muted:  #7A7A7A;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   GEOMETRIC PATTERN BACKGROUND
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(181,69,27,0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(181,69,27,0.04) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(92,107,58,0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(92,107,58,0.04) 25%, transparent 25%);
  background-size: 48px 48px;
  background-position: 0 0, 0 24px, 24px -24px, -24px 0px;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(181,69,27,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(92,107,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(27,42,59,0.4) 0%, transparent 100%);
  pointer-events: none;
}

#app { position: relative; z-index: 1; }

/* ============================================
   HEADER / LOGO BAR
   ============================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  background: rgba(27,42,59,0.6);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--rust);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--rust-light);
}

.header-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--olive-light);
  background: rgba(92,107,58,0.15);
  border: 1px solid rgba(92,107,58,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   MAIN NAVIGATION TABS
   ============================================ */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 48px 0;
}

.nav-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,240,232,0.5);
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 28px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  bottom: -1px;
}

.nav-tab:hover {
  color: var(--cream);
  background: rgba(245,240,232,0.05);
}

.nav-tab.active {
  color: var(--cream);
  background: rgba(245,240,232,0.06);
  border-color: rgba(245,240,232,0.12) rgba(245,240,232,0.12) transparent;
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rust);
  border-radius: 2px 2px 0 0;
}

.nav-tab .tab-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav-tab.active .tab-dot { opacity: 1; background: var(--rust-light); }
.nav-tab:nth-child(2).active .tab-dot { background: var(--olive-light); }
.nav-tab:nth-child(3).active .tab-dot { background: #E8B84B; }

/* ============================================
   TAB CONTENT WRAPPER
   ============================================ */
.tab-border {
  border-top: 1px solid rgba(245,240,232,0.12);
  margin: 0 48px;
}

.tab-content {
  display: none;
  padding: 48px 48px 80px;
  animation: fadeIn 0.3s ease;
}

.tab-content.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO / INTRO SECTION
   ============================================ */
.hero-section {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
  padding-top: 16px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rust-light);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: italic;
  color: var(--rust-light);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,240,232,0.65);
  max-width: 680px;
  margin: 0 auto 32px;
}

/* ============================================
   PITCH CARDS (STRENGTHS)
   ============================================ */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pitch-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.09);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pitch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pitch-card:hover { background: rgba(245,240,232,0.07); border-color: rgba(245,240,232,0.15); }
.pitch-card:hover::before { opacity: 1; }

.pitch-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.pitch-card-icon.rust  { background: rgba(181,69,27,0.15); color: var(--rust-light); }
.pitch-card-icon.olive { background: rgba(92,107,58,0.15);  color: var(--olive-light); }
.pitch-card-icon.navy  { background: rgba(46,66,96,0.4);    color: #7BA7D4; }
.pitch-card-icon.gold  { background: rgba(232,184,75,0.12); color: #E8B84B; }
.pitch-card-icon.teal  { background: rgba(0,180,160,0.12);  color: #00B4A0; }
.pitch-card-icon.purple{ background: rgba(140,100,200,0.12);color: #A87FD4; }

.pitch-card h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.pitch-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,240,232,0.55);
}

/* ============================================
   FEATURES ROW (PRISM / MANTIS / ORBIT / AIM)
   ============================================ */
.features-row {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 40px;
  padding: 10px 18px;
  transition: var(--transition);
  cursor: default;
}

.feature-pill:hover {
  background: rgba(245,240,232,0.09);
  border-color: rgba(245,240,232,0.18);
  transform: translateY(-1px);
}

.feature-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-pill-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

.feature-pill-desc {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  border-left: 1px solid rgba(245,240,232,0.15);
  padding-left: 10px;
  margin-left: 2px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.3px;
}

.section-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 1px;
}

/* ============================================
   DEMO PROMPT CARDS
   ============================================ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
}

.demo-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.09);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.demo-card:hover {
  border-color: rgba(245,240,232,0.15);
  background: rgba(245,240,232,0.05);
}

.demo-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(245,240,232,0.07);
  cursor: pointer;
  user-select: none;
}

.demo-card-number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.demo-card-number.rust   { background: rgba(181,69,27,0.2);  color: var(--rust-light); border: 1px solid rgba(181,69,27,0.3); }
.demo-card-number.olive  { background: rgba(92,107,58,0.2);  color: var(--olive-light); border: 1px solid rgba(92,107,58,0.3); }
.demo-card-number.navy   { background: rgba(46,66,96,0.4);   color: #7BA7D4; border: 1px solid rgba(46,66,96,0.6); }
.demo-card-number.gold   { background: rgba(232,184,75,0.15);color: #E8B84B; border: 1px solid rgba(232,184,75,0.3); }

.demo-card-meta { flex: 1; }

.demo-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 4px;
}

.demo-card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.demo-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-rust   { background: rgba(181,69,27,0.15);  color: var(--rust-light);  border: 1px solid rgba(181,69,27,0.25); }
.badge-olive  { background: rgba(92,107,58,0.15);  color: var(--olive-light); border: 1px solid rgba(92,107,58,0.25); }
.badge-navy   { background: rgba(46,66,96,0.3);    color: #7BA7D4;            border: 1px solid rgba(46,66,96,0.5); }
.badge-gold   { background: rgba(232,184,75,0.12); color: #E8B84B;            border: 1px solid rgba(232,184,75,0.25); }
.badge-teal   { background: rgba(0,180,160,0.1);   color: #00B4A0;            border: 1px solid rgba(0,180,160,0.2); }
.badge-purple { background: rgba(140,100,200,0.1); color: #A87FD4;            border: 1px solid rgba(140,100,200,0.2); }

.demo-card-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.4);
  transition: var(--transition);
  flex-shrink: 0;
}

.demo-card.open .demo-card-toggle {
  background: rgba(181,69,27,0.15);
  border-color: rgba(181,69,27,0.3);
  color: var(--rust-light);
  transform: rotate(180deg);
}

/* ============================================
   DEMO CARD BODY (COLLAPSIBLE)
   ============================================ */
.demo-card-body {
  display: none;
  padding: 0 24px 24px;
}

.demo-card.open .demo-card-body { display: block; }

.demo-speaker-note {
  background: rgba(92,107,58,0.1);
  border: 1px solid rgba(92,107,58,0.2);
  border-left: 3px solid var(--olive-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 20px 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,240,232,0.7);
}

.demo-speaker-note strong {
  font-weight: 600;
  color: var(--olive-light);
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.demo-steps {
  margin: 16px 0;
}

.demo-step {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.demo-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(181,69,27,0.15);
  border: 1px solid rgba(181,69,27,0.25);
  color: var(--rust-light);
  font-family: var(--font-mono);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.demo-step-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,240,232,0.65);
}

.demo-step-text strong { color: var(--cream); font-weight: 500; }

/* ============================================
   PROMPT BOX (COPY-PASTE)
   ============================================ */
.prompt-box {
  background: rgba(27,42,59,0.8);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
}

.prompt-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(245,240,232,0.04);
  border-bottom: 1px solid rgba(245,240,232,0.07);
}

.prompt-box-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-box-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust-light);
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245,240,232,0.5);
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.copy-btn:hover {
  background: rgba(181,69,27,0.15);
  border-color: rgba(181,69,27,0.3);
  color: var(--rust-light);
}

.copy-btn.copied {
  background: rgba(92,107,58,0.2);
  border-color: rgba(92,107,58,0.4);
  color: var(--olive-light);
}

.prompt-text {
  padding: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,240,232,0.85);
  white-space: pre-wrap;
  word-break: break-word;
}

.prompt-text .highlight {
  color: var(--rust-light);
  font-weight: 500;
}

/* ============================================
   KNOWLEDGE BASE SETUP BOX
   ============================================ */
.kb-setup-box {
  background: rgba(232,184,75,0.05);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 16px 0;
}

.kb-setup-box h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E8B84B;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kb-setup-box h5 i { font-style: normal; }

.kb-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}

.kb-step-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.2);
  color: #E8B84B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TEAMS TAB
   ============================================ */
.teams-hero {
  background: linear-gradient(135deg, rgba(92,107,58,0.12) 0%, rgba(27,42,59,0.4) 100%);
  border: 1px solid rgba(92,107,58,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.teams-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,107,58,0.15) 0%, transparent 70%);
}

.teams-hero-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.teams-hero-title em { font-style: italic; color: var(--olive-light); }

.teams-hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  max-width: 640px;
}

.static-demo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 40px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #E8B84B;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.static-demo-note::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E8B84B;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.teams-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.flow-step {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  position: relative;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245,240,232,0.2);
  font-size: 16px;
  z-index: 2;
}

.flow-step:last-child::after { display: none; }

.flow-step-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(92,107,58,0.15);
  border: 1px solid rgba(92,107,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.flow-step h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
}

.teams-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.value-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.value-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,240,232,0.55);
}

.teams-demo-script {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.09);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.teams-demo-script h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.script-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}

.script-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.script-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(92,107,58,0.15);
  border: 1px solid rgba(92,107,58,0.3);
  color: var(--olive-light);
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.script-step-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.script-step-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,240,232,0.55);
}

.script-step-content .action-note {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--olive-light);
  background: rgba(92,107,58,0.1);
  border: 1px solid rgba(92,107,58,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================
   BEES TAB
   ============================================ */
.bees-hero {
  background: linear-gradient(135deg, rgba(232,184,75,0.08) 0%, rgba(27,42,59,0.5) 100%);
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.bees-hero::before {
  content: '🐝';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.12;
}

.bees-hero-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.bees-hero-title em { font-style: italic; color: #E8B84B; }

.bees-hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  max-width: 640px;
}

.hive-structure {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-bottom: 40px;
}

.queen-card {
  background: linear-gradient(135deg, rgba(232,184,75,0.1) 0%, rgba(27,42,59,0.4) 100%);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}

.queen-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

.queen-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #E8B84B;
  margin-bottom: 8px;
}

.queen-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,240,232,0.55);
}

.worker-bees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.worker-bee {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.worker-bee:hover {
  background: rgba(232,184,75,0.06);
  border-color: rgba(232,184,75,0.15);
}

.worker-bee-icon { font-size: 24px; margin-bottom: 8px; display: block; }

.worker-bee h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.worker-bee p {
  font-size: 11px;
  color: rgba(245,240,232,0.4);
  line-height: 1.4;
}

.bees-onboarding {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.09);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 40px;
}

.bees-onboarding h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.onboard-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.onboard-step {
  text-align: center;
  position: relative;
}

.onboard-step::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 20px;
  color: rgba(245,240,232,0.2);
  font-size: 14px;
}

.onboard-step:last-child::after { display: none; }

.onboard-step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
}

.onboard-step h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.onboard-step p {
  font-size: 11px;
  color: rgba(245,240,232,0.4);
  line-height: 1.4;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,240,232,0.1), transparent);
  margin: 40px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  text-align: center;
  padding: 24px 48px;
  border-top: 1px solid rgba(245,240,232,0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245,240,232,0.2);
  letter-spacing: 1px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(245,240,232,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,240,232,0.25); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pitch-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-flow { grid-template-columns: repeat(2, 1fr); }
  .onboard-steps { grid-template-columns: repeat(3, 1fr); }
  .hive-structure { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .tab-content { padding: 24px 20px 60px; }
  .tab-border { margin: 0 20px; }
  .main-nav { padding: 16px 20px 0; gap: 2px; }
  .nav-tab { padding: 8px 16px; font-size: 13px; }
  .pitch-grid { grid-template-columns: 1fr; }
  .teams-flow { grid-template-columns: 1fr; }
  .teams-value-grid { grid-template-columns: 1fr; }
  .worker-bees { grid-template-columns: repeat(2, 1fr); }
  .onboard-steps { grid-template-columns: repeat(2, 1fr); }
  .features-row { gap: 8px; }
}