/* Go Batch It Crazy - Landing Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f13;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  
  --accent-primary: #8b5cf6;
  --accent-secondary: #06b6d4;
  --accent-glow: rgba(139, 92, 246, 0.15);
  
  --glass-bg: rgba(15, 15, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(139, 92, 246, 0.3);
  
  --glow-purple: radial-gradient(600px circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent 80%);
  --glow-cyan: radial-gradient(600px circle at 50% 50%, rgba(6, 182, 212, 0.06), transparent 80%);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Background Glow Effects */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(100px);
}

.glow-2 {
  position: absolute;
  top: 45%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(120px);
}

.glow-3 {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(150px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(9, 9, 11, 0.8);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45);
}

/* Sections Global */
section {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-secondary);
  background: rgba(6, 182, 212, 0.1);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* Hero Section */
.hero {
  padding: 11rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: 9999px;
  background: var(--glass-bg);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.hero-mockup-container {
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(139, 92, 246, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-mockup-container:hover {
  transform: scale(1.01);
}

.hero-mockup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(300px circle at var(--x, 0) var(--y, 0), rgba(139, 92, 246, 0.08), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.05);
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.feature-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Switcher Toggle */
.pricing-switcher-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.billing-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.billing-label.active {
  color: var(--text-primary);
}

.pricing-toggle-switch {
  position: relative;
  width: 4rem;
  height: 2.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--text-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle-switch.annual::after {
  left: calc(100% - 1.7rem - 3px);
  background: var(--accent-secondary);
}

.annual-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 8px;
  border-radius: 9999px;
  margin-left: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1 1 280px;
  max-width: 380px;
  transform: translateY(0);
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
  border-color: #a78bfa;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-tier-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-tier-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  height: 2.5rem;
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.pricing-val {
  font-size: 3.25rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-feature-item svg {
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem;
  border-radius: 9999px;
  background: var(--glass-bg);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--glass-border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border-hover);
}

.pricing-card.popular .pricing-btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.pricing-card.popular .pricing-btn:hover {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
  transform: translateY(-1px);
}

/* FAQ Details/Summary Accordion */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--glass-border-hover);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* Remove default marker in WebKit */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
  animation: slideDown 0.3s ease-out;
}

.faq-item[open] .faq-answer {
  border-top-color: rgba(255, 255, 255, 0.03);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Footer Form */
.contact-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-contact-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Footer */
footer.main-footer {
  border-top: 1px solid var(--glass-border);
  background: #050507;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-link-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .contact-container {
    padding: 2rem;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Mock Browser & App Dashboard styles inside Hero */
.mock-browser {
  width: 100%;
  background: rgba(10, 11, 16, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mock-browser-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dots {
  display: flex;
  gap: 0.35rem;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.mock-dot.red { background: #ef4444; }
.mock-dot.yellow { background: #eab308; }
.mock-dot.green { background: #22c55e; }

.mock-address-bar {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  width: 100%;
}

.mock-app-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 85% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
              #0c0d15;
}

.mock-control-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.mock-control-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-input-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.mock-input-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.6;
  display: flex;
  align-items: center;
}

.mock-input-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  color: var(--text-primary);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}

.mock-action-row {
  display: flex;
  gap: 0.5rem;
}

.mock-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.mock-btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

.mock-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.mock-control-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-dropzone {
  border: 1.5px dashed rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: var(--text-secondary);
  gap: 0.35rem;
}

.mock-dropzone-text {
  font-size: 0.75rem;
  font-weight: 500;
}

.mock-status-pill {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: #4ade80;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
}

.mock-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: mockPulse 1.5s infinite;
}

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

.mock-console {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  font-family: monospace;
  font-size: 0.7rem;
}

.mock-console-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.35rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-console-title {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.mock-console-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow: 0 0 6px #06b6d4;
}

.mock-console-body {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 90px;
  overflow-y: hidden;
}

.mock-log-line {
  color: #a1a1aa;
}

.mock-log-line.success {
  color: #4ade80;
}

.mock-log-line.warning {
  color: #fbbf24;
}

.mock-batch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.35rem;
  margin-top: 0.25rem;
}

.mock-batch-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.mock-batch-actions {
  display: flex;
  gap: 0.35rem;
}

.mock-btn-mini {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.mock-table-container {
  overflow-x: auto;
}

.mock-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  font-size: 0.75rem;
}

.mock-table th {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-table td {
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  vertical-align: middle;
}

.mock-table td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px 0 0 6px;
}

.mock-table td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 0 6px 6px 0;
}

.mock-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  user-select: none;
}

.mock-checkbox.checked {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
}

.mock-thumbnail-wrapper {
  width: 24px;
  height: 32px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: #000;
}

.mock-comic-art {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Fallback simple vector comic arts */
.mock-comic-art.spider-man {
  background-image: linear-gradient(135deg, #ef4444 0%, #3b82f6 100%);
}

.mock-comic-art.ff-48 {
  background-image: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
}

.mock-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #06b6d4;
  box-shadow: 0 0 6px #06b6d4;
  animation: mockScan 1.8s infinite linear;
}

@keyframes mockScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.mock-comic-title {
  font-weight: 600;
  color: var(--text-primary);
}

.mock-comic-features {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.mock-badge-grade {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.mock-price {
  font-weight: 600;
  color: #4ade80;
}

/* Adjust mock layout responsiveness */
@media (max-width: 560px) {
  .mock-control-panel {
    grid-template-columns: 1fr;
  }
  .mock-table th:nth-child(5),
  .mock-table td:nth-child(5),
  .mock-table th:nth-child(6),
  .mock-table td:nth-child(6) {
    display: none;
  }
}

/* Mobile Header Logo & Launch App Button Wrapping Fixes */
@media (max-width: 480px) {
  .logo-wrapper svg {
    width: 170px !important;
    min-width: 170px !important;
    height: 24px !important;
  }
  .nav-btn-primary {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }
  .nav-container {
    padding: 0.75rem 1rem !important;
  }
}

/* Page Transition Overlay & Wing-Flapping 3D Animations */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #110d24 0%, #030107 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
  pointer-events: none;
  perspective: 1000px;
}
.transition-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.flying-logo-container {
  position: relative;
  width: 267px;
  height: 129px;
  transform-style: preserve-3d;
  transition: transform 1.0s cubic-bezier(0.7, 0, 0.3, 1), filter 1.0s ease, opacity 0.8s ease;
  filter: blur(0);
}

.flying-logo-container.bobbing {
  animation: logo-bob 2.0s ease-in-out infinite;
}

.left-wing-wrap, .right-wing-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.left-wing-wrap {
  clip-path: inset(0 50% 0 0);
  transform-origin: 50% 50%;
  animation: flap-left 0.4s ease-in-out infinite alternate;
}

.right-wing-wrap {
  clip-path: inset(0 0 0 50%);
  transform-origin: 50% 50%;
  animation: flap-right 0.4s ease-in-out infinite alternate;
}

/* Fast flap on flight acceleration */
.left-wing-wrap.fast-flap {
  animation: flap-left 0.15s ease-in-out infinite alternate;
}

.right-wing-wrap.fast-flap {
  animation: flap-right 0.15s ease-in-out infinite alternate;
}

.flying-logo-container.fly-zoom {
  transform: translateZ(500px) scale(40);
  filter: blur(12px);
  opacity: 0;
}

@keyframes logo-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes flap-left {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(60deg);
  }
}

@keyframes flap-right {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-60deg);
  }
}

/* Comparison Section Styles */
.comparison-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.legacy-card {
  opacity: 0.85;
}

.comparison-card.legacy-card:hover {
  opacity: 0.95;
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.03);
}

.comparison-card.workspace-card {
  border-color: var(--accent-primary);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.08);
}

.comparison-card.workspace-card:hover {
  border-color: #a78bfa;
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.15);
}

.comp-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.comp-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.comp-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comp-list li span {
  color: var(--text-primary);
}

.comparison-card.legacy-card .comp-list li span {
  color: var(--text-secondary);
}

.comp-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.icon-bad {
  color: #ef4444;
}

.icon-good {
  color: #10b981;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .comparison-card {
    padding: 2rem 1.5rem;
  }
}

