@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --pitch:     #0d5c2e;
  --pitch-d:   #09401f;
  --pitch-l:   #1a7a3f;
  --gold:      #d4a843;
  --gold-d:    #a07820;
  --gold-l:    #f0c96a;
  --ink:       #111418;
  --ink-2:     #3a4048;
  --ink-3:     #6b7280;
  --surface:   #ffffff;
  --surface-2: #f4f6f8;
  --surface-3: #e9ecef;
  --border:    #dde1e6;
  --border-2:  #c5cbd3;
  --error:     #b91c1c;
  --success:   #1a7f4b;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --trans:     .18s ease;
  --nav-h:     60px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface-2);
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon {
  font-size: 22px;
  line-height: 1;
}

.nav-brand-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1;
}

.nav-brand-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-h);
  padding: 0 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-links .nav-icon { font-size: 14px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  width: 36px;
  height: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--trans);
}

.nav-toggle:hover { background: rgba(255,255,255,.08); color: #fff; }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 199;
  flex-direction: column;
  padding: 8px 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--trans);
}

.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-mobile a.active { color: var(--gold); border-left-color: var(--gold); }
.nav-mobile .nav-icon { font-size: 16px; width: 20px; text-align: center; }

/* ── HERO BANNER ─────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 36px 24px 32px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(212,168,67,.1), transparent),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(13,92,46,.2), transparent);
  pointer-events: none;
}

.page-hero-rainbow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    #1a56db 0%, #0ea5e9 20%, #7c3aed 40%,
    #be123c 60%, #f59e0b 80%, #14532d 100%
  );
}

.page-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -.3px;
  margin-bottom: 8px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.5;
}

/* ── MAIN CONTAINER ──────────────────────────────── */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.main-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.card-head {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-head-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.card-head h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.1px;
}

.card-head p {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

.card-body {
  padding: 20px 22px;
}

/* ── SECTION HEADER ──────────────────────────────── */
.sec-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sec-pip {
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--pitch);
  flex-shrink: 0;
}

.sec-header h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.1px;
}

.sec-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── PILLS / BADGES ──────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pill-green { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.pill-gold  { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.pill-blue  { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.pill-grey  { background: var(--surface-2); color: var(--ink-3); border: 1px solid var(--border); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn-primary { background: var(--pitch); color: #fff; }
.btn-primary:hover { background: var(--pitch-d); }
.btn-gold { background: var(--gold); color: var(--ink); font-weight: 700; }
.btn-gold:hover { background: var(--gold-d); }
.btn-outline { background: transparent; color: var(--ink-2); border: 1.5px solid var(--border-2); }
.btn-outline:hover { background: var(--surface-2); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 28px 24px;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer-logo span { color: var(--gold); }

.site-footer p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
  margin-top: 4px;
}

/* ── COMING SOON BOX ─────────────────────────────── */
.coming-soon {
  text-align: center;
  padding: 48px 24px;
}

.coming-soon-icon { font-size: 48px; margin-bottom: 14px; line-height: 1; }

.coming-soon h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.coming-soon p {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

.coming-soon-date {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  background: var(--pitch);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
}

/* ── UTILITY ─────────────────────────────────────── */
.hidden { display: none !important; }
.text-muted { color: var(--ink-3); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }

/* ── TABLES ──────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table.data-table th {
  background: var(--surface-2);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

table.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--surface-3);
  vertical-align: middle;
}

table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:hover td { background: var(--surface-2); }

/* ── SELECT / INPUT ──────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.field select, .field input {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 13px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--pitch);
  box-shadow: 0 0 0 3px rgba(13,92,46,.1);
}

/* ── STATUS MESSAGES ─────────────────────────────── */
.status-msg {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.status-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.status-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-warn    { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.status-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 24px 16px 22px; }
  .main, .main-wide { padding: 20px 14px 48px; }
  .card-body { padding: 16px; }
  .card-head { padding: 14px 16px; }
}
