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

/* Hero Section */
.hero {
  background: #000000;
  padding: 12rem 0 8rem;
  position: relative;
  overflow: visible;
  flex-direction: column;     /* stack children vertically (important) */
  display: flex;
  align-items: center;
  min-height: 100vh;
  gap: 2rem;
}

/* full-bleed but padded image */
.hero-full-image {
  width: calc(100vw - 6vw);   /* full viewport minus gutter */
  max-width: 2400px;          /* keep a sane max if you want */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

/* small responsive tweak */
@media (max-width: 720px) {
  .hero {
    padding: 4rem 0 3rem;
  }
  .hero-full-image {
    width: calc(100vw - 8vw); /* larger gutter on small screens */
    border-radius: 12px;
  }
}

.hero-image-wrapper {
  width: 100%;
  padding: 0 3vw;        /* small gutter on each side */
  margin-top: 24px;
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;            /* behind hero-content which has z-index:2 */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* New Image Enhancements */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 1;
  filter: blur(0px);
  transition: opacity 0.6s ease;
}

/* Premium AI Visualization */
.premium-ai-visualization {
  margin-bottom: 2rem;
}

.feature-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.feature-card:hover .feature-image {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.2));
  border-radius: 32px;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.team-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(1px);
}

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

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(248, 249, 250, 0.5);
  border-radius: 16px;
}

.product-mockup {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Ecosystem Images */
.ecosystem-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 24px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 6px 24px rgba(255, 255, 255, 0.2));
}

.ecosystem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ecosystem-card:hover .ecosystem-icon {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.ecosystem-card:hover .ecosystem-image {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
  .founder-content,
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .feature-image {
    width: 60px;
    height: 60px;
    border-radius: 24px;
  }
  
  .ecosystem-image {
    width: 80px;
    height: 80px;
  }
  
  .ecosystem-icon {
    width: 100px;
    height: 100px;
  }
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #0a0a0a;
}

h1 { font-size: 4.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}


.logo-text {
  display: inline-block;
}

.footer-logo-text {
  display: inline-block;
  color: #ffffff;
}


.footer-logo {
  filter: brightness(0) saturate(100%) invert(1);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a0a0a;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0a0a0a;
}

.nav-cta {
  background: #0a0a0a !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background: #2a2a2a !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 160px;
}

.btn-primary {
  background: #0a0a0a;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
}

.btn-secondary:hover {
  background: #0a0a0a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #4a4a4a;
  border: 2px solid #e0e0e0;
}

.btn-outline:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}




.agnostic-signals {
  padding: 3rem 0;
  background: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.agnostic-content {
  text-align: center;
}

.agnostic-label {
  font-size: 0.875rem;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.agnostic-logos-wrapper {
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
}

.agnostic-logos {
  display: flex;
  align-items: center;
  min-height: 56px; 
  gap: 2rem;
  min-width: max-content;
  padding: 1rem 0;
  animation: scroll 25s linear infinite;
}

.agnostic-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: clamp(28px, 5vw, 56px);
  filter: grayscale(0%);
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease;
}


.logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.agnostic-logos:hover {
  animation-play-state: paused;
}





/* Demonstration Video Section */
.demo-video-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  z-index: 10;
  display: block;
  visibility: visible;
}

.demo-video-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-video-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.demo-video-subtitle {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 3rem;
  font-weight: 400;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.video-container::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.demo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  max-width: 600px;
  margin: 0 auto;
}

.video-caption p {
  font-size: 1rem;
  color: #6a6a6a;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .demo-video-section {
    padding: 6rem 0;
  }
  
  .demo-video-title {
    font-size: 2rem;
  }
  
  .demo-video-subtitle {
    font-size: 1.1rem;
  }
  
  .video-container {
    margin: 0 1rem 2rem;
    border-radius: 12px;
  }
}

/* Trust Signals */
.trust-signals {
  padding: 3rem 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.trust-content {
  text-align: center;
}

.trust-label {
  font-size: 0.875rem;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  border-color: #0a0a0a;
  transform: translateY(-2px);
}

.trust-text {
  font-weight: 600;
  color: #2a2a2a;
  font-size: 0.875rem;
}

/* Social Proof */
.social-proof {
  background: #0a0a0a;
  color: #ffffff;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.proof-stat {
  padding: 2rem;
}

.proof-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.proof-label {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 500;
}

/* Performance Demo */
.performance-demo {
  background: #fafafa;
}

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

.demo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.demo-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.demo-header h4 {
  font-size: 1.25rem;
  color: #0a0a0a;
  font-weight: 600;
}

.demo-period {
  font-size: 0.875rem;
  color: #6a6a6a;
  background: #f5f5f5;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.demo-chart {
  height: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  height: 60px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 4px 4px 0 0;
  animation: chartGrow 2s ease-out;
}

.volatility-150 {
  background: linear-gradient(45deg, #28a745, #20c997);
  animation-delay: 0.2s;
}

.xagusd {
  background: linear-gradient(45deg, #17a2b8, #6f42c1);
  animation-delay: 0.4s;
}

.wallstreet {
  background: linear-gradient(45deg, #fd7e14, #e83e8c);
  animation-delay: 0.6s;
}

.volatility-100 {
  background: linear-gradient(45deg, #6610f2, #6f42c1);
  animation-delay: 0.8s;
}

@keyframes chartGrow {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 60px;
    opacity: 1;
  }
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.demo-stat {
  text-align: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
}

.stat-value.positive {
  color: #28a745;
}

.demo-vision {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.demo-vision h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.demo-vision p {
  font-size: 1.25rem;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

/* Founder Message */
.founder-message {
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
  color: #ffffff;
}

.founder-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.founder-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-content h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.founder-content p {
  font-size: 1.25rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 10rem 0;
}

.section-alt {
  background: #fafafa;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 600;
}



/* How It Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.step-visual {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.broker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-shield {
  width: 40px;
  height: 50px;
  background: linear-gradient(135deg, #0a0a0a, #4a4a4a);
  border-radius: 20px 20px 5px 5px;
  position: relative;
}

.icon-shield::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.connection-dots {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.5s; }
.dot:nth-child(3) { animation-delay: 1s; }

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

.ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-animation {
  width: 50px;
  height: 50px;
  border: 3px solid #0a0a0a;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.synapse {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #0a0a0a;
  border-radius: 50%;
  animation: synapse-fire 2s ease-in-out infinite;
}

.synapse:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.synapse:nth-child(2) {
  top: 50%;
  right: 25%;
  animation-delay: 0.7s;
}

.synapse:nth-child(3) {
  bottom: 30%;
  left: 50%;
  animation-delay: 1.4s;
}

@keyframes synapse-fire {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 rgba(10, 10, 10, 0.7);
  }
  50% { 
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  }
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
}

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

.execution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.trading-chart {
  display: flex;
  align-items: end;
  gap: 4px;
  margin-bottom: 10px;
}

.chart-bar {
  width: 8px;
  background: linear-gradient(to top, #0a0a0a, #4a4a4a);
  border-radius: 2px;
  animation: chart-grow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { 
  height: 20px; 
  animation-delay: 0s;
}
.chart-bar:nth-child(2) { 
  height: 35px; 
  animation-delay: 0.5s;
}
.chart-bar:nth-child(3) { 
  height: 25px; 
  animation-delay: 1s;
}
.chart-bar:nth-child(4) { 
  height: 40px; 
  animation-delay: 1.5s;
}

@keyframes chart-grow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

.execution-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #0a0a0a;
  animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { 
    transform: translateY(0);
    opacity: 1;
  }
  50% { 
    transform: translateY(5px);
    opacity: 0.7;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #0a0a0a;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #ffffff;
}

.pricing-card-featured .plan-price,
.pricing-card-featured h3 {
  color: #ffffff;
}

.pricing-card-featured .feature {
  color: #e0e0e0;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a0a;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6a6a6a;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #4a4a4a;
}

.feature-disabled {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #a0a0a0;
}

.plan-note {
  font-size: 0.875rem;
  color: #6a6a6a;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Why Now */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.why-item {
  text-align: center;
}

.why-item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial {
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #0a0a0a;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #2a2a2a;
}

.testimonial-author {
  font-weight: 600;
  color: #0a0a0a;
}

/* The Chill Ecosystem */
.ecosystem-section {
  background: #0a0a0a;
  color: #ffffff;
}

.ecosystem-section .section-title {
  color: #ffffff;
}

.ecosystem-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

.ecosystem-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid #3a3a3a;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  pointer-events: none;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: #5a5a5a;
  background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
}

.ecosystem-card:hover .ecosystem-icon {
  transform: scale(1.1);
}

.ecosystem-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  position: relative;
  transition: transform 0.4s ease;
}

/* Chilla Icon */
.chilla-icon .ai-brain {
  position: relative;
  width: 100%;
  height: 100%;
}

.brain-core {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin: 20px auto;
  position: relative;
  animation: brain-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.neural-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.3));
  animation: neural-fire 2s ease-in-out infinite;
}

.connection:nth-child(1) {
  top: 10px;
  left: 30%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.connection:nth-child(2) {
  top: 15px;
  right: 25%;
  transform: rotate(-30deg);
  animation-delay: 0.7s;
}

.connection:nth-child(3) {
  bottom: 20px;
  left: 50%;
  transform: rotate(15deg);
  animation-delay: 1.4s;
}

@keyframes brain-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes neural-fire {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}



.strategy-flow {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
}

.flow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin-bottom: 4px;
  animation: flow-data 2s linear infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.flow-line:nth-child(2) {
  animation-delay: 1s;
}

@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes flow-data {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* M-II Icon */
.mii-icon .intelligence-core {
  position: relative;
  width: 100%;
  height: 100%;
}

.core-center {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: core-glow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.data-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  border: 2px solid;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-expand 3s ease-in-out infinite;
}

.ring-1 {
  width: 40px;
  height: 40px;
  border-color: #ffffff;
  animation-delay: 0s;
}

.ring-2 {
  width: 60px;
  height: 60px;
  border-color: #e0e0e0;
  animation-delay: 1s;
}

.ring-3 {
  width: 80px;
  height: 80px;
  border-color: #c0c0c0;
  animation-delay: 2s;
}

.processing-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.processing-dots .dot {
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  animation: dot-orbit 4s linear infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.processing-dots .dot:nth-child(1) {
  top: 20%;
  left: 50%;
  animation-delay: 0s;
}

.processing-dots .dot:nth-child(2) {
  top: 50%;
  right: 20%;
  animation-delay: 1.3s;
}

.processing-dots .dot:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 2.6s;
}

@keyframes core-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes ring-expand {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes dot-orbit {
  0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

.ecosystem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.ecosystem-card p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.ecosystem-btn {
  min-width: 180px;
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
  border: 2px solid #5a5a5a;
  position: relative;
  z-index: 1;
}

.ecosystem-btn:hover {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: #0a0a0a;
  transform: translateY(-2px);
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Single plan pricing adjustments */
.pricing-grid.single-plan {
  max-width: 400px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note p {
  color: #6a6a6a;
  font-style: italic;
  font-size: 1rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0a0a0a;
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-question h4 {
  margin: 0;
  color: #0a0a0a;
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0a0a0a;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 2rem;
}

.faq-answer p {
  color: #4a4a4a;
  margin: 0;
  line-height: 1.7;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.about-visual {
  margin: 2rem 0;
}

.team-image {
  text-align: center;
  margin-bottom: 3rem;
}

.team-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.team-caption {
  max-width: 500px;
  margin: 0 auto;
}

.team-caption h4 {
  font-size: 1.25rem;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.team-caption p {
  color: #6a6a6a;
  font-size: 1rem;
}

.stats-row {
  margin-top: 3rem;
}

.about-lead {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #0a0a0a;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #4a4a4a;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-note {
  font-size: 0.875rem;
  color: #6a6a6a;
}

.contact-note a {
  color: #0a0a0a;
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #a0a0a0;
  margin-top: 0.5rem;
}

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

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section a {
  display: block;
  color: #a0a0a0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  color: #a0a0a0;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

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

  .ecosystem-card {
    padding: 2rem 1.5rem;
  }

  .ecosystem-icon {
    width: 80px;
    height: 80px;
  }

  .pricing-grid.single-plan {
    max-width: 100%;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
  }

  .trust-logos {
    gap: 1rem;
  }

  .trust-logo {
    padding: 0.75rem 1.5rem;
  }

  .hero {
    padding: 8rem 0 6rem;
    min-height: 80vh;
  }

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

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-visual {
    display: none;
  }

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

  .how-it-works-grid,
  .pricing-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .demo-stats {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-photo {
    max-width: 100%;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .stat {
    min-width: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 10rem 0 6rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .btn {
    min-width: 140px;
    padding: 0.875rem 1.5rem;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.chill-icon {
  animation: pulse 2.5s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.floating {
  animation: float 2s infinite ease-in-out;
}
