/* ThynqR - Streamlined Design System */

:root {
  /* Colors */
  --primary-purple: #8b5cf6;
  --primary-dark: #7c3aed;
  --accent-blue: #4a9eff;
  --dark-bg: #0f172a;
  --section-bg: #1a1f2e;
  --card-bg: rgba(26, 31, 46, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --success: #10b981;
  --error: #ef4444;
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  overflow: visible;
}

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


.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 10px;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.early-access-btn {
  background: var(--primary-purple);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.early-access-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Vignette effect for depth */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 11, 20, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1);
  transform-origin: center center;
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
  -webkit-filter: brightness(0.8) contrast(1.1) saturate(1.2);
  animation: subtle-zoom 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes subtle-zoom {
  0% { 
    transform: scale(1);
  }
  100% { 
    transform: scale(1.05);
  }
}

/* Responsive image loading optimization */
@media (max-width: 768px) {
  .hero-bg-img {
    object-position: center center;
  }
}

@media (min-width: 1921px) {
  .hero-bg-img {
    object-position: center top;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 35% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(100deg, 
      rgba(10, 11, 20, 0.98) 0%, 
      rgba(10, 11, 20, 0.95) 20%, 
      rgba(10, 11, 20, 0.85) 35%, 
      rgba(10, 11, 20, 0.6) 50%,
      rgba(10, 11, 20, 0.3) 65%,
      rgba(10, 11, 20, 0.1) 80%,
      transparent 100%);
  z-index: 1;
}

/* Add glow effect where text meets image */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 35%;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(139, 92, 246, 0.05) 50%,
    transparent 100%);
  filter: blur(60px);
  opacity: 0.8;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content-centered {
  text-align: left;
  max-width: 45%;
  margin-left: 2%;
  padding: 3rem 2rem 3rem 3rem;
}

/* What If Scenarios Section */
.what-if-section {
  padding: 5rem 0;
  background: var(--section-bg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.reimagine-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.reimagine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reimagine-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

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

.card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.icon-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
  margin: 0 auto;
  display: block;
}

.reimagine-card:hover .icon-img {
  transform: scale(1.15);
  filter: brightness(1.3) saturate(1.2);
}

.what-if-question {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #a5b4fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: questionShimmer 4s ease-in-out infinite;
}

.what-if-card:hover .what-if-question {
  animation-duration: 2s;
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.what-if-prefix {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 0.15em;
  opacity: 1;
  display: inline-block;
  margin-right: 0.5em;
  background: linear-gradient(90deg, #8b5cf6 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  filter: brightness(1.2);
}

.highlight-word {
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(90deg, #8b5cf6 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  filter: brightness(1.3);
  display: inline-block;
  transform: scale(1.05);
}

.card-headline {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.what-if-text {
  color: #8b5cf6;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 15px;
}

.card-description strong {
  color: #ffffff;
  font-weight: 600;
}

.highlight-number {
  color: #8b5cf6;
  font-weight: 700;
}

.strategic-impact {
  margin-top: 20px;
  padding: 15px;
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid #8b5cf6;
  border-radius: 8px;
}

.impact-label {
  font-size: 0.8rem;
  color: #8b5cf6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.impact-text {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}

.competitive-edge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.edge-icon {
  font-size: 1rem;
}

.edge-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.section-header-enhanced {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.main-section-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.section-subtitle-enhanced {
  font-size: 1.3rem;
  color: #94a3b8;
  font-weight: 400;
  margin-bottom: 30px;
  font-style: italic;
}

.header-accent-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .main-section-title {
    font-size: 2.2rem;
  }
  .section-subtitle-enhanced {
    font-size: 1.1rem;
  }
}

.section-conclusion {
  margin-top: 80px;
  text-align: center;
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.conclusion-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.conclusion-text {
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion-question {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.conclusion-visual-accent {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

.cta-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
  display: inline-block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 20, 60, 0.95));
  margin: 5% auto;
  padding: 40px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  padding: 0;
  margin-left: 20px;
}

.close:hover,
.close:focus {
  color: #fff;
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  flex: 1;
}

.modal-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #e2e8f0;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-actions {
  margin-top: 30px;
  text-align: center;
}

.form-note {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 15px;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-message h3 {
  color: #4ade80;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.success-message p {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.close-success {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
  }
}

.what-if-answer {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
}

.what-if-answer::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-purple);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Agent Network Visualization */
.agent-network-section {
  padding: 3rem 0;
  background: var(--section-bg);
}

.agent-network-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.agent-network {
  position: relative;
  width: 400px;
  height: 400px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  padding: 20px;
}

.network-title {
  text-align: center;
  font-size: 1rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.agent-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.agent-node:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
  z-index: 10;
}

.agent-node.central {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
  font-size: 0.8rem;
  z-index: 5;
}

.agent-node.central:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.agent-node.finance { top: 20%; left: 20%; }
.agent-node.procurement { top: 20%; right: 20%; }
.agent-node.inventory { bottom: 20%; left: 20%; }
.agent-node.analytics { bottom: 20%; right: 20%; }
.agent-node.compliance { top: 50%; left: 10%; transform: translateY(-50%); }
.agent-node.operations { top: 50%; right: 10%; transform: translateY(-50%); }

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), #8b5cf6);
  opacity: 0.6;
  animation: pulse 2s infinite;
}

.network-description {
  max-width: 500px;
}

.network-description h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.network-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.125rem;
}


.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  white-space: normal;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, #8b5cf6, #4a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.hero-quote {
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid var(--primary-purple);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  max-width: 100%;
  border-radius: 8px;
}

.hero-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: normal;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  margin: 0 0 3rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-description strong {
  color: var(--accent-blue);
}

.hero-emphasis {
  background: linear-gradient(135deg, #8b5cf6 0%, #4a9eff 50%, #8b5cf6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-style: italic;
  font-size: 1.1em;
  display: inline-block;
  position: relative;
  letter-spacing: 0.02em;
  animation: shimmer 3s ease-in-out infinite;
  margin-left: 0.15em;
  padding-right: 0.2em;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes questionShimmer {
  0%, 100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.1);
  }
}

.hero-emphasis::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #4a9eff, transparent);
  animation: underline-slide 3s ease-in-out infinite;
  transform: scaleX(0);
}

@keyframes underline-slide {
  0%, 100% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.hero-buttons::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed, var(--primary-purple));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

.btn-primary.btn-glow {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 8px 35px rgba(139, 92, 246, 0.5); }
}

.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-purple);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

/* Section Styles */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.vision-badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

/* Evolution Timeline Section */
.evolution-section {
  padding: 5rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.evolution-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
  transform: translateY(-50%);
  opacity: 0.3;
}

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

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  margin-top: 4rem;
}

.timeline-grid.four-columns {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-icon {
  width: 100px;
  height: 100px;
  background: var(--card-bg);
  border: 3px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 3px;
}

.timeline-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  border-color: var(--primary-purple);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.timeline-item:hover .timeline-icon-img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.timeline-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.timeline-features {
  list-style: none;
  padding: 0;
}

.timeline-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-item.tomorrow .timeline-icon {
  background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
  border-color: var(--primary-purple);
}

.timeline-item.tomorrow .timeline-features li {
  color: var(--text-primary);
}

.evolution-transition {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.evolution-transition p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
}

/* Problem/Solution Section */
.problem-solution-section {
  padding: 5rem 0;
  background: var(--section-bg);
}

/* Problem Section */
.problem-section {
  margin-bottom: 5rem;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-card {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

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

.agent-solution {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary-purple) !important;
  font-size: 0.9rem;
}

/* Vision Section */
.vision-section {
  padding: 5rem 0;
  background: var(--section-bg);
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.agent-card {
  background: var(--card-bg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.agent-header h3 {
  font-size: 1.4rem;
  color: var(--primary-purple);
  margin: 0;
  font-weight: 700;
}

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

.agent-benefits li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  position: relative;
  font-weight: 500;
}

.agent-benefits li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-purple);
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(74, 158, 255, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-banner p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.coming-soon-banner strong {
  color: var(--primary-purple);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--section-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Technical Architecture Section */
.tech-architecture {
  padding: 5rem 0;
  background: var(--dark-bg);
  position: relative;
}

.architecture-grid {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.architecture-visual {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 20, 60, 0.9));
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  padding: 2rem;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3),
              0 10px 60px rgba(0, 0, 0, 0.5),
              inset 0 0 20px rgba(139, 92, 246, 0.1);
  position: relative;
}

.architecture-visual::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8b5cf6, #4a9eff, #8b5cf6);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.architecture-visual:hover::before {
  opacity: 0.5;
}

.demo-terminal {
  background: linear-gradient(135deg, #000000, #0a0a1a);
  border-radius: 10px;
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  height: 100%;
  overflow-y: auto;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.05);
}

.demo-terminal::-webkit-scrollbar {
  width: 8px;
}

.demo-terminal::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
}

.demo-terminal::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}

.demo-terminal::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

.terminal-line {
  margin-bottom: 1rem;
  opacity: 0;
  animation: typewriter 0.5s ease-in-out forwards;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.terminal-line::before {
  content: '>';
  position: absolute;
  left: 0;
  color: rgba(139, 92, 246, 0.6);
  font-weight: bold;
}

.terminal-line.success { 
  color: #10ff81;
  text-shadow: 0 0 5px rgba(16, 255, 129, 0.5);
}
.terminal-line.warning { 
  color: #ffb700;
  text-shadow: 0 0 5px rgba(255, 183, 0, 0.5);
}
.terminal-line.info { 
  color: #4a9eff;
  text-shadow: 0 0 5px rgba(74, 158, 255, 0.5);
}
.terminal-line.error { 
  color: #ff4757;
  text-shadow: 0 0 5px rgba(255, 71, 87, 0.5);
}

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

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

.tech-card {
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.tech-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(74, 158, 255, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 4px;
  overflow: hidden;
}

.tech-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tech-card:hover .tech-icon-img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.2);
}

.tech-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tech-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

.demo-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.demo-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.demo-buttons button.active {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* UI Mockups Section */
.mockups-section {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mockup-card {
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mockup-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s ease-in-out infinite;
}

.mockup-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-content {
  background: #000000;
  border-radius: 10px;
  padding: 1.5rem;
  min-height: 180px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.metric-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.metric-value {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 0.9rem;
}

.metric-value.positive {
  color: var(--success);
}

.disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem auto 0;
  max-width: 600px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Meet Reg Section */
.meet-reg-section {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.reg-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.reg-bio {
  background: var(--card-bg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.reg-bio p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.reg-bio strong {
  color: var(--primary-purple);
}

.founder-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.reg-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.reg-contact p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.reg-email {
  font-size: 1.5rem;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.reg-email:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(74, 158, 255, 0.08));
}

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

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.cta-section .btn-primary {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
  margin-bottom: 1.5rem;
}

.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
  }
}

.cta-subtext {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--dark-bg);
  text-align: center;
}

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

.contact-info {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-email {
  font-size: 2rem;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
  background: var(--section-bg);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--primary-purple);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-content-centered {
    max-width: 70%;
    margin-left: 5%;
    padding-right: 5%;
  }
  
  .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(10, 11, 20, 0.85) 0%, 
      rgba(10, 11, 20, 0.7) 60%, 
      rgba(10, 11, 20, 0.4) 100%);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Enhanced navbar for mobile */
  .navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  }
  
  .nav-content {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-link {
    display: none;
  }
  
  .early-access-btn {
    display: inline-block !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Better logo styling for mobile */
  .logo-img {
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  
  .nav-brand {
    top: 5px;
    z-index: 10;
  }
  
  /* Enhanced hero for mobile */
  .hero {
    position: relative;
  }
  
  .hero-overlay {
    background: 
      radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
      linear-gradient(180deg, 
        rgba(15, 23, 42, 0.85) 0%, 
        rgba(15, 23, 42, 0.65) 20%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(15, 23, 42, 0.7) 100%);
  }
  
  .hero-title {
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
  }
  
  .hero-description {
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0 1rem;
  }
  
  .hero-emphasis {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .problem-cards,
  .agent-cards,
  .mockup-grid,
  .features-grid,
  .tech-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .architecture-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .architecture-visual {
    height: 300px;
  }
  
  .agent-network-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .agent-network {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .agent-node {
    width: 50px;
    height: 50px;
    font-size: 0.6rem;
  }
  
  .agent-node.central {
    width: 65px;
    height: 65px;
    font-size: 0.7rem;
  }
  
  .connection-line {
    height: 1px;
  }
  
  .what-if-grid {
    grid-template-columns: 1fr;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .collab-icon {
    width: 60px;
    height: 60px;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
  
  .collaboration-grid {
    grid-template-columns: 1fr;
  }
  
  .collaboration-card:last-child:nth-child(4) {
    grid-column: 1;
    max-width: none;
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline-icon {
    width: 80px;
    height: 80px;
  }
  
  .timeline-grid.four-columns {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  .evolution-section::before {
    display: none;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-overlay {
    background: rgba(10, 11, 20, 0.7);
  }
  
  .hero .container {
    padding: 6rem 0 3rem;
  }
  
  .hero-content-centered {
    max-width: 90%;
    margin-left: 5%;
    padding-right: 5%;
  }
  
  .hero-overlay {
    background: rgba(10, 11, 20, 0.7);
  }
  
  .agent-header {
    flex-direction: column;
    text-align: center;
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
}

/* Agent Roster Grid */
.agent-connectivity-note {
    max-width: 900px;
    margin: 2rem auto 3rem;
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--primary-purple);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.agent-connectivity-note p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.agent-connectivity-note strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.agent-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.agent-profile-card {
    background: var(--card-bg);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agent-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.agent-profile-header h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
}

.agent-status {
    font-size: 0.8rem;
    color: var(--success);
    font-family: var(--font-mono);
}

.agent-profile-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

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

.outcome-metric {
    font-weight: bold;
    color: var(--text-primary) !important;
}

/* Human + AI Collaboration Section */
.collaboration-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

/* Center the last item if there are 4 items */
.collaboration-card:last-child:nth-child(4) {
    grid-column: 2 / 3;
}

@media (max-width: 1024px) {
    .collaboration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collaboration-card:last-child:nth-child(4) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

.collaboration-card {
    background: var(--card-bg);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.collaboration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.collab-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(74, 158, 255, 0.05));
    border-radius: 20px;
    padding: 5px;
    overflow: hidden;
}

.collab-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.collaboration-card:hover .collab-icon-img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.collaboration-card h3 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

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

/* Trust and Audit Section */
.trust-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.trust-explanation {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trust-visual-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-flow-step {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-flow-step h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.trust-flow-step span {
    font-family: var(--font-mono);
    color: var(--primary-purple);
}

.flow-arrow {
    font-size: 3rem;
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Hero text animations */
@keyframes heroFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.hero-title {
  animation: heroFadeIn 0.8s ease-out;
}

.hero-subtitle {
  animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero-description {
  animation: heroFadeIn 0.8s ease-out 0.4s both;
}

.hero-buttons {
  animation: heroFadeIn 0.8s ease-out 0.6s both;
}

/* Loading animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Prevent animation conflicts */
section {
  animation: fadeIn 0.6s ease-out;
  will-change: opacity, transform;
}

/* Ensure buttons are clickable on mobile */
button, .btn-primary, .btn-secondary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Floating particles effect */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Mobile optimization - reduce particles */
@media (max-width: 768px) {
  .particles-container {
    display: none;
  }
}