:root {
  --blue: #002366;
  --blue-bright: #2158d6;
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffcc00;
  --glass: rgba(0, 8, 24, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --soft: rgba(255, 255, 255, 0.72);
  --header-height: 82px;
  --max-width: 1180px;
  --shadow-glow: 0 0 24px rgba(33, 88, 214, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 35, 102, 0.55), transparent 34%),
    linear-gradient(180deg, #02060f 0%, #000000 42%, #020816 100%);
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.96), rgba(2, 6, 15, 0.92)),
    linear-gradient(90deg, rgba(33, 88, 214, 0.16), rgba(255, 255, 255, 0.02) 34%, rgba(0, 0, 0, 0.06) 68%, rgba(33, 88, 214, 0.12));
  border-bottom: 2px solid var(--blue-bright);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 58%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 90px
    );
}

.header-shell {
  position: relative;
  z-index: 1;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: min(112px, 20vw);
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  position: relative;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2.2rem, 3vw, 3.25rem);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding-bottom: 0;
  line-height: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(33, 88, 214, 0.8);
  background: rgba(33, 88, 214, 0.16);
  box-shadow: 0 0 18px rgba(33, 88, 214, 0.24);
  transform: translateY(-1px);
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(33, 88, 214, 0.9);
  background:
    linear-gradient(135deg, rgba(0, 35, 102, 0.95), rgba(33, 88, 214, 0.92)),
    var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(33, 88, 214, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.24) 50%,
      transparent 62%,
      transparent 100%
    );
  transform: translateX(-130%);
  transition: transform 240ms ease;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 28px rgba(33, 88, 214, 0.36);
}

.header-cta:hover::before,
.header-cta:focus-visible::before {
  transform: translateX(130%);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  isolation: isolate;
}

.hero-media,
.hero-grid,
.hero-noise,
.hero-video,
.hero-poster,
.hero-video-fallback {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(0, 35, 102, 0.86) 0%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 20, 58, 0.92) 100%),
    #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: grayscale(0.55) contrast(1.2) brightness(0.45);
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(0.2) contrast(1.15) brightness(0.42);
}

.hero-embed {
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  min-height: 56.25vw;
  height: 100%;
  border: 0;
  opacity: 0.32;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.08);
  filter: saturate(0.75) contrast(1.05) brightness(0.5);
}

.hero-video-fallback {
  display: grid;
  place-items: end left;
  padding: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(33, 88, 214, 0.26), transparent 22%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 30%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 18px
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-video-fallback span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.74);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
  opacity: 0.4;
}

.hero-noise {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 55%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.12;
  animation: scan 14s linear infinite;
}

.reticle {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
  mix-blend-mode: screen;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 160ms ease;
}

.reticle::before,
.reticle::after,
.reticle span::before,
.reticle span::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.72);
}

.reticle::before,
.reticle::after {
  top: 50%;
  width: 24px;
  height: 1px;
}

.reticle::before {
  left: -10px;
}

.reticle::after {
  right: -10px;
}

.reticle span::before,
.reticle span::after {
  left: 50%;
  width: 1px;
  height: 24px;
}

.reticle span::before {
  top: -10px;
}

.reticle span::after {
  bottom: -10px;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-content: center;
  gap: 1rem;
  padding-block: 4rem;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--soft);
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--blue-bright);
  box-shadow: var(--shadow-glow);
}

.hero-kicker,
.hero-copy,
.support-grid p,
.why-copy p,
.why-point p,
.compliance-intro p,
.final-cta-shell p,
.arsenal-card p,
.arsenal-card li {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: none;
}

.hero-title,
.section-heading h2,
.why-copy h2,
.support-grid h2,
.compliance-intro h2,
.final-cta-shell h2 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.hero-title {
  position: relative;
  width: min(12ch, 100%);
  font-size: clamp(3.8rem, 10vw, 8.4rem);
  overflow: hidden;
  padding-block: 0.12em;
  text-shadow: 0 0 34px rgba(0, 35, 102, 0.44);
}

.hero-title-core {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.98) 34%,
    rgba(122, 174, 255, 0.95) 49%,
    rgba(255, 255, 255, 0.98) 64%,
    rgba(255, 255, 255, 0.98) 100%
  );
  background-size: 220% 100%;
  background-position: 135% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(33, 88, 214, 0.18));
  animation: title-steel-sweep 5.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hero-title-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-title-sweep::before,
.hero-title-sweep::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.hero-title-sweep::before {
  left: -12%;
  right: -12%;
  top: 68%;
  height: 0.22em;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(33, 88, 214, 0.16) 18%,
    rgba(33, 88, 214, 0.82) 46%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(33, 88, 214, 0.78) 54%,
    rgba(33, 88, 214, 0.14) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 14px rgba(33, 88, 214, 0.44),
    0 0 26px rgba(33, 88, 214, 0.22);
  transform: translate3d(-115%, 0, 0) skewX(-18deg);
  animation: title-underbar-sweep 5.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hero-title-sweep::after {
  top: 0.04em;
  bottom: 0.08em;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 12%,
    rgba(33, 88, 214, 0.95) 42%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(33, 88, 214, 0.95) 58%,
    rgba(255, 255, 255, 0.16) 88%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(33, 88, 214, 0.42),
    0 0 24px rgba(33, 88, 214, 0.18);
  transform: translate3d(-125%, 0, 0);
  animation: title-beam-pass 5.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.6rem;
}

.cta-button,
.ghost-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  border: 2px solid transparent;
  overflow: hidden;
}

.cta-button {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 35, 102, 0.42);
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -30%;
  width: 34%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 52%,
    rgba(255, 255, 255, 0.18) 100%
  );
  transform: rotate(18deg);
  transition: transform 220ms ease;
}

.cta-button:hover::before,
.cta-button:focus-visible::before {
  transform: translateX(260%) rotate(18deg);
}

.ghost-link {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics > div {
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.48);
}

.metric-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.hero-metrics strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.support-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 40%),
    rgba(255, 255, 255, 0.02);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.support-copy {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.support-grid h2,
.section-heading h2,
.why-copy h2,
.compliance-intro h2,
.final-cta-shell h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.support-visual-cluster,
.why-media,
.final-cta-visual {
  margin: 0;
}

.support-visual-cluster {
  position: relative;
  min-height: 440px;
}

.support-visual,
.support-inset,
.why-media,
.final-cta-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.support-visual img,
.support-inset img,
.why-media img,
.final-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-visual img,
.why-media img,
.final-cta-visual img {
  object-position: center;
}

.support-inset img {
  object-position: center top;
}

.support-visual {
  position: absolute;
  inset: 0 0 42px 0;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.support-inset {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: min(46%, 240px);
  aspect-ratio: 1 / 1;
  border-color: rgba(33, 88, 214, 0.55);
  box-shadow: 0 0 0 1px rgba(33, 88, 214, 0.28), 0 0 30px rgba(33, 88, 214, 0.2);
}

.support-visual figcaption,
.why-media figcaption,
.final-cta-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 70rem;
  margin-bottom: 2rem;
}

.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.arsenal-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.58);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.arsenal-card:hover,
.arsenal-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(33, 88, 214, 0.35), 0 0 36px rgba(33, 88, 214, 0.32);
  border-color: rgba(33, 88, 214, 0.75);
}

.card-index,
.why-point span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--blue-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.arsenal-card h3,
.why-point h3 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.arsenal-card ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.arsenal-card li {
  position: relative;
  padding-left: 1.75rem;
}

.arsenal-card li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(33, 88, 214, 0.28);
}

.arsenal-card:nth-child(1) li::before {
  content: "▣";
}

.arsenal-card:nth-child(2) li::before {
  content: "◎";
}

.arsenal-card:nth-child(3) li::before {
  content: "▲";
}

.arsenal-card li + li {
  margin-top: 0.5rem;
}

.warning-stripe {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 18px;
}

.warning-stripe span:nth-child(odd) {
  background: var(--yellow);
}

.warning-stripe span:nth-child(even) {
  background: var(--black);
}

.why-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 35, 102, 0.28), transparent 26%),
    rgba(255, 255, 255, 0.02);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.why-copy {
  display: grid;
  gap: 1rem;
}

.why-points {
  display: grid;
  gap: 1rem;
}

.why-media {
  position: relative;
  min-height: 330px;
  margin-top: 0.5rem;
}

.why-point {
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--blue-bright);
  background: rgba(255, 255, 255, 0.03);
}

.compliance-strip {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.compliance-media,
.compliance-video,
.compliance-poster,
.compliance-overlay {
  position: absolute;
  inset: 0;
}

.compliance-media {
  overflow: hidden;
}

.compliance-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.88) contrast(1.06) brightness(0.7);
}

.compliance-video {
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  min-height: 56.25vw;
  height: 100%;
  border: 0;
  opacity: 0.62;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.14);
  filter: saturate(0.96) contrast(1.04) brightness(0.78);
}

.compliance-overlay {
  background:
    linear-gradient(90deg, rgba(0, 35, 102, 0.42), rgba(0, 8, 24, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.compliance-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.compliance-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compliance-steps li {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.compliance-steps strong {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.compliance-steps span {
  text-transform: none;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 35, 102, 0.25), transparent 55%),
    rgba(255, 255, 255, 0.025);
}

.final-cta-copy {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.final-cta-visual {
  position: relative;
  min-height: 360px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 35, 102, 0.28), rgba(0, 0, 0, 0.8)),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(0, 35, 102, 0.34), rgba(255, 255, 255, 0.03) 52%, rgba(0, 0, 0, 0.92)),
    rgba(2, 7, 18, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 30px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(28px) scale(0.98);
  transition: transform 220ms ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.contact-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(33, 88, 214, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.42);
  color: var(--white);
  cursor: pointer;
}

.contact-close span {
  position: absolute;
  top: 21px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--white);
}

.contact-close span:first-child {
  transform: rotate(45deg);
}

.contact-close span:last-child {
  transform: rotate(-45deg);
}

.contact-panel,
.contact-form {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-panel p,
.contact-note {
  text-transform: none;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.contact-channel {
  display: grid;
  gap: 0.35rem;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(33, 88, 214, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  border-color: rgba(33, 88, 214, 0.72);
  box-shadow: 0 0 18px rgba(33, 88, 214, 0.18);
  transform: translateY(-2px);
}

.contact-channel-label,
.contact-field span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.62);
}

.contact-channel strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  text-transform: none;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 144px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(33, 88, 214, 0.8);
  box-shadow: 0 0 0 1px rgba(33, 88, 214, 0.28), 0 0 16px rgba(33, 88, 214, 0.16);
  background: rgba(0, 0, 0, 0.54);
}

.contact-form-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-submit {
  width: 100%;
  cursor: pointer;
}

.contact-note {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.contact-review {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(33, 88, 214, 0.34);
  background:
    linear-gradient(135deg, rgba(33, 88, 214, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.34);
}

.contact-review-tag {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
}

.contact-review-copy {
  margin: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
}

.contact-review-body {
  margin: 0;
  padding: 1rem;
  white-space: pre-wrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  line-height: 1.5;
}

.contact-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-review-actions .cta-button,
.contact-review-actions .ghost-link {
  flex: 1 1 180px;
}

.contact-copy {
  cursor: pointer;
}

.contact-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-status[data-state="success"] {
  border-color: rgba(33, 88, 214, 0.52);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(33, 88, 214, 0.16);
}

.contact-status[data-state="error"] {
  border-color: rgba(255, 204, 0, 0.56);
  color: rgba(255, 245, 204, 0.96);
}

.site-footer {
  border-top: 2px solid var(--blue-bright);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%),
    #02050c;
}

.footer-shell {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2rem 0 2.6rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(92px, 24vw);
}

.footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.38));
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal[data-reveal="left"] {
  transform: translate3d(-54px, 0, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(54px, 0, 0);
}

.reveal[data-reveal="zoom"] {
  transform: scale(0.88);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes title-steel-sweep {
  0%,
  18%,
  100% {
    background-position: 135% 50%;
    transform: translateY(0) scale(1);
    letter-spacing: 0.08em;
  }
  28% {
    background-position: 82% 50%;
  }
  40% {
    background-position: 54% 50%;
  }
  52% {
    background-position: 20% 50%;
    transform: translateY(-0.01em) scale(1.012);
    letter-spacing: 0.09em;
  }
  64% {
    background-position: -18% 50%;
  }
}

@keyframes title-underbar-sweep {
  0%,
  20% {
    transform: translate3d(-115%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  26% {
    opacity: 0.95;
  }
  48% {
    transform: translate3d(4%, 0, 0) skewX(-18deg);
    opacity: 0.9;
  }
  60% {
    transform: translate3d(24%, 0, 0) skewX(-18deg);
    opacity: 0.42;
  }
  72%,
  100% {
    transform: translate3d(118%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes title-beam-pass {
  0%,
  22% {
    transform: translate3d(-125%, 0, 0);
    opacity: 0;
  }
  30% {
    opacity: 0.95;
  }
  50% {
    transform: translate3d(10%, 0, 0);
    opacity: 0.9;
  }
  60% {
    transform: translate3d(32%, 0, 0);
    opacity: 0.36;
  }
  72%,
  100% {
    transform: translate3d(122%, 0, 0);
    opacity: 0;
  }
}

@keyframes scan {
  from {
    transform: translateY(-6%);
  }
  to {
    transform: translateY(6%);
  }
}

@media (max-width: 1024px) {
  .support-grid,
  .why-grid,
  .arsenal-grid,
  .compliance-steps,
  .final-cta-shell,
  .contact-dialog {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .support-visual-cluster {
    min-height: 380px;
  }

  .final-cta-visual {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 98px;
  }

  .header-shell {
    min-height: var(--header-height);
    height: auto;
    padding-block: 0.8rem;
    align-items: center;
  }

  .header-actions {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    border-color: rgba(33, 88, 214, 0.5);
    background:
      linear-gradient(180deg, rgba(33, 88, 214, 0.16), rgba(255, 255, 255, 0.04)),
      rgba(0, 0, 0, 0.42);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(33, 88, 214, 0.18);
  }

  .menu-panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: -0.1rem;
    width: calc(100vw - 1rem);
    max-width: 420px;
    padding: 1.3rem 1.3rem 1.45rem;
    display: grid;
    justify-items: stretch;
    gap: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(0, 35, 102, 0.24), rgba(0, 0, 0, 0.9)),
      rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(22px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.04),
      0 24px 60px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .menu-panel::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0.65rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(33, 88, 214, 0), rgba(33, 88, 214, 0.9), rgba(33, 88, 214, 0));
    box-shadow: 0 0 14px rgba(33, 88, 214, 0.28);
  }

  .site-header.is-menu-open .menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .main-nav {
    display: grid;
    justify-items: stretch;
    justify-self: stretch;
    gap: 0.95rem;
    font-size: 0.78rem;
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(90deg, rgba(33, 88, 214, 0.12), rgba(255, 255, 255, 0.02));
  }

  .main-nav a::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.8rem;
    border-top: 2px solid rgba(33, 88, 214, 0.95);
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(33, 88, 214, 0.2);
  }

  .logo {
    width: min(96px, 28vw);
  }

  .brand-logo {
    max-height: 46px;
  }

  .header-socials {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.2rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-inline: 0;
  }

  .header-socials .social-link {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    order: 2;
    min-height: 40px;
    padding-inline: 0.85rem;
  }

  .hero-shell {
    min-height: calc(100dvh - var(--header-height));
    align-content: end;
    gap: 0.8rem;
    padding-block: 2rem 1.35rem;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-title {
    width: min(9ch, 100%);
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .hero-kicker,
  .hero-copy {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 0.35rem;
  }

  .hero-metrics {
    margin-top: 0.8rem;
  }

  .hero-embed {
    width: max(190svh, 100vw);
    height: max(110svh, 56.25vw);
    min-width: 0;
    min-height: 0;
    transform: translate(-50%, -50%) scale(1.14);
  }

  .section {
    padding: 4.5rem 0;
  }

  .cta-button,
  .ghost-link {
    width: 100%;
  }

  .hero-video-fallback {
    padding: 1rem;
  }

  .support-visual-cluster {
    min-height: 300px;
  }

  .contact-dialog {
    gap: 1rem;
    padding: 1rem;
    max-height: calc(100dvh - 1rem);
  }

  .contact-panel h2 {
    max-width: 14ch;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .contact-channels,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-review-actions {
    flex-direction: column;
  }

  .contact-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 42px;
    height: 42px;
  }

  .support-visual {
    inset: 0;
  }

  .support-inset {
    right: 10px;
    bottom: 10px;
    width: 42%;
  }

  .why-media,
  .final-cta-visual {
    min-height: 240px;
  }

  .reticle {
    display: none;
  }
}

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

  .hero-noise,
  .hero-title::before,
  .hero-title::after,
  .hero-title-core,
  .hero-title-sweep::before,
  .hero-title-sweep::after {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-button::before {
    display: none;
  }
}
