:root {
  --brand-blue: #102A4D;
  --brand-blue-soft: #17385f;
  --brand-gold: #D4A84F;
  --brand-gold-soft: #F2D48E;
  --ink: #1d2630;
  --muted: #5e6b7a;
  --surface: #f4f6f9;
  --surface-alt: #ffffff;
  --card-border: rgba(16, 42, 77, 0.08);
  --shadow: 0 18px 40px rgba(10, 24, 46, 0.09);

  --primary: var(--brand-blue);
  --primary-hover: var(--brand-blue-soft);
  --primary-focus: rgba(16, 42, 77, 0.18);
  --primary-inverse: #ffffff;

  --h1-color: #f9fbff;
  --h2-color: #102A4D;
  --h3-color: #102A4D;
  --color: var(--ink);
  --muted-color: var(--muted);
  --border-radius: 1.05rem;
  --form-element-border-color: rgba(16, 42, 77, 0.12);
  --form-element-focus-color: rgba(212, 168, 79, 0.45);
  --card-background-color: var(--surface-alt);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 168, 79, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 42, 77, 0.08);
  backdrop-filter: blur(18px);
}

nav.site-nav ul {
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--brand-blue);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  white-space: nowrap;
}

nav.site-nav a:hover,
nav.site-nav a[aria-current="page"] {
  text-decoration: none;
  background: rgba(16, 42, 77, 0.06);
}

nav.site-nav .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.2rem 0;
}

nav.site-nav .brand-link:hover {
  background: transparent;
}

main.container {
  padding-top: 1.4rem;
  padding-bottom: 4rem;
}

.page-shell {
  display: grid;
  gap: 3.6rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.3rem clamp(1.25rem, 3vw, 3rem);
  border-radius: 1.6rem;
  color: #ffffff;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(8, 22, 42, 0.96), rgba(20, 51, 89, 0.88)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.page-hero {
  padding-block: 2.6rem;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 212, 142, 0.25), transparent 18%),
    radial-gradient(circle at 12% 88%, rgba(212, 168, 79, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--brand-gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.79rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: rgba(242, 212, 142, 0.75);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero .lede,
.page-hero .lede {
  margin: 1.3rem 0 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(1rem + var(--spacing) * 2 + var(--border-width) * 2);
  padding: var(--spacing) calc(var(--spacing) * 1.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  text-decoration: none;
}

.button-secondary:hover {
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-pills span {
  display: inline-flex;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.section-header {
  display: grid;
  gap: 0.45rem;
  max-width: 44rem;
  margin-bottom: 1.7rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel,
article.panel,
section.panel {
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card-title {
  margin-bottom: 0.6rem;
}

.card-title h3,
.card-title h4 {
  margin: 0;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(212, 168, 79, 0.18), rgba(16, 42, 77, 0.08));
  color: var(--brand-blue);
  font-weight: 800;
}

.checklist,
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li,
.value-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.72rem;
  color: var(--muted);
}

.checklist li::before,
.value-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--brand-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
  align-items: center;
}

figure.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #0f2038;
  box-shadow: var(--shadow);
}

figure.media-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  display: block;
}

figure.media-card figcaption {
  padding: 0.9rem 1rem 1rem;
  background: rgba(15, 32, 56, 0.98);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

figure.media-card figcaption a {
  color: var(--brand-gold-soft);
}

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

.metric {
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(16, 42, 77, 0.03), rgba(212, 168, 79, 0.05));
  border: 1px solid rgba(16, 42, 77, 0.08);
}

.metric strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.cta-band {
  padding: 2rem 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #102A4D, #17385f);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band h3,
.cta-band p {
  color: inherit;
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.cta-band .outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: transparent;
}

.article-grid article {
  height: 100%;
}

.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-meta::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--brand-gold);
}

.article-body {
  max-width: 50rem;
}

.article-body p {
  color: var(--ink);
  font-size: 1.05rem;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.3rem;
  border-left: 4px solid var(--brand-gold);
  background: rgba(16, 42, 77, 0.03);
  color: var(--brand-blue);
}

.callout {
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--brand-gold);
  background: linear-gradient(90deg, rgba(212, 168, 79, 0.12), rgba(255,255,255,0));
  border-radius: 0.9rem;
}

.contact-panel a {
  font-weight: 700;
}

.subscription {
  padding: 0 0 2rem;
}

.subscription article {
  margin-top: 0;
  border-radius: 1.35rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(16, 42, 77, 0.97), rgba(20, 51, 89, 0.88)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #ffffff;
}

.subscription article h2,
.subscription article h3,
.subscription article p,
.subscription article small {
  color: inherit;
}

.subscription input {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.3);
}

footer.container {
  padding-top: 1rem;
  padding-bottom: 2.75rem;
  color: var(--muted);
}

footer a {
  color: var(--brand-blue);
}

.kicker {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 700;
}

.text-muted {
  color: var(--muted);
}

.centered {
  text-align: center;
}

.spacious > * + * {
  margin-top: 0.9rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .split,
  .metric-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  nav.site-nav {
    position: static;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .cta-band {
    padding-inline: 1.2rem;
  }

  .hero h1,
  .page-hero h1 {
    word-spacing: 0.05em;
  }

  .hero-actions,
  .cta-band .actions {
    flex-direction: column;
    align-items: stretch;
  }
}
