:root {
  --bg-primary: #13151A;
  --bg-secondary: #1E1E27;
  --bg-card: rgba(27, 27, 29, 0.50);
  --accent: #FF303E;
  --accent-hover: rgba(255, 48, 62, 0.8);
  --text-primary: #FFFFFF;
  --text-secondary: #A5A8B3;
  --text-muted: rgba(255, 255, 255, 0.698);
  --border-color: rgba(255, 255, 255, 0.1);
  --font-main: 'Mulish', sans-serif;
  --font-heading: 'Work Sans', sans-serif;
  --radius-card: 16px;
  --radius-btn: 6px;
  --shadow-card: 0px 2px 1px rgba(0,0,0,0.05), 0px 0px 1px rgba(0,0,0,0.25);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.faq-page,
body.info-page {
  margin: 0;
  background-color: var(--bg-primary);
  background-image: url("bg-img.a0d81273.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1280px) {
  body.faq-page,
  body.info-page {
    background-size: inherit;
  }
}

@media screen and (max-width: 560px) {
  body.faq-page,
  body.info-page {
    background-image: url("bg-mobile.1d35b660.png");
    background-color: #131313;
    background-position: right 0;
    background-size: contain;
  }
}

/* ── SITE HEADER ─────────────────────────────────────────── */

.site-header {
  height: 51px;
  position: sticky;
  top: 0;
  z-index: 1100;
  background-color: #1E1E27;
  backdrop-filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  display: flex;
  align-items: center;
  padding: 8px 20px;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
}

.site-header__logo {
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-header__logo:hover {
  opacity: 0.7;
}

.site-header__logo img {
  height: 30px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}

.site-header__spacer {
  flex: 1;
}

.site-header__nav-link {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
  transition: background-color 0.2s;
  line-height: 1.5rem;
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -9px;
  left: 0;
  border-radius: 16px;
  background: var(--accent);
  transform-origin: right bottom;
  transition: transform 0.25s ease-out;
}

.site-header__nav-link:hover::after,
.site-header__nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left bottom;
}

.site-header__nav-link:hover {
  background-color: rgba(56, 61, 81, 0.04);
}

.site-header__cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1C;
  background-color: var(--accent);
  border: none;
  border-radius: var(--radius-btn);
  padding: 6px 16px;
  line-height: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
}

.site-header__cta:hover {
  opacity: 0.8;
}

@media screen and (max-width: 639px) {
  .site-header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header__nav {
    display: none;
  }
}

/* ── PAGE WRAPPER ─────────────────────────────────────────── */

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (min-width: 760px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 960px) {
  .container {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1575px) {
  .container {
    max-width: unset;
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media (min-width: 1800px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1440px;
  }
}

/* ── HERO SECTION ─────────────────────────────────────────── */

.hero {
  padding: 56px 0 48px;
  color: var(--text-primary);
}

@media (min-width: 960px) {
  .hero {
    padding: 72px 0 56px;
  }
}

.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02875rem;
  text-transform: uppercase;
  color: #1A1A1C;
  background: var(--accent);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 960px) {
  .hero__title {
    font-size: 3rem;
  }
}

.hero__subtitle {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 0 32px;
}

.hero__accent {
  color: var(--accent);
}

.hero__breadcrumb {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero__breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.hero__breadcrumb a:hover {
  color: var(--text-primary);
}

.hero__breadcrumb-sep {
  opacity: 0.5;
}

/* ── SECTION GENERAL ──────────────────────────────────────── */

.section {
  padding: 48px 0;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 960px) {
  .section {
    padding: 64px 0;
  }
}

.section--alt {
  background: rgba(30, 30, 39, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .section__title {
    font-size: 1.75rem;
  }
}

.section__subtitle {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 40px;
  max-width: 640px;
  line-height: 1.6;
}

.section__header {
  margin-bottom: 40px;
}

/* ── FAQ CARDS ────────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-card {
  background: var(--bg-card);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-card:hover {
  border-color: rgba(255, 48, 62, 0.35);
}

.faq-card__question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  user-select: none;
  list-style: none;
}

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

.faq-card__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

details[open] .faq-card__question::after {
  transform: rotate(45deg);
}

.faq-card__answer {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 24px 24px;
  margin: 0;
}

.faq-card__answer a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.faq-card__answer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── FAQ GRID (2 columns on large screens) ────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 960px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-grid .faq-card {
  height: fit-content;
}

/* ── INFO / CONTENT SECTIONS ──────────────────────────────── */

.info-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 760px) {
  .info-block {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}

.info-block__label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02875rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-block__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.35;
}

@media (min-width: 760px) {
  .info-block__heading {
    font-size: 1.4rem;
    margin-top: 4px;
  }
}

.info-block__body {
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.info-block__body p {
  margin: 0 0 16px;
}

.info-block__body p:last-child {
  margin-bottom: 0;
}

.info-block__body a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.info-block__body a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.info-block__body ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.info-block__body ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-block__body ul li::marker {
  color: var(--accent);
}

/* ── STAT CARDS ───────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
  line-height: 1.2;
}

.stat-card__label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ── FEATURE CARDS ────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 48, 62, 0.35);
}

.feature-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 48, 62, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.25rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.35;
}

.feature-card__text {
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ── DIVIDER ──────────────────────────────────────────────── */

.section-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--accent);
  color: #1A1A1C;
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--secondary {
  background: rgba(56, 61, 81, 0.5);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn--secondary:hover {
  background: rgba(56, 61, 81, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn--ghost:hover {
  border-color: rgba(255, 48, 62, 0.5);
  color: var(--accent);
}

.btn--rounded {
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

/* ── BACK / HOME BUTTON ───────────────────────────────────── */

.back-btn-wrap {
  padding: 40px 0 56px;
  display: flex;
  justify-content: center;
}

/* ── INLINE LINKS ─────────────────────────────────────────── */

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  background: transparent;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0;
  align-items: flex-start;
}

@media (min-width: 760px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }
}

.site-footer__copy {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.site-footer__copy a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer__copy a:hover {
  text-decoration: underline;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__link {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: var(--text-primary);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.site-footer__social-link:hover {
  color: var(--text-primary);
}

/* ── NOTICE / CALLOUT BLOCK ───────────────────────────────── */

.callout {
  background: rgba(255, 48, 62, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.callout strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ── TABLE OF CONTENTS SIDEBAR (optional) ─────────────────── */

.toc {
  background: var(--bg-card);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.toc__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02875rem;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc__item a {
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.toc__item a:hover {
  color: var(--accent);
}

/* ── TAGS / BADGE ─────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02875rem;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.25rem;
  color: #1A1A1C;
  background: var(--accent);
}

.badge--muted {
  background: rgba(255, 48, 62, 0.15);
  color: var(--accent);
}

/* ── UTILITY ──────────────────────────────────────────────── */

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-secondary); }
.text-center   { text-align: center; }
.hidden        { display: none; }

@media (max-width: 639px) {
  .hidden-mobile { display: none; }
}

@media (min-width: 640px) {
  .hidden-desktop { display: none; }
}