:root {
  --bg: #0a0b13;
  --bg-soft: #12131f;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #eef0f7;
  --muted: #a6abc2;
  --brand: #6d7bff;
  --brand-2: #b46bff;
  --accent: #34e0c8;
  --radius: 18px;
  --maxw: 1080px;
  font-synthesis: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 60vw at 15% -10%, rgba(109, 123, 255, 0.22), transparent 60%),
    radial-gradient(50vw 50vw at 100% 0%, rgba(180, 107, 255, 0.18), transparent 55%),
    radial-gradient(45vw 45vw at 80% 100%, rgba(52, 224, 200, 0.12), transparent 55%);
}

/* HEADER */
.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(109, 123, 255, 0.35);
}
.brand-name { font-size: 16px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 15px; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--card);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(109, 123, 255, 0.35);
}
.btn-ghost { background: var(--card); border-color: var(--border); color: var(--text); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

/* HERO */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px 60px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 26px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--brand), var(--brand-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}
.lead strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 46px;
}
.hero-badges li {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-size: 14px;
  color: var(--muted);
}

/* SECTIONS */
.section { max-width: var(--maxw); margin: 0 auto; padding: 70px 24px; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-top: 10px;
  font-weight: 800;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text strong { color: var(--text); }
.about-facts {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}
.about-facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.about-facts li:last-child { border-bottom: none; }
.fact-k { color: var(--muted); font-size: 14px; }
.fact-v { font-weight: 600; text-align: right; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(109, 123, 255, 0.5); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* APPS SOON */
.apps-soon {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px 30px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.apps-soon-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109,123,255,0.25), rgba(180,107,255,0.25));
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}
.apps-soon p { color: var(--muted); margin-bottom: 24px; }
.apps-soon strong { color: var(--text); }

/* CONTACT */
.section-contact { text-align: center; }
.contact-lead { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 40px 24px 30px;
  background: var(--bg-soft);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.footer-legal p { color: var(--muted); font-size: 14px; }
.footer-legal strong { color: var(--text); }
.footer-legal a { color: var(--brand); }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-copy {
  max-width: var(--maxw);
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 720px) {
  .nav { gap: 14px; }
  .nav a:not(.nav-cta) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
}
