:root {
        --bg: #050814;
        --panel: rgba(10, 18, 44, 0.84);
        --panel-strong: rgba(11, 20, 49, 0.96);
        --border: rgba(120, 148, 235, 0.24);
        --line: rgba(163, 189, 222, 0.12);
        --text: #f4f7ff;
        --muted: #a7b5db;
        --soft: #dbe6ff;
        --aim-blue: #4da8f5;
        --aim-purple: #7a5cff;
        --aim-gold: #cbb55c;
        --a2spa-blue: #2596be;
        --a2spa-purple: #6c25be;
        --a2spa-gold: #bea925;
        --a2ea-green: #7be36a;
        --a2ea-cyan: #39d0ff;
        --cv-green: #52d52f;
        --shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
        --max: 1240px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "Manrope", sans-serif;
        color: var(--text);
        background:
          radial-gradient(
            circle at top left,
            rgba(77, 168, 245, 0.13),
            transparent 30%
          ),
          radial-gradient(
            circle at 82% 14%,
            rgba(122, 92, 255, 0.14),
            transparent 26%
          ),
          radial-gradient(
            circle at 50% 72%,
            rgba(82, 213, 47, 0.08),
            transparent 28%
          ),
          linear-gradient(180deg, #04070f 0%, #071024 46%, #04070f 100%);
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
          linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.028) 1px,
            transparent 1px
          );
        background-size: 48px 48px;
        mask-image: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.58),
          transparent 82%
        );
        pointer-events: none;
      }

      a {
        color: inherit;
      }

      .shell {
        position: relative;
        z-index: 1;
      }

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

      .topbar {
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(18px);
        background: rgba(4, 11, 21, 0.75);
        border-bottom: 1px solid rgba(163, 189, 222, 0.1);
      }

      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.25rem;
        min-height: 82px;
        padding: 0.85rem 0;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 0.9rem;
        min-width: 0;
        text-decoration: none;
      }

      .brand-brain {
        display: block;
        width: 56px;
        height: 56px;
        object-fit: contain;
        flex: 0 0 auto;
      }

      .brand-logo {
        display: block;
        width: min(360px, 48vw);
        height: auto;
        max-width: 100%;
        object-fit: contain;
      }

      .nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.8rem;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        padding: 0.9rem 1.25rem;
        border-radius: 999px;
        border: 1px solid transparent;
        text-decoration: none;
        font-weight: 800;
        white-space: nowrap;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          border-color 0.2s ease,
          background 0.2s ease;
      }

      .button:hover {
        transform: translateY(-1px);
      }

      .button-primary {
        background: linear-gradient(135deg, var(--aim-blue), var(--aim-purple));
        color: #f8fbff;
        box-shadow: 0 18px 36px rgba(108, 37, 190, 0.24);
      }

      .button-secondary {
        background: rgba(255, 255, 255, 0.03);
        color: var(--text);
        border-color: var(--border);
      }

      .answer-first {
        padding: 1.25rem 0 0;
      }

      .answer-first-card {
        padding: 1.35rem 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(123, 227, 106, 0.2);
        background: rgba(123, 227, 106, 0.055);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
      }

      .answer-first-card h2 {
        margin: 0 0 0.55rem;
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.15rem);
        letter-spacing: -0.045em;
      }

      .answer-first-card p {
        margin: 0;
        max-width: 1020px;
        color: var(--muted);
        line-height: 1.72;
      }

      .answer-first-link {
        display: inline-flex;
        margin-top: 0.85rem;
        color: #dbe6ff;
        font-weight: 850;
        text-decoration: none;
      }

      .hero {
        padding: 2.4rem 0 2rem;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 1.35rem;
        align-items: start;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.55rem 0.9rem;
        border-radius: 999px;
        background: rgba(37, 150, 190, 0.12);
        border: 1px solid rgba(108, 37, 190, 0.26);
        color: #d4c4ff;
        font-size: 0.86rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      h1,
      h2,
      h3 {
        font-family: "Space Grotesk", sans-serif;
        letter-spacing: -0.045em;
      }

      h1 {
        margin: 1.25rem 0 1rem;
        font-size: clamp(2.8rem, 6vw, 5rem);
        line-height: 0.98;
      }

      .hero-copy p,
      .card p,
      .section-header p,
      li,
      td,
      dd {
        color: var(--muted);
        line-height: 1.75;
      }

      .hero-copy p {
        margin: 0 0 1rem;
        font-size: 1.08rem;
      }

      .hero-question {
        display: grid;
        gap: 0.22rem;
        margin: 1.05rem 0 1rem;
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(1.35rem, 3vw, 2.1rem);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.05em;
      }

      .hero-question span {
        display: block;
      }

      .hero-question span:last-child {
        color: var(--soft);
      }

      .hero-question-subtext {
        margin: 0 0 1.15rem !important;
        color: #d7dfff !important;
        font-size: 1.08rem !important;
        line-height: 1.6 !important;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
        margin-top: 1.5rem;
      }

      .hero-note {
        margin-top: 1rem;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .procurement-partner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1.1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
      }

      .procurement-partner-copy {
        min-width: 0;
      }

      .procurement-partner-label {
        display: block;
        color: #d7dfff;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .procurement-partner-copy p {
        margin: 0.35rem 0 0;
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.55;
      }

      .carahsoft-logo-plate {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex: 0 0 auto;
        width: min(250px, 100%);
        padding: 1.6rem 1.8rem;
        border: 1px solid rgba(49, 85, 164, 0.16);
        border-radius: 16px;
        background: #ffffff;
        text-decoration: none;
      }

      .carahsoft-logo-plate img {
        display: block;
        width: 100%;
        max-width: 190px;
        height: auto;
      }

      .card {
        padding: 1.7rem;
        border-radius: 28px;
        border: 1px solid var(--border);
        background:
          linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0)
          ),
          var(--panel);
        box-shadow: var(--shadow);
      }

      .info-card {
        background:
          linear-gradient(
            180deg,
            rgba(37, 150, 190, 0.12),
            rgba(108, 37, 190, 0.08)
          ),
          var(--panel-strong);
      }

      .info-card h2 {
        margin: 0 0 1rem;
        font-size: 1.75rem;
      }

      .meta-list {
        display: grid;
        gap: 0.95rem;
        margin: 0;
      }

      .meta-list div {
        padding-bottom: 0.9rem;
        border-bottom: 1px solid var(--line);
      }

      .meta-list div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      dt {
        margin-bottom: 0.2rem;
        color: #d9e3ff;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      dd {
        margin: 0;
        color: var(--soft);
        font-weight: 600;
      }

      .section {
        padding: 1.5rem 0 2.5rem;
      }

      .section-header {
        margin-bottom: 1.25rem;
      }

      .section-header h2 {
        margin: 0 0 0.55rem;
        font-size: clamp(2rem, 4vw, 3rem);
      }

      .section-stack {
        display: grid;
        gap: 1.1rem;
      }

      .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.1rem;
      }

      .capability-card,
      .product-card,
      .panel {
        padding: 1.45rem;
        border-radius: 24px;
        border: 1px solid var(--border);
        background: var(--panel);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
      }

      .capability-card h3,
      .product-card h3,
      .panel h3 {
        margin: 0 0 0.75rem;
        font-size: 1.25rem;
      }

      .product-card p strong {
        color: var(--soft);
      }

      .product-link {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin-top: 0.95rem;
        color: #d7dfff;
        font-weight: 800;
        text-decoration: none;
      }

      .product-link:hover,
      .inline-link:hover,
      .footer-email:hover,
      .footer-links a:hover {
        color: #ffffff;
      }

      .two-up {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 1.1rem;
      }

      .industry-list {
        display: grid;
        gap: 0.7rem;
        margin: 0;
        padding-left: 1.2rem;
      }

      .table-wrap {
        overflow-x: auto;
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      th,
      td {
        padding: 0.9rem 0.95rem;
        text-align: left;
        border-bottom: 1px solid var(--line);
        vertical-align: top;
      }

      th {
        color: #d9e3ff;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .register-card {
        display: grid;
        gap: 1rem;
      }

      .register-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
      }

      .question-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
      }

      .question-card {
        padding: 1.35rem;
        border-radius: 22px;
        border: 1px solid rgba(108, 37, 190, 0.18);
        background:
          linear-gradient(
            180deg,
            rgba(37, 150, 190, 0.08),
            rgba(108, 37, 190, 0.05)
          ),
          var(--panel);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
      }

      .question-card p {
        margin: 0;
        color: var(--soft);
        font-size: 1rem;
        line-height: 1.6;
      }

      .inline-link,
      .footer-links a,
      .footer-email {
        text-decoration: none;
      }

      .inline-link {
        color: #d7dfff;
        font-weight: 700;
        word-break: break-all;
      }

      .callout {
        padding: 2rem;
        border-radius: 28px;
        border: 1px solid rgba(108, 37, 190, 0.22);
        background: linear-gradient(
          135deg,
          rgba(37, 150, 190, 0.14),
          rgba(108, 37, 190, 0.12),
          rgba(123, 227, 106, 0.08)
        );
        box-shadow: var(--shadow);
      }

      .callout h2 {
        margin: 0 0 0.65rem;
        font-size: clamp(1.9rem, 3vw, 2.8rem);
      }

      footer {
        padding: 0 0 2rem;
      }

      .footer-inner {
        display: flex;
        justify-content: space-between;
        gap: 1.25rem;
        padding-top: 1.2rem;
        border-top: 1px solid rgba(163, 189, 222, 0.1);
        color: var(--muted);
        font-size: 0.9rem;
      }

      .footer-brand {
        display: grid;
        gap: 0.45rem;
      }

      .footer-copy {
        color: #d7dfff;
      }

      .footer-email {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: #d7dfff;
        font-size: 0.84rem;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-end;
      }

      .footer-links a {
        font-weight: 750;
      }

      .footer-link-agentverify {
        color: color-mix(in srgb, var(--aim-purple) 72%, #ffffff);
      }

      .footer-link-a2spa {
        color: color-mix(in srgb, var(--a2spa-blue) 72%, #ffffff);
      }

      .footer-link-a2ea {
        color: color-mix(in srgb, var(--a2ea-green) 72%, #ffffff);
      }

      .footer-link-cryptovalidity {
        color: color-mix(in srgb, var(--cv-green) 72%, #ffffff);
      }

      .footer-link-aibv {
        color: color-mix(in srgb, var(--aim-blue) 72%, #ffffff);
      }

      @media (max-width: 980px) {
        .hero-grid,
        .two-up {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 760px) {
        .topbar-inner {
          min-height: 74px;
          padding: 0.7rem 0;
          align-items: flex-start;
        }

        .brand-logo {
          width: min(260px, 62vw);
        }

        .brand-brain {
          width: 44px;
          height: 44px;
        }

        .nav {
          width: 100%;
          justify-content: flex-start;
        }

        .procurement-partner {
          align-items: flex-start;
          flex-direction: column;
        }

        .nav .button,
        .hero-actions .button,
        .register-actions .button {
          width: 100%;
        }

        .section,
        .hero {
          padding-top: 1.25rem;
        }

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

        .footer-links {
          justify-content: flex-start;
        }
      }