:root {
  --bg: #0b0b0d;
  --text: #f7f4fb;
  --muted: #b7b1c6;
  --accent: #cbb4ff;
  --line: rgba(255, 255, 255, 0.12);
  --card: #14141b;
  --font-head: "Roboto", sans-serif;
  --font-body: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-items: center;
}

.nav-pill {
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  font: inherit;
  cursor: pointer;
  position: relative;
}

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

.nav-links a::after,
.nav-pill::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-pill:hover::after,
.nav-pill:focus-visible::after,
.nav-dropdown:hover .nav-pill::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 10px;
  background: #14141b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: all 0.18s ease;
  z-index: 5;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
  padding: 6px 8px;
  border-radius: 6px;
}

.dropdown-link.is-muted {
  color: var(--muted);
}

.dropdown-link span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.social-link img {
  width: 18px;
  height: 18px;
  display: block;
}

.intro {
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--muted);
}

.intro h1 {
  font-family: var(--font-head);
  font-size: 32px;
  margin: 12px 0 12px;
  color: var(--accent);
}

.intro p {
  color: var(--muted);
  max-width: 520px;
}

.section {
  padding: 40px 0;
}

.section-head h2 {
  font-family: var(--font-head);
  margin: 0 0 6px;
  color: var(--accent);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.faq-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}

.faq-card h3 {
  margin: 0 0 8px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
}

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

.footer-bottom {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .intro {
    padding-top: 10px;
  }
}
