:root {
  --bg-dark: #0b0f14;
  --bg-light-gray: #c8cad0;
  --text-light: #ffffff;
  --text-dark: #111317;
  --accent: #ff6a3d;
  --accent-soft: #ff8a5c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.nav {
  position: fixed;
  width: 100%;
  background: rgba(11,15,20,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 10;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-img { height: 34px; }

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
}

.nav-links a:hover { color: white; }

.hero-main {
  padding: 170px 0 130px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,61,0.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,106,61,0.15), transparent 50%);
}

.hero-main h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.sub {
  font-size: 20px;
  opacity: 0.85;
}

.product {
  padding: 120px 0;
}

.product.dark { background: #11151c; }

.product.light {
  background: var(--bg-light-gray);
  color: var(--text-dark);
}

.split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split.reverse { flex-direction: row-reverse; }

.text h2 {
  font-size: 42px;
  margin: 12px 0 16px;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.hero-img {
  width: 100%;
  border-radius: 18px;
}

.btn {
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  color: white;
}

.ecosystem {
  padding: 140px 0;
  text-align: center;
  background: #0b0f14;
}

.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #090c11;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  margin-left: 20px;
  text-decoration: none;
}
