:root {
        --paper: #fff;
        --ink: #050505;
        --muted: #3f444a;
        --soft: #f4f6f8;
        --rule: #cfd5dc;
        --deep-navy: #0f1e33;
        --electric-blue: #2e5bff;
        --accent: var(--deep-navy);
        --accent-soft: #eef1f3;
        --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        --mono: Menlo, Consolas, Monaco, monospace;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        overflow-x: hidden;
        background:
          linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(15, 30, 51, 0.16) 33.333%, transparent calc(33.333% + 0.5px)),
          linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(15, 30, 51, 0.16) 66.666%, transparent calc(66.666% + 0.5px)),
          var(--paper);
        color: var(--ink);
        font-family: var(--sans);
        font-size: 16px;
        line-height: 1.45;
      }

      ::selection {
        background: var(--accent);
        color: #fff;
      }

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

      h1,
      h2,
      h3 {
        font-family: var(--sans);
        font-weight: 900;
        letter-spacing: -0.06em;
      }

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

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

      .site-nav {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        min-height: 112px;
        padding: 24px clamp(20px, 5vw, 70px);
        background: #fff;
        border-bottom: 1px solid var(--rule);
      }

      .wordmark {
        display: block;
        width: clamp(150px, 14vw, 220px);
        height: auto;
      }

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

      .site-nav a,
      .footer a {
        color: var(--ink);
        font-family: var(--mono);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .site-nav a:hover,
      .footer a:hover {
        color: var(--electric-blue);
      }

      .hero {
        position: relative;
        min-height: calc(100svh - 112px);
        display: grid;
        align-items: center;
        padding: clamp(76px, 9vw, 122px) 0 clamp(64px, 8vw, 102px);
        border-bottom: 1px solid var(--rule);
        background:
          radial-gradient(circle at 72% 28%, rgba(75, 85, 96, 0.08), transparent 24%),
          linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(15, 30, 51, 0.14) 33.333%, transparent calc(33.333% + 0.5px)),
          linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(15, 30, 51, 0.14) 66.666%, transparent calc(66.666% + 0.5px)),
          #fff;
        color: var(--ink);
      }

      .hero-copy {
        position: relative;
        z-index: 1;
        display: grid;
        gap: clamp(22px, 3.4vw, 42px);
      }

      .eyebrow,
      .label,
      .pillar-number,
      .form label span,
      .disclaimer {
        font-family: var(--mono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .eyebrow,
      .label {
        font-size: 15px;
        font-weight: 900;
        letter-spacing: 0.16em;
      }

      .eyebrow,
      .label,
      .pillar-number {
        color: var(--accent);
      }

      .eyebrow {
        color: var(--accent);
      }

      .eyebrow::after,
      .label::after,
      .form label span::after {
        content: "";
        display: block;
        width: 72px;
        height: 3px;
        margin-top: 12px;
        background: var(--electric-blue);
      }

      .form label span::after {
        width: 44px;
        height: 2px;
        margin-top: 8px;
      }

      .hero h1 {
        max-width: 1140px;
        display: block;
        color: transparent;
        background:
          linear-gradient(180deg, var(--deep-navy) 0%, #142943 48%, var(--electric-blue) 100%),
          repeating-linear-gradient(100deg, transparent 0 34px, rgba(46, 91, 255, 0.18) 35px 37px, transparent 38px 82px);
        background-size: 100% 100%, 180px 100%;
        background-position: 0 0, 0 0;
        -webkit-background-clip: text;
        background-clip: text;
        padding: 0.04em 0 0.1em;
        font-size: clamp(70px, 10.8vw, 148px);
        line-height: 0.9;
        text-wrap: balance;
        animation: type-flow 12s ease-in-out infinite alternate;
      }

      .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(34px, 5vw, 58px);
        align-items: start;
      }

      .hero-body {
        max-width: 820px;
        color: var(--ink);
        font-size: clamp(20px, 2.2vw, 29px);
        font-weight: 400;
        line-height: 1.28;
      }

      .hero-subline {
        max-width: 560px;
        margin-top: 22px;
        color: var(--muted);
        font-family: var(--mono);
        font-size: clamp(12px, 1.4vw, 15px);
        letter-spacing: 0.02em;
      }

      .hero-button {
        display: inline-flex;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
        padding: 18px 22px;
        border: 1px solid var(--electric-blue);
        background: var(--electric-blue);
        color: #fff;
        font: 700 13px/1 var(--sans);
      }

      .hero-button::after {
        content: "→";
        color: currentColor;
        font-size: 24px;
        line-height: 0;
      }

      .hero-button:hover {
        border-color: var(--ink);
        background: var(--ink);
      }

      .stat-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-top: 2px solid var(--ink);
      }

      .stat-row span {
        min-height: 128px;
        display: grid;
        align-content: start;
        gap: 12px;
        padding: 28px 24px 26px;
        border-right: 1px solid var(--rule);
        color: var(--ink);
      }

      .stat-row .stat-heading {
        min-height: 0;
        display: flex;
        align-items: baseline;
        gap: 14px;
        padding: 0;
        border: 0;
      }

      .stat-row strong {
        color: var(--accent);
        font: 900 32px/1 var(--sans);
        letter-spacing: -0.04em;
      }

      .stat-row b {
        color: var(--ink);
        font: 900 14px/1.2 var(--mono);
        letter-spacing: 0.11em;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .stat-row em {
        max-width: 330px;
        color: var(--muted);
        font: 450 16px/1.48 var(--sans);
        letter-spacing: 0;
        text-transform: none;
        font-style: normal;
      }

      .section {
        padding: clamp(78px, 10vw, 118px) 0;
        border-top: 1px solid var(--rule);
      }

      .section-grid {
        display: grid;
        grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
        gap: clamp(34px, 7vw, 86px);
        align-items: start;
      }

      .copy-stack {
        display: grid;
        gap: clamp(24px, 3.4vw, 34px);
      }

      h2 {
        max-width: 980px;
        padding-bottom: 0.06em;
        font-size: clamp(50px, 7.5vw, 96px);
        line-height: 0.94;
      }

      h2 span {
        display: block;
      }

      h3 {
        font-size: clamp(24px, 3vw, 34px);
        line-height: 1.08;
      }

      .lede,
      .body-copy {
        max-width: 760px;
        color: var(--muted);
        font-size: clamp(18px, 2vw, 23px);
        line-height: 1.5;
      }

      .body-copy {
        display: grid;
        gap: 18px;
      }

      .pillars {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        margin-top: clamp(22px, 4vw, 48px);
        background: var(--rule);
        border: 1px solid rgba(15, 30, 51, 0.28);
      }

      .pillar {
        min-height: 270px;
        display: grid;
        align-content: start;
        gap: 18px;
        padding: clamp(26px, 4vw, 38px) clamp(20px, 3vw, 30px);
        background: #f5f5f7;
      }

      .pillar:nth-child(2) {
        background: var(--electric-blue);
        color: #fff;
      }

      .pillar:nth-child(3) {
        background: var(--deep-navy);
        color: #fff;
      }

      .pillar p:last-child {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.58;
      }

      .pillar:nth-child(2) .pillar-number,
      .pillar:nth-child(2) p:last-child {
        color: rgba(255, 255, 255, 0.82);
      }

      .pillar:nth-child(3) .pillar-number,
      .pillar:nth-child(3) p:last-child {
        color: rgba(255, 255, 255, 0.76);
      }

      .contact-section {
        padding-bottom: clamp(76px, 10vw, 118px);
        background: #fff;
        color: var(--ink);
      }

      .contact-section .label,
      .contact-section h2 {
        color: var(--ink);
      }

      .contact-section .lede,
      .contact-direct {
        color: var(--muted);
      }

      .form label span {
        color: var(--deep-navy);
      }

      .contact-direct {
        max-width: 760px;
        margin-top: -14px;
        font-size: clamp(17px, 1.8vw, 21px);
        line-height: 1.45;
      }

      .contact-direct a {
        color: var(--deep-navy);
        text-decoration: underline;
        text-decoration-color: transparent;
        text-underline-offset: 5px;
      }

      .contact-direct a:hover {
        text-decoration-color: var(--electric-blue);
      }

      .contact-layout {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
        gap: clamp(36px, 7vw, 80px);
        align-items: start;
      }

      .form {
        display: grid;
        gap: 20px;
      }

      .form label {
        display: grid;
        gap: 8px;
      }

      .form input,
      .form textarea {
        width: 100%;
        border: 1px solid var(--rule);
        border-radius: 0;
        background: #fff;
        color: var(--ink);
        font: 16px/1.4 var(--sans);
        outline: none;
      }

      .form input {
        height: 48px;
        padding: 0 14px;
      }

      .form textarea {
        min-height: 150px;
        resize: vertical;
        padding: 12px 14px;
      }

      .form input:focus,
      .form textarea:focus {
        border-color: var(--deep-navy);
      }

      .form button {
        width: 100%;
        min-width: 0;
        height: 48px;
        border: 1px solid var(--electric-blue);
        border-radius: 0;
        background: var(--electric-blue);
        color: #fff;
        cursor: pointer;
        font: 700 11px/1 var(--mono);
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .form button:hover {
        background: var(--deep-navy);
        border-color: var(--deep-navy);
      }

      .insights-section {
        background: #fff;
      }

      .insight-card {
        display: grid;
        width: min(100%, 780px);
        gap: 16px;
        margin-top: clamp(10px, 2vw, 22px);
        padding: clamp(26px, 4vw, 42px);
        border: 1px solid var(--deep-navy);
        background: #fff;
        color: var(--ink);
        text-decoration: none;
        transition:
          background 160ms ease,
          transform 160ms ease,
          box-shadow 160ms ease;
      }

      .insight-card:hover {
        background: rgba(15, 30, 51, 0.04);
        box-shadow: 0 18px 46px rgba(15, 30, 51, 0.1);
        transform: translateY(-2px);
      }

      .insight-card-static {
        cursor: default;
      }

      .insight-card-static:hover {
        background: #fff;
        box-shadow: none;
        transform: none;
      }

      .insight-card p {
        color: var(--electric-blue);
        font: 900 14px/1 var(--mono);
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .insight-card h3 {
        color: var(--deep-navy);
        font-size: clamp(31px, 4vw, 48px);
        line-height: 1.02;
      }

      .insight-card span {
        max-width: 580px;
        color: var(--muted);
        font-size: clamp(17px, 1.9vw, 21px);
        line-height: 1.45;
      }

      .insight-card::after {
        content: "→";
        width: fit-content;
        color: var(--electric-blue);
        font-size: 34px;
        line-height: 1;
      }

      .insight-card-static::after {
        content: none;
      }

      @keyframes type-flow {
        from {
          background-position: 0 0, 0 0;
        }

        to {
          background-position: 0 0, 140px 0;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero h1 {
          animation: none;
        }
      }

      .footer {
        padding: 0 0 clamp(32px, 6vw, 70px);
      }

      .footer-rule {
        width: 100%;
        height: 1px;
        margin: 0;
        background: var(--ink);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1.25fr;
        gap: 30px;
        padding: 30px 0 28px;
      }

      .footer strong {
        display: block;
        margin-bottom: 8px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

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

      .footer nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .footer-legal strong {
        color: var(--deep-navy);
      }

      .disclaimer {
        max-width: 1040px;
        color: var(--muted);
        font-size: 10px;
        line-height: 1.65;
      }

      .legal-page {
        min-height: 100vh;
        background:
          linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(15, 30, 51, 0.16) 33.333%, transparent calc(33.333% + 0.5px)),
          linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(15, 30, 51, 0.16) 66.666%, transparent calc(66.666% + 0.5px)),
          #fff;
      }

      .wc-legal-hero {
        padding: clamp(72px, 10vw, 132px) 0 clamp(42px, 6vw, 74px);
        border-bottom: 1px solid var(--rule);
      }

      .wc-legal-hero h1 {
        margin-top: clamp(28px, 4vw, 46px);
        color: var(--deep-navy);
        font-size: clamp(72px, 13vw, 164px);
        line-height: 0.9;
      }

      .wc-legal-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: clamp(24px, 4vw, 44px);
      }

      .wc-legal-menu a {
        border: 1px solid var(--rule);
        padding: 12px 14px;
        background: #fff;
        color: var(--deep-navy);
        font-family: var(--mono);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .wc-legal-menu a:hover {
        border-color: var(--electric-blue);
        color: var(--electric-blue);
      }

      .wc-legal-content {
        display: grid;
        gap: clamp(62px, 8vw, 96px);
        padding: clamp(64px, 8vw, 96px) 0 clamp(84px, 10vw, 126px);
      }

      .wc-legal-section {
        scroll-margin-top: 24px;
      }

      .wc-legal-section h2 {
        margin-top: clamp(22px, 3vw, 34px);
        color: var(--deep-navy);
        font-size: clamp(42px, 6.4vw, 78px);
      }

      .wc-legal-text {
        max-width: 900px;
        margin-top: clamp(24px, 3vw, 36px);
        color: var(--muted);
        font-size: clamp(16px, 1.55vw, 19px);
        line-height: 1.72;
        white-space: pre-wrap;
      }

      @media (max-width: 840px) {
        .container {
          width: min(100% - 32px, 1180px);
        }

        .site-nav {
          position: relative;
          align-items: center;
          flex-direction: column;
          min-height: 112px;
          padding: 14px 16px 16px;
        }

        .site-nav nav {
          width: 100%;
          justify-content: space-between;
          gap: 12px;
        }

        .hero {
          min-height: auto;
          padding: 58px 0 64px;
        }

        .hero h1 {
          font-size: clamp(54px, 14.4vw, 82px);
          line-height: 0.92;
        }

        h2 {
          font-size: clamp(44px, 11.6vw, 60px);
          line-height: 0.96;
        }

        .hero-meta,
        .stat-row,
        .section-grid,
        .contact-layout,
        .footer-grid {
          grid-template-columns: 1fr;
        }

        .stat-row span {
          min-height: 112px;
          padding: 26px 20px 24px;
          border-right: 0;
          border-bottom: 1px solid var(--rule);
        }

        .section {
          padding: 64px 0;
        }

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

        .pillar {
          min-height: 0;
          padding: 30px 20px;
        }
      }
    

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
