:root {
  --navy: #11116f;
  --navy-deep: #090950;
  --ink: #1f2b4d;
  --paper: #f7f9ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "articulat-cf", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.top-stripe {
  min-height: 46px;
  padding: 8px 5%;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.top-stripe p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.top-stripe p a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
}

.top-stripe-cta {
  display: inline-block;
  background: #ffffff;
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.top-stripe-cta:hover,
.top-stripe-cta:focus-visible {
  background: #dfe8ff;
  outline: none;
}

.site-nav {
  height: 12vh;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 111, 0.08);
}

.site-nav img {
  width: 100px;
  height: auto;
  display: block;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(13px, 1.5vw, 16px);
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(17, 17, 111, 0.08);
  outline: none;
}

.news-menu,
    .solutions-menu {
  position: relative;
}

.news-menu .dropdown,
    .solutions-menu .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(17, 17, 111, 0.12);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(16, 26, 78, 0.12);
  z-index: 20;
}

.news-menu .dropdown li a,
    .solutions-menu .dropdown li a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
}

.news-menu:hover .dropdown,
    .news-menu:focus-within .dropdown,
    .solutions-menu:hover .dropdown,
    .solutions-menu:focus-within .dropdown {
  display: block;
}

.hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)), url("hero-image.jpg");
  background-position: center;
  background-size: cover;
  min-height: 42vh;
  padding: 64px 0 70px;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  width: min(900px, 92%);
  margin: 0 auto;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 7vw, 62px);
  line-height: 0.97;
  max-width: 16ch;
  font-weight: 900;
}

.content-layout {
  margin: -44px auto 0;
  width: min(900px, 92%);
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.panel {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(16, 26, 78, 0.08);
}

.panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.panel h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.2;
}

.panel p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.panel a:not(.btn) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.panel a:not(.btn):hover,
.panel a:not(.btn):focus-visible {
  text-decoration: underline;
}

.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #ffffff;
  padding: 34px 8% 18px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .top-stripe {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 4px;
  }

  .content-layout {
    margin-top: -26px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 38vh;
    padding: 42px 0 50px;
  }

  .panel {
    padding: 20px;
  }
}
