:root {
  --navy-900: #0f1f3d;
  --navy-800: #132a52;
  --ink-900: #101a2b;
  --ink-700: #344157;
  --white: #ffffff;
  --slate-100: #f5f7fb;
  --slate-200: #e5eaf2;
  --gold-500: #c9a24a;
  --gold-600: #b48f3b;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--slate-100);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-600);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 16px;
  color: var(--ink-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 31, 61, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.hero {
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 58%, var(--navy-900) 100%);
  color: var(--white);
  padding-top: 104px;
}

.hero .lead,
.hero .hero-points li {
  color: rgba(241, 245, 255, 0.92);
}

.hero-inner {
  max-width: 860px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-points {
  margin: 8px 0 0;
  padding-left: 20px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--gold-500);
  color: #1a2540;
  font-weight: 700;
  padding: 12px 18px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: #d6af57;
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  margin-top: 22px;
}

.card,
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 20px;
}

.steps {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin-top: 22px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-500);
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-wrap {
  text-align: left;
}

.contact-meta {
  margin-top: 16px;
  color: #47526a;
  font-weight: 600;
}

.site-footer {
  background: var(--navy-900);
  padding: 32px 0;
}

.footer-inner p {
  margin: 6px 0;
  color: rgba(235, 240, 252, 0.9);
}

.footer-inner a {
  color: #f1d189;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .brand-text {
    font-size: 0.95rem;
  }
}
