:root {
  --navy: #0b345a;
  --navy-deep: #071f35;
  --taupe: #a69b94;
  --taupe-soft: #eee9e6;
  --ink: #172235;
  --muted: #667085;
  --line: #e7e4e2;
  --white: #ffffff;
  --off-white: #fbfaf9;
  --shadow: 0 24px 70px rgba(10, 31, 53, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(166, 155, 148, 0.18);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--navy-deep);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.top-strip span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  opacity: 0.55;
}

.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: min(330px, 58vw);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--taupe-soft);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--navy);
  background: var(--taupe-soft);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 86px 0 72px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 14%, rgba(166, 155, 148, 0.34), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--taupe-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-kicker {
  color: var(--taupe);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card-logo {
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  font-weight: 900;
}

.contact-lines a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.micro-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.stats-band {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stat-box strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.stat-box span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-head p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: end;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.search-box input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11, 52, 90, 0.1);
}

.latest-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.insight-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 31, 53, 0.08);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--taupe-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.date {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.insight-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.18;
  margin-bottom: 0;
}

.insight-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.card-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 0.88rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.filter-btn.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.result-count {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--taupe);
  border-radius: 22px;
  background: var(--white);
  color: var(--muted);
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state strong {
  color: var(--navy);
}

.empty-span {
  grid-column: 1 / -1;
}

.cta-section {
  padding-top: 36px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.site-footer {
  padding-top: 58px;
  background: #f3f0ee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 38px;
  padding-bottom: 40px;
}

.footer-grid img {
  width: min(320px, 100%);
  margin-bottom: 18px;
}

.footer-grid p {
  color: var(--muted);
  max-width: 440px;
}

.footer-grid h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
  font-weight: 800;
}

.video-dialog {
  width: min(980px, calc(100% - 28px));
  border: 0;
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.video-dialog::backdrop {
  background: rgba(7, 31, 53, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--navy);
  background: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.dialog-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
}

.video-frame {
  min-height: 420px;
  background: var(--navy-deep);
}

.video-frame iframe,
.video-frame .placeholder-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.placeholder-video {
  display: grid;
  place-items: center;
  padding: 36px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 155, 148, 0.35), transparent 38%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.placeholder-video strong {
  display: block;
  font-size: 2.3rem;
  margin-bottom: 8px;
}

.dialog-copy {
  padding: 34px;
}

.dialog-copy h2 {
  color: var(--navy);
  margin: 14px 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.dialog-copy p {
  color: var(--muted);
}

.dialog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-head,
  .cta-card,
  .dialog-body {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, 1160px);
  }

  .top-strip {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 58px 0 62px;
  }

  .hero-card {
    padding: 20px;
  }

  .stats-grid,
  .latest-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .cta-card {
    padding: 26px;
  }
}
