/* Hero */
:root {
  --dot-color: var(--blue);
  --line-color: rgba(255,255,255,0.22);
  --text-color: rgba(255,255,255,0.50);
  --hero-height: auto;
  --max-line-opacity: 1;
  --max-dot-opacity: .6;
  --min-dot-opacity: .01;
}

canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }


.hero-network {
  position: relative;
  margin: 0 !important;
  min-height: var(--hero-height);
  width: 100vw;
  overflow: hidden;
background:
  radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 5%),
  radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 5%),
  linear-gradient(135deg, #005c78 0%, #003f54 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,48,0,.06) 0%, rgba(74,48,0,.14) 100%);
  z-index: 2;
}

.hero_content {
  position: relative;
  z-index: 5;
  width: 100%;
  height:100%;
  margin: 0;
  padding: 200px 0 200px 0;
  text-align: center;
  color: var(--white);
}


.hero_content_text {
  width: min(760px, calc(100vw - 64px));
  margin:0px auto 100px auto;
}

.hero_content_form form {
	padding:24px 20vw 44px 20vw;
}

.hero_eyebrow {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-shadow:0px 0px 4px var(--blue), 0px 0px 6px var(--blue), 0px 0px 8px var(--blue);
  z-index:20000;

}

.hero_content h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(36px, 6.2vw, 60px);
  line-height: .98;
  letter-spacing: -0.035em;
  margin: 0 0 22px 0;
  color: var(--white) !important;
  text-shadow: none;
  text-shadow:0px 0px 4px var(--blue), 0px 0px 6px var(--blue), 0px 0px 18px var(--blue), 0px 0px 28px var(--blue);
  z-index:10000;

}

.hero_support {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  font-weight: 400;
  width: min(720px, 100%);
  margin: 0 auto;
  color: rgba(255,255,255,1) !important;
  text-shadow: none;
  text-shadow:0px 0px 4px var(--blue), 0px 0px 6px var(--blue), 0px 0px 8px var(--blue);
  z-index:20000;
}

.hero_actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero a.cta-button {
  background-color: var(--orange);
  color: var(--white);
  font-size: 18px;
  min-width: 280px;
  padding:5px 20px;
  height:auto !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  border:3px solid white;
}

.hero a.cta-button:hover { background-color: var(--orange); color: var(--white); }

.hero_link {
  color: rgba(255,255,255,.88);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 16px;
}
.hero_link:hover { color: var(--white); }

@media (max-width: 900px) {
  .hero_content { padding-top: 140px; }
}

@media (max-width: 700px) {
  .hero_content {
    width: calc(100vw - 32px);
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .hero_support { font-size: 20px; }
  .hero_actions { flex-direction: column; gap: 14px; }
  .hero a.cta-button { width: 100%; min-width: 0; }
}
