:root {
  --navy: #001844;
  --red: #cd1543;
  --steel: #869ec3;
  --silver: #cfd1d3;
  --white: #ffffff;
  --ink: #001844;
  --header: 4.25rem;
  --wrap: 70rem;
  --radius: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Maven Pro", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.8rem;
  top: -3rem;
  z-index: 40;
  padding: 0.45rem 0.8rem;
  background: var(--white);
  color: var(--navy);
}

.skip:focus {
  top: 0.6rem;
}

.wrap {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 900;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.7rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lede {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.rule {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.85rem 0 1.35rem;
  border: 0;
  background: var(--red);
}

.rule-on-navy {
  background: var(--red);
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #b01238;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: var(--white);
  border-bottom: 1px solid var(--silver);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header);
}

.brand {
  margin-right: auto;
}

.brand img {
  height: 2.85rem;
  width: auto;
}

.header-client {
  display: none;
  height: 2rem;
  width: auto;
}

.site-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-dismiss {
  display: none;
}

.nav-panel {
  display: flex;
  gap: 1.35rem;
}

@media (max-width: 840px) {
  .site-nav {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-panel {
    position: absolute;
    top: calc(var(--header) + 0.6rem);
    right: 0.8rem;
    flex-direction: column;
    gap: 0;
    width: min(16rem, 84vw);
    padding: 0.4rem 0;
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius);
    transform: translateX(110%);
    transition: transform 180ms ease;
  }

  .nav-panel a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0 1.1rem;
  }

  .nav-open:checked ~ .site-nav {
    pointer-events: auto;
    visibility: visible;
  }

  .nav-open:checked ~ .site-nav .nav-panel {
    transform: none;
  }

  .nav-open:checked ~ .site-nav .nav-dismiss {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 24, 68, 0.35);
  }
}

@media (min-width: 841px) {
  .nav-toggle {
    display: none;
  }

  .header-client {
    display: block;
    margin-left: 1.25rem;
  }
}

/* Hero */

.hero {
  display: grid;
  min-height: calc(100svh - var(--header));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.2rem 1.4rem 3.4rem;
  background: var(--navy);
  color: var(--white);
}

.hero-copy p {
  max-width: 36rem;
  color: #d7deea;
}

.hero-copy .kicker {
  color: var(--steel);
}

.hero-photo {
  margin: 0;
  min-height: 16rem;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 42%;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(20rem, 0.92fr) 1.08fr;
  }

  .hero-copy {
    padding: 4rem 3.2rem 4.2rem 5vw;
  }

  .hero-photo {
    min-height: 100%;
  }
}

/* Stats */

.stats {
  background: #0a2358;
  color: var(--white);
  padding: 1.9rem 0;
  border-top: 3px solid var(--red);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat strong {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
}

.stat span {
  color: var(--steel);
  font-size: 0.92rem;
  max-width: 18ch;
}

/* Bands */

.band {
  padding: 4.2rem 0;
}

#delivery {
  background: #eef1f6;
}

.band-navy {
  background: var(--navy);
  color: var(--white);
}

.band-navy .lede,
.band-navy p {
  color: #d7deea;
}

.band-navy h2,
.band-navy h3,
.band-navy strong {
  color: var(--white);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

.logo-on-white {
  height: 2.6rem;
  width: auto;
  margin-bottom: 1.4rem;
}

address {
  margin-top: 1.4rem;
  font-style: normal;
  color: var(--steel);
  line-height: 1.55;
}

.frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

.two {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .two {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(134, 158, 195, 0.35);
}

.plain-list li:last-child {
  border-bottom: 1px solid rgba(134, 158, 195, 0.35);
}

/* Contacts */

.contacts-head,
.who-head,
.subs-head {
  margin: 2.8rem 0 1.1rem;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--silver);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 24, 68, 0.07);
}

.contacts strong {
  font-size: 1.05rem;
}

.contacts .qual {
  color: #5c6b85;
  font-size: 0.9rem;
}

/* Problem */

.pain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain li {
  padding: 1rem 1.15rem 1rem 2.6rem;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(207, 209, 211, 0.18);
  border-radius: var(--radius);
  color: #e3e9f3;
}

.pain li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.35rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
}

/* Capabilities */

.capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capabilities li {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 24, 68, 0.06);
  border-top: 3px solid var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.capabilities li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 24, 68, 0.12);
}

.capabilities h3 {
  font-size: 1.02rem;
}

.capabilities p {
  font-size: 0.95rem;
  color: #45536d;
}

.subs-note {
  max-width: 42rem;
  color: #45536d;
  font-size: 0.95rem;
}

.subs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
  grid-auto-rows: 3.5rem;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
}

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

.subs span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}


.bleed {
  margin: 0;
}

.bleed img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.cycles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2.4rem;
  padding: 0;
  list-style: none;
}

.docs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  grid-auto-rows: 4rem;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 24, 68, 0.07);
  font-weight: 500;
}

.doc::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12m0 0 4-4m-4 4-4-4'/%3E%3Cpath d='M4 21h16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12m0 0 4-4m-4 4-4-4'/%3E%3Cpath d='M4 21h16'/%3E%3C/svg%3E") center / contain no-repeat;
}

.docs .doc {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0.95rem 1.15rem;
}

.docs .doc::after {
  margin-left: 0.85rem;
}

.cycles .doc {
  position: relative;
  flex: 1 1 7.5rem;
  min-height: 4.6rem;
  gap: 0.3rem;
  padding-right: 2rem;
}

.cycles .doc::after {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
}

.cycles span {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.docs-head {
  margin: 0 0 1.1rem;
}

.people {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.person {
  display: grid;
  grid-template-columns: 11rem 1fr 11rem;
  align-items: center;
  column-gap: 1rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(207, 209, 211, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.person img {
  width: 7.5rem;
  height: 9.4rem;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 0.55rem;
}

.person-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.12rem;
  min-width: 0;
}

.person-meta strong {
  font-size: 1.05rem;
  color: var(--white);
}

.person-meta span {
  color: var(--steel);
  font-size: 0.92rem;
}

.person-in {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  min-height: 2.75rem;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  justify-self: end;
}

.person-in:hover {
  color: var(--white);
}

.person-in svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .person {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .person-in {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 8.5rem;
  }
}

.site-footer {
  padding: 1.6rem 0;
  background: var(--navy);
  color: var(--steel);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner img {
  height: 2.4rem;
  width: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
