/* CSS Variables & Theme System */
:root {
  /* Colors */
  --bg: #ffffff;
  --bg-secondary: #fafbfc;
  --text: #0b1020;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  /* Brand Colors */
  --navy: #0b1020;
  --slate: #1b2236;
  --gray: #cfd6e6;
  --grad-start: #667eea;
  --grad-end: #764ba2;
  --cyan: #4facfe;
  --coral: #ff6b6b;

  /* Glassmorphism */
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.95);

  /* Spacing & Layout */
  --container-width: 1200px;
  --section-padding: 120px 0;
  --radius: 16px;
  --radius-large: 24px;
  --radius-small: 8px;

  /* Shadows & Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 25px 50px rgba(0, 0, 0, 0.15);
  --glow: 0 0 40px rgba(102, 126, 234, 0.15);

  /* Transitions */
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Typography */
  --font-system: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg: #0b1020;
  --bg-secondary: #1b2236;
  --text: #eaf1ff;
  --text-secondary: #9aa3b2;
  --text-muted: #6b7280;
  --border: #2a3441;
  --border-light: #1e2936;

  --glass: rgba(26, 32, 44, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(11, 16, 32, 0.95);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Container & Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

/* Typography System */
.text-gradient {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn--secondary {
  background: var(--glass-bg);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.btn--secondary:hover {
  background: var(--glass);
  border-color: var(--grad-start);
}

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

.btn--ghost:hover {
  color: var(--text);
  background: var(--glass);
  border-color: var(--border);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}

.nav--scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all var(--transition);
}

.nav__brand:hover {
  transform: scale(1.02);
}

.nav__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-small);
}

.nav__wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.nav__links {
  color: var(--text);
}

.nav__flow {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-small);
  transition: background var(--transition);
}

.nav__mobile-toggle:hover {
  background: var(--glass);
}

.nav__mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius);
  background: var(--glass);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--glass-bg);
  color: var(--text);
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: all var(--transition);
}

.theme-toggle__sun {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-toggle__moon {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(102, 126, 234, 0.08), transparent 70%);
  pointer-events: none;
}

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

.hero__text {
  max-width: 580px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  position: relative;
}

.hero__visualization {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.1));
}

.hero__svg .node {
  filter: url(#glow);
  animation: pulse 2s ease-in-out infinite alternate;
}

.hero__svg .connection {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 3s ease-in-out infinite;
}

.hero__trust {
  margin-top: 120px;
  text-align: center;
}

.hero__trust-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.hero__trust-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

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

/* Social Preview */
.social-preview {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-preview__carousel {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-pill__platform {
  font-weight: 600;
  color: var(--text);
}

.social-pill__url {
  color: var(--text-secondary);
  font-family: 'SF Mono', Monaco, monospace;
}

/* Features Grid */
.features {
  background: var(--bg);
}

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

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px 32px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grad-start), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--glass-border);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card__desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 240px;
}

.step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step__number::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.step__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.step__content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step__connector {
  flex-shrink: 0;
}

.step__connector svg {
  width: 100px;
  height: 20px;
}

/* Metrics Demo */
.metrics-demo {
  background: var(--bg);
}

.demo-panel {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.demo-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.demo-panel__header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.demo-panel__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.metric-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}

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

.metric-card--wide {
  grid-column: 1 / -1;
  text-align: left;
}

.metric-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.metric-card__label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.metric-card__change {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
}

.sparkline {
  height: 60px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius-small);
  position: relative;
  overflow: hidden;
}

.sparkline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 10 L20 5 L40 15 L60 8 L80 12 L100 6' stroke='white' stroke-width='2' fill='none' opacity='0.7'/%3e%3c/svg%3e") center/cover;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
}

.modal__header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  border-radius: var(--radius-small);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--glass);
  color: var(--text);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__body {
  padding: 32px;
}

.demo-interface {
  text-align: left;
}

.demo-header {
  text-align: center;
  margin-bottom: 32px;
}

.demo-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.demo-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: var(--radius);
}

.demo-tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-small);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.demo-tab--active,
.demo-tab:hover {
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.demo-content {
  position: relative;
  min-height: 300px;
}

.demo-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.demo-panel--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.demo-metric {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.demo-metric__value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.demo-metric__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.demo-metric__trend {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 500;
}

.demo-chart-container {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}

.demo-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.demo-chart-header span {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.demo-chart-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.demo-live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.demo-chart {
  height: 80px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius-small);
  position: relative;
  overflow: hidden;
}

.demo-chart::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 15 L20 8 L40 12 L60 5 L80 9 L100 3' stroke='white' stroke-width='2' fill='none' opacity='0.8'/%3e%3c/svg%3e") center/cover;
}

.demo-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-link-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  transition: all var(--transition);
}

.demo-link-item:hover {
  border-color: var(--grad-start);
  transform: translateY(-1px);
}

.demo-link-url {
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.demo-link-stats {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.demo-link-status {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 12px;
}

.demo-link-status--active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.demo-link-status--paused {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.demo-routing-rules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-rule {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.demo-rule:hover {
  border-color: var(--grad-start);
  transform: translateY(-1px);
}

.demo-rule-condition {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.demo-rule-result {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 500;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes draw {
  0% { stroke-dashoffset: 300; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -300; }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .features__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step__connector {
    transform: rotate(90deg);
  }

  /* Register page responsive */
  .register-container {
    gap: 60px;
  }

  .register-intro h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav__menu {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust-logos {
    gap: 32px;
  }

  .social-preview__carousel {
    flex-direction: column;
    align-items: center;
  }

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

  .demo-panel {
    padding: 24px;
  }

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

  .modal {
    padding: 16px;
  }

  .modal__content {
    max-height: 90vh;
  }

  .modal__header {
    padding: 20px 24px;
  }

  .modal__body {
    padding: 24px;
  }

  /* Register page mobile responsive */
  .register-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .register-intro {
    order: 2;
  }

  .auth-box {
    order: 1;
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .social-login {
    flex-direction: column;
  }

  .register-intro h1 {
    font-size: 1.8rem;
  }

  /* Footer responsive */
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .demo-stats {
    flex-direction: column;
    gap: 8px;
  }

  /* Footer mobile responsive */
  .footer__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }

  /* Legal pages mobile responsive */
  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-section {
    padding: 24px 20px;
  }

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

  .legal-table {
    font-size: 0.9rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 12px 8px;
  }
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.auth-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(102, 126, 234, 0.08), transparent 70%);
  pointer-events: none;
}

.auth-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  max-width: 480px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.auth-form {
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  stroke-width: 2;
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--grad-start);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  border-radius: var(--radius-small);
  transition: all var(--transition);
}

.password-toggle:hover {
  color: var(--text);
  background: var(--glass);
}

.password-toggle svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.password-toggle .eye-closed {
  display: none;
}

.password-toggle.show-password .eye-open {
  display: none;
}

.password-toggle.show-password .eye-closed {
  display: block;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-color: var(--grad-start);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-left: none;
  border-top: none;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--social {
  width: 100%;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
}

.btn--social:hover {
  background: var(--glass);
  border-color: var(--grad-start);
}

.btn--social svg {
  width: 20px;
  height: 20px;
}

.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 32px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0 16px;
  position: relative;
}

.auth-footer {
  text-align: center;
}

.auth-footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--grad-start);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Register Page Specific Styles */
.register-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.register-intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.register-intro > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.benefits-list {
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  color: var(--grad-start);
  flex-shrink: 0;
}

.testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
}

.testimonial__content {
  margin-bottom: 20px;
}

.testimonial__content p {
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  font-size: 1rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.testimonial__avatar svg {
  width: 20px;
  height: 20px;
}

.testimonial__name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.checkbox-group {
  margin-bottom: 32px;
}

.checkbox-group .checkbox-wrapper {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--grad-start);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.password-strength {
  margin-top: 8px;
  font-size: 0.8rem;
}

.strength-text {
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.strength-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all var(--transition);
  border-radius: 2px;
}

.strength-weak { background: #ef4444; }
.strength-medium { background: #f59e0b; }
.strength-strong { background: #06b6d4; }
.strength-very-strong { background: #10b981; }

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 24px;
  margin-top: auto;
}

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

.footer__brand {
  max-width: 320px;
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-small);
}

.footer__wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.footer__links {
  color: var(--text);
}

.footer__flow {
  color: var(--text-secondary);
  font-weight: 500;
}

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

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--glass-bg);
  border-color: var(--grad-start);
  color: var(--grad-start);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__section-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--text);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--text-secondary);
}

.footer__rgpd {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.footer__rgpd-icon {
  width: 20px;
  height: 20px;
  color: var(--grad-start);
  flex-shrink: 0;
}

.footer__rgpd-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer__rgpd-text a {
  color: var(--grad-start);
  text-decoration: none;
  font-weight: 500;
}

.footer__rgpd-text a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
}

.legal-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(102, 126, 234, 0.08), transparent 70%);
  pointer-events: none;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.legal-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-meta span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-badge {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white !important;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.8rem !important;
}

.legal-sections {
  margin-bottom: 60px;
}

.legal-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 16px 0;
}

.legal-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 16px 0 8px 0;
}

.legal-info {
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-info p {
  margin-bottom: 16px;
}

.legal-info ul {
  margin: 16px 0;
  padding-left: 20px;
}

.legal-info li {
  margin-bottom: 8px;
}

.legal-info strong {
  color: var(--text);
  font-weight: 600;
}

.legal-info a {
  color: var(--grad-start);
  text-decoration: none;
  font-weight: 500;
}

.legal-info a:hover {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.legal-table th {
  background: var(--bg-secondary);
  color: var(--text);
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

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

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

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.right-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.right-item:hover {
  border-color: var(--grad-start);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.right-item h4 {
  color: var(--grad-start);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.legal-footer {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(20px);
}

.legal-contact-box h3 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.legal-contact-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.legal-contact-box a {
  color: var(--grad-start);
  text-decoration: none;
  font-weight: 500;
}

.legal-contact-box a:hover {
  text-decoration: underline;
}

/* Animations for loading states */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Features Page */
.features-categories {
  margin-bottom: 60px;
}

.feature-category {
  margin-bottom: 80px;
}

.category-header {
  text-align: center;
  margin-bottom: 48px;
}

.category-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: var(--shadow);
}

.category-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.category-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.category-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-list li:before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.features-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 64px 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Pricing Page */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.billing-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.billing-discount {
  color: var(--grad-start);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(102, 126, 234, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 28px;
  transition: all var(--transition);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 60px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(20px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  border-color: var(--grad-start);
}

.pricing-card--featured {
  border: 2px solid var(--grad-start);
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-right: 4px;
}

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

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

.pricing-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.pricing-action {
  text-align: center;
}

.pricing-trial {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-faq {
  margin: 80px 0;
  text-align: center;
}

.pricing-faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  text-align: left;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 24px;
  backdrop-filter: blur(20px);
}

.faq-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.enterprise-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.enterprise-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.enterprise-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.enterprise-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.enterprise-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.enterprise-feature svg {
  width: 20px;
  height: 20px;
  color: var(--grad-start);
  stroke-width: 2;
}

/* Additional Page Styles */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.integration-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(20px);
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  border-color: var(--grad-start);
}

.integration-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.integration-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(102, 126, 234, 0.1);
  color: var(--grad-start);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.docs-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.docs-section {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.docs-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.docs-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.docs-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin-top: 60px;
}

.docs-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.support-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.support-availability {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px 0;
}

.status-section {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  margin-top: 40px;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  font-weight: 500;
  color: var(--text);
}

.status-dot--green {
  background: #10b981;
}

.api-sections {
  margin: 60px 0;
}

.api-section {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
}

.endpoint {
  margin: 24px 0;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.endpoint-method {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.api-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin-top: 60px;
}

pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  overflow-x: auto;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.9rem;
  margin: 16px 0;
}

code {
  font-family: 'SF Mono', Monaco, monospace;
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin: 60px 0;
}

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
}

.contact-method h4 {
  color: var(--text);
  margin-bottom: 8px;
}

.contact-method p {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Status page */
.status-overview {
  margin: 60px 0;
}

.status-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(20px);
}

.services-status {
  margin: 60px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  backdrop-filter: blur(20px);
}

.service-name {
  font-weight: 500;
  color: var(--text);
}

.service-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-operational {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.service-uptime {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.incidents-section {
  margin: 60px 0;
}

.incident-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
}

.incident-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.incident-status {
  color: var(--text);
  font-weight: 500;
}

/* Blog page */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 60px 0;
}

.blog-post {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.blog-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-post h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-post p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--grad-start);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.blog-link:hover {
  color: var(--grad-end);
}

/* Changelog page */
.changelog-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 60px 0;
}

.changelog-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.changelog-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.changelog-date {
  color: var(--grad-start);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.changelog-item h3 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.changelog-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.changelog-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.changelog-item li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.changelog-item li:before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Help page */
.help-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.help-section {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.help-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.help-section h3 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.help-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-section li {
  margin-bottom: 12px;
}

.help-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.95rem;
}

.help-section a:hover {
  color: var(--grad-start);
}

.help-contact {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin-top: 60px;
}

.help-contact h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.help-contact p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* About page */
.about-content {
  margin: 60px 0;
}

.about-section {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.about-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.about-section h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.about-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.about-section li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-section li:last-child {
  border-bottom: none;
}

.about-section strong {
  color: var(--grad-start);
  font-weight: 600;
}

/* Careers page */
.careers-content {
  margin: 60px 0;
}

.careers-intro {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
}

.careers-intro h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.careers-intro > p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.benefit {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.benefit:hover {
  border-color: var(--grad-start);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.benefit h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.open-positions {
  margin: 40px 0;
}

.open-positions h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.position {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.position:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.position h3 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.position-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.position p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.careers-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.careers-cta h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.careers-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Press page */
.press-content {
  margin: 60px 0;
}

.press-kit,
.company-facts,
.press-contact {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.press-kit:hover,
.company-facts:hover,
.press-contact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.press-kit h2,
.company-facts h2,
.press-contact h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.press-kit p,
.press-contact p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.company-facts ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.company-facts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.company-facts li:last-child {
  border-bottom: none;
}

.company-facts strong {
  color: var(--text);
  font-weight: 600;
}

/* Partners page */
.partners-content {
  margin: 60px 0;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.partner-type {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.partner-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grad-start);
}

.partner-type h3 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.partner-type p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.partner-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-type li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.partner-type li:before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.partner-benefits {
  margin: 60px 0;
}

.partner-benefits h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

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

.benefit-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--grad-start);
}

.benefit-item h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.partner-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-large);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.partner-cta h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.partner-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__svg .node,
  .hero__svg .connection,
  .status-dot {
    animation: none;
  }
}
