/* Reuse colors from application.css ? */
:root {
  --landing-bg: #0a0a0a;
  --landing-surface: #151515;
  --landing-border: #2a2a2a;
  --landing-text: #f5f5f5;
  --landing-text-dim: #a0a0a0;
  --landing-accent-cyan: #00f5d4;
  --landing-accent-lime: #9ef01a;
  --landing-accent-coral: #ff6b6b;
  --landing-accent-purple: #b794f6;
}

/* Base Landing Page */
.landing-page {
  background: var(--landing-bg);
  color: var(--landing-text);
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 3rem;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Navigation */
.landing-nav {
  padding: 0 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--landing-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.sticky-nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--landing-accent-cyan), transparent);
  opacity: 0.5;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0;
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-bracket {
  color: var(--landing-accent-cyan);
  margin: 0 0.15rem;
}

.logo-text {
  color: var(--landing-text);
}

.nav-links-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-links-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-link {
  color: var(--landing-text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--landing-accent-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--landing-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  color: var(--landing-bg);
  background: var(--landing-accent-cyan);
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link-cta:hover {
  background: var(--landing-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 245, 212, 0.3);
}

/* Hero Content */
.hero-content-left {
  max-width: 800px;
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--landing-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--landing-accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--landing-text);
}

.title-highlight {
  color: var(--landing-accent-lime);
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: var(--landing-accent-lime);
  opacity: 0.15;
  z-index: -1;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--landing-text-dim);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--landing-accent-cyan);
  color: var(--landing-bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid var(--landing-accent-cyan);
}

.btn-primary:hover {
  background: transparent;
  color: var(--landing-accent-cyan);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--landing-text);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--landing-border);
}

/* Demo */
.demo-section {
  padding: 8rem 2rem;
  background: var(--landing-bg);
}

.demo-container {
  max-width: 1400px;
  margin: 0 auto;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.demo-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--landing-text-dim);
  margin-top: 2rem;
  max-width: 480px;
}

/* Demo Steps */
.demo-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-step {
  display: flex;
  gap: 1.25rem;
}

.demo-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.demo-step-number {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--landing-text-dim);
  border: 1px solid var(--landing-border);
  border-radius: 50%;
  background: var(--landing-bg);
  position: relative;
  z-index: 1;
}

.demo-step-number-accent {
  color: var(--landing-accent-cyan);
  border-color: var(--landing-accent-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
}

.demo-step-line {
  width: 1px;
  flex: 1;
  min-height: 1rem;
  background: linear-gradient(180deg, var(--landing-border) 0%, transparent 100%);
  margin: 0.5rem 0;
}

.demo-step-content {
  padding-bottom: 1.75rem;
  flex: 1;
}

.demo-step-final .demo-step-content {
  padding-bottom: 0;
}

.demo-step-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--landing-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.demo-step-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--landing-accent-cyan);
  background: rgba(0, 245, 212, 0.05);
  border: 1px solid rgba(0, 245, 212, 0.12);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
}

.demo-step-rules {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--landing-text-dim);
}

.demo-rule-icon {
  color: var(--landing-accent-lime);
  font-weight: 700;
  flex-shrink: 0;
}

.demo-step-desc {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
  line-height: 1.5;
}

.demo-iframe-container {
  width: 100%;
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 245, 212, 0.1);
}

.section-header-left {
  text-align: left;
  margin-bottom: 4rem;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--landing-text-dim);
  margin-top: 1.5rem;
  max-width: 600px;
}

.demo-iframe-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--landing-border);
  background: rgba(10, 10, 10, 0.5);
}

.config-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid var(--landing-border);
  color: var(--landing-text-dim);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

.config-toggle-btn:hover {
  border-color: var(--landing-accent-cyan);
  color: var(--landing-accent-cyan);
}

.config-toggle-btn svg:first-child {
  color: var(--landing-accent-lime);
  width: 16px;
  height: 16px;
}

.toggle-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.demo-config-panel {
  border-bottom: 1px solid var(--landing-border);
  background: rgba(10, 10, 10, 0.3);
  animation: slideDown 0.3s ease-out;
}

.config-panel-content {
  padding: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.config-item {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.config-label {
  color: var(--landing-text-dim);
  margin-right: 0.5rem;
}

.config-text {
  color: var(--landing-accent-cyan);
}

.config-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
  margin-left: 1.5rem;
}

.config-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--landing-text);
}

.config-bullet {
  color: var(--landing-accent-lime);
  font-weight: 700;
}

.config-options {
  color: var(--landing-text-dim);
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.demo-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  background: var(--landing-bg);
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--landing-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--landing-border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.bg-gradient-1 {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 245, 212, 0.15), transparent 70%);
  animation: gradientMove1 20s ease-in-out infinite;
}

.bg-gradient-2 {
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(158, 240, 26, 0.1), transparent 70%);
  animation: gradientMove2 25s ease-in-out infinite;
}

/* Features */
.features-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--landing-bg) 0%, var(--landing-surface) 100%);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--landing-accent-cyan);
  margin-bottom: 1.5rem;
}

.label-line {
  width: 3rem;
  height: 2px;
  background: var(--landing-accent-cyan);
}

.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

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

.feature-card {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--landing-accent-cyan), var(--landing-accent-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--landing-accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 245, 212, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-accent-cyan);
  margin-bottom: 2rem;
}

.feature-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--landing-text-dim);
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  font-size: 0.9375rem;
  color: var(--landing-text);
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--landing-accent-lime);
  font-weight: 700;
}

.feature-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--landing-border);
}

.feature-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  background: rgba(158, 240, 26, 0.1);
  color: var(--landing-accent-lime);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(158, 240, 26, 0.2);
  font-weight: 600;
}

/* How it works */
.how-section {
  padding: 8rem 2rem;
  background: var(--landing-bg);
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(180deg, var(--landing-accent-cyan), var(--landing-accent-lime));
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  padding: 3rem 0;
  position: relative;
}

.timeline-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--landing-border);
  line-height: 1;
  width: 8rem;
  text-align: right;
  position: relative;
  z-index: 1;
}

.timeline-item:hover .timeline-number {
  -webkit-text-stroke: 2px var(--landing-accent-cyan);
  color: transparent;
}

.timeline-content {
  padding-top: 0.5rem;
}

.timeline-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--landing-text-dim);
  margin-bottom: 2rem;
  max-width: 600px;
}

.timeline-code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(0, 245, 212, 0.05);
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-left: 3px solid var(--landing-accent-cyan);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.timeline-code code {
  color: var(--landing-accent-cyan);
  font-size: 0.9375rem;
}

.timeline-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.preview-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--landing-text);
}

.preview-icon {
  color: var(--landing-accent-lime);
  font-weight: 700;
}

.timeline-themes {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.theme-swatch {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 2px solid var(--landing-border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.theme-swatch:hover {
  transform: scale(1.1);
  border-color: var(--landing-accent-cyan);
}

.theme-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.theme-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.theme-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.theme-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.theme-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.timeline-stats-preview {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-preview-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-preview-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--landing-accent-cyan);
}

.stat-preview-label {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
}

/* Pricing */
.pricing-card-wrapper {
  max-width: 480px;
  margin: 4rem auto 0;
}

.pricing-card {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: var(--landing-accent-lime);
  color: var(--landing-bg);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.pricing-currency {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--landing-text-dim);
}

.pricing-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--landing-text);
  line-height: 1;
}

.pricing-period {
  font-size: 1.25rem;
  color: var(--landing-text-dim);
}

.pricing-description {
  font-size: 1rem;
  color: var(--landing-text-dim);
  margin-bottom: 2rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--landing-border);
  color: var(--landing-text);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--landing-accent-cyan);
  font-weight: 600;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--landing-accent-cyan);
  color: var(--landing-bg);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 212, 0.3);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
  margin-top: 1rem;
}

/* Pricing */
.tech-section {
  padding: 8rem 2rem;
  background: var(--landing-surface);
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  background: var(--landing-bg);
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--landing-accent-lime);
  transform: translateX(8px);
}

.tech-item-name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--landing-text);
}

.tech-item-desc {
  font-size: 0.9375rem;
  color: var(--landing-text-dim);
  padding-top: 1rem;
}

/* FAQ accordion */
details.tech-item {
  cursor: pointer;
}

details.tech-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

details.tech-item summary::-webkit-details-marker {
  display: none;
}

details.tech-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--landing-text-dim);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

details.tech-item[open] summary::after {
  content: '−';
}

/* FAQ Section (dark background) */
.faq-section {
  padding: 8rem 2rem;
  background: var(--landing-bg);
}

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

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

.faq-stack .tech-item {
  background: var(--landing-surface);
}

/* CTA */
.cta-section {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--landing-surface);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

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

.cta-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--landing-text);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--landing-text-dim);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--landing-accent-cyan);
  color: var(--landing-bg);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--landing-accent-cyan);
}

.btn-primary-large:hover {
  background: transparent;
  color: var(--landing-accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 245, 212, 0.3);
}

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

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--landing-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--landing-border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  transform: perspective(1000px) rotateX(60deg) scale(2);
  transform-origin: center bottom;
}

/* Legal Pages */
.legal-section {
  padding: 10rem 2rem 6rem;
  min-height: calc(100vh - 300px);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-block h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--landing-text);
  margin-bottom: 0.75rem;
}

.legal-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--landing-text-dim);
}

.legal-link {
  color: var(--landing-accent-cyan);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-link:hover {
  opacity: 0.8;
}

/* Blog Empty State */
.blog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  margin-top: 2rem;
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
}

.blog-empty-icon {
  color: var(--landing-text-dim);
  margin-bottom: 1.5rem;
}

.blog-empty-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--landing-text);
  margin-bottom: 0.5rem;
}

.blog-empty-text {
  font-size: 1rem;
  color: var(--landing-text-dim);
}

/* FOOTER */
.landing-footer {
  background: var(--landing-bg);
  border-top: 1px solid var(--landing-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 6rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--landing-border);
}

.footer-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--landing-text-dim);
}

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

.footer-column-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--landing-text);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  font-size: 0.9375rem;
  color: var(--landing-text-dim);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--landing-accent-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--landing-text-dim);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--landing-text-dim);
}

.footer-badge svg {
  color: var(--landing-accent-lime);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

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

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

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

@keyframes gradientMove1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20%, 20%);
  }
}

@keyframes gradientMove2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20%, -20%);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content {
    gap: 4rem;
  }

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

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

  .cta-title {
    font-size: 3rem;
  }
}

@media (max-width: 968px) {
  .nav-links {
    gap: 1.5rem;
  }

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

  .demo-section {
    padding: 6rem 2rem;
  }

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

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

  .demo-steps {
    margin-top: 2rem;
  }

  .faq-stack {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-number {
    width: auto;
    text-align: left;
    font-size: 3rem;
  }

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

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

@media (max-width: 640px) {
  .landing-nav {
    padding: 0 1.5rem;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
  }

  .nav-links-center,
  .nav-links-right {
    display: none;
  }

  .legal-section {
    padding: 8rem 1.5rem 4rem;
  }

  .hero-section {
    padding-top: 4rem;
  }

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

  .hero-description {
    font-size: 1.125rem;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .demo-section {
    padding: 4rem 1.5rem;
  }

  .demo-iframe-wrapper {
    height: 600px;
  }

  .stat-divider {
    display: none;
  }

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

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

  .faq-stack {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-value {
    font-size: 4rem;
  }
}
