/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0a1628;
  --navy-90: rgba(10,22,40,0.9);
  --navy-05: rgba(10,22,40,0.05);
  --navy-10: rgba(10,22,40,0.10);
  --teal: #1a9e8f;
  --teal-light: rgba(26,158,143,0.08);
  --gold: #b8942e;
  --gold-light: rgba(184,148,46,0.12);
  --white: #fafaf9;
  --gray-50: #f7f6f4;
  --gray-100: #eeedeb;
  --gray-300: #c4c2be;
  --gray-500: #787672;
  --gray-700: #3d3b38;
  --gray-900: #1a1917;
  --red: #c53030;
  --radius: 4px;
}
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; color: var(--navy); }
h1 { font-size: 2.8rem; line-height: 1.15; letter-spacing: -0.5px; }
h2 { font-size: 2rem; line-height: 1.2; letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.1rem; font-family: system-ui, -apple-system, sans-serif; font-weight: 600; }
p { margin-bottom: 1rem; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── LAYOUT ── */
.container { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; }
section.alt { background: var(--gray-50); }
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--teal); margin-bottom: 12px; font-family: system-ui, -apple-system, sans-serif; font-weight: 600;
}
.section-intro { font-size: 1.15rem; color: var(--gray-700); max-width: 680px; margin-bottom: 40px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy); color: var(--white); font-size: 0.78rem;
  padding: 8px 0; text-align: center; letter-spacing: 0.3px;
}
.topbar a { color: var(--teal); }

/* ── HEADER ── */
header {
  background: var(--navy); border-bottom: 1px solid rgba(250,250,249,0.1);
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 400; color: var(--white); line-height: 1.2; }
.logo-text b { font-weight: 700; color: var(--teal); }
.logo-text span { font-size: 1.25rem; }
.logo-text small { display: block; font-size: 0.65rem; color: rgba(250,250,249,0.5); font-family: system-ui, -apple-system, sans-serif; letter-spacing: 0.5px; font-weight: 400; }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-size: 0.88rem; color: rgba(250,250,249,0.75); text-decoration: none;
  font-weight: 500; letter-spacing: 0.2px; padding: 4px 0;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
nav a:hover { color: var(--white); border-bottom-color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius); min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 200; padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.82rem; border-bottom: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--teal-light); border-bottom: none; }
.nav-dropdown-menu a.coming-soon { color: var(--gray-500); font-style: italic; cursor: default; }
.nav-dropdown-menu a.coming-soon:hover { background: transparent; color: var(--gray-500); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 8px 20px !important; border-radius: var(--radius); font-weight: 600;
  border-bottom: none !important; font-size: 0.82rem !important; letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; }

/* Mobile nav */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.2s; }

/* ── HERO ── */
.hero {
  background: var(--navy); color: var(--white); padding: 90px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,158,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; }
.hero h1 b { color: var(--teal); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(250,250,249,0.75); max-width: 480px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.3px; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #168a7d; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(250,250,249,0.3); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual svg { width: 240px; height: 240px; opacity: 0.9; }

/* ── THREE QUESTIONS ── */
.questions-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
  border: 1px solid var(--gray-100);
}
.questions-table th {
  background: var(--navy); color: var(--white); padding: 16px 20px; text-align: left;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.3px;
}
.questions-table th.gold-bg { background: var(--gold); color: var(--white); }
.questions-table th.red-bg { background: var(--red); color: var(--white); }
.questions-table th.navy-bg { background: #1a2d44; color: var(--white); }
.questions-table th.question-bg { background: #1a2d44; color: var(--white); }
.questions-table td { padding: 18px 20px; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.questions-table tr:first-child th { border-bottom: 3px solid rgba(255,255,255,0.15); }
.questions-table tr:last-child td { border-bottom: none; }
.questions-table tr.row-red { background: rgba(197,48,48,0.04); }
.questions-table tr.row-red td:first-child { color: inherit; font-weight: normal; }
.questions-table tr.row-red td:last-child { color: inherit; font-weight: normal; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 32px; transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.card h4 { margin-bottom: 8px; }
.card p { color: var(--gray-700); font-size: 0.9rem; margin: 0; }
.card .card-icon { font-size: 1.5rem; margin-bottom: 14px; }

/* ── VERTICAL CARDS ── */
.vertical-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.vertical-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 28px; text-align: center; transition: all 0.2s;
}
.vertical-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-color: var(--teal); }
.vertical-card .v-icon { font-size: 2.2rem; margin-bottom: 14px; }
.vertical-card h4 { margin-bottom: 6px; }
.vertical-card p { color: var(--gray-700); font-size: 0.85rem; margin: 0; }
.vertical-card.coming-soon { opacity: 0.55; }
.vertical-card .badge {
  display: inline-block; background: var(--gold-light); color: var(--gold);
  font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 10px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(250,250,249,0.7); padding: 60px 0 30px;
  font-size: 0.85rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h4 { color: var(--white); margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
footer a { color: rgba(250,250,249,0.6); }
footer a:hover { color: var(--teal); }
footer .footer-logo { font-family: Georgia, serif; font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
footer .footer-logo b { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,249,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(250,250,249,0.4);
}

/* ── INLINE-STYLE REPLACEMENTS ── */
/* Colors */
.clr-teal { color: var(--teal); }
.clr-teal-bold { color: var(--teal); font-weight: 700; }
.clr-teal-bright { color: #2dd4bf; }
.clr-teal-bright-bold { color: #2dd4bf; font-weight: 600; }
.clr-teal-light { color: #5ec4b8; }
.clr-gold { color: var(--gold); }
.clr-gold-light { color: #f0d060; }
.clr-gold-accent { color: #c8a84e; font-size: 115%; }
.clr-gold-accent-sm { color: #c8a84e; font-size: 105%; font-weight: 600; }
.clr-red { color: var(--red); }
.clr-red-light { color: #e07070; }
.clr-white { color: #f8fafc; font-weight: 600; }
.clr-white-70 { color: rgba(248,250,252,0.7); }
.clr-white-60 { color: rgba(250,250,249,0.6); font-weight: 400; }
.clr-white-30 { color: rgba(250,250,249,0.3); }
.clr-white-th { color: rgba(255,255,255,0.7); font-weight: 400; }
.clr-gray { color: var(--gray-500); font-weight: 400; }

/* Layout utilities */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.overflow-x { overflow-x: auto; }
.centered-narrow { text-align: center; max-width: 640px; }
.centered-intro { margin: 16px auto 32px; }

/* Font size utilities */
.fs-sm { font-size: 0.82rem; }
.fs-md { font-size: 0.95rem; }
.fs-lg { font-size: 1.05rem; }
.fs-xl { font-size: 1.25rem; }
.btn-lg { font-size: 1rem; padding: 16px 36px; }

/* Notes */
.note-sm { font-size: 0.78rem; color: var(--gray-500); margin-top: 8px; }
.note-teal { font-size: 0.82rem; color: var(--teal); margin-top: 10px; }
.note-footer { font-size: 0.82rem; color: var(--gray-500); margin-top: 20px; }

/* Margin utilities */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* Badge */
.badge-available { background: var(--teal-light); color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 50px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-visual svg { width: 160px; height: 160px; }
  nav { display: none; }
  .menu-toggle { display: block; }
  nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 16px 0;
    z-index: 300; margin-left: 0;
  }
  nav.open a { color: var(--gray-700); }
  nav.open a:hover { color: var(--navy); }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .questions-table { font-size: 0.8rem; }
  .questions-table th, .questions-table td { padding: 10px 12px; }
  .grid-2col { grid-template-columns: 1fr; }
}
