/* ── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #f8c909;
  --red:      #b61e33;
  --red-dark: #8e1728;
  --black:    #040500;
  --white:    #ffffff;
  --muted:    rgba(4,5,0,0.55);
}

html { scroll-behavior: smooth; }

body {
  background: var(--yellow);
  font-family: 'Inter', sans-serif;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: 3px solid var(--black);
  text-decoration: none;
  transition: top 80ms ease, box-shadow 80ms ease;
  box-shadow: 0 4px 0 var(--black);
  position: relative;
  top: 0;
}
.btn:hover { top: -2px; box-shadow: 0 6px 0 var(--black); }
.btn:active { top: 3px; box-shadow: 0 1px 0 var(--black); }
.btn-primary  { background: var(--red);   color: var(--white); }
.btn-secondary { background: var(--white); color: var(--black); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 4px 0 rgba(255,255,255,0.15);
}
.btn-dark:hover  { box-shadow: 0 6px 0 rgba(255,255,255,0.15); }
.btn-dark:active { box-shadow: 0 1px 0 rgba(255,255,255,0.15); }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 24px;
  border: 3px solid var(--black);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--black);
}

/* ── Icon Box ──────────────────────────────────── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  flex-shrink: 0;
}
.icon-box-red   { background: var(--red); }
.icon-box-black { background: var(--black); }

/* ── NAV ──────────────────────────────────── */
.site-nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo em { color: var(--red); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: 2px solid rgba(255,201,9,0.2);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-dark); }

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

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 52px 24px 32px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.09);
  transition: background 0.15s;
}
.social-icon:hover { background: var(--red); }
.footer-bottom {
  max-width: 960px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
}

/* ── Page Header (inner pages) ──────────────────────────────────── */
.page-header {
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
  padding: 64px 24px 52px;
}
.page-header-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ── Prose ──────────────────────────────────── */
.prose-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 88px;
}
.prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  margin: 44px 0 12px;
  padding-top: 44px;
  border-top: 2px solid rgba(4,5,0,0.1);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(4,5,0,0.72);
  margin-bottom: 12px;
}
.prose ul { margin: 0 0 12px 22px; }
.prose ul li {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(4,5,0,0.72);
  margin-bottom: 5px;
}
.prose a { color: var(--red); font-weight: 800; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .last-updated {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 36px;
}
