/* Base */
:root {
  --bg: #0a0a0a;
  --panel: #0f0f10;
  --card: #101114;
  --text: #e6e6e6;
  --muted: #9ea3a9;
  --accent: #E83E3E; /* coral/red */
  --accent-600: #cc2f2f;
  --accent-700: #b22626;
  --border: rgba(232, 62, 62, 0.25);
  --outline: rgba(232, 62, 62, 0.55);
  --shadow: 0 10px 30px rgba(232, 62, 62, 0.12), 0 2px 8px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative; /* for background layer stacking */
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.8);
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
  text-decoration: none;
}
.nav a {
  color: var(--text);
  opacity: 0.85;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
}
.nav a:hover { opacity: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .08s ease, background .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--outline);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-600); }
.btn-primary:active { background: var(--accent-700); }

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(232,62,62,0.35);
}
.btn-ghost:hover { background: rgba(232,62,62,0.08); }

.btn-block { width: 100%; }

.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: none;
  margin: 0 0 10px;
}

/* Hero */
.hero { padding: 60px 0 30px; position: relative; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}
.hero-copy h1 {
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.15;
  margin: 6px auto 14px;
  text-align: center !important;
}
.hero-copy .accent { color: var(--accent); }
.sub { color: var(--muted); max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center !important; }

.cta-row { display: flex; gap: 12px; margin: 20px 0 10px; flex-wrap: wrap; justify-content: center; }

.trust { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 14px; }
.trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(232,62,62,0.8); opacity: .9; }

.hero-visual { position: relative; min-height: 320px; }

.hero-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(16,17,20,0.85), rgba(16,17,20,0.65));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}
.hero-card h3 { margin-top: 0; }
.hero-card ul { margin: 0; padding-left: 18px; color: var(--muted); }

/* Sections */
.section { padding: 56px 0; }
.grid { display: grid; gap: 18px; }
.grid.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.card-title { margin: 0 0 8px; color: #fff; }

.security { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; align-items: start; }
.checks { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.checks li { margin: 6px 0; }

.step { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; position: relative; }
.step-num {
  position: absolute; top: -12px; left: -12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent);
  color: #fff; font-weight: 800; display: grid; place-items: center; border: 2px solid #000;
}

/* CTA band */
.cta { padding: 64px 0; }
.cta-inner { text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.muted { color: var(--muted); }

/* Background dotted field layered behind everything */
body::before {
  display: none !important;
  content: none !important;
  background: none !important;
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* Integrations bar */
.integrations { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:12px; color: var(--muted); font-size: 13px; }
.integrations .label { text-transform: uppercase; font-size: 11px; color: #888; margin-right: 6px; letter-spacing: .3px; }
.pills { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.pill { border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); color:#b9bec4; padding: 4px 8px; border-radius: 999px; font-size: 12px; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease;
}

.faq-item summary:hover {
  background: rgba(232,62,62,0.06);
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease;
}

.faq-item[open] summary::before {
  transform: rotate(180deg);
}

.faq-question {
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  animation: slideDown .3s ease;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* Responsive */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .orbs { top: -10px; right: -10px; width: 100%; height: 100%; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hero { padding-top: 34px; }
  .cta-row { gap: 10px; }
  .security { grid-template-columns: 1fr; }
}
