/* ==========================================================================
   ARTISPRENEUR — FRAMER AI SAAS DESIGN SYSTEM
   Theme: Obsidian Glow • Crimson Accent • Champagne Gold Highlight
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Surfaces & Canvas */
  --bg-main: #07070A;
  --bg-subtle: #0D0D12;
  --bg-card: rgba(22, 22, 30, 0.65);
  --bg-card-hover: rgba(30, 30, 42, 0.85);
  --bg-glass: rgba(14, 14, 20, 0.82);
  --bg-glass-heavy: rgba(10, 10, 15, 0.95);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(192, 39, 45, 0.4);
  --border-gold: rgba(254, 208, 1, 0.35);

  /* Brand Palette */
  --crimson: #C0272D;
  --crimson-light: #FF4D57;
  --crimson-dark: #911B20;
  --crimson-glow: rgba(192, 39, 45, 0.35);

  --gold: #FED001;
  --gold-light: #FFE366;
  --gold-dark: #D4A800;
  --gold-glow: rgba(254, 208, 1, 0.28);

  --emerald: #10B981;
  --indigo: #6366F1;
  --purple: #8B5CF6;

  /* Typography */
  --text-primary: #FFFFFF;
  --text-secondary: #C2C2D6; /* Improved contrast */
  --text-muted: #9E9EAF; /* Improved contrast */
  --text-bright: #FFFFFF;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius & Shadows */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 50px -10px var(--crimson-glow);
  --shadow-gold-glow: 0 0 40px -10px var(--gold-glow);
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Background Grid & Ambient Glows */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 80%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  pointer-events: none;
}

.glow-orb-1 {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 39, 45, 0.4) 0%, rgba(254, 208, 1, 0.12) 40%, transparent 70%);
}

.glow-orb-2 {
  top: 35%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.glow-orb-3 {
  top: 70%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 39, 45, 0.22) 0%, transparent 70%);
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.serif {
  font-family: var(--font-serif);
}

.gold-gradient {
  background: linear-gradient(135deg, #FFF099 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crimson-gradient {
  background: linear-gradient(135deg, #FFA4A8 0%, var(--crimson-light) 40%, var(--crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pill Badges */
.framer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.framer-badge:hover {
  border-color: var(--crimson-light);
  transform: translateY(-1px);
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson-light);
  box-shadow: 0 0 10px var(--crimson);
  animation: pulse-dot 2s infinite;
}

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

/* Headings */
h1.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h2.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson-light) 0%, var(--crimson) 100%);
  color: white;
  box-shadow: 0 4px 24px -2px var(--crimson-glow), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px 0 var(--crimson-glow), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #FF666E 0%, var(--crimson-dark) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0A0A0E;
  font-weight: 800;
  box-shadow: 0 4px 24px -2px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px 0 var(--gold-glow);
}

/* ==========================================================================
   NAVIGATION (FLOATING FRAMER GLASS BAR + MOBILE DRAWER)
   ========================================================================== */
nav.framer-nav {
  position: sticky;
  top: 16px;
  z-index: 1000;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  padding: 10px 18px 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-logo em {
  font-style: italic;
  color: var(--gold);
}

.brand-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 9px 20px;
  font-size: 13.5px;
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile Slide-Out Drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  display: flex;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-links a i {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   HERO SECTION & VIDEO EMBED
   ========================================================================== */
.hero {
  padding: 70px 0 100px;
  text-align: center;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  color: var(--emerald);
  width: 15px;
  height: 15px;
}

/* Framer Hardware Video Showcase */
.video-showcase-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.video-glow-effect {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle at 50% 50%, rgba(192, 39, 45, 0.3) 0%, rgba(254, 208, 1, 0.15) 50%, transparent 80%);
  filter: blur(40px);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}

.video-hardware-frame {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(192, 39, 45, 0.2);
}

.video-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mac-dot.red { background: #FF5F56; }
.mac-dot.yellow { background: #FFBD2E; }
.mac-dot.green { background: #27C93F; }

.video-title-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(254, 208, 1, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.video-responsive-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-platform-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(10, 10, 15, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
}

.chip-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-medium);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.chip-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   METRICS & STAT BAND (FRAMER BENTO BAR)
   ========================================================================== */
.stats-band {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #09090D 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==========================================================================
   BENTO GRID — THE 6 CORE PLATFORM ENGINES
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
}

.bento-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(192, 39, 45, 0.08) 0%, rgba(22, 22, 30, 0.8) 60%);
  border-color: rgba(192, 39, 45, 0.25);
}

.bento-card.featured:hover {
  border-color: var(--crimson-light);
  box-shadow: 0 20px 40px -15px var(--crimson-glow);
}

.bento-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-medium);
}

.bento-icon-crimson { background: rgba(192, 39, 45, 0.15); border-color: rgba(192, 39, 45, 0.35); color: var(--crimson-light); }
.bento-icon-gold { background: rgba(254, 208, 1, 0.12); border-color: rgba(254, 208, 1, 0.3); color: var(--gold); }
.bento-icon-indigo { background: rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.3); color: #818CF8; }
.bento-icon-emerald { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); color: var(--emerald); }

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.bento-card.featured h3 {
  font-size: 26px;
}

.bento-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.bento-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* Managers Row Interactive Component */
.specialists-deck {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.specialist-card {
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.specialist-card:hover, .specialist-card.active {
  border-color: var(--gold);
  background: rgba(254, 208, 1, 0.12);
  transform: translateY(-2px);
}

.specialist-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.specialist-dot.c-gold { background: var(--gold); }
.specialist-dot.c-crimson { background: var(--crimson-light); }
.specialist-dot.c-indigo { background: var(--indigo); }
.specialist-dot.c-emerald { background: var(--emerald); }

.specialist-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-bright);
}

.specialist-role {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.specialist-focus-box {
  margin-top: 20px;
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   INTERACTIVE AI SIMULATOR (LIVE DEMO)
   ========================================================================== */
.simulator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.simulator-copy h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.simulator-copy p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.prompt-suggestions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prompt-btn {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prompt-btn:hover, .prompt-btn.active {
  background: rgba(192, 39, 45, 0.12);
  border-color: var(--crimson-light);
  color: var(--text-primary);
  transform: translateX(4px);
}

.simulator-chat-box {
  background: #08080C;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

.chat-bubble {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 92%;
}

.chat-bubble.user {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  align-self: flex-end;
  color: var(--text-primary);
}

.chat-bubble.agent {
  background: rgba(192, 39, 45, 0.08);
  border: 1px solid rgba(192, 39, 45, 0.25);
  align-self: flex-start;
  color: var(--text-bright);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chat-bubble.agent strong {
  color: var(--gold);
}

.chat-input-bar {
  margin-top: auto;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 18px;
}

.chat-input-bar input {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  font-family: var(--font-sans);
  flex: 1;
  outline: none;
}

.chat-input-bar button {
  background: var(--crimson);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-input-bar button:hover {
  background: var(--crimson-light);
  transform: scale(1.05);
}

/* ==========================================================================
   HOW IT WORKS (FRAMER TIMELINE)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(192, 39, 45, 0.35);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 15px;
  color: #E2E8F0;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar.av-1 { background: linear-gradient(135deg, var(--crimson), var(--gold)); }
.author-avatar.av-2 { background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.author-avatar.av-3 { background: linear-gradient(135deg, var(--gold), var(--crimson)); color: #000; }

.author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFF;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   PRICING SECTION (FRAMER CARDS & BILLING TOGGLE)
   ========================================================================== */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.billing-toggle-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 4px;
  display: inline-flex;
}

.billing-toggle-pill button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.billing-toggle-pill button.active {
  background: var(--crimson);
  color: #FFF;
  box-shadow: 0 2px 10px var(--crimson-glow);
}

.save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(254, 208, 1, 0.05) 0%, rgba(22, 22, 30, 0.9) 100%);
  box-shadow: 0 10px 40px -10px var(--gold-glow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0E;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pricing-amount .amt {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}

.pricing-amount .cycle {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-bright);
}

.pricing-features li i {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-features li.yes i { color: var(--emerald); }
.pricing-features li.no { color: var(--text-muted); opacity: 0.6; }
.pricing-features li.no i { color: var(--text-muted); }

/* ==========================================================================
   HIGH-IMPACT CLOSER
   ========================================================================== */
.cta-closer-box {
  background: radial-gradient(circle at 50% 0%, rgba(192, 39, 45, 0.35) 0%, rgba(10, 10, 15, 0.95) 70%);
  border: 1px solid rgba(192, 39, 45, 0.35);
  border-radius: var(--radius-xl);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px -20px var(--crimson-glow);
}

.cta-closer-box h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.cta-closer-box p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.framer-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
  background: #050508;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.featured { grid-column: span 2; }
  .specialists-deck { grid-template-columns: repeat(4, 1fr); }
  .simulator-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
  .specialists-deck { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 40px 0 60px; }
  .cta-closer-box { padding: 48px 20px; }
}
