:root {
  --ink: #10202b;
  --muted: #5c6a72;
  --line: #d8e0e5;
  --paper: #f6f4ef;
  --white: #ffffff;
  --navy: #123247;
  --navy-2: #0a2535;
  --brass: #b8872d;
  --olive: #556b3f;
  --shadow: 0 24px 70px rgba(16, 32, 43, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; }

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover { color: var(--brass); }

.center-actions { justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 224, 229, 0.8);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--olive));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong, .brand small { display: block; line-height: 1.15; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a { text-decoration: none; color: var(--navy-2); }
.nav-links a:hover { color: var(--brass); }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 48px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 14px 0 24px;
  max-width: 980px;
}

.narrow-hero .lede { max-width: 880px; }
.talent-hero { max-width: 1180px; }
.page-grid-top { padding-top: 32px; }
.route-band { padding-top: 48px; }

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 14px 0 24px;
  max-width: 920px;
}

.lede {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #344752;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(18, 50, 71, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18, 50, 71, 0.18);
}

.button:hover { background: var(--navy-2); }
.button-secondary { background: transparent; color: var(--navy) !important; border: 1px solid var(--line); box-shadow: none; }
.button-secondary:hover { background: var(--white); }
.button-small { min-height: 38px; padding: 8px 14px; }

.hero-card, .content-card, .feature-card, .notice, .mini-card, .deliverable-list, .cta {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist-card ul,
.plain-steps {
  margin: 0;
  padding-left: 20px;
}

.checklist-card li,
.plain-steps li { margin-bottom: 14px; }
.checklist-card li:last-child,
.plain-steps li:last-child { margin-bottom: 0; }

.intake-card ul { padding-left: 20px; }
.intake-card li { margin-bottom: 10px; }

.hero-card {
  padding: 28px;
  border-top: 7px solid var(--brass);
}

.hero-card h2 { margin-top: 0; }
.hero-card ul, .deliverable-list ul { padding-left: 20px; margin-bottom: 0; }
.hero-card li, .deliverable-list li { margin-bottom: 10px; }

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 { margin: 0 0 12px; font-size: 1.2rem; }

.content-card, .feature-card, .deliverable-list, .cta { padding: 28px; }
.content-card p:first-child, .notice p:first-of-type, .cta p:first-of-type { margin-top: 0; }
.content-card p:last-child, .notice p:last-child, .cta p:last-child { margin-bottom: 0; }

.grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card {
  min-height: 220px;
  border-top: 5px solid var(--olive);
}

.feature-card.compact { min-height: 168px; }

.feature-card p { color: var(--muted); }

.section-note {
  max-width: 860px;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.package-band {
  padding-top: 44px;
}

.process {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.steps {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps li {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.steps span {
  display: block;
  color: var(--brass);
  font-weight: 900;
  margin-bottom: 18px;
}

.steps strong { display: block; font-size: 1.05rem; }
.steps p { color: rgba(255, 255, 255, 0.76); margin-bottom: 0; }

.notice {
  padding: 42px;
  border-left: 8px solid var(--brass);
}

.notice h2 { margin-bottom: 22px; }
.notice p { max-width: 980px; color: #31434d; }

.secure-note .content-card { border-top: 5px solid var(--brass); }

.mini-card {
  padding: 24px;
  font-weight: 800;
  color: var(--navy);
}

.cta {
  text-align: center;
  max-width: 980px;
}

.cta a { color: var(--navy); font-weight: 800; }
.muted { color: var(--muted); font-size: 0.94rem; }

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 46px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-links { white-space: nowrap; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 10px; font-size: 0.86rem; }
  .nav-links a:not(.button) { padding: 6px 0; }
  .hero, .split { grid-template-columns: 1fr; }
  .three, .four, .steps { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 56px; }
  .section { padding-top: 58px; padding-bottom: 58px; }
  .site-footer { flex-direction: column; }
  .footer-links { white-space: normal; }
}

@media (max-width: 520px) {
  .nav { padding: 14px 18px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-copy h1 { letter-spacing: -0.055em; }
  .button { width: 100%; }
  .trust-strip span { width: 100%; justify-content: center; }
  .notice { padding: 28px; }
}
