:root {
  --bg: #07111f;
  --bg-2: #0b1727;
  --panel: #0f2035;
  --line: rgba(255, 255, 255, 0.10);
  --text: #f5f8fc;
  --muted: #a8b5c7;
  --blue: #278cff;
  --blue-2: #58b8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.90);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.main-logo {
  width: 330px;
  max-width: 34vw;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.nav > a:not(.btn) {
  color: #d8e1ec;
}

.nav > a:not(.btn):hover {
  color: white;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1459e6);
  box-shadow: 0 10px 30px rgba(39, 140, 255, 0.28);
}

.btn-outline {
  border-color: #3978bd;
  background: rgba(39, 140, 255, 0.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.full {
  width: 100%;
  margin-top: 8px;
}


/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(35, 127, 255, 0.20), transparent 35%),
    linear-gradient(135deg, #07111f 0%, #0c1d31 48%, #07111f 100%);
  display: flex;
  flex-direction: column;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(91, 163, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 163, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
}

.hero-glow-one {
  width: 450px;
  height: 450px;
  background: rgba(26, 126, 255, 0.12);
  right: -90px;
  top: 120px;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: rgba(29, 180, 255, 0.08);
  left: -80px;
  bottom: 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 52px;
  padding-top: 140px;
  padding-bottom: 90px;
}

.eyebrow,
.section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fb8ff;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(58px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 18px 0 26px;
}

.hero h1 span {
  color: #4da9ff;
}

.hero-lead {
  font-size: 21px;
  line-height: 1.45;
  max-width: 650px;
  margin: 0 0 14px;
  color: #eef5fd;
}

.hero-sub {
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 50px;
  max-width: 660px;
}

.hero-stats div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero-stats strong {
  display: block;
  color: #5bb8ff;
  font-size: 13px;
}

.hero-stats span {
  font-size: 12px;
  color: #afbdcd;
}

.hero-art {
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 525px;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 26px;
  border: 1px solid rgba(91, 184, 255, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 31, 0.30),
    rgba(7, 17, 31, 0.00) 35%
  );
}

.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}

.trust-strip {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9db0c6;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2e8fff;
}


/* GENERAL */

.section {
  padding: 110px 0;
}

.section h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading > div {
  max-width: 740px;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  margin: 0 0 10px;
}


/* ABOUT */

.about {
  background:
    linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
  color: #0c1622;
}

.about-owner-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap {
  max-width: 430px;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #dfe8f2;
  box-shadow: 0 28px 70px rgba(22, 56, 93, 0.16);
  border: 1px solid #d2deea;
}

.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(39, 140, 255, 0.00) 55%,
      rgba(7, 17, 31, 0.12) 100%
    );
}

.about-owner-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-photo-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 6px 0;
}

.about-photo-caption strong {
  font-size: 17px;
  color: #102033;
}

.about-photo-caption span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6b88;
}

.about-owner-copy h2 {
  max-width: 740px;
}

.about-owner-copy p {
  color: #536273;
  font-size: 17px;
  max-width: 760px;
}

.about-owner-copy .about-lead {
  color: #27384a;
  font-size: 19px;
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.about-values div {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d9e3ed;
  box-shadow: 0 12px 30px rgba(35, 73, 113, 0.06);
}

.about-values strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  color: #123150;
}

.about-values span {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: #647486;
}

.about-cta {
  margin-top: 28px;
}


/* SERVICES */

.services {
  background:
    radial-gradient(circle at 88% 10%, rgba(39, 140, 255, 0.10), transparent 23%),
    #091525;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-service-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  transition: 0.25s ease;
}

.visual-service-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: -70px;
  top: -80px;
  background: rgba(39, 140, 255, 0.07);
  border: 1px solid rgba(77, 169, 255, 0.10);
}

.visual-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 169, 255, 0.40);
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(39,140,255,0.20), rgba(39,140,255,0.04));
  border: 1px solid rgba(91,184,255,0.28);
  color: #69bfff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.service-num {
  display: block;
  font-size: 10px;
  color: #4fa7ff;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.visual-service-card h3 {
  font-size: 23px;
  margin: 0 0 12px;
}

.visual-service-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.service-tag {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6eaee9;
}


/* FEDERAL */

.federal {
  background: linear-gradient(145deg, #0b1b2e, #0b1422);
}

.federal-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.federal-copy > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 700px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #dbe6f1;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #308fff;
  box-shadow: 0 0 0 4px rgba(48, 143, 255, 0.10);
}

.federal-panel {
  border: 1px solid rgba(68, 157, 255, 0.30);
  border-radius: 28px;
  padding: 38px;
  background: linear-gradient(
    180deg,
    rgba(40, 115, 202, 0.12),
    rgba(11, 27, 46, 0.65)
  );
  box-shadow: var(--shadow);
}

.panel-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: #5bb8ff;
}

.federal-panel strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 18px 0;
}

.federal-panel p {
  color: var(--muted);
}

.federal-panel a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
  color: #69bfff;
}


/* PROJECTS */

.projects {
  background:
    linear-gradient(180deg, #07111f 0%, #0a1828 100%);
}

.projects-heading {
  margin-bottom: 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 345px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(155deg, rgba(18, 49, 83, 0.86), rgba(8, 20, 34, 0.96));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 166, 255, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 32px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(91, 184, 255, 0.24);
  background: rgba(39, 140, 255, 0.10);
  color: #6abaff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-index {
  color: rgba(255, 255, 255, 0.34);
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-card h3 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
  color: #aebccd;
  font-size: 14px;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #b8cae0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-disclaimer {
  margin-top: 18px;
  padding: 13px 16px;
  border-left: 3px solid #278cff;
  background: rgba(255, 255, 255, 0.025);
  color: #8394a8;
  font-size: 11px;
  line-height: 1.55;
}


/* CAPABILITIES */

.capabilities {
  background: #f7f9fc;
  color: #0c1622;
}

.capability-banner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 42px;
  padding: 42px;
  border-radius: 26px;
  border: 1px solid #dbe5ef;
  background:
    linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: 0 20px 55px rgba(24, 67, 110, 0.08);
}

.capability-banner p {
  color: #566577;
  max-width: 720px;
}

.capability-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-download {
  text-align: center;
}

.dark-ghost {
  color: #0c1622;
  border-color: #c5d5e5;
  background: rgba(12, 22, 34, 0.02);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: white;
}

.cap-item span {
  font-size: 11px;
  color: #2588ee;
  font-weight: 800;
}

.cap-item strong {
  font-size: 14px;
}

.capability-file-note {
  margin: 20px 0 0;
  color: #768698;
  font-size: 11px;
}


/* CONTACT */

.contact {
  background: #081321;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.contact p {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}

.contact-card {
  background: #0e2035;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.contact-card > a:not(.btn),
.contact-card > div {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6dbbff;
}

.contact-card strong {
  margin-top: 4px;
  font-size: 16px;
}


/* FOOTER */

.site-footer {
  background: #050c15;
  border-top: 1px solid var(--line);
}

.footer-grid {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1.15fr auto 0.65fr;
  align-items: center;
  gap: 32px;
}

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

.footer-logo {
  width: 345px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-copy {
  font-size: 11px;
  color: #7f8fa2;
}

.back-top {
  justify-self: end;
  font-size: 11px;
  color: #8fbfff;
}


/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.15s;
}


/* TABLET */

@media (max-width: 980px) {

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a1727;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav .btn {
    margin-top: 5px;
  }

  .main-logo {
    width: 285px;
    max-width: 62vw;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-art {
    max-width: 760px;
  }

  .hero-image {
    height: 460px;
  }

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

  .two-col,
  .federal-wrap,
  .contact-grid,
  .capability-banner {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 32px 0;
    gap: 22px;
  }

  .back-top {
    justify-self: start;
  }
}


/* MOBILE */

@media (max-width: 640px) {

  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .nav-wrap {
    min-height: 82px;
  }

  .main-logo {
    width: 210px;
    max-width: 66vw;
    max-height: 62px;
  }

  .nav {
    top: 80px;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 55px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 35px;
  }

  .hero-image {
    height: 315px;
    border-radius: 18px;
  }

  .hero-art::after {
    border-radius: 18px;
  }

  .trust-strip {
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    padding: 0 4px;
  }

  .section {
    padding: 78px 0;
  }

  .two-col {
    gap: 18px;
  }

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

  .visual-service-card {
    min-height: 315px;
  }

  .federal-panel {
    padding: 26px;
  }

  .federal-panel strong {
    font-size: 34px;
  }

  .capability-banner {
    padding: 28px;
  }

  .footer-logo {
    width: 250px;
  }
}



@media (max-width: 980px) {
  .about-owner-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-photo-wrap {
    max-width: 500px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-photo-wrap {
    max-width: 100%;
  }

  .about-photo-frame {
    border-radius: 20px;
  }

  .about-owner-photo {
    aspect-ratio: 4 / 4.8;
  }

  .about-owner-copy .about-lead {
    font-size: 17px;
  }
}


/* FINAL SITE ADDITIONS */

.why-blue-sonic {
  background:
    radial-gradient(circle at 15% 20%, rgba(39, 140, 255, 0.11), transparent 25%),
    linear-gradient(145deg, #0a1829, #07111f);
}

.why-heading {
  margin-bottom: 34px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 245px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
}

.value-mark {
  display: inline-block;
  margin-bottom: 36px;
  color: #5bb8ff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.markets {
  background: #f7f9fc;
  color: #0c1622;
}

.markets .section-heading > p {
  color: #617184;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.market-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #d9e4ef;
  background: linear-gradient(135deg, #ffffff, #f0f6fc);
  box-shadow: 0 16px 40px rgba(24, 67, 110, 0.07);
}

.market-card span {
  display: block;
  margin-bottom: 16px;
  color: #163d66;
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  text-transform: uppercase;
}

.market-card p {
  margin: 0;
  color: #627386;
  font-size: 14px;
}

.company-data {
  background: #eef4fb;
  color: #0c1622;
}

.company-data-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.company-data-copy p {
  color: #607184;
  font-size: 16px;
}

.company-data-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d4e0eb;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(24, 67, 110, 0.08);
}

.data-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid #e5ecf3;
}

.data-row span {
  color: #2c79c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.data-row strong {
  color: #172a3d;
  font-size: 13px;
  line-height: 1.55;
}

.data-note {
  margin: 0;
  padding: 18px 24px;
  color: #748395;
  background: #f8fafc;
  font-size: 11px;
  line-height: 1.55;
}

.trade-partners {
  background:
    radial-gradient(circle at 85% 20%, rgba(39, 140, 255, 0.12), transparent 25%),
    #081321;
}

.trade-partners-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.trade-partners-copy p,
.trade-partners-panel p {
  color: var(--muted);
  font-size: 16px;
}

.trade-partners-panel {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(91, 184, 255, 0.25);
  background: linear-gradient(180deg, rgba(39,140,255,0.11), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.trade-partners-panel .btn {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-data-wrap,
  .trade-partners-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .value-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .market-card {
    min-height: 0;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .trade-partners-panel {
    padding: 26px;
  }
}


/* =========================================================
   BLUE SONIC POLISH v32
   Final presentation fixes: no numbering, stronger icons,
   highlighted market cards, and clean company-data layout.
   ========================================================= */

/* WHY BLUE SONIC — icon-led cards, no 01/02/03/04 */
.value-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid rgba(91, 184, 255, 0.20);
  background: linear-gradient(155deg, rgba(20, 52, 88, 0.78), rgba(8, 22, 38, 0.94));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.value-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 15px;
  color: #72c4ff;
  border: 1px solid rgba(91, 184, 255, 0.32);
  background: linear-gradient(145deg, rgba(39,140,255,0.24), rgba(39,140,255,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.value-icon svg,
.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-mark { display: none !important; }

/* SERVICES — uniform professional line icons */
.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #80cbff;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(39,140,255,0.26), rgba(39,140,255,0.07));
  border: 1px solid rgba(91,184,255,0.38);
  box-shadow: 0 12px 30px rgba(0, 64, 148, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-icon svg { width: 29px; height: 29px; }

/* MARKETS — clearly highlighted categories */
.markets {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  color: #0b1b2d;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.market-card {
  position: relative;
  min-height: 220px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #cfdfef;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 70, 120, 0.08);
}

.market-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #58b8ff, #176ee7);
}

.market-card h3 {
  margin: 0 0 16px;
  color: #123c67;
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.market-card p {
  margin: 0;
  color: #586d82;
  font-size: 15px;
  line-height: 1.65;
}

/* COMPANY DATA — clean label/value alignment */
.company-data {
  background: linear-gradient(180deg, #edf4fb 0%, #f7faff 100%);
  color: #0c1622;
}

.company-data-card {
  border: 1px solid #cdddeb;
  box-shadow: 0 22px 58px rgba(24, 67, 110, 0.10);
}

.data-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 21px 26px;
}

.data-row span {
  padding-top: 2px;
  color: #246fb8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-row strong {
  display: block;
  color: #152a3d;
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.data-code {
  font-family: "Inter", monospace;
  letter-spacing: 0.10em;
  color: #0f63b7 !important;
}

/* CAPABILITIES — remove decorative numbers and strengthen cards */
.cap-item span { display: none !important; }

.cap-item {
  position: relative;
  min-height: 105px;
  display: flex;
  align-items: center;
  padding: 24px 24px 24px 52px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014));
}

.cap-item::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4eaeff;
  box-shadow: 0 0 0 6px rgba(78,174,255,0.10);
}

.cap-item strong {
  font-size: 15px;
  line-height: 1.4;
}

/* Keep buttons obviously actionable */
.trade-partners-panel .btn,
.contact-card .btn {
  box-shadow: 0 10px 30px rgba(39,140,255,0.24);
}

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

@media (max-width: 720px) {
  .market-grid { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: 1fr; gap: 7px; }
  .value-card { min-height: 0; }
}


/* =========================================================
   BLUE SONIC 3D ICON POLISH v33
   Approved 3D icon set for Why Blue Sonic + Core Services.
   ========================================================= */

/* WHY BLUE SONIC — large, clean 3D visual above each heading */
.value-card {
  min-height: 360px;
  padding: 24px;
}

.value-icon.value-icon-3d {
  width: 100%;
  height: 175px;
  margin: 0 0 24px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(91, 184, 255, 0.24);
  background: #071426;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.value-icon.value-icon-3d img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.value-card h3 {
  margin-top: 0;
}

/* CORE SERVICES — approved Blue Sonic 3D construction icon tiles */
.service-icon.service-icon-3d {
  width: 118px;
  height: 98px;
  margin-bottom: 22px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(91, 184, 255, 0.30);
  background: #071426;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.service-icon.service-icon-3d img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.visual-service-card {
  min-height: 380px;
}

/* The 3D icon artwork is the visual accent; remove inherited SVG-only styling. */
.value-icon-3d svg,
.service-icon-3d svg {
  display: none !important;
}

@media (max-width: 980px) {
  .value-icon.value-icon-3d {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .value-card {
    min-height: 0;
  }

  .value-icon.value-icon-3d {
    height: 210px;
  }

  .service-icon.service-icon-3d {
    width: 112px;
    height: 94px;
  }

  .visual-service-card {
    min-height: 370px;
  }
}


/* =========================================================
   BLUE SONIC CREDIBILITY UPGRADE v36
   Project Delivery Approach + Representative Project Types.
   Keeps the existing visual system intact.
   ========================================================= */

/* PROJECT DELIVERY APPROACH */
.delivery-approach {
  background:
    radial-gradient(circle at 82% 18%, rgba(39, 140, 255, 0.11), transparent 25%),
    linear-gradient(180deg, #081522 0%, #0a1a2c 100%);
}

.delivery-heading {
  margin-bottom: 38px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.delivery-card {
  min-height: 285px;
  padding: 28px;
  border-radius: 21px;
  border: 1px solid rgba(91, 184, 255, 0.18);
  background:
    linear-gradient(155deg, rgba(18, 49, 83, 0.80), rgba(8, 20, 34, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: 0.25s ease;
}

.delivery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 184, 255, 0.38);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.delivery-label {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin-bottom: 34px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(91, 184, 255, 0.25);
  background: rgba(39, 140, 255, 0.10);
  color: #6abaff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.delivery-card h3 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.delivery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* REPRESENTATIVE PROJECT TYPES */
.representative-work {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  color: #0c1622;
}

.representative-work .section-heading > p {
  color: #617184;
}

.representative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.representative-card {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  padding: 30px 30px 30px 34px;
  border-radius: 21px;
  border: 1px solid #d3e0ec;
  background: #ffffff;
  box-shadow: 0 17px 42px rgba(24, 67, 110, 0.07);
}

.representative-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #58b8ff, #176ee7);
}

.representative-card h3 {
  margin: 0 0 14px;
  color: #143b63;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.representative-card p {
  margin: 0;
  color: #5e7083;
  font-size: 14px;
  line-height: 1.7;
}

.representative-note {
  margin-top: 18px;
  padding: 14px 17px;
  border-left: 3px solid #278cff;
  background: rgba(39, 140, 255, 0.05);
  color: #6b7d90;
  font-size: 11px;
  line-height: 1.55;
}


/* RESPONSIVE v36 */
@media (max-width: 980px) {
  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .representative-grid {
    grid-template-columns: 1fr;
  }
}

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

  .delivery-card,
  .representative-card {
    min-height: 0;
  }

  .delivery-card {
    padding: 25px;
  }

  .representative-card {
    padding: 26px 25px 26px 30px;
  }
}


/* =========================================================
   BLUE SONIC IMAGE INTEGRATION v37
   Adds real construction photography without changing
   the existing hero or core visual system.
   ========================================================= */

.delivery-feature {
  position: relative;
  min-height: 360px;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(91, 184, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  background: #071421;
}

.delivery-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.delivery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 26, 0.82) 0%, rgba(3, 14, 26, 0.40) 45%, rgba(3, 14, 26, 0.08) 75%),
    linear-gradient(180deg, rgba(3, 14, 26, 0.02) 45%, rgba(3, 14, 26, 0.52) 100%);
  pointer-events: none;
}

.delivery-feature-overlay {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 32px;
  max-width: 560px;
}

.delivery-feature-overlay span {
  display: block;
  margin-bottom: 9px;
  color: #68baff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.delivery-feature-overlay strong {
  display: block;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  text-transform: uppercase;
}


/* Representative project photography */
.representative-card {
  padding: 0;
}

.representative-card::before {
  z-index: 3;
}

.representative-image {
  width: 100%;
  height: 225px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid #d3e0ec;
}

.representative-card-body {
  padding: 27px 30px 30px 34px;
}

.site-cleanup-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  min-height: 290px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #d3e0ec;
  border-radius: 21px;
  background: #0a1a2c;
  box-shadow: 0 17px 42px rgba(24, 67, 110, 0.08);
}

.site-cleanup-feature img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-cleanup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 140, 255, 0.16), transparent 45%),
    linear-gradient(155deg, #102a46 0%, #081522 100%);
}

.site-cleanup-copy span {
  margin-bottom: 11px;
  color: #68baff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-cleanup-copy strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 29px;
  line-height: 1.12;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .delivery-feature,
  .delivery-feature img {
    min-height: 310px;
  }

  .delivery-feature img {
    object-position: 62% center;
  }

  .delivery-feature-overlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .representative-image {
    height: 210px;
  }

  .representative-card-body {
    padding: 24px 24px 27px 29px;
  }

  .site-cleanup-feature {
    grid-template-columns: 1fr;
  }

  .site-cleanup-feature img {
    min-height: 235px;
  }

  .site-cleanup-copy {
    padding: 28px 25px;
  }

  .site-cleanup-copy strong {
    font-size: 25px;
  }
}


/* =========================================================
   BLUE SONIC READABILITY FIX v38
   Stronger contrast for mobile and dark sections.
   ========================================================= */

:root {
  color-scheme: dark;
}

body {
  color: var(--text);
}

/* Make all dark sections read clearly */
.hero,
.why-blue-sonic,
.services,
.delivery-approach,
.federal,
.projects,
.trade-partners,
.contact {
  color: #f5f8fc;
}

.hero {
  background:
    radial-gradient(circle at 70% 35%, rgba(35, 127, 255, 0.26), transparent 35%),
    linear-gradient(135deg, #081725 0%, #0d2238 48%, #081725 100%);
}

.why-blue-sonic,
.services,
.delivery-approach,
.federal,
.projects,
.trade-partners,
.contact {
  background-blend-mode: normal;
}

.hero h1,
.hero h1 span,
.hero-lead,
.hero-sub,
.why-blue-sonic h2,
.why-blue-sonic p,
.services h2,
.services .section-heading > p,
.delivery-approach h2,
.delivery-approach .section-heading > p,
.federal h2,
.federal .section-heading > p,
.projects h2,
.projects .section-heading > p,
.trade-partners h2,
.trade-partners .section-heading > p,
.contact h2,
.contact .section-heading > p,
.contact p,
.contact-card strong,
.contact-card a,
.trade-partners-copy p,
.trade-partners-panel p,
.federal-copy > p,
.federal-panel p,
.check-list li,
.project-card h3,
.project-card p,
.project-tags span,
.visual-service-card h3,
.visual-service-card p,
.delivery-card h3,
.delivery-card p,
.value-card h3,
.value-card p {
  color: #f5f8fc !important;
}

.hero-sub,
.why-blue-sonic p,
.services .section-heading > p,
.delivery-approach .section-heading > p,
.federal .section-heading > p,
.projects .section-heading > p,
.trade-partners .section-heading > p,
.contact .section-heading > p,
.contact p,
.trade-partners-copy p,
.trade-partners-panel p,
.federal-copy > p,
.federal-panel p,
.visual-service-card p,
.delivery-card p,
.value-card p,
.project-card p,
.check-list li {
  color: #d8e5f3 !important;
}

.eyebrow,
.section-kicker,
.panel-label,
.delivery-label,
.project-status,
.contact-card span,
.service-tag,
.delivery-feature-overlay span,
.site-cleanup-copy span {
  color: #7fc9ff !important;
}

.hero h1,
.section h2,
.visual-service-card h3,
.delivery-card h3,
.value-card h3,
.project-card h3,
.federal-panel strong,
.delivery-feature-overlay strong,
.site-cleanup-copy strong {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

/* Buttons should always stay bright and readable */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost,
.contact-card .btn,
.trade-partners-panel .btn {
  color: #ffffff !important;
}

.btn-primary {
  background: linear-gradient(135deg, #2b91ff, #1767ed);
  border-color: rgba(255,255,255,0.08);
}

.btn-outline {
  border-color: rgba(122, 194, 255, 0.45);
  background: rgba(39, 140, 255, 0.14);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

/* Slightly brighten cards so black-text glitches don't happen */
.value-card,
.visual-service-card,
.delivery-card,
.project-card,
.trade-partners-panel,
.contact-card,
.federal-panel {
  background-image: linear-gradient(155deg, rgba(20, 55, 92, 0.90), rgba(9, 24, 40, 0.96));
}

/* Preserve lighter backgrounds in light sections */
.company-data,
.markets,
.representative-work,
.capabilities,
.about {
  color: #0c1622;
}

@media (max-width: 640px) {
  .hero h1,
  .section h2 {
    text-shadow: 0 1px 2px rgba(0,0,0,0.22);
  }

  .hero-lead,
  .hero-sub,
  .section-heading > p,
  .contact p,
  .federal-copy > p,
  .trade-partners-copy p,
  .trade-partners-panel p,
  .visual-service-card p,
  .delivery-card p,
  .value-card p,
  .project-card p,
  .check-list li {
    line-height: 1.72;
  }
}
