:root {
  --bg-void: #050914;
  --bg-dark: #0a1020;
  --bg-panel: rgba(16, 24, 48, 0.68);
  --text-light: #f8fafc;
  --text-muted: #8fa2c0;
  --accent-blue: #3b82f6;
  --accent-gold: #fbbf24;
  --accent-navy: #1e3a8a;
  --glow-blue: 0 0 40px rgba(59, 130, 246, 0.18);
  --glow-gold: 0 0 40px rgba(251, 191, 36, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-void);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-gold); text-decoration: none; transition: 0.2s; }
a:hover { color: #fff; }

nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center;
  background: rgba(5, 9, 20, 0.6);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.12);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled { padding: 0.7rem 5%; background: rgba(5, 9, 20, 0.92); }

.logo {
  font-weight: 900; font-size: 1.5rem; letter-spacing: -0.03em;
  color: #fff;
}
.logo span { color: var(--accent-gold); font-weight: 700; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.nav-links a:hover { color: var(--accent-gold); }

.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 8rem 5% 5rem;
  background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 40%),
              var(--bg-void);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-size: cover; background-position: center;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; text-align: center; }
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--accent-gold); }
.hero p { font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--text-muted); max-width: 720px; margin: 0 auto 2.5rem; }
.cta {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
  color: #000; font-weight: 800; border-radius: 6px; font-size: 0.95rem;
  border: none; cursor: pointer; box-shadow: var(--glow-gold); transition: transform 0.2s;
}
.cta:hover { transform: translateY(-2px); }
.cta.secondary {
  background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold);
  box-shadow: none; margin-left: 1rem;
}

.badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 0.8rem; border: 1px solid rgba(251, 191, 36, 0.35);
  color: var(--accent-gold); border-radius: 999px; margin-bottom: 1.2rem;
  background: rgba(251, 191, 36, 0.06); text-transform: uppercase; letter-spacing: 0.08em;
}

section { padding: 6rem 5%; position: relative; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 1rem; text-align: center;
}
.section-subtitle { color: var(--text-muted); text-align: center; max-width: 700px; margin: 0 auto 3rem; font-size: 1.1rem; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.feature-card {
  background: var(--bg-panel); border: 1px solid rgba(251, 191, 36, 0.12);
  border-radius: 16px; padding: 2.2rem; backdrop-filter: blur(14px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--glow-gold); }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--accent-gold); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 1.5rem; max-width: 1300px; margin: 0 auto; }
.showcase-card {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid rgba(251, 191, 36, 0.15);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.showcase-card:hover img { transform: scale(1.05); }
.showcase-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,9,20,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
}
.showcase-overlay h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.showcase-overlay span { color: var(--text-muted); font-size: 0.85rem; }

.compliance-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 900px; margin: 3rem auto 0;
}
.compliance-badge {
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 8px; padding: 0.8rem 1.4rem; font-weight: 700;
  font-size: 0.8rem; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 0.05em;
}

.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.split-section img { width: 100%; border-radius: 16px; border: 1px solid rgba(251, 191, 36, 0.15); }
.split-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.split-section p { color: var(--text-muted); margin-bottom: 1.2rem; }

footer {
  border-top: 1px solid rgba(251, 191, 36, 0.12); padding: 3rem 5%; text-align: center;
  background: var(--bg-dark); color: var(--text-muted); font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .split-section { grid-template-columns: 1fr; }
  .cta.secondary { margin-left: 0; margin-top: 1rem; }
}
