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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Roboto Condensed", system-ui, sans-serif;
  background: linear-gradient(135deg, #994c03 0%, #0a0a0a 28%, #0a0a0a 72%, #1a6b3e 100%);
  background-attachment: fixed;
  color: #f2f2f2;
  min-height: 100vh;
  line-height: 1.65;
}

a { color: #ff8a33; text-decoration: none; }
a:hover { color: #ffc089; text-decoration: underline; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3.5rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.brand:hover { text-decoration: none; color: inherit; }

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.88rem;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.top-nav a:hover { color: #fff; text-decoration: none; }
.top-nav a[aria-current="page"] { color: rgba(255, 255, 255, 0.88); }

.kicker {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 107, 0, 0.85);
  margin-bottom: 0.55rem;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.2;
  margin-bottom: 1.15rem;
  color: #fff;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.28rem;
  margin: 2rem 0 0.7rem;
  color: #fff;
}

p { margin: 0 0 1rem; color: rgba(242, 242, 242, 0.9); }

.lead { font-size: 1.08rem; color: rgba(255, 255, 255, 0.92); }

ul {
  margin: 0 0 1.1rem 1.15rem;
  color: rgba(242, 242, 242, 0.9);
}
li { margin: 0 0 0.7rem; }
li strong { color: #fff; font-weight: 700; }

.cta {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b00, #d70d7d);
  color: #fff !important;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none !important;
}
.cta:hover { filter: brightness(1.08); }

.page-foot {
  margin-top: 2.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-foot a { color: rgba(255, 255, 255, 0.48); }
.page-foot .sep { margin: 0 0.45rem; opacity: 0.45; }

@media (max-width: 600px) {
  .top { flex-direction: column; align-items: flex-start; }
}
