:root {
  --bg: #0b1220;
  --card: #111827;
  --accent: #00F5C4;
  --accent-soft: rgba(0,245,196,0.08);
  --text: #e5e7eb;
  --muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* NAVIGATION */

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links a {
  color: var(--muted);
  margin: 0 16px;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

/* BUTTONS */

.btn-primary {
  background: linear-gradient(135deg, #00F5C4, #00C9A7);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  color: #001018;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--accent-soft);
}

/* HERO */

.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* TRUST SECTION */

.trust {
  padding: 80px 20px;
}

.trust-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trust-card {
  background: var(--card);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.trust-card h3 {
  margin-top: 0;
}

.trust-card p {
  color: var(--muted);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}