/* Signal Landing Page Styles */
:root {
  --bg-base: #0a0a0f;
  --bg-surface: #12121a;
  --bg-elevated: #1a1a24;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-faint: #52525b;
  /* Primary brand colors - matching logo gradient */
  --signal-cyan: #50ebff;      /* Neon Cyan (Highlights) */
  --signal-azure: #00a0f0;     /* Bright Azure (Transition) */
  --signal-blue: #0050c8;      /* Rich Blue (Mid-Tone) */
  --signal-indigo: #231478;    /* Deep Indigo (Shadows) */
  /* Semantic colors */
  --signal-matrix: #22d399;
  --signal-amber: #fbbf24;
  --signal-red: #ef4444;
  /* Button colors - matching logo blue/cyan gradient */
  --signal-violet: #00a0f0;
  --signal-purple: #50ebff;
  --signal-plasma: #0050c8;
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Typography */
.font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.nav-logo img {
  width: 32px;
  height: 32px;
}

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

.nav-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

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

.btn-primary {
  background: var(--signal-violet);
  color: white;
}

.btn-primary:hover {
  background: var(--signal-purple);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1rem;
}

.btn-glow {
  box-shadow: 0 0 40px rgba(0, 160, 240, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 60px rgba(80, 235, 255, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 160, 240, 0.12);
  border-radius: 50%;
  filter: blur(120px);
  top: -250px;
  left: 20%;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(35, 20, 120, 0.15);
  border-radius: 50%;
  filter: blur(100px);
  top: 30%;
  right: -150px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--signal-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.gradient-text-violet {
  background: linear-gradient(135deg, #50ebff, #00a0f0, #0050c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #50ebff, #00a0f0, #0050c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--signal-matrix);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  animation: bounce 2s infinite;
}

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

/* Section */
.section {
  padding: 6rem 1.5rem;
}

.section-dark {
  background: var(--bg-surface);
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal-violet);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Platform Modules */
.platform-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.module-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.module-core::before { background: linear-gradient(90deg, #50ebff, #00a0f0); }
.module-pulse::before { background: linear-gradient(90deg, #00a0f0, #0050c8); }
.module-guard::before { background: linear-gradient(90deg, #0050c8, #231478); }

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.module-core .module-icon {
  background: rgba(80, 235, 255, 0.15);
  color: #50ebff;
}

.module-pulse .module-icon {
  background: rgba(0, 160, 240, 0.15);
  color: var(--signal-azure);
}

.module-guard .module-icon {
  background: rgba(0, 80, 200, 0.15);
  color: #00a0f0;
}

.module-icon svg {
  width: 28px;
  height: 28px;
}

.module-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.module-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.module-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--signal-violet);
  transition: gap 0.2s;
}

.module-link:hover {
  gap: 0.75rem;
}

/* Product Sections */
.product-section {
  padding: 8rem 1.5rem;
}

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

.product-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.product-icon svg {
  width: 36px;
  height: 36px;
}

.product-icon-core {
  background: linear-gradient(135deg, rgba(80, 235, 255, 0.2), rgba(0, 160, 240, 0.2));
  color: #50ebff;
}

.product-icon-pulse {
  background: linear-gradient(135deg, rgba(0, 160, 240, 0.2), rgba(0, 80, 200, 0.2));
  color: var(--signal-azure);
}

.product-icon-guard {
  background: linear-gradient(135deg, rgba(0, 80, 200, 0.2), rgba(35, 20, 120, 0.2));
  color: var(--signal-blue);
}

.product-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal-cyan);
  margin-bottom: 1rem;
}

.product-label-pulse { color: var(--signal-azure); }
.product-label-guard { color: var(--signal-blue); }

.product-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-grid-reverse {
  direction: rtl;
}

.product-grid-reverse > * {
  direction: ltr;
}

/* Feature Lists */
.features-heading,
.comparison-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(80, 235, 255, 0.15);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.feature-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--signal-cyan);
  border-radius: 50%;
}

.feature-check-pulse {
  background: rgba(0, 160, 240, 0.15);
}

.feature-check-pulse::after {
  background: var(--signal-azure);
}

.feature-check-guard {
  background: rgba(0, 80, 200, 0.15);
}

.feature-check-guard::after {
  background: var(--signal-blue);
}

.feature-list-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

/* Comparison Table */
.comparison-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

.comparison-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  border-bottom: 1px solid var(--glass-border);
}

.comparison-row {
  font-size: 0.875rem;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span:first-child {
  color: var(--text-secondary);
}

.comparison-good {
  color: var(--signal-matrix);
  font-weight: 500;
}

.comparison-bad {
  color: var(--text-faint);
}

.comparison-neutral {
  color: var(--signal-amber);
}

/* Feature Highlight */
.feature-highlight {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(0, 160, 240, 0.08);
  border: 1px solid rgba(0, 160, 240, 0.2);
  border-radius: 1rem;
}

.feature-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(0, 160, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--signal-azure);
}

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

.feature-highlight-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-highlight-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-highlight-content em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Guard Not Do */
.guard-not-do {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.guard-not-do h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.not-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.not-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.not-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  position: relative;
}

.not-icon::before,
.not-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  background: #ef4444;
  border-radius: 1px;
}

.not-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.not-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.not-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
  font-style: italic;
}

/* Capability Ladder */
.capability-ladder {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.capability-ladder h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ladder-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ladder-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.ladder-tier {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 160, 240, 0.1);
  color: var(--signal-azure);
  border-radius: 100px;
  min-width: 80px;
  text-align: center;
}

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

/* Ideal For */
.ideal-for {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.ideal-for h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.ideal-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ideal-tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Competitor Matrix */
.competitor-section {
  margin-bottom: 4rem;
}

.competitor-section:last-of-type {
  margin-bottom: 0;
}

.competitor-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.competitor-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.competitor-icon-core {
  background: rgba(0, 160, 240, 0.15);
  color: var(--signal-violet);
}

.competitor-icon-pulse {
  background: rgba(244, 114, 182, 0.15);
  color: var(--signal-plasma);
}

.competitor-icon-guard {
  background: rgba(34, 211, 238, 0.15);
  color: var(--signal-cyan);
}

.competitor-matrix {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
}

.matrix-header,
.matrix-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 0;
}

.matrix-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
}

.matrix-header > * {
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  text-align: center;
}

.matrix-header .matrix-feature {
  text-align: left;
}

.matrix-header .matrix-signal {
  color: var(--signal-violet);
  background: rgba(0, 160, 240, 0.05);
}

.matrix-row {
  border-bottom: 1px solid var(--glass-border);
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-feature,
.matrix-cell {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matrix-feature {
  color: var(--text-secondary);
  justify-content: flex-start;
}

.matrix-cell.matrix-signal {
  background: rgba(0, 160, 240, 0.03);
}

.matrix-yes,
.matrix-no,
.matrix-partial {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.matrix-yes {
  background: rgba(34, 211, 153, 0.15);
}

.matrix-yes::after {
  content: '';
  width: 10px;
  height: 6px;
  border: 2px solid var(--signal-matrix);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translate(1px, -1px);
}

.matrix-no {
  background: rgba(239, 68, 68, 0.1);
}

.matrix-no::before,
.matrix-no::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #ef4444;
  border-radius: 1px;
}

.matrix-no::before {
  transform: rotate(45deg);
}

.matrix-no::after {
  transform: rotate(-45deg);
}

.matrix-partial {
  background: rgba(251, 191, 36, 0.15);
}

.matrix-partial::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--signal-amber);
  border-radius: 50%;
}

.comparison-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(0, 160, 240, 0.05);
  border: 1px solid rgba(0, 160, 240, 0.1);
  border-radius: 1.5rem;
}

.comparison-cta p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Code Block */
.code-block {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-faint);
}

.code-dot:nth-child(1) { background: #ff5f56; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #27ca40; }

.code-filename {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-faint);
}

.code-block pre {
  padding: 1.5rem;
  margin: 0;
  overflow-x: auto;
}

.code-block code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Integration Features */
.integration-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.integration-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.integration-feature svg {
  width: 24px;
  height: 24px;
  color: var(--signal-cyan);
}

/* CTA Section */
.cta-section {
  padding: 6rem 1.5rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 160, 240, 0.2);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow-1 {
  position: absolute;
  width: 500px;
  height: 300px;
  background: rgba(0, 160, 240, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  top: 0;
  left: 25%;
}

.cta-glow-2 {
  position: absolute;
  width: 400px;
  height: 300px;
  background: rgba(35, 20, 120, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 0;
  right: 25%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-faint);
}

/* Glass Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* Page Content */
.page-header {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--signal-cyan);
}

.page-content a:hover {
  text-decoration: underline;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--signal-violet);
  background: rgba(0, 160, 240, 0.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--signal-violet);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--signal-matrix);
  flex-shrink: 0;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 160, 240, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--signal-violet);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Billing Toggle */
.billing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-elevated);
  border-radius: 0.75rem;
  border: 1px solid var(--glass-border);
}

.billing-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: none;
  border: none;
  border-radius: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-btn.active {
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.save-badge {
  padding: 0.125rem 0.5rem;
  background: var(--signal-matrix);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
}

/* Pricing Grid 4 columns */
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}

/* Pulse Highlight in Pricing */
.pulse-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 160, 240, 0.1);
  border: 1px solid rgba(0, 160, 240, 0.2);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: var(--signal-violet);
  font-weight: 500;
}

.pulse-highlight svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Enterprise Card */
.pricing-card.enterprise {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.03);
}

.pricing-card.enterprise .pulse-highlight {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
  color: var(--signal-cyan);
}

/* Price Display */
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

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

/* Compare Table */
.table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table th.highlight {
  background: rgba(0, 160, 240, 0.1);
  color: var(--signal-violet);
}

.compare-table td {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-muted);
}

.compare-table td.highlight {
  background: rgba(0, 160, 240, 0.03);
}

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

.compare-table tr.section-row td {
  background: var(--bg-surface);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  text-align: left;
}

.compare-table .check {
  color: var(--signal-matrix);
  font-weight: 700;
}

.compare-table .dash {
  color: var(--text-faint);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* About Modules */
.about-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-module {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.about-module-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-module-icon svg {
  width: 24px;
  height: 24px;
}

.about-module h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.about-module p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-reverse {
    direction: ltr;
  }

  .feature-list-two-col {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .product-title {
    font-size: 1.75rem;
  }

  .pricing-grid,
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }

  .matrix-header,
  .matrix-row {
    grid-template-columns: 1.2fr repeat(4, 0.8fr);
    font-size: 0.75rem;
  }

  .matrix-feature,
  .matrix-cell {
    padding: 0.625rem 0.5rem;
    font-size: 0.75rem;
  }

  .matrix-header > * {
    padding: 0.75rem 0.5rem;
    font-size: 0.625rem;
  }

  .matrix-yes,
  .matrix-no,
  .matrix-partial {
    width: 20px;
    height: 20px;
  }

  .competitor-category {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    flex-direction: column;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .platform-modules {
    grid-template-columns: 1fr;
  }

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

  .matrix-header > *:nth-child(n+4),
  .matrix-row > *:nth-child(n+4) {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
