:root {
  --page-bg: #071327;
  --page-bg-2: #0b1c3a;
  --surface: rgba(14, 35, 74, 0.9);
  --surface-strong: rgba(17, 41, 84, 0.96);
  --text: #f7f9ff;
  --text-soft: #b9c8e5;
  --text-muted: #879bbb;
  --border: rgba(157, 188, 255, 0.16);
  --accent: #76a4ff;
  --accent-soft: #9ed8ff;
  --accent-rgb: 118, 164, 255;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 90% -4%, rgba(104, 155, 255, 0.25), transparent 28%),
    radial-gradient(circle at -6% 55%, rgba(89, 132, 230, 0.16), transparent 28%),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

.page-wrap {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.page-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 39, 0.76);
  border-bottom: 1px solid rgba(157, 188, 255, 0.1);
  backdrop-filter: blur(20px);
}

.page-nav__row {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.page-brand {
  display: inline-flex;
  align-items: center;
}

.page-brand img {
  width: auto;
  height: 40px;
  display: block;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: #eaf1ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 720;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-back:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.page-back .material-symbols-outlined {
  font-size: 18px;
}

.page-main {
  padding: 44px 0 76px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(157, 188, 255, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 8%, rgba(138, 202, 255, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(20, 48, 101, 0.96), rgba(12, 31, 67, 0.9) 56%, rgba(13, 36, 78, 0.96));
  box-shadow: 0 30px 70px rgba(1, 7, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::before {
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: -145px;
  background: rgba(101, 160, 255, 0.2);
}

.page-hero::after {
  width: 150px;
  height: 150px;
  right: 16%;
  top: -105px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(157, 205, 255, 0.2);
  border-radius: 999px;
  color: #c7e6ff;
  background: rgba(148, 201, 255, 0.11);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-kicker .material-symbols-outlined {
  font-size: 16px;
}

.page-hero h1 {
  margin: 20px 0 16px;
  max-width: 760px;
  font-size: clamp(35px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.page-lead {
  max-width: 68ch;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.page-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: #d6e3fa;
  background: rgba(255, 255, 255, 0.065);
  font-size: 12.5px;
  font-weight: 700;
}

.page-meta__item .material-symbols-outlined {
  color: var(--accent-soft);
  font-size: 17px;
}

.page-content {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.page-panel {
  min-width: 0;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: 0 18px 44px rgba(1, 7, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.panel-heading__icon {
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(var(--accent-rgb), 0.13);
  border-radius: 14px;
  color: var(--accent-soft);
  background: rgba(var(--accent-rgb), 0.12);
}

.panel-heading__icon .material-symbols-outlined {
  font-size: 22px;
}

.panel-heading h2 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.panel-heading p {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 14px;
}

.reference-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  margin-top: 25px;
}

.reference-identity {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(161, 203, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(150, 217, 255, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(35, 84, 165, 0.72), rgba(14, 38, 85, 0.92));
}

.reference-identity::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(158, 216, 255, 0.14);
}

.reference-logo {
  position: relative;
  z-index: 1;
  width: min(230px, 100%);
  max-height: 116px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(1, 7, 20, 0.25));
}

.reference-location {
  position: relative;
  z-index: 1;
}

.reference-location strong {
  display: block;
  font-size: 18px;
}

.reference-location span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: #c6d7f5;
  font-size: 13px;
}

.reference-location .material-symbols-outlined {
  color: var(--accent-soft);
  font-size: 17px;
}

.reference-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reference-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(125, 219, 181, 0.2);
  border-radius: 999px;
  color: #b9f2d9;
  background: rgba(52, 181, 125, 0.11);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.reference-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #61d59f;
  box-shadow: 0 0 0 5px rgba(97, 213, 159, 0.1);
}

.reference-story h3 {
  margin-top: 15px;
  max-width: 560px;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.reference-story > p {
  margin-top: 13px;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 15px;
}

.reference-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 23px;
}

.reference-metric {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}

.reference-metric .material-symbols-outlined {
  color: var(--accent-soft);
  font-size: 21px;
}

.reference-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.2;
}

.reference-metric span:last-child {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.contact-option {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.09);
}

.contact-option__icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 15px;
  color: var(--accent-soft);
  background: rgba(var(--accent-rgb), 0.13);
}

.contact-option__icon .material-symbols-outlined {
  font-size: 24px;
}

.contact-option__label {
  margin-top: 19px;
  color: var(--accent-soft);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option h3 {
  margin-top: 6px;
  font-size: 19px;
  line-height: 1.25;
}

.contact-option p {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.contact-option__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
  color: #e8f3ff;
  font-size: 12.5px;
  font-weight: 780;
}

.contact-option__action .material-symbols-outlined {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.contact-option:hover .contact-option__action .material-symbols-outlined {
  transform: translateX(3px);
}

.page-cta {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid rgba(170, 207, 255, 0.22);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(125deg, #2354a5, #163d84 58%, #102d64);
  box-shadow: 0 22px 54px rgba(1, 7, 20, 0.3);
}

.page-cta::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -150px;
  border-radius: 50%;
  background: rgba(154, 221, 255, 0.2);
}

.page-cta > * {
  position: relative;
  z-index: 1;
}

.page-cta h2 {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.page-cta p {
  max-width: 65ch;
  margin-top: 8px;
  color: rgba(238, 246, 255, 0.75);
  font-size: 14px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 780;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-btn:hover {
  transform: translateY(-1px);
}

.page-btn--primary {
  color: #173d82;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 18, 48, 0.2);
}

.page-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.page-footer {
  padding: 29px 0 8px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.page-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 9px;
}

.page-footer__links a {
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.page-footer__links a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .reference-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .reference-identity {
    min-height: 240px;
  }

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

  .contact-option {
    min-height: 215px;
  }
}

@media (max-width: 640px) {
  .page-wrap {
    width: min(100% - 28px, var(--max));
  }

  .page-nav__row {
    height: 65px;
  }

  .page-brand img {
    height: 34px;
  }

  .page-back {
    padding: 9px 12px;
  }

  .page-back span:not(.material-symbols-outlined) {
    display: none;
  }

  .page-main {
    padding-top: 24px;
  }

  .page-hero {
    padding: 29px 22px;
    border-radius: 26px;
  }

  .page-lead {
    font-size: 15px;
  }

  .page-panel,
  .page-cta {
    padding: 23px 19px;
    border-radius: 22px;
  }

  .panel-heading {
    gap: 11px;
  }

  .panel-heading__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .reference-identity {
    min-height: 215px;
    padding: 22px;
  }

  .reference-logo {
    max-height: 95px;
  }

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

  .reference-metric {
    min-height: 0;
  }

  .page-actions {
    display: grid;
  }

  .page-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
