/* Hallmark · genre: modern-minimal · macrostructure: Workbench · design-system: design.md · designed-as-app */
/* Hallmark · pre-emit critique: P5 H5 E5 S5 R5 V5 */
@import './tokens.css';

/* ==========================================================================
   Rogabot Design System & Main Stylesheet
   Luxury Dark Tech Theme • Glassmorphism • Accessible & Hallmark Polished
   ========================================================================== */

/* 1. Design Tokens & CSS Variables Bridge */
:root {
  --font-sans: var(--font-body);
  --font-mono: var(--font-mono);

  /* Color Palette Mappings */
  --bg-primary: var(--color-paper);
  --bg-secondary: var(--color-paper-2);
  --bg-card: var(--color-paper-card);
  --bg-card-hover: var(--color-paper-card-hover);
  --bg-elevated: var(--color-paper-elevated);

  --accent-cyan: #06b6d4;
  --accent-cyan-glow: var(--color-accent-glow);
  --accent-emerald: #10b981;
  --accent-emerald-glow: var(--color-accent-emerald-glow);
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  --text-primary: var(--color-ink);
  --text-secondary: var(--color-ink-2);
  --text-muted: var(--color-ink-muted);
  --text-inverse: var(--color-ink-inverse);

  --border-subtle: var(--color-rule);
  --border-strong: var(--color-rule-strong);
  --border-glow: var(--color-rule-accent);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.2);

  --transition-fast: var(--dur-fast) var(--ease-out);
  --transition-normal: var(--dur-normal) var(--ease-out);
  --transition-spring: var(--dur-spring) var(--ease-spring);

  --container-max: 1240px;
}

/* Light Mode Overrides */
html.theme-light {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-elevated: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.16);
  --border-glow: rgba(6, 182, 212, 0.4);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.12);
}

/* 2. Global Resets & Baseline */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 17.5px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    var(--bg-primary);
}

/* Skip to main accessibility link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent-cyan);
  color: #000000;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition-normal);
}

.skip-link:focus {
  top: 20px;
  outline: 3px solid #ffffff;
}

/* Focus Visible standards */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

/* 3. Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, var(--accent-cyan) 65%, var(--accent-emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-cyan-emerald {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 4. Badges, Buttons & Interactive Elements */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.02em;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  min-height: 52px;
  /* WCAG touch target >= 44px */
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-spring);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 50%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.btn-primary:active {
  transform: translateY(1px);
}

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

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

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-nav-cta {
  padding: 8px 16px;
  min-height: 40px;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 8px;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.btn-nav-cta svg {
  flex-shrink: 0;
}

.btn-text-full {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

/* 5. Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 10, 15, 0.96);
  border-bottom-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.08);
}

html.theme-light .site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
  flex-wrap: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: clamp(1.5rem, 3.5vw, 3.5rem);
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  white-space: nowrap;
}

.nav-logo-text span {
  color: inherit;
}

.site-header nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 8px 4px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.nav-cta {
  color: var(--accent-cyan);
}

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


.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
  line-height: 1;
  position: relative;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-1px);
  color: var(--accent-cyan);
}

.theme-toggle-btn:active {
  transform: translateY(1px);
}

.theme-toggle-btn .icon-sun {
  display: none;
}

.theme-toggle-btn .icon-moon {
  display: block;
}

html.theme-light .theme-toggle-btn .icon-sun {
  display: block;
}

html.theme-light .theme-toggle-btn .icon-moon {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}

.hero {
  padding: 7.5rem 0 5.5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(7, 10, 15, 0.70) 0%, rgba(7, 10, 15, 0.96) 80%),
    url('../assets/images/hero-mesh-bg.jpg') center top / cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}

html.theme-light .hero {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(248, 250, 252, 0.88) 0%, rgba(241, 245, 249, 0.98) 80%),
    url('../assets/images/hero-mesh-bg.jpg') center top / cover no-repeat;
  border-bottom-color: var(--border-subtle);
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* 6.5 Hero Visual Showcase & Floating Glass Badges */
.hero-visual-container {
  position: relative;
  max-width: 980px;
  margin: 3.5rem auto 4.5rem;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.25) 0%, rgba(16, 185, 129, 0.15) 50%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.25);
  transition: transform var(--transition-spring), box-shadow var(--transition-spring);
}

.hero-visual-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.7), 0 0 60px rgba(6, 182, 212, 0.35);
}

.hero-visual-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  display: block;
}

.floating-glass-row {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 24px);
}

.floating-glass-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(13, 19, 31, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 15px rgba(6, 182, 212, 0.15);
  white-space: nowrap;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-glass-tag:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55), 0 0 22px rgba(6, 182, 212, 0.3);
}

.floating-glass-tag svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Visual Infographic & Diagram Showcase */
.infographic-wrapper {
  margin: 3.5rem auto 2.5rem;
  max-width: 980px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(6, 182, 212, 0.2);
  background: var(--bg-card);
}

.infographic-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.infographic-caption {
  padding: 1.25rem 2rem;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.infographic-caption strong {
  color: var(--accent-emerald);
}

/* Pilot Visual Dashboard Showcase */
.pilot-visual-hero {
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
  background: var(--bg-card);
}

.pilot-visual-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* 7. Industry Stat Bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: left;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

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

.stat-card.danger {
  border-color: rgba(244, 63, 94, 0.25);
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.05) 0%, var(--bg-card) 100%);
}

.stat-card.danger .stat-number {
  color: #fb7185;
}

.stat-card.success {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}

.stat-card.success .stat-number {
  color: #34d399;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. Interactive Simulator Section */
.simulator-section {
  padding: 7.5rem 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.sim-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.sim-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.75rem;
}

.industry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.industry-btn:hover {
  background: rgba(6, 182, 212, 0.15);
  color: #ffffff;
  border-color: rgba(6, 182, 212, 0.5);
}

.industry-btn.active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(2, 132, 199, 0.3) 100%);
  border-color: var(--accent-cyan);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.35);
}

.sim-trigger-box {
  background: var(--bg-secondary);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sim-trigger-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.sim-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}

.sim-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.sim-feature-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

/* 9. Smartphone Mockup Component */
.phone-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-mockup {
  width: 100%;
  max-width: 360px;
  height: clamp(480px, 70vh, 640px);
  background: #000000;
  border-radius: 44px;
  border: 10px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(6, 182, 212, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 140px;
  height: 24px;
  background: #1e293b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 20;
}

.phone-header {
  background: #0f172a;
  padding: 34px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
}

.phone-contact-info h4 {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.2;
}

.phone-contact-info p {
  font-size: 0.7rem;
  color: var(--accent-emerald);
  margin: 0;
}

.phone-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #090e17;
  scroll-behavior: smooth;
}

.msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.8125rem;
  line-height: 1.4;
  position: relative;
  animation: pop-message 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pop-message {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.msg-bot {
  background: #1e293b;
  color: #f8fafc;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.msg-user {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 2px;
}

.msg-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-align: right;
}

.phone-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #1e293b;
  border-radius: 14px;
  width: fit-content;
  margin-bottom: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing-blink 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-blink {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 10. Interactive ROI Calculator */
.calculator-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-controls {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.calc-field {
  margin-bottom: 1.75rem;
}

.calc-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.calc-value-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-card {
  background: linear-gradient(145deg, #0f172a 0%, #131d33 100%);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  text-align: center;
}

.calc-result-highlight {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
}

.calc-recovered-val {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent-emerald);
  line-height: 1;
  font-family: var(--font-sans);
}

.calc-result-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2rem;
  text-align: left;
}

.calc-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.calc-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-item h4 {
  font-size: 1.1rem;
  margin-top: 4px;
}

/* 11. The 3 Core Objection Busters (Customer-First Strategy) */
.objections-section {
  padding: 5rem 0;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.objection-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.objection-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.objection-tag.cost {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.objection-tag.tech {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.objection-tag.time {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.objection-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.objection-solution {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.objection-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.objection-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.objection-point svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

/* 11b. Supported Business Sectors (Who It's For) */
.supported-biz-section {
  padding: 6rem 0;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.biz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.biz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.15);
}

.biz-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.875rem;
}

.biz-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.biz-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.biz-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.biz-metric-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.biz-metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.biz-metric-value {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-emerald);
}

/* 12. Feature Highlights & Omnichannel */
.features-section {
  padding: 7.5rem 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: transform var(--transition-normal);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* 13. Accessible FAQ Accordion */
.faq-section {
  padding: 7.5rem 0;
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  min-height: 52px;
}

.faq-icon {
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
}

.faq-item.open .faq-panel {
  padding-bottom: 1.5rem;
}

.faq-panel p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* 14. CTA Banner */
.cta-section {
  padding: 7.5rem 0;
}

.cta-box {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(12, 21, 39, 0.8) 0%, rgba(7, 10, 15, 0.92) 100%),
    url('../assets/images/pricing-ambient-bg.jpg') center center / cover no-repeat;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-box p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* 15. Site Footer (Strictly follows Novoweb attribution standard) */
.site-footer {
  background: #05080d;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 1.5rem 2.5rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 2px 0;
  display: inline-block;
}

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

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.875rem;
}

.agency-credit {
  margin: 0;
  color: var(--text-muted);
}

.agency-credit a {
  color: var(--accent-emerald);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.agency-credit a:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* 16. Modal Dialog (Demo Booking & Lead Capture) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open,
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-spring);
}

.modal-overlay.open .modal-card,
.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  /* >=16px prevents iOS zoom */
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

/* Modal Simulation Loading States */
.modal-sim-box {
  padding: 1.5rem 0;
  text-align: center;
}

.modal-sim-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(6, 182, 212, 0.2);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: modalSpin 0.8s linear infinite;
  margin: 0 auto 1.25rem;
}

@keyframes modalSpin {
  to { transform: rotate(360deg); }
}

.modal-sim-step {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-sim-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0;
}

.modal-sim-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-emerald));
  width: 0%;
  transition: width 0.4s ease;
}

.modal-sim-success {
  text-align: center;
  padding: 1rem 0;
}

.modal-sim-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

html.theme-light .modal-sim-bar-bg {
  background: rgba(15, 23, 42, 0.1);
}

/* 16b. Zero-Install Pill Bar */
.zero-install-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 2.5rem auto 3.5rem;
  max-width: 980px;
}

.zero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
}

.zero-pill strong {
  color: var(--accent-emerald);
}

/* 16c. 4-Questions Hero Grid */
.four-q-section {
  margin: 3.5rem auto 4.5rem;
}

.four-q-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.four-q-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(13, 19, 31, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: left;
  position: relative;
  transition: transform var(--transition-spring), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.four-q-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.15);
}

.four-q-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.four-q-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.four-q-answer {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.four-q-answer strong {
  color: var(--text-primary);
}

/* 16d. 60-Second Video Showcase Component */
.video-showcase-section {
  padding: 7.5rem 0;
  position: relative;
}

.video-player-mockup {
  background: linear-gradient(180deg, #0f172a 0%, #070a0f 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(6, 182, 212, 0.15);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.video-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.video-dots {
  display: flex;
  gap: 8px;
}

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

.video-dot:nth-child(1) { background: #f43f5e; }
.video-dot:nth-child(2) { background: #f59e0b; }
.video-dot:nth-child(3) { background: #10b981; }

.video-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.video-stage-area {
  padding: 4.5rem 2.5rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  position: relative;
}

.video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-emerald) 100%);
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.6);
  transition: transform var(--transition-spring), box-shadow var(--transition-spring);
  margin-bottom: 1.5rem;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.85);
}

.video-step-display {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.video-step-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.video-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.35);
}

.timeline-step-btn {
  padding: 1.25rem 1rem;
  text-align: center;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.timeline-step-btn:last-child {
  border-right: none;
}

.timeline-step-btn.active,
.timeline-step-btn:hover {
  background: rgba(6, 182, 212, 0.15);
  color: #ffffff;
}

.timeline-step-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 4px;
}

.timeline-step-label {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

/* 16e. How It Works Flow */
.hiw-section {
  padding: 7.5rem 0;
  position: relative;
}

.hiw-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3.5rem;
}

.hiw-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-spring), border-color var(--transition-normal);
}

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

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

.hiw-step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.hiw-icon {
  font-size: 1.75rem;
}

.hiw-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.hiw-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* 16f. Setup Requirements Section */
.setup-section {
  padding: 7.5rem 0;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.setup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  position: relative;
}

.setup-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.setup-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.setup-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.setup-code {
  font-family: var(--font-mono);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: var(--accent-cyan);
  font-size: 0.95rem;
  display: inline-block;
}

/* 16g. Clearly Labeled Pilot Results */
.pilot-section {
  padding: 7.5rem 0;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pilot-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(13, 19, 31, 0.95) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pilot-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.pilot-quote {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.pilot-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.pilot-stat-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.pilot-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 16h. Privacy & Consent Section */
.privacy-compliance-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  margin: 5.5rem auto;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.privacy-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-item-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* 16i. Demo Calendar Widget */
.demo-calendar-section {
  padding: 7.5rem 0;
}

.demo-cal-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(13, 19, 31, 0.98) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.15);
}

.cal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cal-step-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.cal-dates-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cal-date-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  min-width: 90px;
}

.cal-date-btn.active,
.cal-date-btn:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

.cal-date-day {
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
}

.cal-date-num {
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
}

.cal-times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.cal-time-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.cal-time-btn.active,
.cal-time-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--accent-emerald);
  color: #ffffff;
}

.cal-booking-form {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

/* 17. Responsive Breakpoints (Mobile & Tablet) */
@media (max-width: 1024px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .four-q-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .hiw-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

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

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-brand {
    margin-right: 0;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .nav-logo-icon {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    display: none;
    /* Accessible mobile drawer handles this */
  }

  .nav-actions {
    gap: 8px;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.35rem;
    border-radius: var(--radius-sm);
  }

  .theme-toggle-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--radius-sm);
  }

  .btn-nav-cta {
    padding: 8px 14px;
    min-height: 44px;
    font-size: 0.8125rem;
    gap: 6px;
    white-space: nowrap;
  }

  .btn-text-full {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .simulator-section {
    padding: 4.5rem 0;
  }

  .sim-panel {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .phone-mockup {
    max-width: 100%;
    height: 520px;
    border: 8px solid #1e293b;
    border-radius: 32px;
  }

  .phone-notch {
    width: 110px;
    height: 20px;
  }

  .phone-header {
    padding: 26px 14px 10px;
  }

  .phone-messages {
    padding: 12px 10px;
    gap: 10px;
  }

  .msg {
    max-width: 88%;
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .industry-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .four-q-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hiw-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .biz-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .biz-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 1.5rem 1.25rem;
  }

  .setup-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pilot-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .video-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step-btn {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

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

  .calc-breakdown {
    grid-template-columns: 1fr;
  }

  .cal-times-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.15;
  }

  .hero-visual-container {
    margin: 2rem auto 2.5rem;
    padding: 6px;
  }

  .floating-glass-row {
    position: static;
    transform: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .floating-glass-tag {
    font-size: 0.8125rem;
    padding: 7px 12px;
    gap: 6px;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }

  .zero-install-bar {
    margin: 1.5rem auto 2.5rem;
    gap: 8px;
  }

  .zero-pill {
    font-size: 0.8125rem;
    padding: 8px 12px;
    width: 100%;
    justify-content: center;
  }

  .stat-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1.25rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
    padding: 12px 18px;
    white-space: nowrap;
  }

  .calc-card {
    padding: 1.5rem 1rem;
  }

  .calc-slider-group {
    padding: 1rem;
  }

  .supported-biz-section {
    padding: 4rem 0 2.5rem;
  }

  .biz-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .biz-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .biz-name {
    font-size: 1.05rem;
  }

  .biz-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .biz-metric-box {
    padding: 8px 12px;
  }

  .biz-metric-label {
    font-size: 0.75rem;
  }

  .biz-metric-value {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }

  .sim-panel {
    padding: 1.25rem 0.75rem;
  }

  .phone-mockup {
    height: 460px;
    border-width: 5px;
    border-radius: 22px;
  }

  .industry-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cal-times-grid {
    grid-template-columns: 1fr;
  }

  .pilot-stats-row {
    grid-template-columns: 1fr;
  }

  .btn-nav-cta {
    padding: 6px 10px;
    font-size: 0.775rem;
  }

  .modal-card {
    padding: 1.5rem 1rem;
    margin: 1rem;
  }
}

@media (max-width: 360px) {
  .nav-brand {
    gap: 6px;
  }

  .nav-logo-text {
    font-size: 1.05rem;
  }

  .nav-actions {
    gap: 4px;
  }

  .btn-nav-cta {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .mobile-menu-btn,
  .theme-toggle-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
}

/* 18. Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 19. Light Theme Component Overrides */
html.theme-light .hero-visual-container {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.2) 0%, rgba(16, 185, 129, 0.12) 50%, rgba(226, 232, 240, 0.8) 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 0 30px rgba(6, 182, 212, 0.12);
}

html.theme-light .floating-glass-tag {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 182, 212, 0.35);
  color: var(--text-primary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 0 15px rgba(6, 182, 212, 0.12);
}

html.theme-light .four-q-card {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

html.theme-light .video-player-mockup {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

html.theme-light .video-stage-area {
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
}

html.theme-light .video-timeline {
  background: #f8fafc;
}

html.theme-light .hiw-card,
html.theme-light .biz-card,
html.theme-light .setup-card,
html.theme-light .pilot-card,
html.theme-light .privacy-compliance-box,
html.theme-light .demo-cal-card {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

html.theme-light .setup-code {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0284c7;
}

html.theme-light .cal-date-btn,
html.theme-light .cal-time-btn {
  background: #f8fafc;
  border-color: var(--border-strong);
  color: #334155;
}

html.theme-light .cal-date-btn.active,
html.theme-light .cal-date-btn:hover {
  background: #e0f2fe;
  border-color: #0284c7;
  color: #0369a1;
}

html.theme-light .cal-time-btn.active,
html.theme-light .cal-time-btn:hover {
  background: #dcfce7;
  border-color: #16a34a;
  color: #15803d;
}

html.theme-light body {
  background:
    radial-gradient(circle at 15% 10%, rgba(6, 182, 212, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
    var(--bg-primary);
}

html.theme-light .site-header {
  background: rgba(248, 250, 252, 0.92);
  border-bottom-color: var(--border-subtle);
}

html.theme-light .nav-logo-text {
  color: #0f172a;
}

html.theme-light .nav-logo-icon {
  background: #ffffff;
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.15);
}

html.theme-light .nav-link:hover,
html.theme-light .nav-link.active {
  color: #0f172a;
}

html.theme-light .gradient-text {
  background: linear-gradient(135deg, #0f172a 20%, var(--accent-cyan) 70%, var(--accent-emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.theme-light .btn-secondary {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

html.theme-light .btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: var(--border-strong);
}

html.theme-light .modal-card {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-lg);
  color: #0f172a;
}

html.theme-light .modal-card h3 {
  color: #0f172a !important;
}

html.theme-light .form-input,
html.theme-light .form-select {
  background: #f8fafc;
  border-color: var(--border-strong);
  color: #0f172a;
}

html.theme-light .form-input:focus,
html.theme-light .form-select:focus {
  background: #ffffff;
}

html.theme-light .sim-panel {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

html.theme-light .sim-trigger-box {
  background: #f8fafc;
  border-color: #cbd5e1;
}

html.theme-light .industry-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

html.theme-light .industry-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

html.theme-light .industry-btn.active {
  background: #0284c7;
  border-color: #0369a1;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

html.theme-light .industry-btn.active:hover {
  background: #0369a1;
  border-color: #075985;
  color: #ffffff !important;
}

html.theme-light .sim-phone {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1), 0 0 25px rgba(6, 182, 212, 0.1);
}

html.theme-light .phone-notch {
  background: #e2e8f0;
}

html.theme-light .phone-header {
  background: #f8fafc;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

html.theme-light .phone-header h4 {
  color: #0f172a;
}

html.theme-light .phone-messages {
  background: #f1f5f9;
}

html.theme-light .msg-bot {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

html.theme-light .phone-typing {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

html.theme-light .calculator-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

html.theme-light .calc-results-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html.theme-light .calc-item {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

html.theme-light .cta-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.1);
}

html.theme-light .cta-box h2 {
  color: #0f172a;
}

html.theme-light .cta-box p {
  color: #334155;
}

html.theme-light .site-footer {
  background: #f1f5f9;
  border-top-color: var(--border-subtle);
  color: var(--text-secondary);
}

html.theme-light .table-container table {
  background: #ffffff;
}

html.theme-light th {
  background: #f1f5f9;
  color: #0f172a;
}

html.theme-light td {
  border-bottom-color: var(--border-subtle);
  color: var(--text-secondary);
}

html.theme-light tr:hover td {
  background: rgba(6, 182, 212, 0.04);
}

/* Customer-First 3 Core Objection Busters */
.objections-section {
  padding: 7.5rem 0;
  position: relative;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-spring), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.objection-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.15);
}

.objection-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.objection-tag.cost {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.objection-tag.tech {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.objection-tag.time {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.objection-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.objection-solution {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.objection-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.objection-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.objection-point svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-emerald);
}

html.theme-light .objection-card {
  background: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   Emil Kowalski Animation Suite & Micro-Interactions
   ========================================================================== */

/* Custom Easings */
:root {
  --ease-out-custom: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-custom: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-spring-custom: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Ambient Floating Keyframes */
@keyframes floatGentle {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatGentleReverse {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

@keyframes pulseCyanGlow {
  0% {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.18), 0 20px 45px rgba(0, 0, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 45px rgba(6, 182, 212, 0.32), 0 20px 45px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.18), 0 20px 45px rgba(0, 0, 0, 0.6);
  }
}

@keyframes ctaSheen {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(250%) rotate(25deg);
  }
}

/* Floating Glass Badges in Hero - Crisp Dock State with Interactive Hover Lift */
.floating-glass-row .floating-glass-tag {
  animation: none;
}

/* Glowing Pulse on Live Status Dots & Pills */
.hero-badge .pulse-dot,
.live-indicator-dot,
.phone-status-dot {
  animation: pulseLiveDot 2.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* Hero Visual Breathing Glow */
.hero-visual-container {
  animation: pulseCyanGlow 7s var(--ease-in-out-custom) infinite;
  transition: transform 300ms var(--ease-out-custom), box-shadow 300ms var(--ease-out-custom);
  will-change: transform;
}

/* Infographic & Dashboard Hover Dynamics */
.infographic-wrapper,
.pilot-visual-hero {
  transition: transform 350ms var(--ease-out-custom), border-color 300ms ease, box-shadow 350ms var(--ease-out-custom);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual-container:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .infographic-wrapper:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(6, 182, 212, 0.25);
  }

  .pilot-visual-hero:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.25);
  }
}

/* Shimmer Sheen on Primary Action Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 160ms var(--ease-out-custom), box-shadow 250ms var(--ease-out-custom), background-color 200ms ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn-primary:hover::after {
  animation: ctaSheen 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tactile Active States (Emil Kowalski feedback principle) */
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-accent:active,
.industry-btn:active,
.faq-trigger:active,
.nav-link:active {
  transform: scale(0.97);
}

/* Scroll Reveal System */
.reveal-init {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 550ms var(--ease-out-custom), transform 550ms var(--ease-out-custom);
  will-change: opacity, transform;
}

.reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger Delays */
.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 210ms;
}

.reveal-delay-4 {
  transition-delay: 280ms;
}

/* Prefers-reduced-motion accessibility compliance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .floating-glass-row .floating-glass-tag,
  .hero-visual-container,
  .hero-badge .pulse-dot,
  .live-indicator-dot,
  .phone-status-dot,
  .telemetry-track,
  .wave-bar {
    animation: none !important;
  }
}

/* ==========================================================================
   Telemetry Marquee Stream & Live Equalizer Animations
   ========================================================================== */

/* Live Telemetry Banner */
.telemetry-banner-wrapper {
  margin: 2.5rem 0 3.5rem 0;
  width: 100%;
}

.telemetry-banner {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  padding: 8px 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  gap: 16px;
}

.telemetry-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.telemetry-track-container {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.telemetry-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  white-space: nowrap;
}

.telemetry-banner:hover .telemetry-track {
  animation-play-state: paused;
}

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

.telemetry-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.telemetry-item strong {
  color: var(--text-primary);
}

.telemetry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  display: inline-block;
}

/* Audio Waveform Bars in Simulator */
.audio-wave-bars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
  margin-left: auto;
}

.wave-bar {
  width: 3px;
  height: 100%;
  background: var(--accent-emerald);
  border-radius: 2px;
  animation: wavePulse 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; height: 35%; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; height: 90%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 60%; }
.wave-bar:nth-child(4) { animation-delay: 0.4s; height: 80%; }

@keyframes wavePulse {
  0%, 100% {
    transform: scaleY(0.3);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Drifting Ambient Glowing Mesh Orbs */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.15;
  z-index: 0;
  will-change: transform;
}

.ambient-glow-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  top: 10%;
  left: -100px;
  animation: driftOrb1 18s ease-in-out infinite alternate;
}

.ambient-glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-emerald) 0%, transparent 70%);
  top: 45%;
  right: -120px;
  animation: driftOrb2 22s ease-in-out infinite alternate;
}

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

@keyframes driftOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.08); }
  100% { transform: translate(40px, -60px) scale(0.92); }
}

html.theme-light .telemetry-banner {
  background: rgba(255, 255, 255, 0.9);
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

html.theme-light .telemetry-item {
  color: #334155;
}

/* 18. Pricing & Services Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.15);
}

.pricing-card.featured {
  border-color: var(--accent-cyan);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.06) 0%, var(--bg-card) 40%);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.18);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.28);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
  color: #05080d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-price-box {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.price-val {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--text-primary);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

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

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features-list li strong {
  color: var(--text-primary);
}

.pricing-features-list li span {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

html.theme-light .pricing-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

html.theme-light .pricing-card.featured {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, #ffffff 40%);
  border-color: #0891b2;
}

html.theme-light .pricing-price-box {
  border-color: #e2e8f0;
}

/* -------------------------------------------------------------------------- */
/* 24. High-Polish Animations, Ambient Orbs & Telemetry Marquee               */
/* -------------------------------------------------------------------------- */

/* Ambient Drifting Glow Orbs */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(90px);
  animation: driftOrb1 22s ease-in-out infinite alternate;
}

.ambient-glow-orb-2 {
  width: 450px;
  height: 450px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0) 70%);
  filter: blur(85px);
  animation: driftOrb2 26s ease-in-out infinite alternate;
}

@keyframes driftOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.08); }
  100% { transform: translate(30px, 80px) scale(0.95); }
}

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

/* Live Telemetry Stream Marquee (Proof of Life) */
.telemetry-banner {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(13, 19, 31, 0.6);
  border: 1px solid var(--border-subtle);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.telemetry-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
  white-space: nowrap;
}

.telemetry-banner:hover .telemetry-track {
  animation-play-state: paused;
}

.telemetry-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.telemetry-item strong {
  color: var(--text-primary);
}

.telemetry-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.telemetry-dot.cyan {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

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

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Scanning Laser / Radar Beam Effect on Dashboard Card */
.dashboard-preview-card {
  position: relative;
  overflow: hidden;
}

.scanner-laser-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 30%, #a5f3fc 50%, var(--accent-cyan) 70%, transparent 100%);
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.8), 0 0 32px rgba(6, 182, 212, 0.4);
  pointer-events: none;
  z-index: 5;
  animation: scanLaserSweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scanLaserSweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Active Monitoring Audio / Pulse Waveform Equalizer */
.waveform-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
}

.wave-bar {
  width: 2.5px;
  height: 100%;
  background: var(--accent-emerald);
  border-radius: 2px;
  animation: wavePulse 1.2s ease-in-out infinite;
  transform-origin: bottom;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.wave-bar:nth-child(2) { animation-delay: 0.35s; height: 95%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 65%; }
.wave-bar:nth-child(4) { animation-delay: 0.45s; height: 85%; }

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Interactive Media Showcase Containers */
.showcase-media-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(6, 182, 212, 0.2);
  background: var(--bg-card);
  transition: transform var(--transition-spring), box-shadow var(--transition-spring), border-color var(--transition-normal);
  margin-top: 2.5rem;
}

.showcase-media-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.65), 0 0 50px rgba(6, 182, 212, 0.35);
}

.showcase-media-img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-caption-bar {
  padding: 1.15rem 1.75rem;
  background: rgba(13, 19, 31, 0.96);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.showcase-caption-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Two-Column Showcase Grid with Media and Features */
.media-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .media-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Scroll-Triggered Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms cubic-bezier(0.23, 1, 0.32, 1), transform 550ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

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

/* Button & Interactive Element Spring Press Feedback */
.btn:active,
.pour-tab-btn:active,
.faq-trigger:active,
.theme-toggle-btn:active {
  transform: scale(0.97) !important;
  transition: transform 120ms ease-out !important;
}

/* ==========================================================================
   Setup Guide Spec Console & Parameter Ribbon
   ========================================================================== */
.setup-spec-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.setup-spec-box:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.setup-spec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.spec-terminal-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-terminal-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.spec-terminal-dots .dot-red {
  background: #ef4444;
}

.spec-terminal-dots .dot-yellow {
  background: #f59e0b;
}

.spec-terminal-dots .dot-green {
  background: #10b981;
}

.spec-terminal-title {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.spec-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-emerald 2s infinite;
}

@keyframes pulse-emerald {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.setup-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.spec-param-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg-card);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

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

.spec-param-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-primary);
  word-break: break-all;
}

.spec-param-value code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.spec-pill-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.spec-pill-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.spec-icon {
  flex-shrink: 0;
}

/* Light Mode Overrides for Spec Box */
html.theme-light .setup-spec-box {
  background: #f8fafc;
  border-color: #e2e8f0;
}

html.theme-light .setup-spec-header {
  background: #ffffff;
  border-bottom-color: #e2e8f0;
}

html.theme-light .spec-param-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

html.theme-light .spec-param-value code {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
}

/* Light Mode Overrides for New Components */
html.theme-light .telemetry-banner {
  background: rgba(241, 245, 249, 0.85);
  border-color: #cbd5e1;
}

html.theme-light .telemetry-item {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #475569;
}

html.theme-light .showcase-caption-bar {
  background: #f8fafc;
  border-top-color: #e2e8f0;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .telemetry-track {
    animation: none;
  }
  .ambient-glow-orb-1,
  .ambient-glow-orb-2 {
    animation: none;
  }
  .scanner-laser-beam {
    animation: none;
    display: none;
  }
  .wave-bar {
    animation: none;
  }
  .pulse-dot {
    animation: none;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}