:root {
  --bg-dark: #0a0a0f;
  --bg-card: #14141f;
  --text-main: #f0f0f5;
  --text-muted: #a0a0b0;
  --primary: #f9532d;
  --primary-hover: #ff6b4a;
  --secondary: #6366f1;
  --accent: #06b6d4;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4 {
  color: #fff;
  line-height: 1.2;
}
.highlight {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 83, 45, 0.4);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 83, 45, 0.6);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--text-main);
}
.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
  position: relative;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.blob-1,
.blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
}
.blob-1 {
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: var(--primary);
}
.blob-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.badge-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(249, 83, 45, 0.1);
  color: var(--primary);
  border: 1px solid rgba(249, 83, 45, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-graphics {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.mockup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}
.chart-container {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-bottom: 20px;
}
.chart-bar {
  flex: 1;
  background: var(--glass-border);
  height: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.chart-bar .fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--secondary);
  border-radius: 6px;
}
.chart-bar .highlight-fill {
  background: var(--primary);
}
.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.icon-1 {
  top: 50px;
  left: 50px;
  color: var(--primary);
  animation: float 5s ease-in-out infinite alternate;
}
.icon-2 {
  bottom: 50px;
  right: 50px;
  color: var(--secondary);
  animation: float 7s ease-in-out infinite alternate-reverse;
}

/* Sections */
section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .lead {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.feature-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.feature-icon {
  font-size: 30px;
  color: var(--primary);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--bg-card);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--glass-border);
}
.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(249, 83, 45, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 20px;
  border: 1px solid rgba(249, 83, 45, 0.2);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Categories */
.glass-section {
  background: rgba(20, 20, 31, 0.5);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.tag {
  padding: 12px 25px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.tag:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Investors */
.investor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.logo-box {
  padding: 30px 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 200px;
  text-align: center;
}

/* Startups */
.startup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.startup-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.startup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--secondary);
}
.card-image {
  height: 180px;
  width: 100%;
}
.card-content {
  padding: 30px;
}
.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: inline-block;
}
.badge-green {
  background: rgba(56, 239, 125, 0.1);
  color: #38ef7d;
}
.badge-orange {
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
}
.badge-purple {
  background: rgba(142, 45, 226, 0.1);
  color: #8e2de2;
}
.card-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* KaroStartup */
.ks-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}
.ks-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.ks-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ks-stats-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.ks-stats-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CTA */
.cta {
  background: linear-gradient(
    135deg,
    rgba(249, 83, 45, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  position: relative;
}
.cta h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
footer {
  background: #050508;
  padding: 40px 0 20px;
  border-top: 1px solid var(--glass-border);
}
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  text-align: center;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(-3deg);
  }
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
}
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.animate-fade {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .steps-grid,
  .startup-grid {
    grid-template-columns: 1fr;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }
}
