:root {
  /* Dark mode (default) to match app */
  --color-bg: #0a0e17; /* Very dark navy */
  --color-surface: #131824; /* Card background */
  --color-surface-hover: #1c2436;
  --color-primary: #3b82f6; 
  --color-primary-hover: #2563eb;
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-border: #1e293b;
  
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --spacing-base: 1rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

:root[data-theme="light"] {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-hover: #f1f5f9;
  --color-primary: #3b82f6; 
  --color-primary-hover: #2563eb;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  padding: 2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 0;
  background: var(--color-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.lang-toggle, .theme-toggle {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.lang-toggle:hover, .theme-toggle:hover {
  color: var(--color-text);
}

.header-cta {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
}

.header.scrolled .header-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.logo img {
  height: 48px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo img {
  height: 28px;
}

/* Typography Utility */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}

/* Forms */
.waitlist-form {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  border: 1px solid var(--color-border);
  border-right: none;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.email-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
  border-right: 1px solid var(--color-primary);
  z-index: 2;
  position: relative;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #2563eb;
  color: white;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.hero-primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.submit-button {
  padding: 1rem 2rem;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  border: none;
  background: #2563eb;
  color: white;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.submit-button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.form-trust-line {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  opacity: 0.8;
  font-weight: 400;
}

.success-message {
  color: #10b981; /* Emerald green */
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.5s ease forwards;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 2rem;
  overflow: hidden;
  z-index: 10;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
  z-index: 0;
}

/* Ambient Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  animation: orb-float 15s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(79, 70, 229, 0.4);
  top: -150px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.3);
  bottom: 0;
  right: -50px;
  animation-delay: -5s;
}

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

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
  animation: pulse-border 4s infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(255, 255, 255, 0.1); box-shadow: 0 0 20px rgba(59, 130, 246, 0.1); }
  50% { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 0 30px rgba(59, 130, 246, 0.25); }
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -1px;
  margin-bottom: 3rem;
  color: var(--color-text);
  line-height: 1.1;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Integrations Bar */
.integrations-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.integrations-label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.integrations-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.7;
}

.integration-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.integration-logo i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.integration-pending {
  opacity: 0.6;
}

.integration-pending i {
  color: var(--color-text-muted);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.compatibility-message {
  text-align: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  font-style: italic;
}

.bridge-animation-container {
  position: relative;
  width: 100vw;
  max-width: 900px;
  margin: 0 auto;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 20;
  transition: opacity var(--transition-fast);
  margin: 2.5rem auto 0;
}

.scroll-indicator:hover {
  opacity: 0.8;
}

.scroll-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
  animation: bounce-arrow 2s infinite ease-in-out;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.bridge-track {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(16, 185, 129, 0.5) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.bridge-track::before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
  opacity: 0.5;
  animation: bidirectional-pulse 4s ease-in-out infinite alternate;
  z-index: 2;
  filter: blur(8px);
}

@keyframes bidirectional-pulse {
  0% { opacity: 0.2; transform: scaleX(0.8); }
  100% { opacity: 0.8; transform: scaleX(1.1); }
}

.nodes-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.bridge-node {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.client-node {
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--color-primary);
  animation: pulse-glow-blue 3s infinite;
}

.acc-node {
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  animation: pulse-glow-green 3s infinite 1.5s;
}

.center-node {
  width: 140px;
  height: 140px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: var(--color-surface);
  animation: pulse-glow-indigo 5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.bridge-logo {
  width: 60%;
  height: auto;
}

.node-label {
  position: absolute;
  top: -30px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.verkonto-label {
  position: absolute;
  bottom: -40px;
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes pulse-glow-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 0 20px 0 rgba(59, 130, 246, 0.2); }
}

@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 20px 0 rgba(16, 185, 129, 0.2); }
}

@keyframes pulse-glow-indigo {
  0%, 100% { box-shadow: 0 0 10px 0 rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
  50% { box-shadow: 0 0 25px 0 rgba(59, 130, 246, 0.3); border-color: rgba(59, 130, 246, 0.4); }
}

/* Journey Section (Timeline) */
.journey-section {
  position: relative;
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.4) 0%, var(--color-bg) 40%);
  overflow: hidden;
  z-index: 5;
}

/* Laptop Mockup */
.laptop-mockup {
  position: relative;
  max-width: 900px;
  margin: 0 auto 6rem;
  z-index: 10;
}

.laptop-screen {
  background: #000;
  padding: 1.5rem 0.5rem 0.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.camera-dot {
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}

.dashboard-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--color-bg) 105%);
  pointer-events: none;
}

/* Mock Dashboard CSS Replica */
.mock-dashboard {
  display: flex;
  background: #0f172a;
  font-family: var(--font-body);
  color: #f8fafc;
  overflow: hidden;
  border-radius: 12px;
  text-align: left;
}

/* Sidebar */
.mock-sidebar {
  width: 64px;
  background: #020617;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.mock-sb-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}
.mock-sb-icon.active {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.mock-sb-icon svg { width: 20px; height: 20px; }

/* Main Area */
.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Top Nav */
.mock-topnav {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0f172a;
}
.mock-nav-left { display: flex; align-items: center; gap: 1rem; }
.mock-logo { height: 20px; }
.mock-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
.mock-nav-text { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #cbd5e1; }
.mock-nav-text svg { width: 16px; height: 16px; color: #10b981; }

.mock-nav-right { display: flex; align-items: center; gap: 1.25rem; color: #94a3b8; }
.mock-nav-right svg { width: 18px; height: 18px; }
.mock-lang { font-size: 0.85rem; font-weight: 500; }
.mock-avatar { width: 32px; height: 32px; border-radius: 6px; background: rgba(59,130,246,0.2); color: #3b82f6; display: flex; align-items: center; justify-content: center; }

/* Content */
.mock-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: #020617;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.mock-h2 { font-size: 1.8rem !important; margin-bottom: 0.25rem; font-weight: 700; color: white !important; }
.mock-p { color: #94a3b8; font-size: 0.95rem; margin: 0 !important; }
.mock-firm-badge {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
}

/* Metrics */
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mock-metric-card {
  background: #0f172a;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.mock-metric-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; color: #94a3b8; }
.mock-icon-wrapper { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mock-icon-wrapper.blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mock-icon-wrapper.orange { background: rgba(245,158,11,0.15); color: #fbbf24; }
.mock-icon-wrapper.purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.mock-icon-wrapper svg { width: 18px; height: 18px; }

.mock-metric-value { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1; }
.mock-metric-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #cbd5e1; }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot.blue { background: #3b82f6; }
.dot.orange { background: #f59e0b; }
.dot.purple { background: #8b5cf6; }

/* Bottom Row */
.mock-bottom-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.mock-activity, .mock-actions { background: #0f172a; border-radius: 12px; padding: 1rem 1.25rem; border: 1px solid rgba(255,255,255,0.05); }

.mock-section-title { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 1rem; }
.mock-link { color: #60a5fa; font-size: 0.8rem; font-weight: 500; cursor: pointer; }

.mock-list { display: flex; flex-direction: column; gap: 1rem; }
.mock-list-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid rgba(255,255,255,0.03); }
.mock-list-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); color: #94a3b8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-list-icon.orange { background: rgba(245,158,11,0.1); color: #fbbf24; }
.mock-list-icon.blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.mock-list-icon svg { width: 18px; height: 18px; }

.mock-list-info { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.mock-list-info strong { font-size: 0.9rem; font-weight: 600; color: white; }
.mock-list-info span { font-size: 0.8rem; color: #94a3b8; }

.mock-list-amount { text-align: right; display: flex; flex-direction: column; gap: 0.25rem; }
.mock-list-amount strong { font-size: 0.9rem; font-weight: 600; color: white; }
.status-orange { font-size: 0.65rem; font-weight: 700; color: #fbbf24; letter-spacing: 0.5px; }
.status-blue { font-size: 0.65rem; font-weight: 700; color: #60a5fa; letter-spacing: 0.5px; }

.mock-action-btn { background: #3b82f6; color: white; border-radius: 8px; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem; cursor: pointer; transition: filter 0.2s; }
.mock-action-btn:hover { filter: brightness(1.1); }
.mock-action-btn svg { width: 18px; height: 18px; }

.mock-action-card { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 1rem; border-radius: 8px; cursor: pointer; transition: background 0.2s; }
.mock-action-card:hover { background: rgba(255,255,255,0.05); }
.mock-action-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(59,130,246,0.1); color: #60a5fa; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-action-icon svg { width: 18px; height: 18px; }

/* Mock Chart */
.mock-chart-area { width: 100%; margin-top: 1rem; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  display: inline-block;
  background: var(--color-bg);
  padding: 0 1.5rem;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: var(--color-text);
}

.global-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 1;
}

.global-track-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-border);
}

.global-track-fill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), #10b981);
  transform-origin: top;
  transform: scaleY(0);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  opacity: 0.3;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  justify-content: flex-start;
}
.timeline-item.left .card, 
.timeline-item.left .feature-card {
  width: 45%;
  text-align: right;
}
.timeline-item.left .card-icon,
.timeline-item.left .feature-icon {
  margin-left: auto;
}

.timeline-item.right {
  justify-content: flex-end;
}
.timeline-item.right .card, 
.timeline-item.right .feature-card {
  width: 45%;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  transition: all 0.5s ease;
  z-index: 3;
}

.timeline-item.active .timeline-marker {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.timeline-marker.feature-icon-marker {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.timeline-item.active .timeline-marker.feature-icon-marker {
  background: var(--color-surface);
  color: var(--color-primary);
}

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

.card, .feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  transition: all var(--transition-normal);
}

.card:hover, .feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  background: var(--color-surface-hover);
}

.card-icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
}

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

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

.card p, .feature-card p {
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 1.1rem;
}



/* Footer Section */
.footer {
  padding: 2rem 0;
  background: var(--color-bg);
}

.footer-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.footer-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-form-wrapper {
  justify-content: center;
}

.footer-form-wrapper .waitlist-form {
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .waitlist-form {
    margin: 0 auto;
  }

  .bridge-animation-container {
    height: 250px;
    transform: scale(0.9);
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .email-input, .submit-button {
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Header Mobile */
  .nav-actions { gap: 0.5rem; }
  .header-cta { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .logo img { height: 24px; }
  
  /* Timeline Mobile - Shift track to left edge */
  .global-track { 
    left: 1.5rem; 
    transform: none; 
  }
  
  .timeline-marker { 
    left: 1.5rem; 
    transform: translate(-50%, -50%); 
  }
  
  /* Reset Zig-Zag Layout */
  .timeline-item.left, 
  .timeline-item.right {
    justify-content: flex-end;
  }
  
  .timeline-item.left .card,
  .timeline-item.right .card,
  .timeline-item.left .feature-card,
  .timeline-item.right .feature-card {
    width: calc(100% - 4rem);
    text-align: left;
    margin-left: auto;
    padding: 1.5rem;
  }
  
  /* Mock Dashboard Mobile */
  .laptop-screen { 
    padding: 0.5rem 0.25rem; 
    border-radius: 8px; 
  }
  
  .mock-content { 
    padding: 1rem; 
  }
  
  .mock-topnav { 
    padding: 1rem; 
    flex-direction: column; 
    gap: 1rem; 
    align-items: flex-start; 
  }
  
  .mock-metrics { 
    grid-template-columns: 1fr; 
    gap: 0.75rem; 
  }
  
  .mock-bottom-row { 
    grid-template-columns: 1fr; 
  }
  
  .mock-sidebar { 
    display: none; /* Hide sidebar to maximize space */
  }
}

/* How it Works Grid */
.how-it-works-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
  .how-it-works-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.step-card {
  flex: 1;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon i {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

@media (max-width: 900px) {
  .step-connector {
    transform: rotate(90deg);
    margin-top: 0;
  }
}



/* Trust & Compliance */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.trust-card:hover {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-icon i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.trust-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.infrastructural-strip {
  text-align: center;
  margin: 4rem auto 0;
  max-width: 800px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 500;
}

.infrastructural-strip .sep {
  color: rgba(148, 163, 184, 0.3);
  margin: 0 0.75rem;
}

/* Target Audience */
.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.audience-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #10b981);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-icon i {
  width: 28px;
  height: 28px;
  color: #10b981;
}

.audience-card h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0;
}

.audience-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

@media (max-width: 900px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.footer-company-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 250px;
}

.footer-col h4 {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.primary-audience {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.primary-audience .audience-icon {
  background: rgba(59, 130, 246, 0.1);
}

.primary-audience .audience-icon i {
  color: var(--color-primary);
}

.primary-audience p {
  font-size: 1.05rem;
}

/* Footer Simple */
.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-simple {
  display: flex;
  gap: 2rem;
}

.footer-links-simple a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

@media (max-width: 768px) {
  .footer-simple {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .footer-links-simple {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Ecosystem Section */
.ecosystem-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 2.5rem 2rem;
  position: relative;
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
  .ecosystem-fluid {
    flex-direction: column;
    gap: 4rem;
  }
}

.fluid-side {
  flex: 1;
  max-width: 380px;
  position: relative;
  z-index: 2;
}

.fluid-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fluid-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.fluid-side h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.floating-tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-tag {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.float-tag i {
  color: #10b981;
  width: 18px;
  height: 18px;
}

.float-tag.delay-1 {
  animation-delay: 1s;
  margin-left: 1rem;
}

.float-tag.delay-2 {
  animation-delay: 2s;
  margin-left: 2rem;
}

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

.fluid-core-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.core-connection-line {
  position: absolute;
  top: 50%;
  left: -200%;
  right: -200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3) 20%, rgba(16, 185, 129, 0.3) 80%, transparent);
  z-index: 0;
}

@media (max-width: 900px) {
  .core-connection-line {
    width: 1px;
    height: 300px;
    left: 50%;
    top: -150px;
    bottom: -150px;
    right: auto;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3) 20%, rgba(16, 185, 129, 0.3) 80%, transparent);
  }
}

.fluid-core {
  position: relative;
  width: 120px;
  height: 120px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-logo {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(15, 23, 42, 1));
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
  padding: 1rem;
}

.core-logo img {
  width: 100%;
  height: auto;
}

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  animation: pulse-ring 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.core-pulse.ring-1 {
  width: 120px;
  height: 120px;
}

.core-pulse.ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 2s;
  border-color: rgba(16, 185, 129, 0.2);
}

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

/* Operations Center Mockup */
.mockup-ops-center {
  display: flex;
  width: 100%;
}

@media (max-width: 900px) {
  .mockup-ops-center {
    flex-direction: column;
  }
}

.mockup-pane-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mockup-ops-left {
  flex: 1;
  padding: 2rem;
  border-right: 1px solid var(--color-border);
  background: rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ops-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.ops-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.company-name {
  font-weight: 600;
  font-size: 1rem;
}

.status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.status-badge.progress {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.done {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}

.ops-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.metric i {
  width: 14px;
  height: 14px;
}

.metric.alert {
  color: #ef4444;
}

.mockup-ops-right {
  width: 380px;
  padding: 2rem;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .mockup-ops-right {
    width: 100%;
  }
}

.communication-thread {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.msg {
  display: flex;
  gap: 1rem;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-avatar i {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
}

.msg.sent .msg-avatar {
  background: rgba(59, 130, 246, 0.2);
}

.msg.sent .msg-avatar i {
  color: var(--color-primary);
}

.msg-content {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--color-border);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-top-left-radius: 0;
}

.msg.sent .msg-content {
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: 0;
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

.msg-author {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.msg-content p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  color: var(--color-text);
}

/* Transformation Flow Section */
.transformation-flow-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .transformation-flow-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.flow-microcopy {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.transform-stage {
  flex: 1;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.transform-stage:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.2);
}

.transform-stage.core-stage {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 1));
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

.stage-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.core-stage .stage-icon {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
}

.stage-header h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.stage-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.t-tag {
  background: transparent;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.t-tag:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  border-left-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.t-tag.primary {
  color: #e2e8f0;
  background: rgba(59, 130, 246, 0.05);
  border-left-color: rgba(59, 130, 246, 0.5);
}

.t-tag.highlight {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  font-weight: 500;
}

.transform-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.connector-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: visible;
}

.connector-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
  filter: blur(2px);
  animation: data-flow 6s infinite ease-in-out;
}

@media (max-width: 1024px) {
  .transform-connector {
    width: 100%;
    height: 40px;
  }
  .connector-line {
    width: 2px;
    height: 100%;
  }
  .connector-line::after {
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  }
}

@keyframes data-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}

@media (max-width: 1024px) {
  @keyframes data-flow {
    0% { transform: translateY(0); }
    100% { transform: translateY(200%); }
  }
}



.signal-tag.pos-left { animation-delay: 0s !important; }
.signal-tag.pos-center { animation-delay: 1.5s !important; }
.signal-tag.pos-right { animation-delay: 3s !important; }

@keyframes float-subtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .slim-signals {
    flex-direction: column !important;
    gap: 1.5rem;
    height: auto !important;
    padding: 2rem 0;
  }
}



/* Typography Refinements */
.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 3.5rem;
  font-weight: 400;
  opacity: 0.85;
}

p {
  line-height: 1.6;
  opacity: 0.9;
}
