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

:root {
  --navy:    #0a1628;
  --dark:    #1a2a3a;
  --accent:  #e8600a;
  --accent2: #fb923c;
  --light:   #f8f9fb;
  --white:   #ffffff;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 56px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #1e293b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(232,96,10,0.28);
  outline-offset: 2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(10,22,40,0.06);
}

.nav-links .staff-link {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  margin-left: 8px;
}
.nav-links .staff-link:hover {
  background: #d0540a;
  border-color: #d0540a;
  color: var(--white);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 24px 80px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 18%, rgba(0,0,0,0) 42%),
    linear-gradient(135deg, #d96a1b 0%, #ea7b20 52%, #f59a45 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.page-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── SECTIONS ── */
section { padding: 88px 24px; }

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,96,10,0.3);
}
.btn-primary:hover {
  background: #d0540a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,96,10,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── FOOTER ── */
footer {
  background: #060e1c;
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .nav-logo img { height: 56px; }
  .nav-links {
    gap: 6px;
    width: 100%;
    flex-wrap: wrap;
  }
  .nav-links li { display: block; }
  .nav-links a { padding: 8px 12px; }
  .page-hero { padding: 168px 24px 72px; }
  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
