* { box-sizing: border-box; }

:root {
  --bg: #070510;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-fade: rgba(255, 255, 255, 0.46);
  --accent: #ff64c8;
  --accent-2: #a66bff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 1180px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(133, 44, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 77, 190, 0.14), transparent 26%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

.bg-orb {
  position: fixed; border-radius: 999px; filter: blur(90px); pointer-events: none; opacity: 0.35; z-index: 0;
}
.orb-1 { width: 320px; height: 320px; left: 50%; top: -120px; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.orb-2 { width: 280px; height: 280px; right: -60px; top: 34%; background: linear-gradient(135deg, rgba(255, 100, 200, 0.5), rgba(166, 107, 255, 0.4)); }
.orb-3 { width: 220px; height: 220px; left: -80px; bottom: 10%; background: linear-gradient(135deg, rgba(166, 107, 255, 0.4), rgba(255, 100, 200, 0.3)); }

.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px);
  background: rgba(7, 5, 16, 0.7); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 16px; display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 100, 200, 0.22), rgba(166, 107, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow);
}
.brand-copy { display: flex; flex-direction: column; }
.brand-name { font-weight: 700; letter-spacing: -0.02em; }
.brand-sub { font-size: 12px; color: var(--text-fade); }

.nav-links { display: flex; gap: 28px; color: var(--text-soft); font-size: 15px; }
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.imprint-btn, .footer-link {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font: inherit;
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
}
.imprint-btn:hover, .footer-link:hover { color: var(--text); }

.lang-switch {
  display: flex; gap: 6px; padding: 6px; border-radius: 18px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.lang-btn {
  border: 0; background: transparent; color: var(--text-soft); font: inherit;
  font-weight: 600; padding: 10px 14px; border-radius: 12px; cursor: pointer;
}
.lang-btn.active { background: #fff; color: #0b0912; }

.hero, .section { position: relative; z-index: 1; }
.hero { padding: 72px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.pill, .eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 100, 200, 0.12); border: 1px solid rgba(255, 100, 200, 0.22); color: #ffc7ea; margin-bottom: 22px;
}
.eyebrow { color: var(--text-fade); margin: 0 0 14px; }

.hero h1 {
  font-size: clamp(40px, 6vw, 68px); line-height: 1.05; letter-spacing: -0.05em; margin: 0; max-width: 760px;
}
.hero-text, .section-head p, .why-copy p, .launch-copy p, .info-card p, .usecase-card p {
  font-size: 18px; line-height: 1.7; color: var(--text-soft);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 18px; font-weight: 600; transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #fff; color: #0b0912; }
.btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.stat-card, .feature-card, .info-card, .usecase-card, .launch-card {
  background: var(--bg-soft); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.stat-card {
  min-height: 84px; border-radius: 22px; display: flex; align-items: center; padding: 18px; color: var(--text-soft); font-weight: 600;
}
.hero-media img {
  border-radius: 30px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}

.section { padding: 64px 0; }
.section-head { max-width: 820px; margin-bottom: 28px; }
.section h2 {
  font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.04em; margin: 0 0 16px;
}

.feature-grid, .usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .usecase-card { border-radius: var(--radius); overflow: hidden; padding: 22px; }
.feature-card img { border-radius: 20px; margin-bottom: 18px; }
.feature-card h3, .usecase-card h3, .info-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -0.03em; }
.text-only { display: flex; flex-direction: column; justify-content: flex-start; min-height: 260px; }
.mini-icon {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(255, 100, 200, 0.2), rgba(166, 107, 255, 0.16));
  border: 1px solid rgba(255,255,255,0.08); color: #ffd4ef; font-weight: 800;
}

.why-grid, .launch-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: start; }
.why-copy { padding: 10px 4px 0 0; }
.why-side { display: grid; gap: 20px; }
.info-card, .launch-card { border-radius: 32px; padding: 28px; }

.bullet-list, .launch-card ul { margin: 0; padding: 0; list-style: none; }
.bullet-list li, .launch-card li {
  position: relative; padding-left: 22px; line-height: 1.7; color: var(--text-soft); margin-bottom: 14px;
}
.bullet-list li::before, .launch-card li::before {
  content: ""; width: 9px; height: 9px; border-radius: 999px; position: absolute; left: 0; top: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.usecase-label {
  display: inline-block; margin-bottom: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: #ffd4ef; background: rgba(255, 100, 200, 0.12); border: 1px solid rgba(255, 100, 200, 0.18);
  padding: 8px 12px; border-radius: 999px;
}

.launch-card { background: rgba(255, 100, 200, 0.11); border-color: rgba(255, 100, 200, 0.2); }
.launch-card-title {
  display: inline-block; margin-bottom: 18px; color: #ffd4ef; font-size: 14px; text-transform: uppercase; letter-spacing: 0.18em;
}

.site-footer {
  padding: 26px 0 40px; color: var(--text-fade); border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(4, 3, 10, 0.72); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; z-index: 50; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  width: min(620px, 100%); border-radius: 28px; background: #0d0a18; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6); overflow: hidden;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-head h2 { margin: 0; font-size: 28px; letter-spacing: -0.03em; }
.modal-close {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: #fff; font-size: 24px; cursor: pointer;
}
.modal-body { padding: 24px; color: var(--text-soft); line-height: 1.8; }
.modal-body strong { color: #fff; }
.modal-body a { color: #ffd4ef; }

@media (max-width: 1024px) {
  .hero-grid, .feature-grid, .usecase-grid, .why-grid, .launch-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .feature-grid, .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .nav { min-height: 72px; }
  .nav-links { display: none; }
  .hero { padding-top: 42px; }
  .hero-stats, .feature-grid, .usecase-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero-text, .section-head p, .why-copy p, .launch-copy p, .info-card p, .usecase-card p { font-size: 16px; }
  .btn { width: 100%; }
  .nav-right { gap: 8px; }
  .imprint-btn { padding: 10px 12px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
