/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0066cc;
  --blue-dark: #004fa3;
  --blue-light: #E8F1FB;
  --ink: #1C1C1C;
  --mid: #374151;
  --soft: #636E72;
  --rule: #e5e7eb;
  --light: #F8F9FA;
  --white: #ffffff;
  --green: #2E7D52;
  --slate: #7B5EA7;
  --max: 860px;
  --nav-h: 64px;
  --gold: #C9A84C;
  --gold-light: #FBF4E4;
  --gold-dark: #5A3D00;
  --green-light: #E6F4EE;
  --violet: #7B5EA7;
  --violet-light: #F1EAF8;
  --navy: #1B2A4A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }
.nav-logo:hover { text-decoration: none; }

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

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--light); color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 7px 16px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; text-decoration: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── PAGE ROUTING ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  background: var(--blue);
  color: var(--white);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 640px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block;
  background: var(--white);
  color: var(--blue) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  text-decoration: none !important;
}

/* ── SECTIONS ── */
.section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--rule);
}
.section:last-child { border-bottom: none; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section.bg-light { background: var(--light); }
.section.bg-blue { background: var(--blue); color: var(--white); }
.section.bg-ink { background: var(--ink); color: var(--white); }

.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
}
.section.bg-blue .section-label,
.section.bg-ink .section-label {
  color: rgba(255,255,255,0.6);
}
.section.bg-blue .section-label::before,
.section.bg-ink .section-label::before {
  background: rgba(255,255,255,0.4);
}

.section h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section p, .section li {
  color: var(--mid);
  font-size: 16px;
}
.section.bg-blue p,
.section.bg-ink p { color: rgba(255,255,255,0.8); }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--blue-light);
  border-bottom: 1px solid #c8daf5;
  padding: 20px 24px;
}
.intro-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge {
  flex-shrink: 0;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--white);
}
.badge-blue { background: var(--blue); }
.badge-slate { background: var(--violet); }
.badge-green { background: var(--green); }

.intro-band p { font-size: 13.5px; color: var(--soft); margin: 0; }
.intro-band strong { color: var(--ink); }

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--blue);
  font-weight: 700;
  margin-top: 1px;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  background: var(--blue-light);
  border-radius: 0 8px 8px 0;
  margin: 0;
}
.quote-block p {
  font-size: 18px;
  font-style: italic;
  color: var(--ink) !important;
  margin-bottom: 8px;
}
.quote-block cite {
  font-size: 13px;
  color: var(--soft);
  font-style: normal;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 620px) { .quote-grid { grid-template-columns: 1fr; } }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px;
}
.card h3 { color: var(--ink); }
.card p { color: var(--mid); font-size: 15px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* ── COMING SOON BLOCK ── */
.coming-soon {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--rule);
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── EVENT BOX ── */
.event-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blue);
  border-radius: 10px;
  padding: 28px 32px;
  margin: 24px 0;
}
.event-box .event-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.event-box h3 { font-size: 20px; margin-bottom: 8px; }
.event-box p { color: var(--mid); font-size: 15px; margin: 0; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  text-align: center;
}
.cta-block h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(20px, 3vw, 28px);
}
.cta-block p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  text-decoration: none !important;
}
.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--rule);
  color: var(--mid) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue) !important; text-decoration: none !important; }

/* ── SECURITY ROW ── */
.security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 16px;
}
.security-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--soft);
}
.security-list li::before {
  content: '✔';
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

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

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 40px 24px;
  font-size: 13.5px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links a:hover { color: var(--white); text-decoration: none; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; width: 100%; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .cta-block { padding: 32px 24px; }
}

@media (max-width: 520px) {
  .hero { padding: 52px 20px 48px; }
  .section { padding: 44px 20px; }
}
