/* ==========================================================================
   REVIEWBOT - DESIGN SYSTEM & STYLESHEET
   Domain: reviewbot.us
   Theme: Precision Dark B2B SaaS
   Palette: Base #07090B, Surface #11151A / #151A20, Accent #B8F36B (Electric Mint)
   ========================================================================== */

:root {
  --bg-base: #07090B;
  --bg-secondary: #0C0F12;
  --surface-elevated: #11151A;
  --surface-card: #151A20;
  --surface-highlight: #1D232B;
  --border: #242A31;
  --border-subtle: #1C2229;
  --border-focus: #3D4854;
  --border-accent: rgba(184, 243, 107, 0.35);

  --text-primary: #F4F6F8;
  --text-secondary: #969DA7;
  --text-muted: #68707A;
  --text-dim: #4B525D;

  --accent-mint: #B8F36B;
  --accent-mint-hover: #C9F883;
  --accent-mint-dim: rgba(184, 243, 107, 0.12);
  --accent-mint-glow: rgba(184, 243, 107, 0.25);
  
  --accent-cyan: #38BDF8;
  --accent-cyan-dim: rgba(56, 189, 248, 0.12);

  --status-emerald: #10B981;
  --status-emerald-dim: rgba(16, 185, 129, 0.15);
  --status-amber: #F59E0B;
  --status-amber-dim: rgba(245, 158, 11, 0.15);
  --status-rose: #F43F5E;
  --status-rose-dim: rgba(244, 63, 94, 0.15);
  --status-blue: #60A5FA;
  --status-blue-dim: rgba(96, 165, 250, 0.15);

  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, Menlo, monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.5), 0 2px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 16px 48px -4px rgba(0, 0, 0, 0.75), 0 6px 16px -2px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 24px rgba(184, 243, 107, 0.25);

  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 240ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-base);
}

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

::selection {
  background-color: var(--accent-mint);
  color: var(--bg-base);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-focus);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ==========================================================================
   ANIMATIONS & KEYFRAMES (ON-LOAD & ENTRANCE)
   ========================================================================== */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(184, 243, 107, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(184, 243, 107, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(184, 243, 107, 0);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(184, 243, 107, 0.15);
  }
  50% {
    box-shadow: 0 0 32px rgba(184, 243, 107, 0.35);
  }
}

/* Staggered Hero Animation Classes */
.anim-eyebrow {
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.anim-title {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.anim-subhead {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
.anim-cta {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}
.anim-support {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
}
.anim-stage {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 880px;
}

.container-wide {
  max-width: 1400px;
}

/* Layout Utilities */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-tight {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-bordered {
  border-top: 1px solid var(--border);
}

/* Section Header standard */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-mint);
  box-shadow: 0 0 8px var(--accent-mint);
  animation: beaconPulse 2.2s infinite;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   TOP GLOBAL NAVIGATION (CLEAN & PROFESSIONAL)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(7, 9, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 42, 49, 0.8);
  height: 68px;
  display: flex;
  align-items: center;
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-symbol-svg {
  display: block;
  flex-shrink: 0;
}

.brand-domain-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-mint);
  background: var(--accent-mint-dim);
  border: 1px solid rgba(184, 243, 107, 0.25);
  padding: 1px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-links li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
  display: inline-block;
  letter-spacing: -0.01em;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-mint);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(184, 243, 107, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-mint);
  color: #07090B;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-mint-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 243, 107, 0.3);
}

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

.btn-secondary {
  background-color: var(--surface-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--surface-highlight);
  border-color: var(--border-focus);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--surface-card);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 7px 14px;
}

.btn-lg {
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
}

/* Badge System */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.badge-mint {
  background: var(--accent-mint-dim);
  color: var(--accent-mint);
  border: 1px solid rgba(184, 243, 107, 0.25);
}

.badge-cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.badge-emerald {
  background: var(--status-emerald-dim);
  color: var(--status-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-amber {
  background: var(--status-amber-dim);
  color: var(--status-amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-blue {
  background: var(--status-blue-dim);
  color: var(--status-blue);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.badge-muted {
  background: rgba(104, 112, 122, 0.15);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse 60% 45% at 50% 30%, rgba(184, 243, 107, 0.07), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-support-text {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-support-text svg {
  color: var(--accent-mint);
}

/* Hero Interactive Product Visual */
.hero-visual-container {
  position: relative;
}

.product-stage-card {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.product-stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 243, 107, 0.5), transparent);
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.stage-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-mint);
  animation: beaconPulse 2s infinite;
}

.stage-campaign-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stage-campaign-badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  background: var(--accent-mint-dim);
  color: var(--accent-mint);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 243, 107, 0.2);
}

/* The Live Flow Stack in Hero */
.hero-flow-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.flow-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: all var(--transition-normal);
  position: relative;
}

.flow-card.active-flow {
  border-color: var(--border-accent);
  box-shadow: 0 0 20px rgba(184, 243, 107, 0.08);
}

.flow-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-actor-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--surface-highlight);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.flow-avatar.reviewbot-bot {
  background: var(--accent-mint-dim);
  border-color: rgba(184, 243, 107, 0.3);
  color: var(--accent-mint);
}

.flow-actor-meta h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.flow-actor-meta p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Connector Line with Traveling Pulse */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.connector-line-svg {
  width: 100%;
  height: 24px;
}

.connector-beam-line {
  stroke-dasharray: 6 6;
  animation: flowDash 1.2s linear infinite;
}

/* Email Mini Preview in Flow */
.email-mini-preview {
  background-color: #0E1217;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 10px;
}

.email-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.email-mini-subject {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.email-mini-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-mint);
  margin-bottom: 10px;
}

.email-mini-btn {
  display: inline-block;
  background-color: var(--accent-mint);
  color: #07090B;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.email-mini-btn:hover {
  background-color: var(--accent-mint-hover);
  transform: translateY(-1px);
}

/* Flow Footer Statuses */
.flow-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.status-step-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-step-pill.completed {
  color: var(--accent-mint);
}

/* ==========================================================================
   TRUST / CLARITY STRIP
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--bg-secondary);
  padding: 40px 0;
}

.trust-headline {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.trust-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-category-card {
  padding: 18px 20px;
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.trust-category-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
  background-color: var(--surface-highlight);
}

.trust-category-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-category-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   PROBLEM SECTION & VISUAL TIMELINES
   ========================================================================== */
.problem-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.timeline-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.timeline-card.manual {
  border-color: #2F3640;
}

.timeline-card.automated {
  border-color: rgba(184, 243, 107, 0.4);
  background: linear-gradient(180deg, var(--surface-card) 0%, rgba(184, 243, 107, 0.04) 100%);
  box-shadow: 0 0 30px rgba(184, 243, 107, 0.06);
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.timeline-header h3 {
  font-size: 1.25rem;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.timeline-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background-color: var(--surface-highlight);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
}

.timeline-card.manual .timeline-step-item {
  color: var(--text-muted);
  border-style: dashed;
}

.timeline-card.manual .step-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(104, 112, 122, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.timeline-card.automated .timeline-step-item {
  color: var(--text-primary);
  border-color: rgba(184, 243, 107, 0.25);
  background: var(--surface-elevated);
}

.timeline-card.automated .step-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-mint-dim);
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ==========================================================================
   THE "WOW" MOMENT SECTION
   ========================================================================== */
.wow-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-secondary) 50%, var(--bg-base) 100%);
  position: relative;
}

.wow-interactive-box {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.wow-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.wow-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-step-btn {
  padding: 6px 14px;
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.sim-step-btn.active {
  background-color: var(--accent-mint);
  color: var(--bg-base);
  border-color: var(--accent-mint);
  box-shadow: 0 0 14px rgba(184, 243, 107, 0.35);
}

.wow-sim-stage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 32px;
}

.wow-node-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  transition: all var(--transition-smooth);
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.wow-node-card.active-node {
  border-color: var(--accent-mint);
  background: linear-gradient(180deg, var(--surface-card) 0%, rgba(184, 243, 107, 0.08) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 243, 107, 0.18);
}

.node-num {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.wow-node-card.active-node .node-num {
  color: var(--accent-mint);
  font-weight: 700;
}

.node-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.node-desc {
  font-size: 0.775rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
  flex-grow: 1;
}

.node-foot-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

/* Live Simulation Detail Viewer */
.sim-detail-display {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sim-detail-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.sim-detail-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sim-metric-counter {
  text-align: right;
}

.sim-metric-val {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-mint);
}

.sim-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PRODUCT DASHBOARD SHOWCASE
   ========================================================================== */
.dashboard-preview-wrapper {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #090C0F;
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.dash-nav-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash-tab {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
  position: relative;
}

.dash-tab:hover, .dash-tab.active {
  color: var(--text-primary);
}

.dash-tab.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-mint);
}

.dash-user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dashboard-body {
  padding: 32px;
}

.dash-greeting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dash-greeting-row h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.metric-stat-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition-fast);
}

.metric-stat-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.metric-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.775rem;
  color: var(--text-muted);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.metric-subnote {
  font-size: 0.75rem;
  color: var(--accent-mint);
}

.metric-subnote.neutral {
  color: var(--text-muted);
}

/* Dashboard Chart & Activity Split */
.dash-content-split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.dash-panel {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-panel-title {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Chart Canvas & SVG */
.chart-container {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Real-time Activity Rows */
.activity-feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background-color: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.activity-row:hover {
  background-color: var(--surface-highlight);
  border-color: var(--border);
  transform: translateX(2px);
}

.activity-user-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.activity-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.activity-desc {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.activity-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==========================================================================
   CAMPAIGN BUILDER SECTION
   ========================================================================== */
.builder-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}

.builder-settings-card {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-mint);
}

.builder-workflow-canvas {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.workflow-node-sequence {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.builder-node {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.builder-node:hover {
  border-color: var(--border-focus);
}

.builder-node.highlighted {
  border-color: var(--accent-mint);
  box-shadow: 0 0 16px rgba(184, 243, 107, 0.1);
}

/* ==========================================================================
   EMAIL BUILDER / COMPOSER SECTION
   ========================================================================== */
.email-builder-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
}

.email-composer-card {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.token-pill-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.token-pill {
  background-color: var(--surface-highlight);
  border: 1px solid var(--border);
  color: var(--accent-mint);
  font-family: var(--font-mono);
  font-size: 0.725rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.token-pill:hover {
  background-color: var(--accent-mint-dim);
  border-color: rgba(184, 243, 107, 0.4);
}

/* Live Rendered Email Preview */
.live-email-mockup {
  background-color: #0B0E12;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-elevated);
}

.email-client-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #242A31;
}

.email-rendered-body {
  background-color: #12161D;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.email-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.email-rendered-subject {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.email-rendered-greeting {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.email-rendered-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.email-rendered-cta-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.email-rendered-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.star-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-mint);
  color: var(--accent-mint);
}

.email-rendered-footer {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ==========================================================================
   CUSTOMER MOBILE VIEW MOCKUP
   ========================================================================== */
.mobile-view-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mobile-frame-container {
  max-width: 320px;
  margin: 0 auto;
  background-color: #07090B;
  border: 10px solid #1C2229;
  border-radius: 40px;
  padding: 20px 14px;
  box-shadow: var(--shadow-elevated), 0 0 0 1px #2B333E;
  position: relative;
}

.mobile-speaker {
  width: 50px;
  height: 4px;
  background-color: #242A31;
  border-radius: 2px;
  margin: 0 auto 16px auto;
}

.mobile-screen-content {
  background-color: var(--surface-card);
  border-radius: 20px;
  padding: 18px 14px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   REVIEW DESTINATION CONCEPT
   ========================================================================== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.destination-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-fast);
}

.destination-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
  background-color: var(--surface-highlight);
}

.destination-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--surface-highlight);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

/* ==========================================================================
   AUTOMATION LOGIC TREE
   ========================================================================== */
.logic-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.logic-step-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  position: relative;
  transition: all var(--transition-fast);
}

.logic-step-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.logic-step-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-mint);
  margin-bottom: 6px;
}

.logic-step-desc {
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ==========================================================================
   SOLUTIONS / INDUSTRIES SECTION (REFINED SEGMENTED CONTROL)
   ========================================================================== */
.industry-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: var(--radius-xl);
  max-width: 880px;
  margin: 0 auto 40px auto;
}

.industry-tab-btn {
  padding: 8px 18px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.industry-tab-btn:hover {
  color: var(--text-primary);
  background: var(--surface-highlight);
}

.industry-tab-btn.active {
  background-color: var(--accent-mint-dim);
  color: var(--accent-mint);
  border-color: rgba(184, 243, 107, 0.35);
  box-shadow: 0 2px 10px rgba(184, 243, 107, 0.12);
}

.industry-showcase-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.industry-showcase-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-showcase-photo {
  position: relative;
  min-height: 380px;
  background-color: #0E1217;
  overflow: hidden;
}

.industry-showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  transition: transform var(--transition-smooth);
}

.industry-showcase-box:hover .industry-showcase-photo img {
  transform: scale(1.02);
}

/* ==========================================================================
   HOW IT WORKS (HORIZONTAL STORYTELLING)
   ========================================================================== */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.how-step-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.how-step-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.how-step-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-mint);
  margin-bottom: 12px;
}

/* Tri-Perspective Grid */
.tri-perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.perspective-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-fast);
}

.perspective-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.perspective-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-mint);
  margin-bottom: 12px;
}

/* ==========================================================================
   MANUAL VS AUTOMATED MATRIX
   ========================================================================== */
.matrix-container {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 40px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  font-size: 0.875rem;
}

.matrix-row.header {
  background-color: var(--surface-elevated);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.matrix-dim {
  color: var(--text-muted);
}

.matrix-mint {
  color: var(--accent-mint);
  font-weight: 600;
}

/* ==========================================================================
   CONNECTED WORKFLOW / INTEGRATIONS
   ========================================================================== */
.integration-diagram-card {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 48px;
  margin-top: 40px;
  text-align: center;
}

.integration-flow-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.upstream-sources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.system-pill {
  padding: 10px 18px;
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.diagram-hub-card {
  padding: 24px 32px;
  background-color: var(--surface-card);
  border: 2px solid var(--accent-mint);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 30px rgba(184, 243, 107, 0.15);
}

/* ==========================================================================
   CUSTOMER MANAGEMENT PAGE TABLE
   ========================================================================== */
.table-wrapper {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
}

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

.data-table th {
  background-color: var(--surface-elevated);
  padding: 14px 20px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.data-table tr:hover td {
  background-color: var(--surface-highlight);
}

/* ==========================================================================
   TEMPLATE LIBRARY
   ========================================================================== */
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.template-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.template-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

/* ==========================================================================
   PRICING PLANS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.pricing-card.featured {
  border-color: var(--accent-mint);
  background: linear-gradient(180deg, var(--surface-card) 0%, rgba(184, 243, 107, 0.04) 100%);
  box-shadow: 0 0 32px rgba(184, 243, 107, 0.12);
  transform: scale(1.03);
}

.plan-price-display {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 16px 0 4px 0;
  font-family: var(--font-mono);
}

.feature-checklist {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

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

.feature-check-item svg {
  color: var(--accent-mint);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-icon-chevron {
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-item.open .faq-icon-chevron {
  transform: rotate(180deg);
  color: var(--accent-mint);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 24px;
}

.faq-item.open .faq-answer-panel {
  max-height: 300px;
  padding-bottom: 20px;
}

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

/* ==========================================================================
   BRAND PHILOSOPHY / ABOUT SECTION
   ========================================================================== */
.philosophy-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.philosophy-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 48px;
  position: relative;
}

.philosophy-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* ==========================================================================
   EDITORIAL BLOG & ARTICLE READER
   ========================================================================== */
.article-reading-container {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #C0C8D2;
}

.article-content p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h3 {
  font-size: 1.45rem;
  margin: 40px 0 16px 0;
}

.article-content blockquote {
  border-left: 3px solid var(--accent-mint);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-primary);
}

.article-content .callout-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px 0;
}

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

.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-link-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

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

/* ==========================================================================
   FLOATING CONCEPT NAVIGATOR HUD (INDEPENDENT OF HEADER)
   ========================================================================== */
.concept-hud {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1200;
}

.concept-hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(17, 21, 26, 0.94);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.concept-hud-btn:hover {
  border-color: var(--accent-mint);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 243, 107, 0.18);
}

.concept-hud-drawer {
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 320px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
  padding: 16px;
  display: none;
  max-height: 480px;
  overflow-y: auto;
}

.concept-hud-drawer.open {
  display: block;
  animation: heroFadeUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.concept-hud-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.concept-hud-item:hover {
  background: var(--surface-highlight);
  color: var(--text-primary);
}

.concept-hud-item.active {
  background: var(--accent-mint-dim);
  color: var(--accent-mint);
  font-weight: 600;
}

/* ==========================================================================
   MODAL SYSTEM (Demo Request / Get Started)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 9, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-window {
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-window {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-muted);
  background: var(--surface-card);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-focus);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background-color: var(--surface-card);
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: heroFadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

/* Subpage / Module View Display Switcher */
.page-view {
  display: none;
}

.page-view.active-view {
  display: block;
}

/* Staggered Reveal Animation Helpers */
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
.reveal-delay-5 { transition-delay: 0.5s !important; }

/* ==========================================================================
   FLOATING CONCEPT NAVIGATOR HUD & DRAWER
   ========================================================================== */
.concept-hud {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2100;
  font-family: var(--font-sans);
}

.concept-hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 18, 23, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 243, 107, 0.35);
  color: var(--text-primary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65), 0 0 16px rgba(184, 243, 107, 0.18);
  transition: all var(--transition-normal);
}

.concept-hud-btn:hover {
  background: rgba(22, 28, 36, 0.98);
  border-color: var(--accent-mint);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8), 0 0 24px rgba(184, 243, 107, 0.3);
}

.concept-hud-drawer {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 340px;
  max-height: 480px;
  overflow-y: auto;
  background: rgba(11, 14, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-elevated), 0 16px 48px rgba(0, 0, 0, 0.85);
  display: none;
  flex-direction: column;
  gap: 4px;
}

.concept-hud-drawer.open {
  display: flex;
  animation: heroFadeUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-hud-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.concept-hud-item:hover {
  background: var(--surface-highlight);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.concept-hud-item.active {
  background: var(--accent-mint-dim);
  color: var(--accent-mint);
  font-weight: 600;
  border-color: rgba(184, 243, 107, 0.3);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FLUID, UNBREAKABLE LAYOUT)
   ========================================================================== */
@media (max-width: 1140px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.825rem;
  }
  .brand-domain-tag {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .builder-layout, .email-builder-grid, .industry-showcase-box, .dash-content-split {
    grid-template-columns: 1fr;
  }
  .trust-category-grid, .how-steps-grid, .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logic-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid, .template-grid, .tri-perspective-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.775rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-headline {
    font-size: 2.3rem;
  }
  .dash-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wow-sim-stage {
    grid-template-columns: 1fr;
  }
  .problem-contrast-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .concept-hud {
    bottom: 16px;
    left: 16px;
  }
  .concept-hud-drawer {
    width: calc(100vw - 32px);
    max-height: 60vh;
  }
}
