* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0a0e17 0%, #0f1a2e 50%, #05080f 100%);
  color: #cbd5e1;
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.8;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' result='noise' /%3E%3CfeColorMatrix in='noise' type='saturate' values='.2' /%3E%3C/filter%3E%3Crect width='1000' height='1000' filter='url(%23noise)' opacity='.025'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 30%, rgba(99,102,241,0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,0.12) 0%, transparent 30%),
    radial-gradient(circle at 40% 90%, rgba(168,85,247,0.08) 0%, transparent 35%),
    radial-gradient(circle at 60% 20%, rgba(59,130,246,0.1) 0%, transparent 30%);
  animation: drift 200s linear infinite;
  opacity: 0.9;
}

.floating-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floater {
  position: absolute;
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 50%;
  opacity: 0.4;
}

.floater-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  border-color: rgba(99,102,241,0.08);
  animation: float 35s ease-in-out infinite;
}

.floater-2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  right: -5%;
  border-color: rgba(139,92,246,0.08);
  animation: float 40s ease-in-out infinite reverse;
}

.floater-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -5%;
  border-color: rgba(168,85,247,0.08);
  animation: float 45s ease-in-out infinite;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(99,102,241,0.2);
  top: -15%;
  left: -10%;
  animation: drift 150s linear infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(139,92,246,0.15);
  bottom: -10%;
  right: -5%;
  animation: drift 180s linear infinite reverse;
}

.overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,23,0.4) 0%, rgba(10,14,23,0.5) 40%, #0a0e17 100%),
    linear-gradient(180deg, rgba(10,14,23,0) 0%, rgba(10,14,23,0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 20px;
  gap: 4rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s cubic-bezier(0.23,1,0.32,1) 0.1s forwards;
  opacity: 0;
}

.hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(192, 132, 252, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(192, 132, 252, 0.2);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #6366f1 40%, #8b5cf6 60%, transparent);
  margin: 2rem auto 0;
  border-radius: 2px;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 600px;
  width: 100%;
  margin: 2rem 0 1rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(99,102,241,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-8px);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a5b4fc, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Main Card */
.card {
  max-width: 800px;
  width: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 28px;
  padding: 5rem 4rem;
  box-shadow: 
    0 40px 120px rgba(99,102,241,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  animation: fadeInUp 1s cubic-bezier(0.23,1,0.32,1) 0.3s forwards;
  opacity: 0;
}

/* Section Heading */
.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #e0e7ff;
  margin-bottom: 2rem;
  text-align: center;
  letters-spacing: -0.01em;
}

.glow-text {
  background: linear-gradient(135deg, #a5b4fc, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gratitude Section */
.gratitude {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.gratitude-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e0e7ff;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}

.gratitude-text strong {
  background: linear-gradient(135deg, #c084fc, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.message-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 1.8rem;
  line-height: 1.85;
  text-align: center;
}

/* Journey/Timeline Section */
.journey {
  margin: 3.5rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(99,102,241,0.1);
  border-bottom: 1px solid rgba(99,102,241,0.1);
  animation: fadeInUp 0.8s ease 0.7s forwards;
  opacity: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInLeft 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.8s; }
.timeline-item:nth-child(2) { animation-delay: 0.95s; }
.timeline-item:nth-child(3) { animation-delay: 1.1s; }
.timeline-item:nth-child(4) { animation-delay: 1.25s; }

.timeline-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  margin-top: 0.4rem;
  box-shadow: 0 0 20px rgba(99,102,241,0.6);
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.timeline-content h4 {
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Next Era Section */
.next-era {
  animation: fadeInUp 0.8s ease 0.9s forwards;
  opacity: 0;
}

.vaylo-intro {
  margin: 2.5rem 0 3rem;
}

.vaylo-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.vaylo-mark {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
}

.vaylo-name {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #a5b4fc, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.3rem;
}

.vaylo-tagline {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Vaylo About */
.vaylo-about {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0 3rem;
  text-align: center;
}

.about-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

/* Dev Areas */
.dev-areas {
  margin: 3rem 0;
}

.areas-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #c7d2fe;
  margin-bottom: 2rem;
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.area-item {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.area-item:hover {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-6px);
}

.area-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.area-name {
  font-weight: 700;
  color: #a5b4fc;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.area-item p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

/* Tech Stack */
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(99,102,241,0.1);
  border-bottom: 1px solid rgba(99,102,241,0.1);
  animation: fadeInUp 0.8s ease 1.1s forwards;
  opacity: 0;
}

.stack-column {
  text-align: center;
}

.stack-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.tech-tag {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  color: #a5b4fc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.4);
}

/* Principles */
.principles {
  margin: 3rem 0;
  animation: fadeInUp 0.8s ease 1.25s forwards;
  opacity: 0;
}

.principles-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #c7d2fe;
  margin-bottom: 2rem;
  text-align: center;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.principle {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.principle:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-4px);
}

.principle-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  margin-top: 0.3rem;
}

.principle strong {
  display: block;
  color: #a5b4fc;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.principle p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

/* Featured Project */
.featured-project {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 1.4s forwards;
  opacity: 0;
}

.featured-project::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99,102,241,0.1), transparent 70%);
  pointer-events: none;
}

.project-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c7d2fe;
  margin-bottom: 1rem;
}

.project-description {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-link {
  display: inline-block;
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(165, 180, 252, 0.3);
}

.project-link:hover {
  border-bottom-color: #a5b4fc;
  color: #c7d2fe;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3.5rem 0 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1.55s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 2.8rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 15px 40px rgba(99,102,241,0.35);
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(99,102,241,0.45);
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.btn-secondary {
  background: rgba(99,102,241,0.1);
  color: #a5b4fc;
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 10px 30px rgba(99,102,241,0.1);
}

.btn-secondary:hover {
  transform: translateY(-6px);
  background: rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.5);
  color: #c7d2fe;
  box-shadow: 0 20px 50px rgba(99,102,241,0.2);
}

.btn-icon {
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover .btn-icon:first-child {
  opacity: 1;
  transform: translateX(-4px);
}

.btn-primary:hover .btn-icon:last-child {
  opacity: 1;
  transform: translateX(4px);
}

.btn-secondary:hover .btn-icon:first-child {
  opacity: 1;
  transform: translateX(-4px);
}

.btn-secondary:hover .btn-icon:last-child {
  opacity: 1;
  transform: translateX(4px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* Divider */
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
  margin: 3rem 0;
  border-radius: 1px;
}

/* Footer */
.footer {
  margin-top: 3.5rem;
  text-align: center;
  animation: fadeInUp 0.8s ease 1.7s forwards;
  opacity: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
  margin-bottom: 2rem;
}

.footer-content {
  margin-bottom: 1.5rem;
}

.founder-section {
  margin-bottom: 1.5rem;
}

.founder-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a5b4fc;
  margin: 0 0 0.3rem;
}

.founder-title {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0 0 0.5rem;
}

.founder-projects {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.footer-note {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99,102,241,0.1);
}

.footer-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.footer-link:hover {
  color: #a5b4fc;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(30px) translateX(10px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(40px) scale(1.02); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(99,102,241,0.6); }
  50% { box-shadow: 0 0 25px rgba(99,102,241,0.8); }
}

/* Fade in animation class */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.23,1,0.32,1) forwards;
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content {
    padding: 60px 20px;
    gap: 3rem;
  }

  .card {
    padding: 4rem 2.5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .vaylo-logo-section {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 50px 16px;
    gap: 2.5rem;
  }

  .card {
    padding: 2.5rem 1.8rem;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gratitude-text {
    font-size: 1.15rem;
  }

  .vaylo-name {
    font-size: 2rem;
  }

  .vaylo-mark {
    font-size: 3rem;
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .floater {
    opacity: 0.2;
  }

  .glow {
    opacity: 0.15;
  }
}

@media (max-width: 520px) {
  .content {
    padding: 40px 12px;
    gap: 2rem;
  }

  .card {
    padding: 1.8rem 1.2rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .gratitude-text {
    font-size: 1rem;
  }

  .message-text {
    font-size: 0.9rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .vaylo-name {
    font-size: 1.5rem;
  }

  .vaylo-mark {
    font-size: 2.2rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tech-tags {
    gap: 0.5rem;
  }

  .tech-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }

  .btn-icon {
    font-size: 1rem;
  }
}