@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #030307;
  --bg-secondary: #080810;
  --bg-card: rgba(10, 10, 20, 0.65);
  --bg-card-hover: rgba(15, 15, 30, 0.85);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-hover: rgba(255, 255, 255, 0.12);
  
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.3);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.2);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & scrollbars */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  
  /* Cyber grid background with radial glows */
  background-image: 
    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.06) 0px, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.004) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.004) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #c084fc 70%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 3, 7, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(3, 3, 7, 0.9);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-svg, .logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--accent-purple-glow));
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn-outline-purple {
  background: transparent;
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.btn-outline-purple:hover {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.6);
}

/* Custom Interactive Cursor Glow Cards */
.glow-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.glow-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}

/* Glow Border Layer */
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(139, 92, 246, 0.35) 0%,
    rgba(6, 182, 212, 0.1) 40%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Hero Section */
.hero {
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #c084fc;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Social proof Logo Marquee */
.marquee-container {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(8, 8, 16, 0.2);
  overflow: hidden;
  position: relative;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.marquee-title {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
  gap: 4rem;
  align-items: center;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.marquee-item:hover {
  opacity: 0.9;
}

.marquee-item svg {
  width: 20px;
  height: 20px;
}

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

/* Interactive Playground Grid */
.playground-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.playground-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Connector panel */
.connector-panel {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.connector-panel h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.source-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.source-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
  text-align: left;
}

.source-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.source-btn.active {
  background: rgba(139, 92, 246, 0.06);
  border-color: var(--accent-purple);
  color: var(--text-primary);
}

.source-btn-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.source-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.source-btn.active .source-icon-svg {
  color: #c084fc;
}

.source-btn-text span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.source-btn-text small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.connection-config {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.connection-config label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.connection-config input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  color: white;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  outline: none;
  transition: var(--transition-smooth);
}

.connection-config input:focus {
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, 0.05);
}

.btn-connect {
  width: 100%;
  margin-top: auto;
}

/* Agent Workspace (Terminal style) */
.workspace-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.workspace-header {
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.status-indicator.connected {
  background: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald-glow);
}

.status-indicator.loading {
  background: #eab308;
  animation: pulse 1s infinite;
}

.query-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Cache toggling mechanics */
.cache-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cache-toggle {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.cache-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  transition: .25s;
  border-radius: 34px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-secondary);
  transition: .25s;
  border-radius: 50%;
}

.cache-toggle input:checked + .slider-toggle {
  background-color: var(--accent-cyan);
}

.cache-toggle input:checked + .slider-toggle:before {
  transform: translateX(16px);
  background-color: white;
}

.cache-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cache-label span.badge-hit {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #22d3ee;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  display: none;
}

.cache-toggle input:checked ~ .cache-label span.badge-hit {
  display: inline-block;
}

/* Terminal logs and messages */
.terminal-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.15);
  min-height: 400px;
  max-height: 520px;
  overflow-y: auto;
  padding: 1.5rem;
}

.welcome-screen {
  margin: auto;
  text-align: center;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.welcome-screen svg {
  color: var(--text-muted);
}

.welcome-screen h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
}

.welcome-screen p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sample-queries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
}

.sample-query-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.sample-query-btn:hover {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text-primary);
  transform: translateX(3px);
}

/* Chat structure */
.message {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  animation: slideUp 0.25s ease-out forwards;
}

.message.user {
  align-items: flex-end;
}

.message.agent {
  align-items: flex-start;
}

.bubble {
  max-width: 85%;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.message.user .bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-bottom-right-radius: 1px;
}

.message.agent .bubble {
  background: rgba(10, 10, 20, 0.8);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 1px;
  width: 100%;
}

.agent-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.agent-indicator-text {
  color: #c084fc;
  font-weight: 600;
}

.cache-indicator-tag {
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.token-cost-tag {
  color: var(--text-muted);
}

/* Response visual data formatting */
.agent-summary {
  margin-bottom: 0.6rem;
}

.data-table-wrapper {
  overflow-x: auto;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 0.6rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: left;
}

.data-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 0.6rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.data-table td {
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.chart-sim {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chart-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  height: 80px;
  gap: 1rem;
  padding-top: 0.5rem;
}

.chart-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.chart-bar-fill {
  width: 100%;
  background: linear-gradient(to top, var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  transition: height 0.8s ease-in-out;
  height: 0;
}

.chart-bar-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Chat Input console */
.terminal-footer {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.terminal-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.prompt-prefix {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-purple);
  font-family: var(--font-mono);
  font-weight: 700;
}

.terminal-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem 0.75rem 0.6rem 3.2rem;
  color: white;
  font-family: var(--font-sans);
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.terminal-input:focus {
  border-color: var(--accent-purple);
}

.btn-send {
  background: var(--accent-purple);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: var(--transition-smooth);
}

.btn-send:hover {
  background: #7c3aed;
}

/* How It Works step grid timeline */
.client-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.timeline-step {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--accent-purple);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.timeline-step h3 {
  font-size: 1.15rem;
}

.timeline-step p {
  font-size: 0.85rem;
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon-svg-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
}

.feature-icon-svg-wrapper svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.85rem;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  background-image: radial-gradient(circle at center bottom, rgba(139, 92, 246, 0.04), transparent 50%);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.pricing-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.pricing-info p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  color: var(--accent-cyan);
  width: 16px;
  height: 16px;
}

.pricing-calculator-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.cost-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.cost-amount {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
}

.cost-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.slider-labels span:first-child {
  color: var(--accent-cyan);
}

.connection-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.connection-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-purple);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  transition: transform 0.1s;
}

.connection-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-tagline span {
  color: var(--accent-emerald);
  font-weight: 600;
}

/* Call To Action Banner */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background-image: radial-gradient(circle at center, rgba(139, 92, 246, 0.05), transparent 70%);
}

.cta-banner-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-banner-content h2 {
  font-size: 2.5rem;
}

.cta-banner-content p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.cta-banner-content .btn {
  align-self: center;
  padding: 0.8rem 2rem;
}

/* Footer layout */
footer {
  background: #020205;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.85rem;
}

.footer-links h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .playground-grid { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-menu { display: none; }
  .hero { padding: 120px 0 50px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; max-width: 280px; margin: 0 auto; }
  .pricing-calculator-card { padding: 2rem 1.25rem; }
  .cta-banner-content h2 { font-size: 2rem; }
}

/* Coming Soon Banner and Toast Styles */
.coming-soon-banner {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  height: 34px;
  box-sizing: border-box;
}

header.scrolled .coming-soon-banner {
  height: 0;
  padding: 0;
  opacity: 0;
  border-bottom-width: 0;
  overflow: hidden;
}

.connector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.badge-demo {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c084fc;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.coming-soon-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(8, 8, 16, 0.95);
  border: 1px solid var(--accent-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.coming-soon-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.coming-soon-toast .toast-icon {
  font-size: 1.2rem;
}

.coming-soon-toast .toast-content {
  display: flex;
  flex-direction: column;
}

.coming-soon-toast .toast-title {
  font-weight: 600;
  color: #c084fc;
}

.coming-soon-toast .toast-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Waitlist Form Styles */
.waitlist-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 1rem auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.35rem;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.waitlist-form:focus-within {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px var(--accent-purple-glow);
  background: rgba(255, 255, 255, 0.04);
}

.waitlist-form input[type="email"] {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 0.65rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-form button {
  white-space: nowrap;
  padding: 0.65rem 1.5rem;
}

.card-waitlist {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.waitlist-status {
  font-size: 0.82rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  min-height: 20px;
  transition: var(--transition-smooth);
  text-align: center;
}

.waitlist-status.success {
  color: var(--accent-emerald);
}

.waitlist-status.error {
  color: #ef4444;
}

.waitlist-status.loading {
  color: #38bdf8;
}

/* Agent Response Code Viewer Tabs */
.view-mode-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2px;
  gap: 2px;
}

.view-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.view-tab:hover {
  color: var(--text-primary);
}

.view-tab.active {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
}

.tech-view {
  display: none;
  margin-top: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
}



