:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --dark: #0b1020;
  --soft: #f4f6fb;
  --text: #1f2937;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.65;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  color: white;
  display: grid;
  place-items: center;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
}

/* HERO */
.hero {
  position: relative;
  padding: 130px 0;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #8b5cf6, transparent 60%),
              radial-gradient(circle at bottom right, #6366f1, transparent 60%),
              #0b1020;
  z-index: -1;
}

.hero-inner {
  text-align: center;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
}

.hero h1 span {
  color: #fde68a;
}

.hero h2 {
  font-weight: 400;
  margin: 1.2rem 0;
}

.hero-desc {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-highlight {
  margin: 2rem 0;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: white;
  color: var(--primary);
}

.outline {
  border: 2px solid white;
  color: white;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 2rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.soft { background: var(--soft); }
.dark { background: var(--dark); }
.aurora {
  background: linear-gradient(135deg,var(--primary),var(--secondary));
}

.light { color: white; }

/* LAYOUTS */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}

.panel {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.emphasis {
  border-left: 6px solid var(--primary);
}

.pain-list li {
  margin: 0.7rem 0;
}
.pain-list li::before {
  content: "❌ ";
}

.strong-note {
  margin-top: 1.5rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
}

.glass {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2rem;
  color: white;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.module-card {
  background: white;
  border-radius: 22px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.module-card ul {
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.live { background: #dcfce7; color: #166534; }
.stable { background: #e0e7ff; color: #3730a3; }
.progress { background: #fef3c7; color: #92400e; }

.flow div {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 1.2rem;
  border-radius: 16px;
  margin: 0.8rem 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}

.compliance-note {
  font-weight: 500;
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
  color: white;
}

.contact {
  background: var(--dark);
  color: white;
  text-align: center;
}

.contact a {
  color: #fde68a;
}

footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 2rem 0;
}
