:root {
      --dark-blue: #003087;
      --medium-blue: #026CFF;
      --light-blue: #009CDE;
      --mustard: #FFC43A;
      --deep-navy: #071B3A;
      --soft-blue: #EAF4FF;
      --ice-blue: #F5FAFF;
      --charcoal: #1E293B;
      --slate: #64748B;
      --line: #E2E8F0;
      --white: #FFFFFF;
      --shadow: 0 24px 60px rgba(7, 27, 58, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

    a {
      color: var(--dark-blue);
      text-decoration: none;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(226, 232, 240, 0.78);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      min-height: 74px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 178px;
    }

    .brand img {
      width: 300px;
    }


    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 0;
      color: var(--dark-blue);
      background: var(--white);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 999px;
      background: currentColor;
      transition: transform 160ms ease, opacity 160ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

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

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: nowrap;
      gap: 8px;
      color: var(--dark-blue);
      font-size: 14px;
      font-weight: 800;
    }

    .nav-link,
    .nav-cta {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      padding: 0 12px;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: var(--soft-blue);
    }

    .nav-cta {
      color: var(--white);
      background: var(--medium-blue);
    }

    .hero {
      background:
        linear-gradient(135deg, rgba(7, 27, 58, 0.98), rgba(0, 48, 135, 0.95)),
        var(--deep-navy);
      color: var(--white);
    }

    .hero-inner {
      width: min(1180px, calc(100% - 40px));
      min-height: auto;
      margin: 0 auto;
      padding: 112px 0 104px;
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
      align-items: center;
      gap: 40px;
    }

    .eyebrow {
      width: fit-content;
      margin: 0 0 18px;
      border: 1px solid rgba(255, 196, 58, 0.48);
      border-radius: 999px;
      padding: 7px 12px;
      color: var(--mustard);
      background: rgba(255, 196, 58, 0.1);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

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

    h1 {
      max-width: 720px;
      margin-bottom: 18px;
      font-size: clamp(36px, 4.8vw, 58px);
      line-height: 1.03;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 650px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.58;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 6px;
      padding: 0 18px;
      color: var(--white);
      background: var(--medium-blue);
      font-weight: 900;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .button:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(2, 108, 255, 0.28);
    }

    .button.light {
      color: var(--dark-blue);
      background: var(--white);
    }

    .button.secondary {
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.08);
    }

    .button.secondary:hover {
      box-shadow: none;
      background: rgba(255, 255, 255, 0.14);
    }

    .proof-panel {
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
    }

    .proof-panel-header {
      padding: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .proof-panel-header h2 {
      margin-bottom: 8px;
      font-size: 24px;
      line-height: 1.25;
    }

    .proof-panel-header p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 15px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-item {
      min-height: 132px;
      padding: 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.16);
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .proof-item:nth-child(2n) {
      border-right: 0;
    }

    .proof-item:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .proof-item strong {
      display: block;
      margin-bottom: 8px;
      color: var(--mustard);
      font-size: 24px;
      line-height: 1.1;
    }

    .proof-item span {
      color: rgba(255, 255, 255, 0.76);
      font-size: 14px;
    }

    .main-content {
      background: var(--white);
    }

    .section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 72px 0;
    }

    .section.alt {
      width: 100%;
      background: var(--ice-blue);
    }

    .section.alt > .section-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section-header {
      max-width: 780px;
      margin-bottom: 28px;
    }

    .section-header h2 {
      margin-bottom: 10px;
      color: var(--dark-blue);
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.16;
    }

    .section-header p {
      margin-bottom: 0;
      color: var(--slate);
      font-size: 17px;
    }

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

    .card {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
      background: var(--white);
    }

    .card.soft {
      background: var(--ice-blue);
    }

    .card h3 {
      margin-bottom: 9px;
      color: var(--dark-blue);
      font-size: 20px;
      line-height: 1.3;
    }

    .card p {
      margin-bottom: 0;
      color: var(--slate);
      font-size: 15px;
    }

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

    .step {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 20px;
      background: var(--white);
    }

    .step-number {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 999px;
      color: var(--deep-navy);
      background: var(--mustard);
      font-size: 14px;
      font-weight: 900;
    }

    .step h3 {
      margin-bottom: 8px;
      color: var(--dark-blue);
      font-size: 18px;
    }

    .step p {
      margin-bottom: 0;
      color: var(--slate);
      font-size: 14px;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 32px;
      align-items: start;
    }

    .fit-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fit-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--charcoal);
      font-size: 15px;
    }

    .check {
      width: 28px;
      height: 28px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      color: var(--deep-navy);
      background: var(--mustard);
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
    }

    .tool-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px;
      background: var(--white);
      color: var(--dark-blue);
      font-weight: 900;
    }

    .tool-link + .tool-link {
      margin-top: 12px;
    }

    .tool-link span {
      color: var(--slate);
      font-size: 13px;
      font-weight: 650;
    }

    .tool-link:hover {
      border-color: rgba(2, 108, 255, 0.45);
      box-shadow: 0 14px 32px rgba(7, 27, 58, 0.09);
    }

    .cta-band {
      color: var(--white);
      background: var(--deep-navy);
    }

    .cta-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 58px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta-inner .button {
      flex: 0 0 auto;
    }

    .cta-inner h2 {
      margin-bottom: 8px;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.16;
    }

    .cta-inner p {
      max-width: 680px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.72);
    }

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

    .footer-inner {
      width: min(1180px, calc(100% - 40px));
      min-height: 86px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: var(--slate);
      font-size: 13px;
    }

    .footer-brand-link {
      color: inherit;
      font-weight: 400;
      text-decoration: none;
      transition: color 160ms ease;
    }

    .footer-brand-link:hover {
      color: var(--medium-blue);
    }

    @media (max-width: 980px) {
      .hero-inner,
      .split {
        min-height: auto;
        grid-template-columns: 1fr;
      }

      .cards-grid,
      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 1080px) {
      .nav {
        padding: 14px 0;
        flex-wrap: wrap;
        gap: 12px;
      }

      .menu-toggle {
        display: inline-block;
        margin-left: auto;
      }

      .nav-links {
        width: 100%;
        display: none;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 0 4px;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-link,
      .nav-cta {
        width: 100%;
        justify-content: flex-start;
        padding: 0 12px;
      }
    }

    @media (max-width: 680px) {
      .nav,
      .hero-inner,
      .section,
      .section.alt > .section-inner,
      .cta-inner,
      .footer-inner {
        width: min(100% - 28px, 1180px);
      }

      .brand img {
        width: 220px;
      }

      .nav-links {
        gap: 4px;
        font-size: 13px;
      }

      .nav-link,
      .nav-cta {
        min-height: 38px;
        padding: 0 10px;
      }

      .hero-inner {
        padding: 68px 0;
      }

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

      .proof-grid,
      .cards-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .proof-item,
      .proof-item:nth-child(2n),
      .proof-item:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      }

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

      .button {
        width: 100%;
      }

      .footer-inner {
        min-height: 112px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
      }
    }
