@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #0f1117;
  --bg-soft: #151a24;
  --card: #1b2231;
  --text: #f5f7ff;
  --muted: #b7c0d8;
  --accent: #ff3b5c;
  --accent-2: #4c7dff;
  --accent-3: #7cf5ff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(5, 8, 15, 0.45);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(1000px 600px at 10% -20%, rgba(124, 245, 255, 0.15), transparent),
    radial-gradient(900px 700px at 90% -10%, rgba(76, 125, 255, 0.18), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15, 17, 23, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c0f18;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
}

.hero {
  padding: 60px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero p { color: var(--muted); margin: 0 0 24px; font-size: 1.05rem; }

.cta-group { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c0f18;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover { transform: translateY(-2px); }

.media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.media-frame.square { aspect-ratio: 1 / 1; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.section { padding: 60px 0; }
.section h2 { font-family: 'Space Grotesk', sans-serif; margin: 0 0 18px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section p.lead { color: var(--muted); max-width: 760px; }

.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(6, 10, 20, 0.35);
}

.card h3 { margin-top: 0; }
.card p { color: var(--muted); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 245, 255, 0.12);
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.stats .card { text-align: center; }

.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item h3 { margin-bottom: 8px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.blog-card { cursor: pointer; }
.blog-card h3 { margin: 12px 0 8px; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active { display: flex; }

.modal-content {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  max-width: 760px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.modal-close {
  float: right;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 10px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; right: 4%; top: 62px; background: var(--bg-soft); padding: 16px; border-radius: 14px; border: 1px solid var(--border); }
}
