:root {
  --navy: #071b2d;
  --navy-2: #0f2d4d;
  --gold: #e2b54f;
  --gold-soft: #f5d98b;
  --cream: #f7f3e8;
  --text: #19344d;
  --muted: #6d7a8d;
  --shadow: 0 18px 45px rgba(7, 27, 45, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fdf9f0 0%, #f2f6fb 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1150px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-title { font-size: 2rem; margin-bottom: 1rem; color: var(--navy); }
.section-copy { color: var(--muted); max-width: 700px; margin-bottom: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.35rem; border-radius: 999px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #c58d26); color: white; box-shadow: 0 14px 28px rgba(226, 181, 79, .25); }
.btn-secondary { background: white; color: var(--navy); box-shadow: var(--shadow); }
.topbar { background: rgba(7,27,45,.95); color: white; position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .8rem; font-weight: 700; letter-spacing: .04em; }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #ffdf87); display: grid; place-items: center; color: var(--navy); font-weight: 700; }
.nav-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,.9); font-weight: 500; }
.nav-links a:hover { color: var(--gold-soft); }
.hero { padding: 5rem 0 4rem; background: linear-gradient(112deg, rgba(7,27,45,.95), rgba(15,45,77,.84)); color: white; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(226,181,79,.24), transparent 35%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.2rem, 3vw, 3.4rem); margin: 0 0 1rem; line-height: 1.1; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.8rem; }
.hero-card, .info-card, .card, .admin-card { background: rgba(255,255,255,.96); color: var(--text); border-radius: 24px; box-shadow: var(--shadow); }
.hero-card { padding: 1.25rem; }
.hero-card img { border-radius: 20px; }
.highlight-pill { display: inline-flex; padding: .45rem .8rem; border-radius: 999px; background: rgba(226,181,79,.18); color: var(--gold-soft); font-size: .92rem; margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.stat { padding: 1rem 1.1rem; border-radius: 18px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; font-size: 1.3rem; color: var(--gold-soft); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.card, .info-card { padding: 1.35rem; }
.card h3, .info-card h3 { margin-top: 0; color: var(--navy); }
.card p, .info-card p { color: var(--muted); }
.section-alt { background: rgba(255,255,255,.68); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.list-check { padding-left: 1.1rem; color: var(--muted); }
.list-check li { margin-bottom: .55rem; }
.form-grid { display: grid; gap: 1rem; }
label { display: grid; gap: .4rem; font-weight: 600; color: var(--navy); }
input, textarea { border: 1px solid #dfe7f0; border-radius: 12px; padding: .8rem .9rem; font: inherit; }
textarea { min-height: 110px; resize: vertical; }
.admin-card { padding: 1.5rem; margin-top: 1.2rem; }
.status { margin-top: 1rem; font-weight: 600; color: var(--navy); }
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 1.5rem 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 850px) {
  .hero-grid, .two-col, .card-grid, .stats-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
