/* Accord Book — accord-book.app Modern Landing & Voice Presenter */

:root {
  --bg-dark: #080b11;
  --bg-surface: #0e1524;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 33, 58, 0.85);
  
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.35);
  --cyan: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.25);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  --rose: #f43f5e;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(99, 102, 241, 0.4);
  --border-cyan: rgba(56, 189, 248, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Lighting & Grid */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -150px;
  left: 20%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(56, 189, 248, 0.08) 70%, transparent 100%);
}

.bg-glow-2 {
  top: 400px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(99, 102, 241, 0.05) 70%, transparent 100%);
}

.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1000px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #7dd3fc;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 11, 17, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7174f8 0%, #5b53ed 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(99, 102, 241, 0.5);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-glow:hover::after {
  transform: rotate(25deg) translateY(100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

/* Feature Badges */
.feature-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 540px) {
  .feature-badges {
    grid-template-columns: 1fr;
  }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

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

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

.badge-text strong {
  color: var(--text-primary);
  margin-right: 4px;
}

/* Prompt Suggestions */
.prompt-suggestions {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.prompt-suggestions-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sparkle-icon {
  color: var(--cyan);
}

.prompt-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prompt-chip {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s ease;
}

.prompt-chip:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.4);
  color: #ffffff;
  transform: translateX(4px);
}

/* Presenter Interactive Card */
.presenter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 40px rgba(99, 102, 241, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease;
}

.presenter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8 0%, #6366f1 50%, #a855f7 100%);
}

.presenter-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.presenter-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  display: inline-block;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}

.indicator-dot.connecting {
  background: #f59e0b;
  box-shadow: 0 0 12px #f59e0b;
}

.presenter-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.presenter-subheading {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ai-chip {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
}

.presenter-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}

/* Audio Visualizer Wave */
.visualizer-container {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.wave-bar {
  width: 4px;
  height: 8px;
  background: linear-gradient(to top, #6366f1, #38bdf8);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.visualizer-container.active .wave-bar {
  animation: wave-animation 1.2s infinite ease-in-out alternate;
}

.visualizer-container.active .wave-bar:nth-child(1) { animation-delay: 0.1s; }
.visualizer-container.active .wave-bar:nth-child(2) { animation-delay: 0.3s; }
.visualizer-container.active .wave-bar:nth-child(3) { animation-delay: 0.5s; }
.visualizer-container.active .wave-bar:nth-child(4) { animation-delay: 0.2s; }
.visualizer-container.active .wave-bar:nth-child(5) { animation-delay: 0.4s; }
.visualizer-container.active .wave-bar:nth-child(6) { animation-delay: 0.6s; }
.visualizer-container.active .wave-bar:nth-child(7) { animation-delay: 0.15s; }
.visualizer-container.active .wave-bar:nth-child(8) { animation-delay: 0.35s; }
.visualizer-container.active .wave-bar:nth-child(9) { animation-delay: 0.45s; }
.visualizer-container.active .wave-bar:nth-child(10) { animation-delay: 0.25s; }

@keyframes wave-animation {
  0% { height: 6px; opacity: 0.4; }
  50% { height: 28px; opacity: 1; }
  100% { height: 10px; opacity: 0.6; }
}

.status-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.turnstile-mount {
  min-height: 0;
  display: flex;
  justify-content: center;
}

/* Widget — mounted on body, fixed to viewport (ElevenLabs native behavior) */
.presenter-body.guide-active .status-banner,
.presenter-body.guide-active .turnstile-mount {
  display: none;
}

.presenter-body.guide-active {
  gap: 12px;
}

.widget-host {
  flex: 1;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
}

.widget-loading {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 28ch;
}

.widget-host.active {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.08);
}

.widget-host.active .widget-loading {
  display: block;
  color: var(--text-secondary);
}

.guide-dock-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 10px;
  line-height: 1;
}

/* ElevenLabs widget — native fixed bottom-right; only z-index + size vars (no transform/position overrides) */
elevenlabs-convai[data-accord-voice] {
  z-index: 10000;
  --elevenlabs-convai-widget-width: 400px;
  --elevenlabs-convai-widget-height: 600px;
}

@media (max-width: 768px) {
  elevenlabs-convai[data-accord-voice] {
    --elevenlabs-convai-widget-width: calc(100vw - 32px);
    --elevenlabs-convai-widget-height: 560px;
  }
}

.retry-btn {
  align-self: center;
  margin-top: 4px;
}

/* Fallback Box */
.fallback-box {
  display: none;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.2);
  text-align: center;
}

.fallback-box.visible {
  display: block;
}

.fallback-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.fallback-box h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.fallback-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.fallback-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.presenter-footer-note {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: auto;
}

.presenter-footer-note a {
  color: var(--text-muted);
}

/* Sections Common */
.section-container {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  position: relative;
}

.card-danger {
  border-color: rgba(244, 63, 94, 0.2);
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.04) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.card-success {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, rgba(15, 23, 42, 0.7) 100%);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.08);
}

.card-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pill-danger {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.pill-success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.icon-x {
  color: #f43f5e;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}

.icon-check {
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}

.comparison-list strong {
  color: var(--text-primary);
}

/* 4 Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1040px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.pillar-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

/* Privacy & Self-Host Banner */
.privacy-banner {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.08);
}

@media (max-width: 700px) {
  .privacy-banner {
    padding: 28px;
  }
}

.shield-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.privacy-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.privacy-content > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 840px;
  margin-bottom: 36px;
}

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

@media (max-width: 960px) {
  .privacy-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .privacy-points-grid {
    grid-template-columns: 1fr;
  }
}

.point-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.point-box h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.point-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Founding Pilot Section */
.pilot-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-glow);
}

@media (max-width: 700px) {
  .pilot-card {
    padding: 28px;
  }
}

.pilot-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.pilot-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 10px 0 12px;
}

.pilot-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.pilot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.pilot-includes h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pilot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pilot-list span {
  color: var(--emerald);
  font-weight: bold;
}

.pilot-cta-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.pilot-price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

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

.pilot-terms {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pilot-contact {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(8, 11, 17, 0.95);
  padding: 60px 0 32px;
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
  }
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-parent {
  font-size: 0.84rem;
  color: var(--text-dim);
}

.footer-links-group {
  display: flex;
  gap: 60px;
}

@media (max-width: 480px) {
  .footer-links-group {
    gap: 32px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}
