@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Mono&display=swap');

:root {
  --bg: #070913;
  --bg-card: #0e1220;
  --bg-card-hover: #171c2f;
  --border: #1e253b;
  --green: #2ecc71;
  --green-glow: rgba(46, 204, 113, 0.15);
  --blue: #5c86ff;
  --deep-blue: #2c33e5;
  --blue-glow: rgba(92, 134, 255, 0.15);
  --brand-gradient: linear-gradient(135deg, #2ecc71, #2c33e5);
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --sans: 'Outfit', sans-serif;
  --mono: 'DM Mono', monospace;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Layout & Structure ────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ────────────────────────────────────────── */

header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background-color: rgba(7, 9, 19, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

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

.btn-cta {
  background: var(--brand-gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.3);
}

/* ── Hero Section ──────────────────────────────────────── */

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 134, 255, 0.08) 0%, rgba(7, 9, 19, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #2ecc71, #5c86ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-secondary {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: background-color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--text-muted);
}

/* Mockup Screenshot */
.mockup-container {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-card);
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 12px;
  background-color: rgba(7, 9, 19, 0.4);
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.mockup-img {
  width: 100%;
  display: block;
  border-radius: 0 0 12px 12px;
  object-fit: cover;
}

/* ── Features Section ────────────────────────────────── */

.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--text-muted);
  background-color: var(--bg-card-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  background-color: var(--blue-glow);
  color: var(--blue);
}

.card.green-accent .card-icon {
  background-color: var(--green-glow);
  color: var(--green);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ── Security & Trust ────────────────────────────────── */

.security {
  padding: 80px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.security-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.security-text {
  flex: 1;
}

.security-text h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.security-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

.security-bullets {
  list-style: none;
  margin-top: 24px;
}

.security-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

.security-bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

.security-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.shield-graphic {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--blue-glow) 0%, rgba(7, 9, 19, 0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  border: 1px dashed rgba(92, 134, 255, 0.2);
}

/* ── Legal Docs Style (Terms & Privacy Pages) ─────────── */

.legal-content {
  max-width: 760px;
  margin: 60px auto 100px;
  padding: 0 16px;
}

.legal-content h1 {
  font-size: 44px;
  text-align: left;
  margin-bottom: 16px;
  margin-left: 0;
}

.legal-meta {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.legal-body p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.legal-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── Footer ────────────────────────────────────────────── */

footer {
  padding: 60px 0 40px;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 24px;
  height: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ── Responsive Grid & Media Queries ───────────────────── */

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
  .subtitle {
    font-size: 16px;
  }
  .security-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }
  .security-bullets li {
    justify-content: center;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
}
