/* Variables and Theme - Liquid Glass System */
:root {
  --primary: #3B82F6;
  --primary-glow: rgba(59, 130, 246, 0.5);
  --secondary: #1E40AF;
  --accent: #F59E0B;
  --accent-glow: rgba(245, 158, 11, 0.3);
  
  --bg-dark: #020617; /* Deeper midnight blue */
  --bg-card: rgba(15, 23, 42, 0.6);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glass-bright: rgba(255, 255, 255, 0.2);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --glass-blur: blur(12px);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, #60A5FA, #3B82F6, #1E40AF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glass Utilities */
.glass {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
}

.glass-hover:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--border-glass-bright);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
  color: #020617;
  box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 16px 0;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  width: 85%;
  background: rgba(15, 23, 42, 0.9);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 6px;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
}

.nav-links a:not(.btn):hover,
.lang-switch {
  color: var(--text-main);
}

.lang-switch {
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  gap: 8px;
}

.accent-badge {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.2);
}

.studio-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border-color: var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Forms */
.early-access-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.early-access-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.early-access-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.early-access-form input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Discreet Modal System (SaaS Focus) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 95%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-premium);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

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

.saas-offer {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.modal-container {
  width: 95%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-premium);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-main);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 550px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-premium);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

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

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

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 8px;
}

/* Premium Form Fields - Liquid Glass Evolution */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
  margin-left: 4px;
  transition: color 0.3s ease;
}

.form-group:focus-within label {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(4px);
}

.form-control:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-bright);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: 
    0 0 0 4px rgba(59, 130, 246, 0.1),
    0 20px 40px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

textarea.form-control {
  resize: none;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233B82F6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
  padding-right: 50px;
  cursor: pointer;
}

/* Shimmer Effect for Success */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Micro-animations for form validation */
.input-valid {
  border-color: #2ecc71 !important;
}

.input-error {
  border-color: #ff6b6b !important;
  animation: shake 0.4s ease-in-out;
}

.saas-offer {
  border-color: rgba(59, 130, 246, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.source-picker {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.source-chip {
  flex: 1;
  min-width: 90px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.source-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-bright);
  transform: translateY(-2px);
}

.source-chip.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.source-chip.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  animation: scan-line 2s linear infinite;
}

.source-chip svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.source-chip.active svg {
  color: var(--primary);
}

.source-chip span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.source-chip.active span {
  color: var(--text-main);
}

/* AI Scanning Animation */
@keyframes scan-line {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}

.ai-pulse-focus:focus-within {
  animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2); }
}

.neon-shimmer {
  position: relative;
  background: linear-gradient(90deg, var(--primary), #60a5fa, var(--primary));
  background-size: 200% auto;
  animation: neon-flow 3s linear infinite;
  border: none !important;
  color: white !important;
}

@keyframes neon-flow {
  to { background-position: 200% center; }
}

/* Fix for squashed intelligence form */
.intel-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.intel-form .form-control {
  margin-bottom: 12px;
}

.hero-form-container {
  margin-top: 32px;
  max-width: 540px;
}

.hero-input-group {
  display: flex;
  gap: 12px;
  background: rgba(15, 23, 42, 0.4);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-premium);
}

.hero-input-group:focus-within {
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.2);
}

.hero-control {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 20px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.1rem;
  outline: none;
}

.hero-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-hero {
  border-radius: 14px !important;
  white-space: nowrap;
  padding: 14px 28px !important;
}

.hero-secondary-actions {
  margin-top: 16px;
  margin-left: 20px;
}

.saas-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.saas-link:hover {
  color: var(--text-main);
  border-bottom-color: var(--text-muted);
}

@media (max-width: 600px) {
  .hero-input-group {
    flex-direction: column;
    padding: 12px;
    border-radius: 24px;
  }
  .btn-hero {
    width: 100%;
  }
}

.hero-trust {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Form Message Feedback */
.message-box {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.message-box.success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.message-box.error {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.hidden {
  display: none;
}

/* Mockup Visual */
.mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s;
}

.mockup-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}

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

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

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

.mockup-content {
  display: flex;
  height: 380px;
}

.mockup-sidebar {
  width: 60px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid var(--border-color);
}

.mockup-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-cards {
  display: flex;
  gap: 16px;
}

.m-card {
  flex: 1;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.mockup-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-alert {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: pulse 2s infinite;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(59, 130, 246, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.alert-text strong {
  display: block;
  color: var(--accent);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.alert-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features */
.features {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 144, 226, 0.3);
}

.feature-card.highlighted {
  background: linear-gradient(180deg,
      rgba(20, 20, 26, 1) 0%,
      rgba(74, 144, 226, 0.1) 100%);
  border-color: rgba(74, 144, 226, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

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

/* Dual-Track Sections (Studio & Intelligence) */
.split-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.split-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.split-list {
  list-style: none;
  margin-bottom: 48px;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.split-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.split-list li::before {
  content: "→";
  color: var(--primary);
  font-weight: bold;
}

.split-list.studio li::before {
  color: var(--accent);
}

.video-placeholder {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-glass-bright);
  border-radius: 24px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

/* Remotion Cinematic Containers */
.remotion-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(10px);
}

.remotion-stage {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-canvas-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

#roi-canvas {
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}

.cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(15, 23, 42, 0.4) 100%);
}

.remotion-text-box {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 300px;
}

.status-msg {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.result-msg {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.underline-glow {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
  animation: scan 4s linear infinite;
}

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

/* Unified Brain Stage */
.brain-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.central-node {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 2;
}

.brain-core {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 4px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brain-core::after {
  content: "I";
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
}

.node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.node.stripe { top: 20%; left: 20%; animation-delay: 0s; }
.node.ads { top: 70%; left: 15%; animation-delay: 1.5s; }
.node.crm { top: 40%; right: 15%; animation-delay: 3s; }

.node::after {
  content: attr(data-label);
  position: absolute;
  bottom: -25px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Liquid Light Flow */
.brain-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: pulse-ring 4s ease-out infinite;
  z-index: 0;
}

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

.node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  filter: blur(20px);
  opacity: 0.15;
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  to { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

/* Pricing / Offers Section */
.offers-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.studio-offer {
  border-color: rgba(255, 107, 107, 0.3);
  background: linear-gradient(180deg,
      var(--bg-card) 0%,
      rgba(255, 107, 107, 0.05) 100%);
}

/* SaaS specific styles removed to prioritize Studio focus */

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

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

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

.pricing-card .split-list {
  margin-bottom: auto;
  /* pushes button to bottom */
  padding-bottom: 40px;
}

.pricing-card .btn {
  width: 100%;
}

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

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  max-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(74, 144, 226, 0) 0%,
      rgba(74, 144, 226, 0.3) 50%,
      rgba(74, 144, 226, 0) 100%);
  margin: 0 32px;
  transform: translateY(-40px);
}

/* Bottom CTA */
.bottom-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(0deg, #0d0d14 0%, var(--bg-dark) 100%);
}

.CTA-container {
  max-width: 600px;
}

.CTA-container h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
}

.CTA-container p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.bottom-form {
  max-width: 480px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-dark);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 12px;
  border-left: 1px solid var(--border-color);
  padding-left: 12px;
}

.logo-icon.small {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.logo-icon.small::after {
  width: 6px;
  height: 6px;
  bottom: -2px;
  right: -2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Studio Inline "Content Swap" Experience */
.card-inner-wrapper {
  position: relative;
  overflow: hidden;
  transition: min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 480px; /* Base height for Studio card */
  display: flex;
  flex-direction: column;
}

.studio-features, .studio-inline-form {
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
}

.studio-inline-form {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.card-inner-wrapper.show-form .studio-features {
  display: none;
}

.card-inner-wrapper.show-form .studio-inline-form {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Multi-step logic */
.studio-step {
  display: none;
  animation: slideIn 0.3s ease-out forwards;
}

.studio-step.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  width: 12px;
  border-radius: 3px;
}

.btn-back-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.btn-back-link:hover {
  color: var(--primary);
}

.studio-step .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {

  .hero-container,
  .split-container,
  .pricing-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .split-list {
    text-align: left;
    display: inline-block;
  }

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

  .steps-container {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .nav-links {
    display: none;
  }

}
