:root {
  /* Brand Colors */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --dark-bg: #050505;
  --dark-surface: #111111;
  --dark-card: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --border-color: #27272a;

  /* Layout */
  --container-width: 1400px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.1rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 24px rgba(99, 102, 241, 0.4),
    0 0 20px rgba(99, 102, 241, 0.2);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover svg {
  transform: scale(1.15);
}

/* Corner Button Style */
.btn-corner-wrapper {
  position: relative;
  display: inline-block;
  padding: 4px; /* Space for the corners */
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-corner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thin grey border */
  transition: all 0.3s ease;
}

/* Thicker Corner Brackets */
.btn-corner-wrapper::before,
.btn-corner-wrapper::after,
.btn-corner-content::before,
.btn-corner-content::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: white;
  border-style: solid;
  transition: all 0.3s ease;
}

/* Top Left */
.btn-corner-wrapper::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

/* Top Right */
.btn-corner-wrapper::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

/* Bottom Right */
.btn-corner-content::after {
  bottom: -4px;
  right: -4px;
  border-width: 0 2px 2px 0;
}

/* Bottom Left */
.btn-corner-content::before {
  bottom: -4px;
  left: -4px;
  border-width: 0 0 2px 2px;
}

/* Hover Effects */
.btn-corner-wrapper:hover .btn-corner-content {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-corner-wrapper:hover::before,
.btn-corner-wrapper:hover::after,
.btn-corner-wrapper:hover .btn-corner-content::before,
.btn-corner-wrapper:hover .btn-corner-content::after {
  border-color: var(--primary); /* Change corner color on hover */
  width: 16px;
  height: 16px;
}

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

.btn-secondary:hover {
  color: white;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: white;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hidden {
  display: none !important;
}

/* Header - simplified, modern, animated */
.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 200;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    padding 0.25s ease;
  padding: 12px 0;
}

.header-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
  max-width: 1100px;
  width: calc(100% - 48px); /* Default width with margins */
  transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Bouncing effect */
}

@media (max-width: 768px) {
  .header-container {
    width: calc(100% - 32px); /* Smaller margin on mobile */
    /* padding: 0 16px; */
  }
}

.header.scrolled .header-container {
  background: rgb(10 10 10 / 39%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  height: 60px; /* Reset to slightly smaller height or keep standard */
}

/* Only shrink width on desktop/tablet, not mobile */
@media (min-width: 769px) {
  .header.scrolled .header-container {
    max-width: 600px; /* Shrink width significantly */
    width: 100%; /* Allow max-width to control size */
  }
}

.header.hide {
  transform: translateY(-140%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1; /* Fix vertical alignment */
}

.beta-badge {
  font-size: 0.7rem;
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

@media (max-width: 640px) {
  .logo {
    font-size: 0; /* Hide text */
    gap: 0;
  }
  .logo-icon {
    margin-right: 0;
  }
  .beta-badge {
    margin-left: 8px; /* Adjust spacing when text is hidden */
    font-size: 0.7rem; /* Keep beta visible */
  }
}

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

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(99, 102, 241, 0.15),
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Add this to center content vertically */
  text-align: center;
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  max-width: 1100px;
  letter-spacing: -0.02em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance; /* Modern browser text balancing */
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes shine {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.hero-subtitle span {
  font-size: 0.775rem;
  color: #b4b4b4;
  margin-top: 10px;
  display: block;
  background: linear-gradient(90deg, #989898 0%, #ffffff 50%, #989898 100%);
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s infinite;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

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

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  perspective: 1000px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-color: var(--dark-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  transform: rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: rotateX(0deg);
}

/* Abstract App Mockup CSS */
.app-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 40px;
  background-color: #222;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #333;
}

.mockup-dots {
  display: flex;
  gap: 6px;
  margin-right: 1rem;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #444;
}

.mockup-dots span:nth-child(1) {
  background-color: #ff5f56;
}
.mockup-dots span:nth-child(2) {
  background-color: #ffbd2e;
}
.mockup-dots span:nth-child(3) {
  background-color: #27c93f;
}

.mockup-address {
  background-color: #111;
  color: #555;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  flex: 1;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.mockup-body {
  flex: 1;
  display: flex;
  position: relative;
}

.mockup-sidebar {
  width: 60px;
  background-color: #1a1a1a;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  gap: 15px;
}

.mockup-line {
  height: 4px;
  background-color: #333;
  border-radius: 2px;
}

.mockup-canvas {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 20px 20px;
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

.mockup-timeline {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 0;
  height: 80px;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-track {
  height: 24px;
  background-color: #2a2a2a;
  border-radius: 4px;
  width: 80%;
}

.timeline-track:nth-child(2) {
  width: 60%;
  margin-left: 20%;
  background-color: #2a2a2a;
  position: relative;
}

.timeline-track:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 30%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.5;
  border-radius: 4px;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--dark-surface);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: var(--dark-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--dark-card);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px var(--dark-bg);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
  max-width: 250px;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
  background-size: 20px 100%;
  margin-top: 30px;
  opacity: 0.3;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: -1;
}

.cta-content {
  background: linear-gradient(
    180deg,
    var(--dark-card) 0%,
    rgba(20, 20, 20, 1) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0 !important;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  background-color: transparent; /* Seamless with body */
  text-align: center;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* Subtle glow behind footer logo */
.footer-simple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto;
}

.footer-copyright {
  color: #444;
  font-size: 0.85rem;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .steps-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    border-left: 2px dashed rgba(99, 102, 241, 0.3);
    margin-left: 1.5rem;
    gap: 3rem;
  }

  .step-connector {
    display: none;
  }

  .step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .step-number {
    position: absolute;
    left: -52px;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

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

@media (max-width: 768px) {
  /* .header-actions {  <-- REMOVED THIS to keep button visible
    display: none;
  } */

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

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

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
} /* ... existing styles ... */
/* Add these new GSAP-ready styles to the end of your CSS file or replace relevant sections */

/* Ensure smooth scrolling doesn't conflict */
html {
  scroll-behavior: auto; /* Let Lenis handle it */
}

/* Initial states for GSAP animations */
.hero-content > *,
.hero-image-wrapper,
.feature-card,
.step-item,
.cta-content {
  /* We don't hide them with display:none, just opacity for now. 
       GSAP will handle the from() states, but this prevents FOUC */
  opacity: 0;
  /* visibility: hidden; <- optional, but opacity 0 is usually enough with GSAP .from() */
}

/* Fix for horizontal scroll on mobile */
body {
  overflow-x: hidden;
  width: 100%;
}

/* Adjustments for responsive layout */
@media (max-width: 992px) {
  .hero-image-wrapper {
    margin-top: 3rem;
  }
}
/* ... existing styles ... */

.btn-sm-primary {
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-sm-primary:hover {
  background-color: var(--primary-dark);
}

/* HERO SECTION UPDATES */
.hero {
  padding-top: 145px; /* More space for the floating nav */
  text-align: center;
  position: relative; /* Ensure positioning context */
}

/* Grid Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  z-index: -2;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 0%,
    black 40%,
    transparent 70%
  );
  pointer-events: none;
}

.pill-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-badge .dot {
  width: 6px;
  height: 6px;
  background-color: #10b981; /* Green dot */
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.hero-title {
  font-size: 4.5rem; /* Larger like OpenScreen */
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #888;
  max-width: 600px;
  margin-top: 0;
}

.code-snippet {
  margin-top: 32px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* HERO IMAGE GLOW & CONTAINER */
.hero-image-container {
  margin-top: 80px;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.25) 0%,
    transparent 60%
  );
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.app-mockup-window {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
}

/* Video Wrapper Styles */
.video-wrapper {
  background: #0a0a0a;
  border: 2px solid rgba(99, 102, 241, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(99, 102, 241, 0.35),
    0 0 150px rgba(99, 102, 241, 0.25),
    inset 0 0 80px rgba(99, 102, 241, 0.15);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

/* Audio Toggle Button */
.video-audio-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .video-audio-toggle {
    width: 36px;
    height: 36px;
  }

  .video-audio-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .video-audio-toggle {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 12px;
  }

  .video-audio-toggle svg {
    width: 16px;
    height: 16px;
  }
}

.video-audio-toggle:hover {
  background: rgba(99, 102, 241, 0.35);
  border-color: rgba(99, 102, 241, 0.6);
  transform: scale(1.1);
}

.video-audio-toggle:active {
  transform: scale(0.95);
}

.audio-icon-muted,
.audio-icon-unmuted {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.4) 0%,
    rgba(99, 102, 241, 0.2) 30%,
    rgba(99, 102, 241, 0.05) 70%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.video-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.3) 0%,
    rgba(99, 102, 241, 0.1) 40%,
    transparent 80%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.window-header {
  height: 40px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.window-controls span:nth-child(1) {
  background: #ff5f56;
}
.window-controls span:nth-child(2) {
  background: #ffbd2e;
}
.window-controls span:nth-child(3) {
  background: #27c93f;
}

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #666;
}

.window-content {
  flex: 1;
  background: #050505;
  padding: 0;
  position: relative;
}

/* Abstract UI for Mockup */
.ui-layout {
  height: 100%;
  display: flex;
}

.ui-sidebar {
  width: 240px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ui-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ui-preview-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.ui-timeline {
  height: 160px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0a0a0a;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ui-properties {
  width: 280px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ui-item {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.w-full {
  width: 100%;
}
.w-3\/4 {
  width: 75%;
}
.w-2\/3 {
  width: 66%;
}
.w-1\/2 {
  width: 50%;
}

.play-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-large::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(255, 255, 255, 0.8);
  margin-left: 4px;
}

.track {
  height: 32px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 6px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.track.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 60%;
}

/* BENTO GRID FEATURES */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.bento-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  background: radial-gradient(
    circle at top right,
    rgba(20, 20, 20, 1),
    rgba(5, 5, 5, 1)
  );
  display: grid;
  grid-template-rows: auto 1fr;
}

.bento-card.wide {
  grid-column: span 3;
  min-height: 400px;
}

.bento-content {
  padding: 32px;
  z-index: 2;
}

.bento-card.large .bento-content {
  grid-row: 1;
  grid-column: 1;
}

.bento-content.row {
  display: flex;
  height: 100%;
  align-items: center;
}

.text-side {
  flex: 1;
  padding-right: 40px;
}

.visual-side {
  flex: 1.5;
  height: 100%;
  background: #111;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

.timeline-visual {
  width: 100%;
  height: 100%;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.bento-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(99, 102, 241, 0.1), transparent);
  overflow: hidden;
  /* border-radius: 12px; */
  grid-row: 2;
  grid-column: 1;
}

.zoom-visual,
.censoring-visual,
.camera-visual {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.coming-soon-badge span {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* EDITOR PREVIEW SECTION */
.editor-preview-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.editor-preview-section .section-header {
  margin-bottom: 80px;
}

.editor-preview-container {
  max-width: 1100px;
  margin: 0 auto;
}

.editor-preview-wrapper {
  background: #0a0a0a;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(99, 102, 241, 0.35),
    0 0 150px rgba(99, 102, 241, 0.25),
    inset 0 0 80px rgba(99, 102, 241, 0.15);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.editor-preview-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.4) 0%,
    rgba(99, 102, 241, 0.2) 30%,
    rgba(99, 102, 241, 0.05) 70%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.editor-preview-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.3) 0%,
    rgba(99, 102, 241, 0.1) 40%,
    transparent 80%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

.browser-window {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.browser-header {
  height: 44px;
  background: #1a1f3a;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.browser-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

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

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27c93f;
}

.browser-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-spacer {
  width: 50px;
  flex-shrink: 0;
}

.browser-content {
  flex: 1;
  overflow: hidden;
  background: #050505;
}

.editor-preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(99, 102, 241, 0.02) 100%
  );
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.comparison-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-4px);
}

.comparison-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-light);
  font-weight: 600;
}

.comparison-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.plus-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
}

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

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

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

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

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
  }

  .bento-content.row {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-side {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .visual-side {
    width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    width: 90%;
    top: 16px;
  }

  .nav-links {
    display: none; /* Hide links on mobile for simplicity in this demo */
  }

  .nav-content {
    justify-content: space-between;
    padding: 8px 16px;
  }

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

  .ui-sidebar,
  .ui-properties {
    display: none; /* Simplify mockup on mobile */
  }
}
@media (max-width: 480px) {
  .browser-header {
    height: 32px;
  }
}
/* ... existing styles ... */
