:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a3a3a3;
  --accent: #ff3a00;
  --accent-2: #ffb700;
  --radius: 14px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.muted { color: var(--muted); }

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  animation: fadeUp 0.6s ease-out;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 20px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  z-index: 10;
}

.nav nav { display: flex; gap: 14px; align-items: center; }
.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
}
.nav a:hover { background: var(--panel); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo--qneesh {
  background: linear-gradient(135deg, #ff3a00 0%, #ffb700 100%);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.hero__text h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0;
  line-height: 1.1;
}

.hero__text .lede { color: var(--muted); max-width: 560px; }

.hero__card {
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55); }

.card__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 197, 7, 0.16);
  color: #0bc507;
  font-weight: 600;
  font-size: 12px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.badge-live { background: rgba(11, 197, 7, 0.28); color: #0bc507; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.stat__value { font-size: 18px; font-weight: 700; }
.stat__label { color: var(--muted); font-size: 13px; }

.pillbar { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}

.pill--link {
  display: inline-flex;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0; }

.btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn.primary { background: #ff3a00; color: #ffffff; box-shadow: 0 12px 24px rgba(255, 58, 0, 0.25); }
.btn.secondary { background: var(--panel); border-color: rgba(255, 255, 255, 0.08); color: var(--text); }
.btn.ghost { border-color: rgba(255, 255, 255, 0.12); color: var(--text); }
.btn:hover { transform: translateY(-2px); }

.meta { display: flex; gap: 10px; align-items: center; color: var(--text); font-size: 13px; flex-wrap: wrap; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

.section { padding: 36px 0; }

.section__header h2 { margin: 8px 0; font-size: clamp(24px, 4vw, 32px); }

.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45); }
.card--pill { border-radius: 22px; background: var(--panel-strong); border-color: rgba(255, 255, 255, 0.07); }

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight__card {
  background: var(--panel-strong);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shield { font-size: 28px; line-height: 1.1; }

.bullets { list-style: none; padding: 0; margin: 12px 0 0; color: var(--muted); }
.bullets li { margin: 8px 0; }

.info-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.info-list li { display: grid; gap: 4px; }
.info-list .info-spaced { margin-bottom: 10px; }

.legal__item {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.faq {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.faq:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45); }
.faq[open] { border-color: rgba(255, 58, 0, 0.45); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  position: relative;
  font-size: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq__icon::before { content: '+'; color: var(--text); line-height: 1; font-size: 16px; }

.faq[open] .faq__icon { background: #ff3a00; border-color: #ff3a00; }
.faq[open] .faq__icon::before { content: '-'; color: #000000; }

.faq__answer { margin-top: 10px; color: var(--muted); }
.faq__answer p { margin: 0; }

.link { color: var(--text); font-weight: 600; display: inline-block; margin-top: 8px; }

.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact__actions--stack { flex-direction: column; align-items: flex-start; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  color: var(--muted);
}

.footer__links { display: flex; gap: 12px; }
.smallprint { width: 100%; color: var(--muted); font-size: 12px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(11, 197, 7, 0.25); }
  70% { box-shadow: 0 0 0 10px rgba(11, 197, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 197, 7, 0); }
}

@media (max-width: 720px) {
  .nav nav { display: none; }
  .hero__card { order: -1; }
}
