@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Brand Design Tokens & Variables (Obsidian Dark Mode v4.1) */
:root {
  --background: #080C14;               /* Ultra-Deep Space Obsidian */
  --surface-deep: #0B0F19;             /* Deep Slate Panel Canvas */
  --surface-card: rgba(14, 20, 34, 0.75); /* High-Tech Obsidian Glass */
  --surface-card-hover: rgba(22, 32, 54, 0.85);
  --coral: #F67160;                    /* Signature Vibrant Coral */
  --coral-glow: rgba(246, 113, 96, 0.35);
  --azure: #38BDF8;                    /* Electric Azure Cyan (High-Tech Balance) */
  --azure-glow: rgba(56, 189, 248, 0.25);
  --amber: #F59E0B;                    /* Luminous Gold Amber (Value Metrics) */
  --amber-glow: rgba(245, 158, 11, 0.25);
  --emerald: #10B981;                  /* Verification Emerald Green */
  --blue-light: #94A3B8;               /* Muted Slate Highlight */
  --blue-glow: rgba(148, 163, 184, 0.12);
  --border-color: rgba(255, 255, 255, 0.08); /* Sub-Pixel Glowing Outline */
  --border-glow: rgba(246, 113, 96, 0.35);
  --white: #FFFFFF;
  --gray: #64748B;                     /* Slate Grey */
  --text-main: #F8FAFC;                /* Crisp White Headings */
  --text-muted: #94A3B8;               /* High-Readability Slate Paragraphs */
  --text-light: #FFFFFF;
  --border-radius: 0.75rem;            /* Refined rounded glass corners (12px) */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(16, 37, 66, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 66, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -3; /* Under WebGL canvas and blobs */
  pointer-events: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 37, 66, 0.1);
  border-radius: var(--border-radius);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

/* Typography Rules */
/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--white);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* --- BRIGHT ELECTRIC GREEN PRE-LAUNCH BADGE --- */
.badge-pill-prelaunch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.55);
  border-radius: 9999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: #F8FAFC;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3), inset 0 0 12px rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.badge-pill-prelaunch:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(16, 185, 129, 0.24);
  border-color: rgba(16, 185, 129, 0.85);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5), inset 0 0 16px rgba(16, 185, 129, 0.3);
  color: #FFFFFF;
}

.prelaunch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.prelaunch-bold {
  font-weight: 800;
  color: #FFFFFF;
}

.prelaunch-sep {
  opacity: 0.4;
}

.prelaunch-sub {
  color: rgba(248, 250, 252, 0.9);
}

/* Hero Capability Badges */
.capability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #F8FAFC;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.capability-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 113, 96, 0.4);
  transform: translateY(-1px);
}

/* Ambient Lighting Helper Classes */
.ambient-glow-coral {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 113, 96, 0.18) 0%, rgba(8, 12, 20, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-navy {
  position: absolute;
  bottom: 0%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 37, 66, 0.45) 0%, rgba(8, 12, 20, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

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

.section-padding {
  padding: 100px 0;
  position: relative;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glassmorphism Cards */
.glass-panel {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.glass-panel:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--coral-glow);
  transform: translateY(-4px);
}

/* Header/Nav - Solid Non-Transparent Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  transform: translateZ(9999px);
  will-change: transform;
  isolation: isolate;
  padding: 16px 0;
  background: #080C14;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.95);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  background: #080C14;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(246, 113, 96, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.98);
}

.nav-version-tag {
  font-family: monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.35);
  margin-left: 14px;
  letter-spacing: 0.05em;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
}

header.scrolled .nav-version-tag {
  color: rgba(248, 250, 252, 0.45);
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo-wordmark {
  height: 48px;
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease, max-height 0.3s ease;
}

header.scrolled .logo-wordmark {
  height: 40px;
  max-height: 40px;
}

.logo-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.nav-logo-icon {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(246, 113, 96, 0.25));
  transition: transform 0.3s ease;
}

.logo-brand-link:hover .nav-logo-icon {
  transform: scale(1.08);
}

.logo-brand-link:hover {
  transform: translateY(-1px);
}

.logo-brand-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1;
}

.logo-brand-text .brand-coral {
  color: var(--coral);
}

.nav-menu-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--coral);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--coral);
  border-radius: 2px;
}

.nav-btn {
  display: inline-flex;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 50%, #E25543 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 
              0 8px 25px rgba(246, 113, 96, 0.45), 
              0 0 15px rgba(246, 113, 96, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF897A 0%, #F77969 50%, #EE5D4A 100%);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 
              0 14px 35px rgba(246, 113, 96, 0.65), 
              0 0 25px rgba(246, 113, 96, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary, .btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover, .btn-glass:hover {
  background: rgba(246, 113, 96, 0.18);
  border-color: rgba(246, 113, 96, 0.45);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 30px rgba(246, 113, 96, 0.35);
}

/* Hero Bottom Feathered Gradient Fade Mask */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.75) 60%, #080C14 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-immersive .container,
.subpage-hero .container {
  position: relative;
  z-index: 3;
}

/* Hero Section - Immersive Design */
.hero-immersive {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 12, 20, 0.95) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(8, 12, 20, 0.6) 100%), url('assets/hero_background.png') no-repeat center center;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 140px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-immersive-content {
  max-width: 820px;
  text-align: left;
}

.hero-immersive-card {
  max-width: 720px;
  padding: 48px;
  background: var(--surface-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--coral-glow);
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.text-gradient-light {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--coral) 80%, var(--azure) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  transition: var(--transition);
  padding: 8px;
  z-index: 110;
}

header.scrolled .mobile-nav-toggle {
  color: var(--text-main);
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--coral);
}

.mobile-nav-btn {
  margin-top: 16px;
}

/* Problem Section Styles */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.problem-card {
  padding: 32px;
  border-radius: var(--border-radius);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--coral-glow);
  border-color: rgba(246, 113, 96, 0.35);
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-card h3 svg {
  color: var(--coral);
  width: 20px;
  height: 20px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* How We Help Bridge Paragraph */
.bridge-section {
  background: var(--surface-deep);
  color: var(--text-muted);
  text-align: center;
}

.bridge-content {
  max-width: 800px;
  margin: 0 auto;
}

.bridge-content h2 {
  color: var(--text-main);
  font-size: 32px;
  margin-bottom: 24px;
}

.bridge-content p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* Tools Section Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.tool-card {
  position: relative;
  padding: 24px;
  border-radius: 12px;
  background: rgba(11, 16, 28, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.22);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: visible;
}

/* Atmospheric Ambient Light Spill Backlight */
.tool-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--spill-color, rgba(246, 113, 96, 0.35)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}

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

.tool-card:hover {
  transform: translateY(-6px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--spill-glow, rgba(246, 113, 96, 0.25));
  border-color: rgba(246, 113, 96, 0.5);
}

/* Interactive Visual Viewport inside Tool Showcase Cards */
.tool-viewport {
  width: 100%;
  height: 140px;
  background: #080C14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-viewport-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.viewport-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--coral);
  z-index: 2;
  backdrop-filter: blur(8px);
}

/* Micro-UI Viewport Mockups for Tool Cards */
.tool-viewport-ui {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(100% 100% at 50% 0%, rgba(15, 23, 42, 0.95) 0%, #080C14 100%);
  position: relative;
  z-index: 1;
}

.vp-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vp-brief-prompt {
  background: rgba(246, 113, 96, 0.12);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.vp-brief-beam {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
  animation: scanBeam 2s infinite linear;
  margin-top: 6px;
}

@keyframes scanBeam {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Sign Micro-UI */
.vp-sign-doc {
  background: rgba(16, 25, 46, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.vp-sign-svg {
  stroke: #10B981;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: signTrace 3s infinite ease-in-out;
}

@keyframes signTrace {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0.3; }
}

/* Pulse Micro-UI */
.vp-pulse-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.vp-pulse-metrics {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #38BDF8;
}

.vp-pulse-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.vp-bar {
  flex: 1;
  background: linear-gradient(180deg, #38BDF8 0%, rgba(56, 189, 248, 0.25) 100%);
  border-radius: 2px 2px 0 0;
  animation: pulseBar 1.6s infinite ease-in-out alternate;
}

@keyframes pulseBar {
  0% { height: 25%; }
  100% { height: 95%; }
}

/* Circle Micro-UI */
.vp-circle-tenants {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.vp-tenant-chip {
  flex: 1;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Slots Micro-UI */
.vp-slots-grid {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.vp-slot-btn {
  flex: 1;
  padding: 6px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #A855F7;
}

.vp-slot-btn.active {
  background: #A855F7;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Pay Micro-UI */
.vp-pay-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 113, 96, 0.08);
  border: 1px solid rgba(246, 113, 96, 0.25);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  margin-top: auto;
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tool-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(246, 113, 96, 0.12);
  color: var(--coral);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(246, 113, 96, 0.25);
}

.tool-card-icon svg {
  width: 18px;
  height: 18px;
}

.tool-card h4 {
  font-size: 18px;
  margin: 0;
  color: #F8FAFC;
  font-weight: 700;
}

.tool-card p {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Services Grid & Cards */
.services-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-deep) 100%);
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  background: rgba(16, 37, 66, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(246, 113, 96, 0.1);
  border-radius: var(--border-radius);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-action {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* Pricing Table Matrix */
.pricing-section {
  background: var(--background);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(16, 37, 66, 0.01);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background-color: var(--surface-deep);
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background-color: rgba(16, 37, 66, 0.02);
}

.pricing-tier-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.pricing-tier-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--coral);
}

.pricing-tier-monthly {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Ingress Bot Split-Screen Interface */
.ingress-section {
  background: radial-gradient(100% 100% at 50% 100%, rgba(246,113,96,0.06) 0%, rgba(8,12,20,0) 80%);
}

.ingress-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

/* ── LEFT PANEL: Chat Interface ── */
.chat-interface {
  height: 540px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(246, 113, 96, 0.35);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-interface:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 113, 96, 0.18), 0 8px 30px rgba(246, 113, 96, 0.18);
}

/* Tab Strip sits above the chat box */
.contact-tabs {
  display: flex;
  background: rgba(8, 12, 20, 0.9);
  border-bottom: 1px solid rgba(246, 113, 96, 0.18);
  padding: 6px 6px 0;
  gap: 4px;
  border-radius: 12px 12px 0 0;
}

.tab-btn {
  flex: 1;
  padding: 11px 14px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  color: rgba(248, 250, 252, 0.45);
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  letter-spacing: 0.01em;
}

.tab-btn:hover:not(.active) {
  color: rgba(248, 250, 252, 0.9);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
  color: #F8FAFC;
  border-bottom-color: var(--coral);
  background: rgba(246, 113, 96, 0.12);
  box-shadow: inset 0 1px 0 rgba(246, 113, 96, 0.35), 0 2px 10px rgba(246, 113, 96, 0.15);
}

.tab-content {
  display: none;
}

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

/* Chat Header Bar */
.chat-header {
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 16, 28, 0.95);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 1.5s infinite;
}

.chat-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 0.01em;
}

/* Messages Scroll Area */
.chat-messages {
  flex-grow: 1;
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #0C1120;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 113, 96, 0.3) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(246, 113, 96, 0.35);
  border-radius: 4px;
}

/* Bot message: clearly anchored glass card */
.message {
  max-width: 88%;
  padding: 13px 17px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}

.message.bot {
  background: rgba(16, 25, 46, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.22);
  border-left: 3px solid var(--coral);
  color: #E2E8F4;
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* User message: solid coral, crisp white text */
.message.user {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 55%, #E25543 100%);
  color: #fff;
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 16px rgba(246, 113, 96, 0.4);
}

/* Chat Input Row */
.chat-input-area {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 20, 0.97);
}

.chat-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input, .form-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #F8FAFC;
  padding: 11px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.chat-input::placeholder {
  color: rgba(248, 250, 252, 0.55);
}

.form-input::placeholder {
  color: rgba(248, 250, 252, 0.3);
}

.chat-input:focus, .form-input:focus {
  outline: none;
  border-color: rgba(246, 113, 96, 0.65);
  box-shadow: 0 0 0 3px rgba(246, 113, 96, 0.12), 0 0 20px rgba(246, 113, 96, 0.08);
  background: rgba(255, 255, 255, 0.09);
}

.btn-send {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 100%);
  border: none;
  padding: 0 20px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(246, 113, 96, 0.45);
  flex-shrink: 0;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 113, 96, 0.6);
}

.btn-send svg {
  width: 17px;
  height: 17px;
  stroke: #FFFFFF;
}

/* ── RIGHT PANEL: Real-Time Requirements Summary ── */
.audit-preview {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #0D1424;
  border: 2px solid rgba(246, 113, 96, 0.35);
  border-radius: 12px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.audit-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 113, 96, 0.18), 0 8px 30px rgba(246, 113, 96, 0.18);
}

.preview-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246, 113, 96, 0.2);
}

.preview-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-row:last-of-type {
  border-bottom: none;
}

.preview-label {
  font-size: 13px;
  color: rgba(248, 250, 252, 0.5);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.preview-value {
  font-size: 13px;
  color: #F8FAFC;
  font-weight: 600;
  text-align: right;
  max-width: 58%;
}

.preview-value:empty::before {
  content: 'Pending…';
  color: rgba(248, 250, 252, 0.22);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
}

/* Compiled brief preview area */
.preview-brief {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 18px;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  color: #A8B8D4;
  white-space: pre-wrap;
  height: 160px;
  overflow-y: auto;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 113, 96, 0.25) transparent;
}

.preview-brief:empty::before {
  content: 'Scoping brief will be compiled here…';
  color: rgba(248, 250, 252, 0.18);
  font-family: var(--font-main);
  font-style: italic;
  font-size: 13px;
}

/* ── ATTACHMENT DROPZONE ── */
.attachment-zone {
  margin-top: 18px;
  border: 2px dashed rgba(246, 113, 96, 0.3);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.attachment-zone:hover,
.attachment-zone.drag-over {
  border-color: rgba(246, 113, 96, 0.7);
  background: rgba(246, 113, 96, 0.06);
}

.attachment-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.attachment-zone-icon {
  color: rgba(246, 113, 96, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attachment-zone-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.65);
  text-align: center;
  line-height: 1.4;
}

.attachment-zone-label span {
  color: var(--coral);
  font-weight: 700;
}

/* Security notice — mechanical monospace style */
.attachment-security-note {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 10.5px;
  color: rgba(248, 250, 252, 0.28);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
  padding-top: 2px;
}

.attachment-security-note strong {
  color: rgba(246, 113, 96, 0.55);
  font-weight: 700;
}

/* Attached file chip */
.attachment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 25, 46, 0.9);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-radius: 6px;
  padding: 9px 14px;
  margin-top: 10px;
  width: 100%;
}

.attachment-chip-icon {
  color: var(--coral);
  flex-shrink: 0;
}

.attachment-chip-info {
  flex-grow: 1;
  min-width: 0;
}

.attachment-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: #F8FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attachment-chip-size {
  font-size: 11px;
  color: rgba(248, 250, 252, 0.4);
  font-family: 'Courier New', monospace;
  margin-top: 1px;
}

.attachment-chip-remove {
  background: none;
  border: none;
  color: rgba(246, 113, 96, 0.6);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  transition: color 0.18s ease;
  flex-shrink: 0;
}

.attachment-chip-remove:hover {
  color: var(--coral);
}

/* Inline error */
.attachment-error {
  font-size: 12px;
  color: #FF7B6B;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 6px 0 2px;
  animation: fadeInUp 0.2s ease;
}

/* Submit Button */
.btn-submit-brief {

  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(246, 113, 96, 0.35);
  color: rgba(246, 113, 96, 0.55);
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 14px;
  border-radius: 8px;
  cursor: not-allowed;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-submit-brief.active {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 55%, #E25543 100%);
  border-color: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(246, 113, 96, 0.4);
}

.btn-submit-brief.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(246, 113, 96, 0.55);
}

/* Compiled brief monospace scroll */
.preview-brief::-webkit-scrollbar {
  width: 4px;
}
.preview-brief::-webkit-scrollbar-thumb {
  background: rgba(246, 113, 96, 0.3);
  border-radius: 4px;
}

/* Quick Message Form */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.form-input {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-main);
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 8px var(--coral-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* WhatsApp Option layout */
.whatsapp-card {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.whatsapp-icon-wrapper {
  width: 72px;
  height: 72px;
  background: #25d366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  margin-bottom: 8px;
}

.whatsapp-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.btn-whatsapp {
  background: #25d366;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Testimonial / Proof Layout */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
}

.testimonial-company {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dedicated Subpage Hero Architectures (Exo Ape Visual Diversity) */
.subpage-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

/* 1. Services Asymmetric Schematic Hero */
.hero-services-asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.schematic-glass-card {
  padding: 32px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(246, 113, 96, 0.25);
  backdrop-filter: blur(20px);
}

.schematic-node-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.schematic-node-step:hover {
  border-color: rgba(246, 113, 96, 0.5);
  transform: translateX(6px);
  background: rgba(246, 113, 96, 0.1);
}

/* 2. Custom Work Obsidian Matrix Hero */
.hero-custom-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.matrix-window-card {
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(96, 221, 246, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(96, 221, 246, 0.25);
  overflow: hidden;
}

.matrix-window-header {
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
}

/* 3. Proof Impact Data Visualization Hero */
.hero-proof-impact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.impact-chart-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

/* 4. About Exo Ape Display Typography Hero */
.hero-about-exo {
  text-align: left;
  max-width: 900px;
}

.exo-display-title {
  font-size: 58px !important;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Line Reveal Mask Utilities */
.mask-reveal-line {
  overflow: hidden;
  display: block;
}

.mask-reveal-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mask-reveal-line.revealed > span {
  transform: translateY(0%);
}

.subpage-services-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/hero_background.png');
}

.subpage-custom-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/automation_hero_bg.png');
}

.subpage-about-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/brand_hero_bg.png');
}

.subpage-proof-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/seo_hero_bg.png');
}

.subpage-contact-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/hero_background.png');
}

.subpage-hero-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 48px;
  background: var(--surface-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--coral-glow);
  width: 100%;
}

.subpage-hero-card h1 {
  font-size: 44px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.subpage-hero-card p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  align-items: center;
}

.subpage-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.subpage-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.subpage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subpage-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--border-radius);
  filter: drop-shadow(0 15px 30px rgba(16, 37, 66, 0.08));
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(16, 37, 66, 0.01);
}

.process-step-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
}

/* Footer Section — Compact & Sleek Layout */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05080E;
  color: var(--text-muted);
  padding: 36px 0 20px 0;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-brand h2 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 360px;
}

.footer-links h3 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F8FAFC;
  margin-bottom: 12px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(148, 163, 184, 0.75);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}

.footer-engineered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-engineered-icon {
  height: 16px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Cookie Consent Banner Styling */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

#cookie-banner a {
  color: var(--coral);
  text-decoration: underline;
}

#cookie-banner a:hover {
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  flex: 1;
  background-color: var(--coral);
  color: var(--text-light);
  border: none;
  padding: 10px;
  border-radius: var(--border-radius);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  text-align: center;
}

.cookie-btn-accept:hover {
  background-color: var(--white);
  color: var(--surface-deep);
}

/* Keyframes & Animations */
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Typing Indicator Bouncing Dots */
.typing-indicator-bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing-bounce {
  0%, 80%, 100% { 
    transform: scale(0.6);
    opacity: 0.4;
  } 
  40% { 
    transform: scale(1.2);
    opacity: 1;
  }
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #94A3B8;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive Breakpoints */
@media (max-width: 1250px) {
  /* Breakpoint for dense menu collapsing to hamburger */
  .nav-menu {
    display: none;
  }
  .nav-btn {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .hero-title { font-size: 38px !important; }
  .hero-immersive { min-height: auto; padding-top: 140px; padding-bottom: 80px; }
  .hero-immersive-card { padding: 32px; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; }
  .ingress-split { grid-template-columns: 1fr; gap: 32px; }
  .chat-interface { height: 450px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .subpage-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .subpage-hero { padding-top: 140px; padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 48px 0; }
  .pricing-table-wrapper { margin-top: 24px; }
  .process-flow { gap: 16px; }
}

@media (max-width: 576px) {
  .hero-immersive-card .hero-title { font-size: 32px !important; }
  .hero-immersive-card .hero-description { font-size: 16px; }
  .section-title { font-size: 26px; }
  .service-card { padding: 24px; }
  .subpage-hero-card h1 { font-size: 30px !important; }
  .subpage-hero-card p { font-size: 15px; }
  #cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
}

/* Founder Badge Hover Shift Effect */
.founder-badge {
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.founder-badge:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 6px 12px var(--coral-glow);
  background-color: var(--coral) !important;
  color: var(--white) !important;
}

/* Card Hover Shift Effects */
.problem-card, 
.tool-card, 
.service-card, 
.testimonial-card, 
.whatsapp-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.problem-card:hover, 
.tool-card:hover, 
.service-card:hover, 
.testimonial-card:hover, 
.whatsapp-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 24px var(--coral-glow) !important;
  border-color: rgba(246, 113, 96, 0.35) !important;
}

/* Floating Background Blur Blobs */
.bg-blur-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -2; /* Under WebGL canvas but above base background */
  opacity: 0.12; /* Soft pastel watercolor wash */
  mix-blend-mode: normal;
  will-change: transform;
}

.bg-blob-orange {
  background: radial-gradient(circle, rgba(246, 113, 96, 0.6) 0%, rgba(246, 113, 96, 0) 70%);
  width: 1000px;
  height: 1000px;
}

.bg-blob-amber {
  background: radial-gradient(circle, rgba(255, 163, 90, 0.5) 0%, rgba(255, 163, 90, 0) 70%);
  width: 850px;
  height: 850px;
}

.bg-blob-teal {
  background: radial-gradient(circle, rgba(163, 184, 204, 0.6) 0%, rgba(163, 184, 204, 0) 70%);
  width: 600px;
  height: 600px;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 60px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Range Slider Styling for Revenue Calculator */
.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transition: background 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 100%);
  border: 2px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 12px var(--coral-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 0 22px var(--coral-glow);
}


.active-toggle {
  background: rgba(246, 113, 96, 0.22) !important;
  border-color: rgba(246, 113, 96, 0.6) !important;
  color: #FFFFFF !important;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — NEW PRICING ARCHITECTURE (v5.7)
═══════════════════════════════════════════════════════════ */

/* Outcome Pillars */
.outcome-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.outcome-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  flex: 1;
  min-width: 160px;
}

.outcome-pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(246,113,96,0.4);
  transform: translateY(-2px);
}

.outcome-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.outcome-pillar-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.outcome-pillar-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: monospace;
}

/* ── Tier Cards Grid ── */
.pricing-cards-section {
  background: #070B13;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: rgba(246,113,96,0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.pricing-card-featured {
  border-color: rgba(255,163,90,0.45);
  background: rgba(255,163,90,0.04);
  box-shadow: 0 0 0 1px rgba(255,163,90,0.2), 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  border-color: rgba(255,163,90,0.7);
  transform: scale(1.02) translateY(-4px);
}

.pricing-card-command {
  border-color: rgba(96,221,246,0.2);
  background: rgba(96,221,246,0.02);
}

.pricing-card-command:hover {
  border-color: rgba(96,221,246,0.45);
  box-shadow: 0 24px 64px rgba(96,221,246,0.08);
}

.pricing-card-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FFA35A, #F67160);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 18px;
  border-radius: 0 0 10px 10px;
}

.pricing-card-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  margin-bottom: 14px;
}

.pricing-card-name {
  font-size: 26px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 6px;
  line-height: 1.1;
}

.pricing-card-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.45;
}

.pricing-card-price-block {
  margin-top: 16px;
}

.pricing-card-price {
  font-size: 15px;
  color: rgba(248,250,252,0.6);
  font-weight: 500;
}

.pricing-card-price span {
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.03em;
}

.pricing-card-monthly {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.pricing-card-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-tool-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248,250,252,0.45);
}

.pricing-tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: default;
}

.tool-chip:hover {
  transform: translateY(-2.5px) scale(1.05);
  box-shadow: 0 6px 16px rgba(246, 113, 96, 0.25);
}

.tool-chip svg {
  width: 10px;
  height: 10px;
}

.tool-chip-active {
  background: rgba(246,113,96,0.12);
  border-color: rgba(246,113,96,0.35);
  color: #F89B8D;
}

.tool-chip-active:hover {
  border-color: rgba(246, 113, 96, 0.65);
  background: rgba(246, 113, 96, 0.22);
  box-shadow: 0 6px 18px rgba(246, 113, 96, 0.35);
}

.tool-chip-locked {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(148,163,184,0.5);
}

.tool-chip-locked:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.pricing-card-compound {
  border: 1px solid rgba(96,221,246,0.25);
  border-radius: 10px;
  padding: 14px;
  background: rgba(96,221,246,0.05);
}

.pricing-card-ideal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(148,163,184,0.8);
}

.pricing-card-ideal svg {
  width: 15px;
  height: 15px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  padding: 13px 20px;
}

.pricing-card-cta-cyan {
  border-color: rgba(96,221,246,0.4);
  color: #60DDF6;
}

.pricing-card-cta-cyan:hover {
  background: rgba(96,221,246,0.1);
  border-color: rgba(96,221,246,0.7);
  color: #60DDF6;
}

.pricing-policy-note {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-policy-note svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-policy-note strong {
  color: #F8FAFC;
}

/* ── Standalone Tools Section ── */
.standalone-tools-section {
  background: #05080E;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.standalone-tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.standalone-tools-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.standalone-discount-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.standalone-discount-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.2s ease;
}

.standalone-discount-row:hover {
  border-color: rgba(246,113,96,0.3);
}

.standalone-discount-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--coral);
  background: rgba(246,113,96,0.12);
  border: 1px solid rgba(246,113,96,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.standalone-discount-badge-full {
  color: #34D399;
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.3);
}

.standalone-discount-text {
  font-size: 14px;
  color: var(--text-muted);
}

.standalone-discount-text strong {
  color: #F8FAFC;
}

.standalone-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.standalone-tool-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.standalone-tool-card:hover {
  border-color: rgba(246,113,96,0.3);
  transform: translateY(-2px);
}

.standalone-tool-icon {
  margin-bottom: 10px;
}

.standalone-tool-icon svg {
  width: 22px;
  height: 22px;
}

.standalone-tool-name {
  font-size: 14px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}

.standalone-tool-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.standalone-tool-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  font-family: monospace;
}

/* ── À La Carte Section ── */
.alacarte-section {
  background: #070B13;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.alacarte-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.alacarte-card:hover {
  border-color: rgba(246,113,96,0.3);
  transform: translateY(-3px);
}

.alacarte-card-cta {
  border-color: rgba(246,113,96,0.25);
  background: rgba(246,113,96,0.04);
}

.alacarte-icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.alacarte-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.alacarte-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.alacarte-from {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  font-family: monospace;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Innovation Pipeline ── */
.pipeline-section {
  background: #05080E;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.pipeline-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.pipeline-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.pipeline-card-cta-card {
  border-color: rgba(246,113,96,0.25);
  background: rgba(246,113,96,0.04);
}

.pipeline-status {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
  display: inline-block;
  width: fit-content;
}

.pipeline-status-beta {
  color: #34D399;
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.3);
}

.pipeline-status-dev {
  color: #FFA35A;
  background: rgba(255,163,90,0.08);
  border-color: rgba(255,163,90,0.3);
}

.pipeline-status-proto {
  color: #A78BFA;
  background: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.3);
}

.pipeline-status-client {
  color: #F43F5E;
  background: rgba(244,63,94,0.1);
  border-color: rgba(244,63,94,0.4);
}

.pipeline-status-roadmap {
  color: #60DDF6;
  background: rgba(96,221,246,0.08);
  border-color: rgba(96,221,246,0.3);
}

.pipeline-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
}

.pipeline-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.pipeline-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Responsive Breakpoints for new sections ── */
@media (max-width: 1100px) {
  .pricing-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .alacarte-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .standalone-tools-layout { grid-template-columns: 1fr; gap: 40px; }
  .standalone-tools-grid { grid-template-columns: 1fr; }
  .alacarte-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .outcome-pillars { flex-direction: column; }
  .badge-pill-prelaunch {
    flex-wrap: wrap;
    padding: 10px 16px;
    font-size: 12.5px;
    justify-content: center;
    text-align: center;
  }
  .prelaunch-sep {
    display: none;
  }
}

