:root {
  --navy-950: #021426;
  --navy-900: #03172b;
  --navy-850: #031a31;
  --navy-800: #061e37;
  --navy-760: #08243e;
  --cyan: #00a9ec;
  --cyan-bright: #08b9ff;
  --lime: #9ccb09;
  --orange: #ff9000;
  --text: #f7f9fc;
  --muted: #d4dce4;
  --line: rgba(154, 181, 203, .27);
  --content-max: 1500px;
  --page-pad: clamp(28px, 3vw, 72px);
}

* { box-sizing: border-box; }
html { background: var(--navy-950); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-950);
  color: var(--text);
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-850);
}

.site-header {
  position: relative;
  z-index: 40;
  height: 106px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(148, 177, 198, .20);
}
.header-inner {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 170px;
  column-gap: clamp(14px, 1.7vw, 30px);
  align-items: center;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 246px; height: auto; display: block; }
.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(19px, 1.55vw, 31px);
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 42px 0 39px;
  color: rgba(255,255,255,.96);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-bright);
}
.top-cta,
.mobile-nav-cta,
.mobile-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(180deg, #0fb8f7 0%, #079ddf 100%);
  border: 1px solid rgba(89, 201, 250, .55);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.top-cta {
  min-width: 170px;
  height: 46px;
  padding: 0 18px;
  font-size: 14.5px;
  white-space: nowrap;
}
.menu-toggle,
.mobile-nav { display: none; }

.site-footer {
  border-top: 1px solid rgba(139, 168, 190, .22);
  background: var(--navy-900);
}
.footer-inner {
  width: 100%;
  max-width: var(--content-max);
  min-height: 126px;
  margin: 0 auto;
  padding: 24px var(--page-pad);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}
.footer-company {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  color: #d9e0e6;
  font-size: 13px;
}
.footer-company strong {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-weight: 500;
}
.footer-company strong::after {
  content: "·";
  margin-left: 6px;
  margin-right: 6px;
  color: rgba(255,255,255,.42);
  font-weight: 400;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.contact-item { min-height: 24px; display: inline-flex; align-items: center; }
.contact-reveal {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(220, 226, 231, .52);
  padding: 2px 0 3px;
  background: transparent;
  color: #dce2e7;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}
.contact-reveal:hover,
.contact-reveal:focus-visible {
  color: var(--cyan-bright);
  border-bottom-color: var(--cyan-bright);
  outline: none;
}
.contact-value { display: block; width: auto; height: 17px; opacity: .94; }
.contact-value[hidden] { display: none; }
.footer-links { display: flex; gap: 30px; white-space: nowrap; color: #dce2e7; font-size: 13px; }

@media (min-width: 1180px) {
  .site-header { height: clamp(106px, 7.6vw, 122px); }
  .header-inner { grid-template-columns: clamp(270px, 20vw, 320px) minmax(0, 1fr) clamp(170px, 12vw, 182px); }
  .brand img { width: clamp(246px, 18vw, 290px); }
  .main-nav a { font-size: clamp(14.5px, 1.08vw, 17px); }
  .top-cta { min-width: clamp(170px, 12vw, 182px); height: clamp(46px, 3.4vw, 50px); font-size: clamp(14.5px, 1vw, 15.5px); }
  .footer-inner { min-height: 126px; grid-template-columns: minmax(360px, 1fr) auto auto; }
  .footer-company, .contact-reveal, .footer-links { font-size: clamp(13px, .95vw, 14px); }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .site-header { height: 96px; }
  .header-inner { max-width: none; padding: 0 24px; grid-template-columns: 1fr auto auto; column-gap: 14px; }
  .brand img { width: 214px; }
  .main-nav { display: none; }
  .top-cta { display: inline-flex; min-width: 142px; height: 42px; padding: 0 16px; font-size: 13.5px; }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(154,181,203,.32);
    border-radius: 6px;
    background: rgba(8,36,62,.58);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 2px; display: block; background: rgba(255,255,255,.94); transition: transform .18s ease, opacity .18s ease; }
  .mobile-nav {
    position: absolute;
    z-index: 41;
    top: calc(100% + 1px);
    right: 24px;
    width: 330px;
    padding: 14px 20px 20px;
    border: 1px solid rgba(154,181,203,.22);
    background: rgba(3,23,43,.995);
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
  }
  .mobile-nav[aria-hidden="false"] { display: grid; gap: 0; }
  .mobile-nav > a:not(.mobile-nav-cta) { padding: 13px 2px; border-bottom: 1px solid rgba(154,181,203,.16); font-size: 16px; }
  .mobile-nav > a.active { color: var(--cyan-bright); }
  .mobile-nav-cta { margin-top: 16px; min-height: 46px; font-size: 15px; font-weight: 500; }
  .footer-inner {
    max-width: none;
    min-height: 126px;
    padding: 18px 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "company links" "contact links";
    gap: 8px 28px;
  }
  .footer-company { grid-area: company; white-space: normal; flex-wrap: wrap; gap: 5px 10px; font-size: 12.4px; }
  .footer-contact { grid-area: contact; gap: 18px; flex-wrap: wrap; }
  .contact-reveal { font-size: 12.4px; }
  .footer-links { grid-area: links; flex-direction: column; gap: 9px; align-items: flex-start; font-size: 12.4px; }
}

@media (max-width: 900px) and (min-width: 601px) {
  .site-header { height: 92px; }
  .header-inner { max-width: none; padding: 0 24px; grid-template-columns: 1fr auto; column-gap: 24px; }
  .brand img { width: 215px; }
  .main-nav, .top-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(154,181,203,.32);
    border-radius: 6px;
    background: rgba(8,36,62,.58);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { width: 21px; height: 2px; display: block; background: rgba(255,255,255,.92); transition: transform .18s ease, opacity .18s ease; }
  .mobile-nav {
    position: absolute;
    z-index: 41;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 14px 24px 20px;
    border-top: 1px solid rgba(154,181,203,.20);
    border-bottom: 1px solid rgba(154,181,203,.22);
    background: rgba(3,23,43,.995);
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
  }
  .mobile-nav[aria-hidden="false"] { display: grid; gap: 0; }
  .mobile-nav > a:not(.mobile-nav-cta) { padding: 14px 2px; border-bottom: 1px solid rgba(154,181,203,.16); font-size: 17px; }
  .mobile-nav > a.active { color: var(--cyan-bright); }
  .mobile-nav-cta { margin-top: 18px; min-height: 48px; font-size: 16px; font-weight: 500; }
  .footer-inner {
    max-width: none;
    min-height: 136px;
    padding: 22px 32px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "company links" "contact links";
    gap: 9px 28px;
  }
  .footer-company { grid-area: company; white-space: normal; flex-wrap: wrap; gap: 6px 10px; line-height: 1.42; }
  .footer-contact { grid-area: contact; gap: 20px; flex-wrap: wrap; }
  .footer-links { grid-area: links; justify-content: flex-start; gap: 28px; }
}

@media (max-width: 600px) {
  .site-header { height: 72px; }
  .header-inner { max-width: none; padding: 0 14px; grid-template-columns: 1fr auto; column-gap: 14px; }
  .brand img { width: 170px; max-width: 100%; }
  .main-nav, .top-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(154,181,203,.28);
    border-radius: 6px;
    background: rgba(8,36,62,.46);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 2px; display: block; background: rgba(255,255,255,.94); transition: transform .18s ease, opacity .18s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    z-index: 41;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 12px 18px 18px;
    border-top: 1px solid rgba(154,181,203,.20);
    border-bottom: 1px solid rgba(154,181,203,.22);
    background: rgba(3,23,43,.995);
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
  }
  .mobile-nav[aria-hidden="false"] { display: grid; gap: 0; }
  .mobile-nav > a:not(.mobile-nav-cta) { padding: 13px 2px; border-bottom: 1px solid rgba(154,181,203,.16); font-size: 16px; line-height: 1.2; }
  .mobile-nav > a.active { color: var(--cyan-bright); }
  .mobile-nav-cta { margin-top: 16px; min-height: 46px; font-size: 15.5px; font-weight: 500; }

  .footer-inner {
    max-width: none;
    min-height: 0;
    padding: 23px 17px 27px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "company" "contact" "links";
    gap: 15px;
    align-items: start;
  }
  .footer-company {
    grid-area: company;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: normal;
    font-size: 12.8px;
    line-height: 1.38;
  }
  .footer-company strong::after { display: none; }
  .footer-contact { grid-area: contact; gap: 22px; flex-wrap: wrap; white-space: normal; }
  .contact-reveal { font-size: 12.8px; }
  .contact-value { height: 16px; }
  .footer-links { grid-area: links; justify-content: flex-start; gap: 24px; font-size: 12.8px; }
}
