*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #040d1a;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ── Close / back button (X in top-left per design) ── */
.back-btn {
  display: block;
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 50;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.back-btn:hover {
  opacity: 1;
}

/* ── Content wrapper ── */
.page-wrap {
  /* max-width: 900px; */
  /* margin: 0 auto; */
  padding: 60px 40px 80px;
}

/* ── Page title ── */
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

/* ── Intro paragraphs (before first section) ── */
.intro p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 20px;
}

/* ── Sections ── */
section {
  margin-top: 48px;
}

/* ── Section headings ── */
h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 20px;
}

/* ── Body text ── */
p,
li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 16px;
}

ul,
ol {
  padding-left: 28px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

/* ── Footer ── */
footer {
  background: #050f1e;
  padding: 40px 40px 24px;
  border-top: 1px solid #0ea5f820;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #0ea5f8;
}
.footer-copy {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-wrap {
    padding: 60px 20px 60px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 22px;
  }
  p,
  li {
    font-size: 18px;
  }
  .footer-links {
    gap: 32px;
  }
}
