
:root {
  --navy: #021b32;
  --navy-soft: #062645;
  --gold: #d4af37;
  --gold-soft: #f0d47b;
  --light: #f5f7fb;
  --text-main: #e8edf7;
  --text-muted: #a8b4cc;
  --card-bg: #071a30;
  --accent: #2f7fff;
  --max-width: 1120px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #0a3263 0, #020819 45%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, rgba(2,17,35,0.98), rgba(5,33,66,0.98));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-main {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

nav a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-soft), var(--gold));
  transition: width 0.22s ease-out;
}

nav a:hover { color: #ffffff; }
nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.7);
  background: radial-gradient(circle at 30% 0, rgba(212,175,55,0.2), transparent 55%);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  cursor: pointer;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(to right, #f1d980, #d4af37);
  color: #15100a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(3,12,26,0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}

.hero-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.9);
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-title span { color: var(--gold-soft); }

.hero-sub {
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f3dda2, #d4af37);
  color: #15100a;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(0,0,0,0.6);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.75);
}

.btn-ghost {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(162,180,211,0.8);
  background: transparent;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-ghost span.icon { font-size: 1.1rem; }

.hero-right {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(244,210,145,0.14), transparent 65%),
              radial-gradient(circle at 90% 0, rgba(56,189,248,0.22), transparent 70%),
              linear-gradient(145deg, #020717, #031126 52%, #020b17 100%);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(109,139,197,0.35);
}

.section {
  margin-top: 2.5rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(92,115,164,0.5);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.card ul {
  list-style: none;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.25rem;
}

.card ul li::before {
  content: "• ";
  color: var(--gold-soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.4rem;
}

.info-block {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem;
  border: 1px solid rgba(92,115,164,0.55);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.info-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block ul li { margin-bottom: 0.4rem; }
.info-block ul li::before { content: "• "; color: var(--gold-soft); }

footer {
  border-top: 1px solid rgba(57,81,129,0.6);
  margin-top: 1rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.footer-inner b { color: var(--gold-soft); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-right { order: -1; }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  nav ul { display: none; }
  main { padding-inline: 1rem; }
  .card-grid { grid-template-columns: minmax(0,1fr); }
}
