:root {
  --navy: #081224;
  --surface: #0f1b2d;
  --surface-2: #162338;
  --steel: #2b3a52;
  --orange: #e56a14;
  --orange-hover: #f07a24;
  --dark-orange: #c9550c;
  --white: #f7f8fa;
  --muted: #a9b3c2;
  --text-dark: #111827;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(8,18,36,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}
.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1;
}

.brand-mark::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-top: 5px;
  background: var(--orange);
}

.brand-name {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #dfe5ee;
}

.site-nav a:hover { color: #fff; }

.nav-cta {
  border: 1px solid var(--orange);
  padding: 11px 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0e4a7b;
  margin: 5px 0;
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--steel);
  padding-top: 80px;
  background:
    radial-gradient(circle at 82% 34%, rgba(229,106,20,.16), transparent 28%),
    linear-gradient(115deg, #081224 0%, #0b1729 58%, #101e31 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 760px;
  right: 7%;
  top: 20px;
  border-left: 1px solid rgba(229,106,20,.45);
  border-right: 1px solid rgba(229,106,20,.18);
  transform: skewX(-19deg);
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.eyebrow, .section-kicker {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: .98;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 8vw, 112px);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 670px;
  margin-top: 28px;
  color: #c9d2de;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--steel);
  color: #fff;
  background: rgba(255,255,255,.025);
}

.btn-secondary:hover {
  border-color: #69778c;
  background: rgba(255,255,255,.05);
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 72px;
  max-width: 700px;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}

.hero-proof div {
  flex: 1;
  padding: 18px 24px 18px 0;
  border-right: 1px solid var(--steel);
  margin-right: 24px;
}

.hero-proof div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: .14em;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.hero-side-label {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: #627187;
  font-size: 11px;
  letter-spacing: .18em;
  z-index: 2;
}

.section { padding: 110px 0; }

.statement {
  padding: 95px 0;
  background: var(--white);
  color: var(--text-dark);
}

.statement-grid {
  display: grid;
  grid-template-columns: 160px 1.3fr .8fr;
  gap: 50px;
  align-items: start;
}

.statement h2,
.section-heading h2,
.industries h2,
.contact h2 {
  font-size: clamp(48px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.statement h2 span { color: var(--orange); }

.statement-copy {
  color: #596273;
  padding-top: 8px;
}

.services {
  background: var(--surface);
}

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

.section-heading > p {
  max-width: 480px;
  color: var(--muted);
}

.section-heading h2 { margin-top: 10px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--steel);
  border-left: 1px solid var(--steel);
}

.service-card {
  min-height: 360px;
  padding: 30px;
  position: relative;
  background: rgba(255,255,255,.012);
  border-right: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  transition: .25s ease;
}

.service-card:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #657287;
  font-size: 11px;
  letter-spacing: .14em;
}

.service-icon {
  color: var(--orange);
  font-size: 32px;
  height: 70px;
}

.service-card h3 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.service-link,
.text-cta {
  display: inline-block;
  margin-top: 32px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.service-card-accent {
  background: var(--orange);
  color: #fff;
}

.service-card-accent:hover { background: var(--dark-orange); }

.service-card-accent .service-number,
.service-card-accent p { color: rgba(255,255,255,.8); }

.accent-small {
  letter-spacing: .14em;
  font-size: 10px !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.process {
  background: var(--navy);
  border-top: 1px solid var(--steel);
}

.process-heading { margin-bottom: 56px; }

.process-list {
  border-top: 1px solid var(--steel);
}

.process-step {
  display: grid;
  grid-template-columns: 90px .6fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--steel);
}

.process-step > span {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .12em;
}

.process-step h3 {
  font-size: 36px;
  text-transform: uppercase;
}

.process-step p {
  color: var(--muted);
  max-width: 620px;
}

.industries {
  background: var(--white);
  color: var(--text-dark);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.industries h2 { margin: 12px 0 24px; }

.industries p:not(.section-kicker) {
  color: #596273;
  max-width: 590px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags span {
  border: 1px solid #cbd2dc;
  padding: 12px 14px;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}

.contact {
  background: var(--surface);
}

.contact-panel {
  padding: 58px;
  border: 1px solid var(--steel);
  background:
    linear-gradient(110deg, rgba(255,255,255,.025), rgba(255,255,255,0)),
    var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact h2 {
  max-width: 760px;
  margin: 10px 0 18px;
}

.contact p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
}

.btn-large { min-width: 180px; }

footer {
  padding: 34px 0;
  border-top: 1px solid var(--steel);
  background: #050c18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.footer-grid > p {
  color: #718096;
  font-size: 11px;
  text-align: center;
}

.footer-grid > p:last-child { text-align: right; }

.footer-brand .brand-mark { font-size: 23px; }
.footer-brand .brand-name { font-size: 9px; }

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--navy);
    border-bottom: 1px solid var(--steel);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .brand-name { display: none; }

  .hero { min-height: 720px; }
  .hero::after { right: -180px; }
  .hero-proof { max-width: none; }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-grid > p:last-child { text-align: center; }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .nav-wrap { height: 70px; }
  .site-nav { top: 70px; }

  .hero {
    min-height: 760px;
    padding-top: 70px;
  }

  .hero h1 { font-size: 58px; }
  .hero-copy { font-size: 16px; }

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

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--steel);
    margin: 0;
    padding: 14px 0;
  }

  .hero-proof div:last-child { border-bottom: 0; }

  .section { padding: 78px 0; }
  .statement { padding: 70px 0; }

  .section-heading {
    display: block;
  }

  .section-heading > p { margin-top: 20px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .process-step p {
    grid-column: 2;
  }

  .contact-panel { padding: 32px 24px; }
  .btn-large { width: 100%; }
}
/* =========================
   ABOUT V.O.S / TEAM
========================= */

.about {
  background: var(--white);
  color: var(--navy);
}

.about-intro {
  display: grid;
  grid-template-columns: 160px 1.15fr 1fr;
  gap: 55px;
  align-items: start;
  margin-bottom: 80px;
}

.about-intro h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.about-copy {
  color: #596273;
  font-size: 17px;
  line-height: 1.8;
  max-width: 540px;
}

.team-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.team-label span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.team-label div {
  flex: 1;
  height: 1px;
  background: #cbd2dc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd2dc;
  border-left: 1px solid #cbd2dc;
}

.team-card {
  min-height: 350px;
  padding: 32px;
  border-right: 1px solid #cbd2dc;
  border-bottom: 1px solid #cbd2dc;
  transition: 0.25s ease;
}

.team-number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.team-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 75px 0 24px;
}

.team-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
}

.team-card p {
  margin-top: 24px;
  color: #727d8d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.team-card:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-4px);
}

.team-card:hover p {
  color: #aeb8c6;
}

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .team-card {
    min-height: 260px;
  }

  .team-line {
    margin-top: 45px;
  }
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
}

/* HEADER V.O.S. LOGO */

.site-header .brand {
  margin-left: -18px;
  width: 175px;
  height: 62px;
  background: #eef1f5;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-header .brand-logo {
  width: 235px;
  max-width: none;
  height: auto;
  display: block;
  transform: scale(1.25);
}

/* WHITE HEADER / NAVIGATION */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #d9dee6;
}

/* Remove the separate box around the logo */
.site-header .brand {
  background: transparent;
  border-radius: 0;
}

/* Navigation words */
.site-nav a {
  color: #0e4a7b;
}

.site-nav a:hover {
  color: #e56a14;
}

/* Connect button */
.site-nav .nav-cta {
  color: #0e4a7b;
  border-color: #e56a14;
}

.site-nav .nav-cta:hover {
  background: #e56a14;
  color: #ffffff;
}

/* WHITE FOOTER */

footer {
  background: #ffffff;
  border-top: 1px solid #d9dee6;
}

.footer-grid > p {
  color: #0e4a7b;
  font-size: 15px;
  font-weight: 600;
}

.footer-grid > p:last-child {
  color: #0e4a7b;
  font-size: 15px;
}

.footer-brand {
  width: 175px;
  height: 62px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 235px;
  max-width: none;
  height: auto;
  display: block;
  transform: scale(1.25);
}

/* MOBILE MENU COLOR FIX */
@media (max-width: 900px) {

  .menu-toggle span {
    background: #0e4a7b !important;
  }

  .site-nav a {
    color: #ffffff;
  }

  .site-nav a:hover {
    color: #e56a14;
  }

  .site-nav .nav-cta {
    color: #ffffff;
    border-color: #e56a14;
  }
}

/* PERFECTLY CENTER MOBILE FOOTER */
@media (max-width: 620px) {
  footer .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  footer .footer-brand {
    margin: 0 auto;
  }

  footer .footer-grid p {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }

  footer .footer-domain {
    display: inline-block;
    text-align: center;
  }
}