@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --panel-hover: #1a1a1a;
  --text: #f2f2f2;
  --muted: #a7abb2;
  --border: #2d323a;
  --red: #cc2222;
  --red-bright: #e42c2c;
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.faq-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
}

.faq-nav-inner {
  width: min(1120px, calc(100% - 2rem));
  min-height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.faq-brand img {
  width: auto;
  height: 2.5rem;
}

.faq-brand span span {
  color: var(--red-bright);
}

.faq-home {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.faq-home:hover {
  color: var(--text);
}

.faq-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.faq-kicker {
  margin: 0 0 0.75rem;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-page h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.faq-intro {
  max-width: 700px;
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  background: var(--panel);
}

.faq-item--featured {
  border-left: 4px solid var(--red);
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.5rem 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  content: "+";
  color: var(--red-bright);
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-53%);
}

.faq-item[open] summary {
  background: var(--panel-hover);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: -2px;
}

.faq-answer {
  margin: 0;
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
}

.faq-footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--panel);
  text-align: center;
}

.faq-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq-footer a {
  color: var(--red-bright);
}

@media (max-width: 560px) {
  .faq-brand {
    font-size: 0.95rem;
  }

  .faq-brand img {
    height: 2.1rem;
  }

  .faq-home {
    font-size: 0.8rem;
  }

  .faq-page {
    padding-top: 3.5rem;
  }

  .faq-item summary {
    font-size: 1.2rem;
  }
}