:root {
  --navy: #0f1f3d;
  --navy-light: #1a3260;
  --gold: #c9a227;
  --gold-light: #f0d060;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 44px; }
.nav-logo-text {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13.5px;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,162,39,0.12);
}
.nav-apply {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-apply:hover { background: var(--gold-light) !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a6e 100%);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/11062b_f45c8724ba06470ab65ea35c97405911~mv2.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,162,39,0.2);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  margin-left: 12px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }

/* SECTIONS */
.section { padding: 64px 40px; }
.section-narrow { max-width: 860px; margin: 0 auto; }
.section-wide { max-width: 1160px; margin: 0 auto; }
.section-gray { background: var(--gray-100); }
.section-navy { background: var(--navy); color: var(--white); }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 40px;
}
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
  .section { padding: 48px 20px; }
  .hero { padding: 60px 20px; }
  .nav-links { display: none; }
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* AWARD BADGE */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  color: #92700a;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gold-badge {
  background: linear-gradient(135deg, #f0d060, #c9a227);
  color: var(--navy);
  border: none;
  font-weight: 700;
}

/* WINNER CARD */
.winner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
}
.winner-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.winner-card .category { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }

/* STEPS */
.steps { display: flex; gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.2));
}
.step { flex: 1; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.step p { font-size: 13.5px; color: var(--gray-600); }
@media (max-width: 700px) {
  .steps { flex-direction: column; }
  .steps::before { display: none; }
}

/* TABLE */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-100); }

/* FORMS */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
label .req { color: var(--danger); margin-left: 2px; }
label .opt { color: var(--gray-400); font-weight: 400; font-size: 12px; margin-left: 4px; }
input[type=text], input[type=email], input[type=number], select, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-800);
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
textarea { resize: vertical; min-height: 100px; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.checkbox-row input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-row label { margin: 0; font-size: 13.5px; font-weight: 400; cursor: pointer; }
.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 0 6px;
  border-bottom: 2px solid var(--gold);
  margin: 28px 0 20px;
}
.form-note {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: #713f12;
  margin-bottom: 20px;
}
.btn-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
#form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--success);
  font-weight: 600;
  margin-top: 16px;
}
#form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 14px;
  color: var(--danger);
  font-size: 14px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 16px; }
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 56px 40px;
  text-align: center;
}
.page-header h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* CALENDAR */
.calendar-phase {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  margin-bottom: 20px;
}
.calendar-phase h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.calendar-phase .tbd {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.category-pill {
  display: inline-block;
  background: rgba(201,162,39,0.1);
  color: #92700a;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  margin: 3px;
}

/* FOOTER */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 40px;
  text-align: center;
  font-size: 13.5px;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-copy { color: rgba(255,255,255,0.4); }

/* DIVIDER */
.divider { height: 1px; background: var(--gray-200); margin: 32px 0; }

/* STAT STRIP */
.stat-strip {
  display: flex;
  gap: 0;
  background: var(--gold);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--navy); opacity: 0.8; font-weight: 600; }
