/* ================================
   Ticklyst Marketing Site Styles
   ================================ */

:root {
  /* Colors */
  --primary: #ef4444;
  --primary-dark: #dc2626;
  --primary-light: #fee2e2;
  --bg: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text: #111827;
  --text-secondary: #6b7280;
  --border: #e5e7eb;

  /* Neumorphic shadows */
  --shadow-light: rgba(255, 255, 255, 0.9);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --neu-shadow: 8px 8px 16px var(--shadow-dark), -4px -4px 12px var(--shadow-light);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   Navigation
   ================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ================================
   Buttons
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

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

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ================================
   Hero Section
   ================================ */

.hero {
  padding: 80px 20px 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.app-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.mockup-browser {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-content {
  padding: 20px;
  background: #e0e5ec;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

.placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
}

/* ================================
   Section Styles
   ================================ */

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

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

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.section-description {
  font-size: 20px;
  color: var(--text-secondary);
}

/* ================================
   Features Section
   ================================ */

.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* ================================
   Pricing Section
   ================================ */

.pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-weight: 600;
  color: var(--text);
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  cursor: pointer;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 28px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

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

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.pricing-cards.simple-pricing {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

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

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.price-monthly,
.price-lifetime,
.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
}

.price-period {
  font-size: 18px;
  color: var(--text-secondary);
}

.price-description {
  color: var(--text-secondary);
}

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

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.pricing-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.billing-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 12px;
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial-rating {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name {
  font-weight: 700;
  color: var(--text);
}

.author-title {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ================================
   FAQ Section
   ================================ */

.faq {
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================
   CTA Section
   ================================ */

.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  align-items: flex-end;
}

.contact-sales-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.bulk-license-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
  height: 20px;
}

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

.cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
}

/* ================================
   Footer
   ================================ */

.footer {
  background: var(--text);
  color: white;
  padding: 60px 20px 32px;
}

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

.footer-links {
  display: contents;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--primary);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-bottom p {
  margin: 8px 0;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer {
    padding: 48px 20px 24px;
  }

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

  .social-links {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

/* Get Started Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 48px;
  max-width: 800px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--background-secondary);
  color: var(--text);
}

.modal-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.modal-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.modal-option {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.modal-option:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.modal-option.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.option-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.modal-option h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.modal-option p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-full {
  width: 100%;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-description {
    font-size: 16px;
  }

  .modal-options {
    grid-template-columns: 1fr;
  }

  .modal-option {
    padding: 24px 16px;
  }
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 120px 20px 80px;
  background: var(--background);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.last-updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
  border-top: 2px solid var(--border);
  padding-top: 32px;
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 24px;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.legal-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--border);
  text-align: center;
}

.legal-footer p {
  margin-bottom: 12px;
}

.timeline {
  margin: 24px 0;
}

.timeline-item {
  padding: 16px;
  background: var(--background-secondary);
  border-radius: 8px;
  margin-bottom: 12px;
}

.refund-cta {
  margin: 48px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  text-align: center;
}

.refund-cta h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 40px 24px;
  }

  .legal-content h1 {
    font-size: 36px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 20px;
  }
}

/* ===== Roadmap Page ===== */
.roadmap-page {
  padding: 120px 20px 80px;
  background: var(--background);
  min-height: 100vh;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 60px;
}

.roadmap-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.roadmap-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}

.roadmap-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-section {
  margin-bottom: 80px;
}

.roadmap-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--border);
}

.roadmap-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.roadmap-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.badge-success {
  background: #10b981;
  color: white;
}

.badge-primary {
  background: var(--primary);
  color: white;
}

.badge-secondary {
  background: var(--text-secondary);
  color: white;
}

.badge-info {
  background: #3b82f6;
  color: white;
}

.roadmap-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--border);
  transition: all 0.3s;
}

.roadmap-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.roadmap-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.roadmap-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: inline-block;
}

.roadmap-priority {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
}

.priority-high {
  background: #fef2f2;
  color: #ef4444;
}

.priority-medium {
  background: #fff7ed;
  color: #f97316;
}

.roadmap-item ul {
  margin-left: 20px;
}

.roadmap-item li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.roadmap-footer {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: 12px;
}

.roadmap-notes {
  margin-top: 48px;
  text-align: left;
}

.roadmap-notes h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.roadmap-notes ul {
  margin-left: 20px;
}

/* ===== Changelog Page ===== */
.changelog-page {
  padding: 120px 20px 80px;
  background: var(--background);
  min-height: 100vh;
}

.changelog-header {
  text-align: center;
  margin-bottom: 60px;
}

.changelog-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.changelog-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}

.changelog-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.changelog-version {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.version-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.version-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.version-badge {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 12px;
}

.badge-warning {
  background: #fef3c7;
  color: #f59e0b;
}

.version-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.changelog-section {
  margin-bottom: 24px;
}

.changelog-category {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.changelog-category.new {
  color: #10b981;
}

.changelog-category.improved {
  color: #3b82f6;
}

.changelog-category.fixed {
  color: #ef4444;
}

.changelog-category.design {
  color: #8b5cf6;
}

.changelog-section ul {
  margin-left: 20px;
}

.changelog-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.no-incidents-message {
  padding: 24px;
  background: var(--background-secondary);
  border-radius: 8px;
  text-align: center;
  color: var(--text-secondary);
  margin-top: 24px;
}

.changelog-footer {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: 12px;
}

.changelog-legend {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.changelog-legend h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.legend-items {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.legend-icon {
  font-size: 18px;
}

/* ===== Documentation Page ===== */
.docs-page {
  padding: 120px 20px 80px;
  background: var(--background);
  min-height: 100vh;
}

.docs-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.docs-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.docs-sidebar h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.docs-nav-link {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
}

.docs-nav-link:hover {
  background: var(--background-secondary);
  color: var(--text);
}

.docs-content {
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.docs-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.docs-intro {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.docs-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.docs-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.docs-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text);
}

.docs-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.docs-section ul,
.docs-section ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.docs-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.docs-section code {
  background: var(--background-secondary);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--primary);
}

.shortcuts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.shortcuts-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}

.shortcuts-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.docs-footer {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  text-align: center;
}

.docs-footer h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

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

  .docs-sidebar {
    position: static;
  }

  .docs-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .docs-content {
    padding: 40px 24px;
  }

  .docs-content h1 {
    font-size: 36px;
  }

  .docs-section h2 {
    font-size: 28px;
  }

  .docs-section h3 {
    font-size: 20px;
  }
}

/* ===== Status Page ===== */
.status-page {
  padding: 120px 20px 80px;
  background: var(--background);
  min-height: 100vh;
}

.status-header {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.status-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text);
}

.status-summary {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.status-icon {
  font-size: 48px;
  color: #10b981;
}

.status-indicator h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #10b981;
}

.status-indicator p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.status-section {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.status-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.status-components {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-component {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-component-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.status-component-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-component-name h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

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

.status-dot.status-degraded {
  background: #f59e0b;
}

.status-dot.status-outage {
  background: #ef4444;
}

.status-component-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.uptime-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.uptime-stat {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.uptime-percentage {
  font-size: 48px;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 8px;
}

.uptime-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.uptime-chart {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.uptime-chart h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.uptime-days {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.uptime-day {
  aspect-ratio: 1;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.uptime-day:hover {
  transform: scale(1.2);
}

.uptime-day.status-operational {
  background: #10b981;
}

.uptime-day.status-degraded {
  background: #f59e0b;
}

.uptime-day.status-outage {
  background: #ef4444;
}

.uptime-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.uptime-day-mini {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 6px;
}

.incident {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.incident-badge {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}

.badge-resolved {
  background: #d1fae5;
  color: #10b981;
}

.incident-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.incident h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.incident-timeline {
  border-left: 3px solid var(--border);
  padding-left: 24px;
}

.incident-update {
  margin-bottom: 20px;
  position: relative;
}

.incident-update::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.incident-update-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.incident-update p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.maintenance-notice {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.metric-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.metric-change {
  font-size: 13px;
  font-weight: 600;
}

.metric-change.positive {
  color: #10b981;
}

.metric-change.neutral {
  color: var(--text-secondary);
}

.status-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 48px;
  background: white;
  border-radius: 12px;
}

.status-footer h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.status-footer ul {
  margin-left: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .uptime-stats,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .uptime-days {
    grid-template-columns: repeat(15, 1fr);
  }

  .incident-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===== Help Center Modal ===== */
.modal-help {
  max-width: 900px;
}

.help-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.help-topic {
  background: var(--background-secondary);
  padding: 24px;
  border-radius: 12px;
}

.help-topic h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

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

.help-topic li {
  margin-bottom: 8px;
}

.help-topic a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.help-topic a:hover {
  color: var(--primary);
}

.help-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.help-footer p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.help-footer a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .help-topics {
    grid-template-columns: 1fr;
  }
}
