:root {
      --navy: #0c3c60;
      --navyDark: #061827;
      --navySoft: #123f61;
      --blue: #236fb7;
      --blueSoft: #e9f2fb;
      --green: #93d52f;
      --greenDark: #6baa18;
      --cream: #f7f3eb;
      --white: #ffffff;
      --ink: #102033;
      --muted: #617086;
      --line: rgba(16, 32, 51, 0.12);
      --lineDark: rgba(255, 255, 255, 0.14);
      --shadow: 0 18px 60px rgba(6, 24, 39, 0.14);
      --shadowSmall: 0 8px 30px rgba(6, 24, 39, 0.10);
      --radius: 22px;
      --radiusSmall: 14px;
      --max: 1180px;

      --imageHero: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=80");
      --imageBlueprint: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80");
      --imageSite: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80");
      --imageOffice: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
      --imageData: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80");
      --imageBuilding: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80");
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

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

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: "Manrope", "Inter", sans-serif;
      letter-spacing: -0.035em;
      line-height: 1.08;
    }

    p {
      color: var(--muted);
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    .skipLink {
      position: fixed;
      left: 18px;
      top: -80px;
      z-index: 9999;
      background: var(--navyDark);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 10px;
      font-weight: 700;
    }

    .skipLink:focus {
      top: 18px;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(16, 32, 51, 0.08);
      transition: 240ms ease;
    }

    .nav.scrolled {
      box-shadow: 0 12px 30px rgba(6, 24, 39, 0.08);
    }

    .navInner {
      max-width: var(--max);
      margin: 0 auto;
      height: 84px;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: "Manrope", sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      color: var(--navyDark);
      flex-shrink: 0;
    }

    .brandLogoWrap {
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(16, 32, 51, 0.08);
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(6, 24, 39, 0.08);
      overflow: hidden;
    }

    .brandLogo {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    .brandText {
      display: inline-flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brandText strong {
      display: block;
      color: var(--navyDark);
      font-family: "Manrope", sans-serif;
      font-size: 1.12rem;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .brandText span {
      display: block;
      color: var(--muted);
      font-size: 0.70rem;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .footer .brandLogoWrap {
      height: 58px;
      padding: 8px 12px;
      background: rgba(255,255,255,0.98);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
    }

    .footer .brandLogo {
      height: 42px;
    }

    .footer .brandText strong {
      color: var(--white);
    }

    .footer .brandText span {
      color: rgba(255,255,255,0.62);
    }

    .navLinks {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .navLinks a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 13px;
      border-radius: 999px;
      color: #33445a;
      font-weight: 700;
      font-size: 0.9rem;
      transition: 200ms ease;
    }

    .navLinks a:hover,
    .navLinks a:focus-visible {
      color: var(--navy);
      background: rgba(12, 60, 96, 0.08);
    }

    .navCta {
      color: var(--white) !important;
      background: var(--navy) !important;
      box-shadow: 0 10px 26px rgba(12, 60, 96, 0.22);
    }

    .navCta:hover,
    .navCta:focus-visible {
      transform: translateY(-1px);
      background: var(--navyDark) !important;
    }

    .menuButton {
      display: none;
      border: 0;
      background: transparent;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      cursor: pointer;
      position: relative;
    }

    .menuButton span {
      position: absolute;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--navyDark);
      transition: 200ms ease;
    }

    .menuButton span:nth-child(1) {
      top: 15px;
    }

    .menuButton span:nth-child(2) {
      top: 22px;
    }

    .menuButton span:nth-child(3) {
      top: 29px;
    }

    .menuButton[aria-expanded="true"] span:nth-child(1) {
      top: 22px;
      transform: rotate(45deg);
    }

    .menuButton[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menuButton[aria-expanded="true"] span:nth-child(3) {
      top: 22px;
      transform: rotate(-45deg);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      font-size: 0.95rem;
      transition: 220ms ease;
      cursor: pointer;
    }

    .buttonPrimary {
      background: var(--green);
      color: #10220b;
      box-shadow: 0 12px 32px rgba(147, 213, 47, 0.22);
    }

    .buttonPrimary:hover,
    .buttonPrimary:focus-visible {
      transform: translateY(-2px);
      background: #a5e544;
      box-shadow: 0 18px 40px rgba(147, 213, 47, 0.28);
    }

    .buttonSecondary {
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(8px);
    }

    .buttonSecondary:hover,
    .buttonSecondary:focus-visible {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.44);
      transform: translateY(-2px);
    }

    .buttonDark {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 12px 32px rgba(12, 60, 96, 0.22);
    }

    .buttonDark:hover,
    .buttonDark:focus-visible {
      background: var(--navyDark);
      transform: translateY(-2px);
    }

    .buttonLight {
      background: var(--white);
      color: var(--navy);
      border-color: rgba(12, 60, 96, 0.14);
      box-shadow: var(--shadowSmall);
    }

    .buttonLight:hover,
    .buttonLight:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(12, 60, 96, 0.28);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      padding: 142px 0 92px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6, 24, 39, 0.96) 0%, rgba(8, 43, 70, 0.90) 47%, rgba(6, 24, 39, 0.66) 100%),
        var(--imageSite) center / cover no-repeat;
    }

    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 34%, rgba(147, 213, 47, 0.14), transparent 27%),
        radial-gradient(circle at 76% 24%, rgba(35, 111, 183, 0.24), transparent 31%),
        linear-gradient(180deg, rgba(6, 24, 39, 0.06) 0%, rgba(6, 24, 39, 0.44) 100%);
      pointer-events: none;
    }

    .hero:after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 92px;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
      pointer-events: none;
    }

    .heroGrid {
      position: absolute;
      inset: 0;
      opacity: 0.12;
      background-image:
        linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(90deg, black 0%, black 75%, transparent 100%);
      pointer-events: none;
    }

    .container.heroInner {
      max-width: 1380px;
    }

    .heroInner {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(510px, 1.08fr);
      gap: 58px;
      align-items: center;
    }

    .heroCopy {
      min-width: 0;
      padding-top: 8px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.76);
      font-weight: 800;
      font-size: 0.76rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .eyebrow:before {
      content: "";
      width: 38px;
      height: 2px;
      background: var(--green);
    }

    .hero h1 {
      max-width: 720px;
      margin-bottom: 26px;
      color: var(--white);
      font-size: clamp(3.25rem, 4.25vw, 4.75rem);
      font-weight: 900;
      line-height: 0.99;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    .heroLine {
      display: block;
      color: inherit;
    }

    .heroText {
      max-width: 650px;
      margin-bottom: 32px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.05rem;
      line-height: 1.65;
    }

    .heroActions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .heroActions .button {
      min-height: 54px;
      padding-inline: 24px;
    }

    .buttonArrow {
      margin-left: 13px;
      font-size: 1.05em;
      transition: transform 180ms ease;
    }

    .heroActions .button:hover .buttonArrow,
    .heroActions .button:focus-visible .buttonArrow {
      transform: translateX(4px);
    }

    .proofStrip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px 26px;
      max-width: 720px;
    }

    .proofItem {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      color: rgba(255, 255, 255, 0.86);
      background: none;
      border: 0;
      backdrop-filter: none;
    }

    .proofItem strong {
      color: rgba(255, 255, 255, 0.88);
      font-family: "Inter", sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .proofCheck {
      position: relative;
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      border: 2px solid var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(147, 213, 47, 0.06);
    }

    .proofCheck:after {
      content: "";
      position: absolute;
      left: 6px;
      top: 3px;
      width: 5px;
      height: 9px;
      border-right: 2px solid var(--green);
      border-bottom: 2px solid var(--green);
      transform: rotate(42deg);
    }
