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

:root {
  --bg: #0C0C0D;
  --panel: rgba(255,255,255,0.05);
  --muted: #C6C0B2;
  --text: #F3EEDF;
  --accent: #F2B300;
  --accent-2: #E9D9B8;
  --stroke: rgba(255,255,255,0.12);
  --shadow: 0 25px 70px rgba(0,0,0,0.55);
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(242, 179, 0, 0.12), transparent 25%),
              radial-gradient(circle at 80% 10%, rgba(233, 217, 184, 0.12), transparent 26%),
              radial-gradient(circle at 85% 80%, rgba(61, 220, 132, 0.12), transparent 32%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(14,17,24,0.9) 0%, rgba(14,17,24,0.7) 100%);
  padding: 14px 20px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 17px;
}
.brand .logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #0B0B0B;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(124,243,209,0.4); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0B0B0B;
  box-shadow: 0 18px 35px rgba(242,179,0,0.25);
  border: none;
}
.btn.ghost { background: transparent; }

.hero {
  margin: 42px 0 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
}
.hero-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: -40% auto auto 65%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(124,243,209,0.25), transparent 55%);
  filter: blur(14px);
  opacity: 0.8;
  z-index: -1;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.badge {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  font-weight: 600;
  color: #DDE5F1;
  font-size: 13px;
}

.floating {
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.floating strong { font-size: 15px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.metric {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
}
.metric .value {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

section { margin: 64px 0; }

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.section-title h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.2px;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,243,209,0.14);
  color: #0B1518;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.price-card {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}
.price-card .tag { color: var(--muted); font-size: 13px; }
.price-card .amount { font-size: 32px; font-weight: 800; letter-spacing: -0.3px; }
.price-card ul { padding-left: 16px; color: var(--muted); margin: 6px 0 0; line-height: 1.5; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.step {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
  display: grid;
  gap: 6px;
}
.step .num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124,243,209,0.14);
  color: #0B1518;
  font-weight: 800;
}

.faq { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { color: var(--muted); margin: 10px 0 0; }

footer {
  margin-top: 56px;
  padding: 24px 0 10px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--stroke);
}

.cta-bar {
  margin-top: 34px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, rgba(124,243,209,0.14), rgba(108,199,255,0.12));
  color: #0C1016;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-bar strong { font-size: 18px; }

@media (max-width: 640px) {
  header { position: static; }
  .cta-bar { align-items: flex-start; }
  .nav-actions { width: 100%; justify-content: flex-start; }
}

/* Legal pages */
body.legal-page {
  background: #0f1117;
  color: #f5f5f7;
}
.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}
.legal-card {
  background: #161922;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.legal-card h2 { margin-top: 0; }
.legal-card ul { margin: 8px 0 0 18px; }

