:root {
  --bg: #0b0b10;
  --surface: rgba(20, 20, 30, 0.78);
  --surface-2: rgba(255, 255, 255, 0.03);
  --text: #f4f6ff;
  --muted: #a8b0c4;
  --border: rgba(255, 255, 255, 0.12);
  --grad-1: #7B2FBE;
  --grad-2: #3B82F6;
  --ok: #7ef2b8;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 400px at 15% -5%, rgba(123,47,190,0.25), transparent 45%), var(--bg);
  color: var(--text);
}

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

.bg-glow {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .28;
}
.glow-1 { background: var(--grad-1); top: -140px; left: -100px; }
.glow-2 { background: var(--grad-2); bottom: -180px; right: -120px; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  margin: 0;
  font-weight: 800;
  line-height: 1;
}
.brand-tag {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.launch-btn {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  transition: transform .2s ease, box-shadow .2s ease;
}
.launch-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}

.hero {
  padding: 22px 0 12px;
}
.eyebrow {
  margin: 0;
  letter-spacing: .14em;
  font-size: 12px;
  color: #b5c6ff;
  font-weight: 700;
}
.hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  line-height: 1.15;
}
.hero-sub {
  margin: 0;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
}

.search-wrap {
  margin-top: 16px;
}
.search-wrap input {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}
.search-wrap input:focus {
  border-color: rgba(123,47,190,0.7);
  box-shadow: 0 0 0 3px rgba(123,47,190,0.18);
}

.faq-card, .contact-card {
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.faq-head {
  padding: 18px 18px 8px;
}
.faq-head h2 {
  margin: 0;
  font-size: 1.2rem;
}
.faq-head p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.faq-list {
  padding: 6px 12px 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 10px;
  padding: 15px 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.faq-q .chev {
  color: #c9cde1;
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item.open .faq-q .chev {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  padding: 0 6px;
  transition: max-height .26s ease, padding .26s ease;
}
.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 6px 15px;
}

.contact-card {
  padding: 18px;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}
.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.email-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
}

.footer {
  margin-top: 18px;
  padding: 16px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.no-results {
  margin: 12px 0 4px;
  border: 1px dashed var(--border);
  background: var(--surface-2);
  color: var(--muted);
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
}

@media (max-width: 720px) {
  .topbar { padding: 14px 0; }
  .brand-logo { width: 32px; height: 32px; }
  .launch-btn { padding: 9px 12px; font-size: 13px; }
  .faq-q { font-size: 14px; }
  .faq-a { font-size: 13px; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }
}