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

:root {
  --blue:       #4086F6;
  --orange:     #EE4029;
  --yellow:     #FABB14;
  --bg:         #000000;
  --bg-section: #080808;
  --bg-card:    #111111;
  --text:       #FFFFFF;
  --text-muted: #BBBBBB;
  --border:     #2A2A2A;
}

body {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  background:
    radial-gradient(ellipse 95% 75% at 90% 0%,   rgba(64, 134, 246, 0.82) 0%, transparent 100%),
    radial-gradient(ellipse 85% 65% at 10% 100%,  rgba(238, 64,  41, 0.70) 0%, transparent 100%),
    #000;
  background-attachment: fixed;
  color: var(--text);
}

strong { font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ===== NAV ===== */
nav {
  background: #000;
  padding: 0 2.5rem;
  position: sticky;
  top: 0; z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 3px solid var(--orange);
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 3px solid var(--orange);
}

.footer-logo img { height: 36px; width: auto; }

.footer-copy {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

footer a {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--orange); }
