:root {
  --radius: 0.65rem;
  --background: 0 0% 3%;
  --foreground: 0 0% 95%;
  --card: 0 0% 5%;
  --card-foreground: 0 0% 95%;
  --popover: 0 0% 4%;
  --popover-foreground: 0 0% 95%;
  --primary: 0 0% 95%;
  --primary-foreground: 0 0% 3%;
  --secondary: 0 0% 8%;
  --secondary-foreground: 0 0% 85%;
  --muted: 0 0% 10%;
  --muted-foreground: 0 0% 55%;
  --accent: 0 0% 12%;
  --accent-foreground: 0 0% 95%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 12%;
  --input: 0 0% 12%;
  --ring: 0 0% 95%;
  --sidebar-background: 0 0% 2%;
  --sidebar-foreground: 0 0% 50%;
  --sidebar-accent: 142 70% 45% / 0.1;
  --sidebar-accent-foreground: 142 70% 55%;
  --sidebar-border: 0 0% 8%;
  --sidebar-ring: 0 0% 95%;
  --success: 142 70% 45%;
  --success-foreground: 0 0% 10%;
  --warning: 45 90% 50%;
  --warning-foreground: 0 0% 10%;
  --info: 200 80% 50%;
  --info-foreground: 0 0% 10%;
  --theme-green: 142 70% 45%;
  --theme-green-dark: 142 70% 30%;
  --theme-green-glow: 142 70% 55%;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  background-image: radial-gradient(hsla(var(--theme-green), 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  color: hsl(var(--foreground));
  font-family: 'Space Grotesk', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  selection-background-color: hsla(var(--theme-green), 0.3);
  selection-color: hsl(var(--foreground));
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: hsla(var(--theme-green), 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(var(--theme-green), 0.5);
}

/* Glassmorphism */
.glass {
  background: hsla(var(--card), 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--border), 0.5);
}

.glass-dark {
  background: hsla(0, 0%, 0%, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--border), 0.3);
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

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

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--theme-green)), hsl(var(--theme-green-glow)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  height: 6rem;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  will-change: top, width, height, max-width, background, border-radius, backdrop-filter;
  transition: 
    top 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav-scrolled {
  top: 1.5rem;
  height: 4.2rem;
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.03), transparent), hsla(0, 0%, 5%, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  border-radius: 9999px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.05);
}

.nav-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 
    max-width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav-scrolled .nav-content {
  max-width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav-scrolled .logo {
  font-size: 1.1rem;
  gap: 0.5rem;
}

nav.nav-scrolled .logo img {
  width: 1.75rem;
  height: 1.75rem;
}

nav.nav-scrolled .btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.logo img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav-scrolled .nav-links {
  gap: 2rem;
}

nav.nav-scrolled .nav-links a {
  font-size: 0.8rem;
}

.nav-links a {
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--theme-green)), hsl(var(--theme-green-dark)));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 15px hsla(var(--theme-green), 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, hsl(var(--theme-green-glow)), hsl(var(--theme-green)));
  box-shadow: 0 6px 20px hsla(var(--theme-green), 0.4);
  transform: translateY(-1px);
}

.btn-primary.no-hover:hover {
  background: linear-gradient(135deg, hsl(var(--theme-green)), hsl(var(--theme-green-dark)));
  box-shadow: 0 4px 15px hsla(var(--theme-green), 0.3);
  transform: none;
}

.btn-outline {
  background: transparent;
  border-color: hsla(var(--border), 1);
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsla(var(--accent), 0.5);
  border-color: hsla(var(--theme-green), 0.3);
}

/* Frog Hero Section */
.frog-hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('bacrkoundyy.png') no-repeat center center;
  background-size: cover;
}

.frog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh; /* Deep fade out */
  background: linear-gradient(to bottom, transparent, hsl(var(--background)));
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 55%; /* Slightly lower to align with center-right */
  right: 5%;
  width: 45%; /* Smaller, more balanced size */
  max-width: 700px;
  height: auto;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.content-visible .hero-video {
  animation: video-smooth-fade 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes video-smooth-fade {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(50px) scale(0.95);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
    filter: blur(0);
  }
}

.frog-hero-content {
  z-index: 10;
  position: absolute;
  bottom: 10vh;
  left: 0;
  right: 0;
  text-align: center;
}

/* Background Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}

.orb-1 {
  top: 0;
  right: 0;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, hsla(var(--theme-green), 0.15), transparent);
}

.orb-2 {
  bottom: 0;
  left: 0;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, hsla(var(--theme-green), 0.1), transparent);
}

/* Features */
.features {
  padding: 8rem 0;
  background: url('c3b9d9dc6b2604156bf912253cca5ef2.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsl(var(--background)) 0%, 
    transparent 30%, 
    transparent 70%, 
    hsl(var(--background)) 100%
  ), hsla(0, 0%, 0%, 0.4);
  z-index: 1;
}

.features .container {
  position: relative;
  z-index: 2;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsla(var(--theme-green), 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px hsla(var(--theme-green), 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(var(--theme-green), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--theme-green));
}

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

.feature-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Dashboard Sidebar */
.dashboard-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.sidebar {
  width: 16rem;
  background: linear-gradient(180deg, hsl(var(--sidebar-background)) 0%, hsl(0, 0%, 1%) 100%);
  border-right: 1px solid hsla(var(--sidebar-border), 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
}

.sidebar-header {
  margin-bottom: 2rem;
}

.sidebar-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: hsl(var(--sidebar-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
  position: relative;
}

.sidebar-item:hover {
  color: hsl(var(--foreground));
  background: linear-gradient(90deg, hsla(var(--theme-green), 0.1), transparent);
}

.sidebar-item.active {
  color: hsl(var(--theme-green-glow));
  background: linear-gradient(90deg, hsla(var(--theme-green), 0.15), transparent);
}

.sidebar-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: hsl(var(--theme-green));
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 10px hsla(var(--theme-green), 0.5);
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background-image: 
    linear-gradient(hsla(var(--theme-green), 0.02) 1px, transparent 1px),
    linear-gradient(90deg, hsla(var(--theme-green), 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Dashboard Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 0 20px hsl(var(--theme-green) / 0.1);
  border-color: hsla(var(--theme-green), 0.3);
}


.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Search Area */
.search-container {
  margin-top: 2rem;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.search-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: hsla(var(--secondary), 0.5);
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

.search-tab.active {
  background: linear-gradient(135deg, hsl(var(--theme-green)), hsl(var(--theme-green-dark)));
  color: white;
  box-shadow: 0 4px 15px hsla(var(--theme-green), 0.3);
}

.search-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-premium {
  flex: 1;
  height: 3.5rem;
  background: hsla(0, 0%, 0%, 0.6);
  border: 1px solid hsla(var(--border), 1);
  border-radius: 0.75rem;
  padding: 0 1.25rem;
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-premium:focus {
  outline: none;
  border-color: hsla(var(--theme-green), 0.5);
  box-shadow: 0 0 0 3px hsla(var(--theme-green), 0.1);
  background: hsla(0, 0%, 0%, 0.8);
}

/* Video Placeholder Card */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 10;
}

.atmospheric-glow {
  display: none;
}

.video-placeholder-card {
  width: 100%;
  background: hsla(var(--card), 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid hsla(var(--theme-green), 0.3);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.video-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid hsla(var(--border), 0.5);
  background: hsla(0, 0%, 0%, 0.2);
}

.video-dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--theme-green));
  border-radius: 50%;
  box-shadow: 0 0 10px hsl(var(--theme-green));
}

.video-body {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orb {
  display: none;
}

@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.video-empty-state h2 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(to bottom, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}


.video-footer {
  padding: 1.25rem 1.5rem;
  background: hsla(0, 0%, 0%, 0.3);
  border-top: 1px solid hsla(var(--border), 0.3);
}

/* Pricing Section */
.pricing {
  position: relative;
  background: url('9890a9003fa8ea8543949bf80da0fb9c.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsl(var(--background)) 0%, 
    transparent 30%, 
    transparent 70%, 
    hsl(var(--background)) 100%
  ), hsla(0, 0%, 0%, 0.4);
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

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

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(var(--theme-green), 0.1);
  color: hsl(var(--theme-green));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(var(--theme-green), 0.2);
}

.pricing-header h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.text-plus {
  color: hsl(var(--theme-green)); /* Green accent for path */
}

.toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.toggle-pill {
  background: hsla(var(--secondary), 0.5);
  padding: 0.25rem;
  border-radius: 9999px;
  display: flex;
  gap: 0.25rem;
  border: 1px solid hsla(var(--border), 0.5);
}

.toggle-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-btn.active {
  background: hsl(var(--background));
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.discount {
  background: hsla(240, 100%, 70%, 0.1);
  color: #818cf8;
  padding: 0.1rem 0.4rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  border: 1px solid hsla(240, 100%, 70%, 0.2);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}


.pricing-card {
  width: 100%;
  max-width: 420px; /* More width as requested */
  background: radial-gradient(circle at top left, hsla(0, 0%, 100%, 0.05), transparent 60%), hsla(0, 0%, 10%, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 2rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0.2), transparent 40%);
  z-index: 1;
}

.pricing-card:hover {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.pricing-card.plus {
  background: radial-gradient(circle at top left, hsl(var(--theme-green) / 0.2), transparent 70%), hsl(142 80% 2% / 0.9);
  border-color: hsl(var(--theme-green) / 0.3);
}

.pricing-card.plus::before {
  background: linear-gradient(90deg, hsl(var(--theme-green) / 0.6), transparent 60%);
}

.pricing-card.plus:hover {
  border-color: hsl(var(--theme-green) / 0.5);
}


.best-value {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: hsl(var(--theme-green) / 0.1);
  color: hsl(var(--theme-green));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid hsl(var(--theme-green) / 0.2);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.features-list li i {
  color: hsl(var(--theme-green));
}

.enterprise-card {
  background: hsla(var(--card), 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(var(--border), 0.5);
  border-radius: 1.5rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.enterprise-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ent-feat-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ent-feat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(var(--secondary), 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(var(--border), 0.5);
  flex-shrink: 0;
}

.ent-feat-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ent-feat-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 992px) {
  .enterprise-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Live Preview Section */
.live-section {
  padding: 10rem 0;
  position: relative;
  background: hsl(var(--background));
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(hsla(0, 0%, 100%, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsla(0, 0%, 100%, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.live-section .container {
  position: relative;
  z-index: 2;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--theme-green));
  border-radius: 50%;
  box-shadow: 0 0 10px hsl(var(--theme-green));
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.live-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.live-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
}

.platform-item:hover {
  background: hsla(0, 0%, 100%, 0.05);
  border-color: hsla(var(--theme-green), 0.3);
  transform: translateY(-2px);
}

.platform-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--muted-foreground));
}

.platform-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.live-actions {
  display: flex;
  gap: 1rem;
}

/* Terminal Styling */
.terminal-wrapper {
  perspective: 1000px;
}

.terminal-window {
  background: #0d1117;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-window:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.terminal-header {
  height: 3.5rem;
  background: hsla(0, 0%, 100%, 0.03);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
}

.terminal-path {
  margin: 0 auto;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.3);
}

.terminal-body {
  padding: 2.5rem;
  min-height: 450px;
}

.terminal-content {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e6edf3;
}

.comment { color: #8b949e; font-style: italic; }
.prompt { color: hsl(var(--theme-green)); margin-right: 0.5rem; }
.string { color: #a5d6ff; }
.key { color: #79c0ff; }
.number { color: #d2a8ff; }
.boolean { color: #ff7b72; }

.dev-link:hover {
  color: hsl(var(--theme-green));
  transform: translateX(5px);
}

.chain-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.chain-badge::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cap-card-3:hover .chain-badge {
  transform: scale(1.1);
}

.chain-badge-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: rgba(59, 130, 246, 0.9);
}
.chain-badge-purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: rgba(168, 85, 247, 0.9);
}
.chain-badge-indigo {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: rgba(88, 101, 242, 0.9);
}
.chain-badge-orange {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: rgba(245, 158, 11, 0.9);
}
.chain-badge-red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: rgba(239, 68, 68, 0.9);
}
.chain-badge-green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: rgba(16, 185, 129, 0.9);
}

.chain-arrow {
  color: hsla(0, 0%, 100%, 0.15);
  font-size: 1.1rem;
  font-weight: 300;
  user-select: none;
}

.chain-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: rgba(16, 185, 129, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.chain-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--theme-green));
  animation: dot-blink 1.5s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.chain-auto-label {
  color: hsla(0, 0%, 100%, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ===== Card 4: Machine Viewer Mock ===== */
.machine-viewer-mock {
  width: 100%;
  max-width: 340px;
  background: hsla(0, 0%, 3%, 0.9);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.mv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
  background: hsla(0, 0%, 100%, 0.02);
}

.mv-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: hsla(0, 0%, 100%, 0.7);
}

.mv-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.15);
  color: rgba(239, 68, 68, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mv-content {
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.03);
}

.mv-row:last-child {
  border-bottom: none;
}

.mv-label {
  font-size: 0.72rem;
  color: hsla(0, 0%, 100%, 0.35);
  font-weight: 500;
}

.mv-value {
  font-size: 0.72rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-family: 'Space Grotesk', monospace;
  font-weight: 500;
}

.mv-green {
  color: rgba(16, 185, 129, 0.9);
}

.mv-red {
  color: rgba(239, 68, 68, 0.9);
}

.mv-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsla(var(--theme-green), 0.4), transparent);
  animation: mv-scan 4s linear infinite;
  pointer-events: none;
}

@keyframes mv-scan {
  0% { top: 0; }
  100% { top: 100%; }
}

/* ===== Responsive: Capabilities ===== */
@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cap-title {
    font-size: 2rem;
  }

  .cap-card-visual {
    min-height: 200px;
    padding: 1.5rem 1rem 0.5rem;
  }

  .chain-flow {
    gap: 0.4rem;
  }

  .chain-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .node-graph,
  .discord-graph {
    max-width: 320px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10rem 0;
  position: relative;
  background: hsl(var(--background));
  overflow: hidden;
}

.faq-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: hsla(var(--theme-green), 0.1);
  color: hsl(var(--theme-green));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(var(--theme-green), 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faq-header h2 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.faq-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: hsla(var(--card), 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--border), 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: hsla(var(--theme-green), 0.3);
  background: hsla(var(--card), 0.6);
}

.faq-item.active {
  border-color: hsla(var(--theme-green), 0.5);
  background: hsla(var(--card), 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: hsl(var(--muted-foreground));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: hsl(var(--theme-green));
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 2.5rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 12rem 0;
  position: relative;
  background: url('3a02f02068e84db6d51da25f71a430f0.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsl(var(--background)) 0%, 
    transparent 30%, 
    transparent 70%, 
    hsl(var(--background)) 100%
  ), hsla(0, 0%, 0%, 0.5);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.cta-badge::before,
.cta-badge::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.cta-content h2 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  background: hsla(0, 0%, 0%, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 1.5rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.cta-form input:focus {
  outline: none;
}

.cta-form .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cta-footer {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.cta-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.cta-footer a:hover {
  color: hsl(var(--theme-green));
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
  
  .cta-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 1rem;
  }
  
  .cta-form input {
    background: hsla(0, 0%, 0%, 0.6);
    height: 3.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
  }
  
  .cta-form .btn {
    width: 100%;
    border-radius: 0.75rem;
  }
}

/* CTA Floating Video */
.cta-floating-video {
  position: absolute;
  top: 50%;
  right: -22rem;
  transform: translateY(-50%);
  width: 380px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
  animation: float-slow 8s ease-in-out infinite;
}

.cta-floating-video video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
  mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-10px, -15px) rotate(-2deg); }
  66% { transform: translate(15px, 5px) rotate(2deg); }
}

@media (max-width: 992px) {
  .cta-floating-video {
    display: none;
  }
}
