:root {
  --navy-950: #020b17;
  --navy-900: #061426;
  --navy-850: #071b33;
  --navy-800: #082344;
  --blue-500: #1f8bff;
  --blue-400: #45b7ff;
  --gold-500: #d6a54a;
  --gold-400: #f2c76a;
  --white: #ffffff;
  --muted: #b8c4d2;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 8%, rgba(31, 139, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 22%, rgba(214, 165, 74, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 42%, var(--navy-950));
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px clamp(20px, 5vw, 76px);
  background: rgba(2, 11, 23, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 165, 74, 0.18);
}

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

.brand img {
  width: clamp(140px, 14vw, 200px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-400);
}

.nav-button {
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--navy-950) !important;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 30px rgba(214, 165, 74, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: 30px;
  padding: clamp(72px, 8vw, 128px) clamp(20px, 5vw, 76px);
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 165, 74, 0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 23, 0.95) 0%, rgba(2, 11, 23, 0.76) 38%, rgba(2, 11, 23, 0.25) 100%),
    radial-gradient(circle at 70% 55%, rgba(31, 139, 255, 0.25), transparent 24rem);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  color: var(--blue-500);
  text-shadow: 0 0 30px rgba(31, 139, 255, 0.4);
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-veteran {
  color: var(--gold-400);
  background: rgba(214, 165, 74, 0.12);
  border-color: rgba(214, 165, 74, 0.45);
}

.badge-hipaa {
  color: var(--blue-400);
  background: rgba(31, 139, 255, 0.12);
  border-color: rgba(69, 183, 255, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button::after {
  content: "→";
  font-size: 1.2em;
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 18px 40px rgba(214, 165, 74, 0.22);
}

.button-secondary {
  color: var(--blue-400);
  background: rgba(8, 35, 68, 0.35);
  border-color: rgba(69, 183, 255, 0.45);
}

.wave-graphic {
  position: relative;
  z-index: 1;
  min-height: 620px;
  isolation: isolate;
}

.wave {
  position: absolute;
  inset: 7% -16% 0 0;
  background:
    radial-gradient(circle at 44% 37%, rgba(255, 255, 255, 0.98) 0 2%, transparent 2.3%),
    radial-gradient(circle at 51% 24%, rgba(255, 255, 255, 0.85) 0 1.2%, transparent 1.4%),
    radial-gradient(circle at 57% 34%, rgba(69, 183, 255, 0.9) 0 1.1%, transparent 1.3%),
    radial-gradient(ellipse at 42% 58%, rgba(255, 255, 255, 0.96) 0 4%, rgba(69, 183, 255, 0.75) 8%, rgba(31, 139, 255, 0.42) 19%, transparent 38%),
    conic-gradient(from 206deg at 42% 57%, transparent 0deg, rgba(5, 69, 125, 0.08) 38deg, rgba(31, 139, 255, 0.85) 74deg, rgba(255, 255, 255, 0.96) 92deg, rgba(12, 97, 169, 0.9) 116deg, rgba(2, 11, 23, 0.1) 150deg, transparent 180deg);
  filter: drop-shadow(0 0 46px rgba(31, 139, 255, 0.38));
  opacity: 0.98;
  transform: rotate(-2deg);
}

.wave::before {
  content: "";
  position: absolute;
  inset: 28% 21% 20% 8%;
  background:
    repeating-linear-gradient(160deg, transparent 0 32px, rgba(255,255,255,0.42) 33px 35px, transparent 36px 70px),
    radial-gradient(ellipse at 50% 60%, rgba(255,255,255,0.92), rgba(31,139,255,0.3) 34%, transparent 62%);
  clip-path: polygon(0 65%, 10% 50%, 25% 42%, 42% 35%, 52% 20%, 59% 8%, 66% 17%, 61% 31%, 74% 26%, 82% 40%, 69% 47%, 92% 56%, 88% 78%, 54% 67%, 25% 78%);
  opacity: 0.85;
}

.circuit-grid {
  position: absolute;
  inset: 28% -2% 11% 31%;
  opacity: 0.9;
}

.circuit-grid span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 2px;
  background: linear-gradient(90deg, rgba(31,139,255,0), var(--blue-500), var(--gold-400));
  box-shadow: 0 0 18px rgba(31,139,255,0.65);
}

.circuit-grid span::before,
.circuit-grid span::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 20px rgba(69,183,255,0.8);
}

.circuit-grid span::before {
  left: 28%;
}

.circuit-grid span::after {
  right: 0;
  background: var(--gold-400);
  box-shadow: 0 0 20px rgba(242,199,106,0.8);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px clamp(20px, 5vw, 76px) 62px;
  background:
    linear-gradient(180deg, rgba(2,11,23,0), rgba(8,35,68,0.16)),
    repeating-linear-gradient(30deg, transparent 0 70px, rgba(31,139,255,0.035) 71px 72px);
}

.pillar-card {
  padding: 38px clamp(24px, 5vw, 58px);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.pillar-card:last-child {
  border-right: 0;
}

.icon-wrap {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--gold-400);
}

.icon-wrap svg {
  width: 90px;
  height: 90px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin-bottom: 10px;
}

.pillar-card h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--gold-400);
}

.pillar-card p {
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
  max-width: 330px;
  margin-inline: auto;
}

.pillar-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue-400);
  text-decoration: none;
  font-weight: 800;
}

.pillar-card a::after {
  content: "›";
  font-size: 1.6em;
  line-height: 0;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

.section-header {
  max-width: var(--max-width);
  margin-inline: auto;
}

.section h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.service-grid {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 42px auto 0;
}

.service-grid article {
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(8,35,68,0.28);
  box-shadow: 0 18px 60px rgba(0,0,0,0.2);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-400);
  font-weight: 950;
}

.service-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-grid p,
.solution-list p,
.about-card p,
.contact-section p {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,165,74,0.1), transparent 24rem),
    linear-gradient(135deg, rgba(8,35,68,0.82), rgba(2,11,23,0.98));
  border-block: 1px solid rgba(214,165,74,0.2);
}

.split-section > * {
  max-width: 620px;
}

.solution-list {
  display: grid;
  gap: 20px;
}

.solution-list div {
  padding: 24px;
  border-left: 3px solid var(--gold-400);
  background: rgba(255,255,255,0.045);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-section {
  display: grid;
  place-items: center;
}

.about-card {
  max-width: 960px;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(31,139,255,0.18), transparent 18rem),
    rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  max-width: var(--max-width);
  margin-inline: auto;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(2,11,23,0.6);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(69,183,255,0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 6px 0 0;
  min-height: 1.2em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.form-status.is-success {
  color: var(--gold-400);
}

.form-status.is-error {
  color: #ff7a7a;
}

button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 76px);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .wave-graphic {
    min-height: 420px;
    margin-top: -40px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section,
  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 56px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    background: rgba(2,11,23,0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .pillars,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 52px;
  }

  .brand img {
    width: 140px;
  }

  .site-nav {
    inset-top: 52px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
