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

:root {
  /* Refined color palette */
  --dark: #0a0d14;
  --dark-secondary: #121620;
  --light: #ffffff;
  --light-muted: rgba(255, 255, 255, 0.85);
  --gray: rgba(255, 255, 255, 0.6);
  --gray-muted: rgba(255, 255, 255, 0.4);
  --primary: #5967ff;
  --primary-light: #7f89ff;
  --primary-dark: #3948ff;
  --accent: #ff6b6b;
  --accent-dark: #ff3d3d;
  --success: #40c686;
  --warning: #ffbe0b;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --border-thin: 1px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1.5rem;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Grid & Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Colors */
.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-light {
  color: var(--light);
}

.text-gray {
  color: var(--gray);
}

.text-dark {
  color: var(--dark);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-light {
  background-color: var(--light);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-gradient-cool {
  background: linear-gradient(135deg, #4338ca, #3b82f6);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* Typography */
.font-mono {
  font-family: var(--font-mono);
}

.text-12 {
  font-size: 12px;
}

.text-15 {
  font-size: 15px;
}

.text-18 {
  font-size: 18px;
}

.text-24 {
  font-size: 24px;
}

.text-32 {
  font-size: 32px;
}

.text-40 {
  font-size: 40px;
}

.text-56 {
  font-size: 56px;
}

.text-uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

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

.leading-tight {
  line-height: 1.2;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-48 {
  gap: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 10px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-80 {
  padding-bottom: 80px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

/* Components */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

header.scrolled {
  height: 70px;
  background-color: rgba(10, 13, 20, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--light), var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.button-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--light);
}

.button-outline:hover {
  border-color: var(--light);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.button-accent {
  background-color: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: var(--accent);
}

.button-accent:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.button-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
}

.button-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(89, 103, 255, 0.25);
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--light);
}

.button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-divider {
  height: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

/* Hero Section */
#hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(89, 103, 255, 0.05), transparent 70%),
              radial-gradient(ellipse at bottom, rgba(255, 107, 107, 0.05), transparent 70%),
              var(--dark);
}

.hero-shape {
  position: absolute;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  left: -200px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -100px;
  background: linear-gradient(45deg, var(--accent-dark), var(--accent));
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(89, 103, 255, 0.12), rgba(127, 137, 255, 0.08));
  color: var(--primary-light);
  border: 1px solid rgba(89, 103, 255, 0.15);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(89, 103, 255, 0.1);
}

.badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2px;
  margin-right: 6px;
}

/* About Section (Founders) */
.founders-container {
  margin-top: 60px;
}

.founder-card {
  display: flex;
  flex-direction: row;
  background: rgba(18, 22, 32, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
  margin-bottom: 48px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 103, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image-container {
  flex: 0 0 40%;
  max-width: 40%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(30%);
}

.founder-card:hover .founder-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.founder-content {
  flex: 1;
  padding-left: 40px;
}

.founder-name {
  font-size: 24px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--light), var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.founder-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.founder-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.founder-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--gray-muted);
  transition: all 0.3s ease;
}

.founder-social a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.founder-social svg {
  width: 16px;
  height: 16px;
}

/* Vision Section */
.vision-section {
  position: relative;
  background-color: var(--dark);
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15), transparent 70%);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.vision-item {
  background: rgba(18, 22, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.vision-item:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 103, 255, 0.3);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.vision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(89, 103, 255, 0.1), rgba(89, 103, 255, 0.05));
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.vision-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5px;
}


.vision-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.vision-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* Why Choose Us Section */
.why-us-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(18, 22, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 103, 255, 0.3);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

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

.cta-content {
  background: linear-gradient(135deg, rgba(18, 22, 32, 0.6), rgba(10, 13, 20, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(89, 103, 255, 0.05), rgba(255, 107, 107, 0.05));
  z-index: -1;
}

.cta-title {
  font-size: 32px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--light), var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--light), var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: all 0.4s ease;
}

.cta-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-link:hover .cta-arrow {
  transform: translate(8px, -8px);
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-link:hover::after {
  width: 100%;
}

/* Decorative elements */
.blob {
  position: absolute;
  opacity: 0.4;
  filter: blur(40px);
  z-index: 0;
}

.blob-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
}

.blob-2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
}

.dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

.animate-slideUp {
  animation: slideUp 0.8s ease forwards;
}

.animate-slideIn {
  animation: slideIn 0.8s ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Media Queries */
@media (min-width: 800px) {
  .lg-flex-row {
    flex-direction: row;
  }
  
  .lg-text-40 {
    font-size: 40px;
  }
  
  .lg-text-56 {
    font-size: 56px;
  }
  
  .lg-text-90 {
    font-size: 90px;
  }
  
  .lg-w-1-2 {
    width: 50%;
  }
  
  .lg-w-1-3 {
    width: 33.333%;
  }

  .lg-w-2-3 {
    width: 66.666%;
  }
  
  .container {
    width: 80%;
  }
  
  .founder-card {
    display: flex;
    gap: 32px;
  }
  
  .founder-image-container {
    flex-shrink: 0;
  }
  
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 799px) {
  .sm-hidden {
    display: none;
  }
  
  .sm-mb-24 {
    margin-bottom: 24px;
  }
  
  .founder-card {
    margin-bottom: 32px;
  }
  
  .feature-card {
    margin-bottom: 24px;
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .container {
    width: 92%;
    padding: 0;
  }
  
  /* Typography adjustments */
  .text-32 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  .text-40 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
  
  .text-56 {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }
  
  /* Hero section improvements */
  #hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }
  
  .hero-content {
    padding-top: 30px;
  }
  
  .badge {
    font-size: 12px;
    padding: 6px 10px;
    margin-bottom: 16px;
  }
  
  /* Better card layouts for mobile */
  .founder-card {
    gap: 24px;
    padding: 24px;
    margin-bottom: 32px;
  }
  
  .founder-image-container {
    width: 100%;
    height: 240px;
  }
  
  .founder-content {
    width: 100%;
  }
  
  .founder-social {
    margin-top: 16px;
  }
  
  /* Vision and features improvements */
  .vision-item, .feature-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .vision-icon, .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  /* CTA section */
  .cta-content {
    padding: 40px 20px;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .cta-buttons .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Footer improvements */
  footer {
    padding: 40px 0;
  }
  
  footer .cta-link {
    font-size: 32px !important;
  }
  
  footer .flex.flex-col.lg-flex-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  footer .flex.gap-24 {
    justify-content: center;
  }
}

/* Small mobile improvements */
@media (max-width: 480px) {
  /* Header adjustments */
  header .logo {
    font-size: 18px;
  }
  
  header .container {
    height: 60px !important;
  }
  
  /* Size adjustments */
  .text-56 {
    font-size: 28px !important;
  }
  
  .text-32 {
    font-size: 22px !important;
  }
  
  .feature-title, .vision-title, .founder-name {
    font-size: 18px !important;
  }
  
  /* Layout adjustments */
  .py-120 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .mb-64 {
    margin-bottom: 32px;
  }
  
  .mb-48 {
    margin-bottom: 24px;
  }
  
  /* Visual adjustments */
  .founder-image-container {
    height: 200px;
  }
  
  /* Mobile menu improvements */
  .mobile-menu {
    top: 60px;
  }
}

/* Mobile menu improved styles */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s ease;
  z-index: 110;
  position: relative;
}

.mobile-menu-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.active svg {
  transform: rotate(45deg);
}

.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.mobile-menu.active {
  max-height: 1200px;
}

.mobile-menu .container {
  padding: 0 16px 20px;
}

.mobile-menu .nav-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

.mobile-menu .button {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Blob positions for mobile */
@media (max-width: 768px) {
  .blob-1 {
    top: 10%;
    left: -20%;
    width: 300px;
    height: 300px;
  }
  
  .blob-2 {
    bottom: 10%;
    right: -20%;
    width: 300px;
    height: 300px;
  }
}

/* Additional mobile improvements */
body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-card {
  display: flex;
  flex-direction: row;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 8px;
  overflow: hidden;
  padding: 32px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.founder-image-container {
  flex: 0 0 40%;
  max-width: 40%;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-content {
  flex: 1;
  padding-left: 32px;
}

@media (max-width: 1024px) {
  .founder-card {
    flex-direction: column;
  }
  
  .founder-image-container {
    max-width: 100%;
    height: 300px;
    margin-bottom: 24px;
  }
  
  .founder-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .founder-card {
    padding: 24px;
  }
  
  .founders-container {
    margin-top: 24px;
  }
  
  .founder-image-container {
    height: 240px;
  }
  
  /* Vision grid improvements */
  .vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Fix feature cards on mobile */
  .features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    height: auto;
  }
  
  /* Improve section scrolling on mobile */
  html {
    scroll-padding-top: 80px;
  }
  
  /* Better spacing for mobile sections */
  section {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .founder-image-container {
    height: 200px;
  }
  
  .founder-name {
    margin-top: 0;
  }
  
  .founder-title {
    margin-bottom: 12px;
  }
  
  /* Additional small mobile improvements */
  .badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .vision-icon, .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  /* Ensure CTA buttons are properly sized */
  .button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* New Journey Section Styles */
.bg-dark {
  background-color: rgba(15, 20, 30, 0.9);
  position: relative;
  overflow: hidden;
}

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

.journey-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.journey-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  position: relative;
  margin: 80px auto;
  max-width: 1200px;
}

.journey-center-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(99, 102, 241, 0),
    rgba(99, 102, 241, 0.7),
    rgba(99, 102, 241, 0.7),
    rgba(99, 102, 241, 0)
  );
  z-index: 1;
  pointer-events: none;
}


.journey-card {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease;
  z-index: 2;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

/* Apply specific positioning to cards */
.journey-start {
  align-self: flex-start;
  width: 47%;
  position: relative;
}


.journey-middle-1 {
  align-self: flex-end;
  width: 47%;
  margin-top: -100px;
  position: relative;
}


.journey-intersection {
  align-self: center;
  max-width: 600px;
  z-index: 3;
  position: relative;
}

.journey-intersection::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  z-index: 2;
}

.journey-end {
  align-self: center;
  max-width: 550px;
}





.journey-year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  transform: translateY(-30px);
  margin-bottom: -15px;
}

.journey-year.highlight {
  background: rgba(244, 63, 94, 0.2);
  color: var(--accent);
  font-size: 16px;
  padding: 5px 12px;
}

.journey-card h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
}

.text-accent {
  color: var(--accent);
}

.journey-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.journey-card-content {
  position: relative;
  transition: transform 0.3s ease;
}

.journey-card-content.special {
  background: rgba(30, 41, 59, 0.7);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(244, 63, 94, 0.2);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.1);
}

.intersection-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  color: var(--accent);
  opacity: 0.7;
  transform: rotate(-15deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.journey-card:hover .intersection-icon {
  transform: rotate(0);
  opacity: 1;
}

.vision-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.vision-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
}

.vision-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, rgba(99, 102, 241, 0) 70%);
  top: -100px;
  left: -100px;
  animation: floatOrb 15s ease-in-out infinite alternate;
}

.vision-orb.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.8) 0%, rgba(244, 63, 94, 0) 70%);
  bottom: -100px;
  right: -50px;
  animation: floatOrb 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 30px);
  }
}

/* Responsive styles for journey */
@media (max-width: 1024px) {
  .journey-grid {
    max-width: 700px;
  }
  
  .journey-start, 
  .journey-middle-1 {
    max-width: 400px;
    margin-top: 0;
  }
  
  .journey-intersection,
  .journey-end {
    max-width: 450px;
  }
  
  .journey-intersection::after {
    height: 30px;
  }
  
}

@media (max-width: 768px) {
  .journey-grid {
    gap: 25px;
    max-width: 500px;
  }
  
  .journey-start, 
  .journey-middle-1,
  .journey-intersection,
  .journey-end {
    width: 100%;
    max-width: 400px;
    margin-top: 0;
  }
  
  .journey-intersection::after {
    height: 25px;
  }
  
  .journey-card {
    padding: 15px;
  }
  
  .journey-year {
    transform: translateY(-24px);
  }
  
  .journey-card h3 {
    font-size: 18px;
  }
  
  .journey-card p {
    font-size: 14px;
  }
  
  
  .intersection-icon {
    right: -5px;
    bottom: -5px;
  }
  
  .intersection-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .vision-orb.orb-1,
  .vision-orb.orb-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .journey-grid {
    max-width: 320px;
  }
  
  .journey-start, 
  .journey-middle-1,
  .journey-intersection,
  .journey-end {
    width: 100%;
    max-width: 320px;
  }
  
  .journey-intersection::after {
    height: 20px;
  }
  
  
  .journey-card {
    padding: 12px;
  }
  
  .journey-card h3 {
    font-size: 16px;
  }
  
  .journey-card p {
    font-size: 13px;
  }
  
} 