   :root {
       --bg: #060606;
       --surface1: #0d0d0e;
       --surface2: #101012;
       --surface3: #0a0a0b;

       --text: #e9e6da;
       --muted: rgba(233, 230, 218, 0.74);
       --stroke: rgba(233, 230, 218, 0.14);
       --stroke2: rgba(233, 230, 218, 0.08);

       --accent: #39c6ff;
       --accent2: #7fe2ff;
       --cool: rgba(57, 198, 255, 0.92);
       --ok: #2ed3a1;
       --warn: #f6c177;
       --shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
       --radius: 16px;
       --radius2: 12px;

       --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
       --sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

       --ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
   }

   * {
       box-sizing: border-box;
   }

   html,
   body {
       height: 100%;
   }

   body {
       margin: 0;
       background: var(--bg);
       color: var(--text);
       font-family: var(--sans);
       overflow-x: hidden;
   }

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

   a:hover {
       opacity: 0.96;
   }

   body::before {
       content: "";
       position: fixed;
       inset: 0;
       z-index: 0;
       pointer-events: none;
       opacity: 0.24;
       transform: translateZ(0);
   }

   body::after {
       content: "";
       position: fixed;
       inset: 0;
       z-index: 0;
       pointer-events: none;
       box-shadow:
           inset 0 0 0 1px rgba(233, 230, 218, 0.03),
           inset 0 0 160px rgba(0, 0, 0, 0.60);
   }

   header,
   main,
   footer {
       position: relative;
       z-index: 1;
   }

   .wrap {
       max-width: 1350px;
       margin: 0 auto;
       padding: 28px 18px 110px;
   }

   header {
       position: sticky;
       top: 0;
       z-index: 10;
       background: rgba(6, 6, 6, 0.96);
       backdrop-filter: blur(6px);
       border-bottom: 1px solid var(--stroke2);
   }

   .nav {
       max-width: 1350px;
       margin: 0 auto;
       padding: 12px 18px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 14px;
   }

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

   .brand img {
       width: 36px;
       height: 36px;
   }

   .brand span {
       font-weight: 850;
       letter-spacing: 0.2px;
       font-size: 24px;
   }

   .navlinks {
       display: flex;
       align-items: center;
       gap: 12px;
       flex-wrap: wrap;
       justify-content: flex-end;
   }

    .navlinks a {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.12px;
        color: rgba(233, 230, 218, 0.92);
    }

    .navMobileCta {
        order: 0;
    }

    .navDesktopOnly {
        order: 4;
    }

   .navlinks a.text {
       padding: 10px 10px;
       border-radius: 10px;
       opacity: 0.88;
   }

   .navlinks a.text:hover {
       opacity: 1;
       background: rgba(16, 16, 18, 0.65);
       border: 1px solid var(--stroke2);
       padding: 9px 9px;
   }

   .btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
       padding: 10px 14px;
       border-radius: 999px;
       border: 1px solid var(--stroke2);
       line-height: 1;
       transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
       user-select: none;
   }

   .btn:hover {
       border-color: var(--stroke);
       background: var(--surface2);
   }

   .btn:active {
       transform: translateY(0);
   }

   .btn.primary {
       border: 1px solid rgba(160, 154, 154, 0.59);
       background: rgb(10, 10, 11);
   }

   .btn.primary:hover {
       background: rgba(52, 55, 56, 0.16);
       border-color: rgba(54, 52, 52, 0.72);
   }

   .btn svg {
       width: 14px;
       height: 14px;
       opacity: 0.92;
   }

   .hero {
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: radial-gradient(1200px 520px at 24% 10%, rgba(0, 0, 0, 0.16), transparent 55%), radial-gradient(900px 440px at 84% 70%, rgba(31, 53, 59, 0.1), transparent 58%), linear-gradient(180deg, rgba(16, 16, 18, 0.70), rgba(13, 13, 14, 0.70));
       box-shadow: var(--shadow);
       overflow: hidden;
       position: relative;
   }

   .hero::after {
       content: "";
       position: absolute;
       inset: 0;
       border-top: 1px solid rgba(233, 230, 218, 0.12);
       box-shadow: inset 0 1px 0 rgba(57, 198, 255, 0.10);
       pointer-events: none;
       opacity: 0.6;
   }

   .heroInner {
       display: grid;
       grid-template-columns: 1fr;
       gap: 18px;
       padding: 44px 44px 38px;
       align-items: start;
       position: relative;
       z-index: 1;
   }

   .heroCopy {
       min-width: 0;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 26px;
   }

   .heroText {
       min-width: 0;
       max-width: 72ch;
   }

   .heroLogo {
       flex: 0 0 auto;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-left: auto;
   }

   .heroLogo img {
       width: clamp(124px, 24vw, 310px);
       height: clamp(124px, 24vw, 310px);
       object-fit: cover;
   }

   .heroPills {
       margin-top: 16px;
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       align-items: center;
   }

   h1 {
       margin: 0 0 12px;
       font-size: clamp(32px, 3.6vw, 48px);
       line-height: 1.05;
       letter-spacing: 0.06px;
   }

   @supports (-webkit-background-clip: text) {
       h1 {
           background: linear-gradient(92deg, rgb(202, 243, 253) 0%, rgba(127, 226, 255, 0.96) 45%, rgb(74, 218, 253) 100%);
           -webkit-background-clip: text;
           background-clip: text;
           color: transparent;
       }
   }

   .lead {
       margin: 0;
       color: var(--muted);
       font-size: 16px;
       line-height: 1.65;
       max-width: 62ch;
   }

   .heroCta {
       display: flex;
       align-items: center;
       gap: 10px;
       flex-wrap: wrap;
       margin: 18px 0 0;
   }

   .kicker {
       margin: 2px 0 12px;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 7px 12px;
       border-radius: 999px;
       border: 1px solid rgba(57, 198, 255, 0.28);
       background: rgba(57, 198, 255, 0.08);
       color: rgba(57, 198, 255, 0.92);
       letter-spacing: 0.22em;
       text-transform: uppercase;
       font-size: 12px;
   }

   .facts {
       margin: 18px 0 0;
       padding: 2px;
       border-radius: calc(var(--radius) - 4px);
       border: 1px solid var(--stroke2);
       background: var(--surface2);
       display: grid;
       grid-template-columns: repeat(4, minmax(0, 1fr));
       gap: 0;
   }

   .fact {
       padding: 12px 14px;
       min-height: 56px;
   }

   .fact:not(:first-child) {
       border-left: 1px solid rgba(233, 230, 218, 0.10);
   }

   .fact .label {
       font-size: 11px;
       letter-spacing: 0.16em;
       text-transform: uppercase;
       opacity: 0.75;
       margin-bottom: 6px;
   }

   .fact .value {
       font-size: 13px;
       font-weight: 750;
       letter-spacing: 0.06px;
       color: rgba(233, 230, 218, 0.96);
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis;
   }

   .heroMark {
       min-height: 320px;
       padding: 18px;
       display: flex;
       align-items: stretch;
       position: relative;
       overflow: hidden;
   }

   .octoCameo {
       position: absolute;
       right: -140px;
       top: -140px;
       width: 520px;
       height: auto;
       opacity: 0.06;
       filter: grayscale(1) contrast(1.06) brightness(1.16);
       transform: rotate(12deg);
       pointer-events: none;
       user-select: none;
       z-index: 0;
   }

   .proof {
       width: 100%;
       border-radius: calc(var(--radius) + 2px);
       border: 1px solid var(--stroke);
       background: rgba(13, 13, 14, 0.65);
       box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
       overflow: hidden;
       display: flex;
       flex-direction: column;
       position: relative;
       z-index: 1;
   }

   .proofTop {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 10px;
       padding: 12px 12px;
       border-bottom: 1px solid var(--stroke2);
       background: rgba(16, 16, 18, 0.70);
   }

   .dots {
       display: inline-flex;
       gap: 6px;
       align-items: center;
   }

   .dot {
       width: 9px;
       height: 9px;
       border-radius: 99px;
       border: 1px solid rgba(233, 230, 218, 0.20);
       background: rgba(233, 230, 218, 0.06);
   }

   .proofTitle {
       font-size: 12px;
       font-weight: 750;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       opacity: 0.8;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       white-space: nowrap;
   }

   .proofTitle img {
       width: 18px;
       height: 18px;
       border-radius: 6px;
       border: 1px solid var(--stroke);
       background: rgba(16, 16, 18, 0.55);
   }

   .proofBody {
       padding: 14px 14px 16px;
       display: grid;
       gap: 12px;
   }

   .dashPreview {
       display: grid;
       gap: 12px;
   }

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

   .kpi {
       border-radius: 14px;
       border: 1px solid var(--stroke2);
       background: rgba(10, 10, 11, 0.55);
       padding: 12px;
       min-height: 68px;
       display: grid;
       align-content: start;
       gap: 6px;
       overflow: hidden;
   }

   .kpi .k {
       font-size: 11px;
       letter-spacing: 0.16em;
       text-transform: uppercase;
       opacity: 0.74;
   }

   .kpi .v {
       font-size: 14px;
       font-weight: 800;
       letter-spacing: 0.08px;
       color: rgba(233, 230, 218, 0.95);
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis;
   }

   .kpi .v.mono {
       font-family: var(--mono);
       font-weight: 650;
       font-size: 12px;
       opacity: 0.92;
   }

   .kpi .v.ok {
       color: rgba(46, 211, 161, 0.92);
   }

   .pill {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(172, 212, 228, 0.3);
       background: rgba(19, 186, 255, 0.09);
       opacity: 0.95;
   }

   .dashMetrics {
       display: grid;
       grid-template-columns: repeat(2, minmax(0, 1fr));
       gap: 12px;
   }

   .metric {
       border-radius: 14px;
       border: 1px solid var(--stroke2);
       background: var(--surface3);
       overflow: hidden;
       padding: 12px;
       min-height: 190px;
       display: grid;
       grid-template-rows: auto auto 1fr;
       gap: 10px;
   }

   .metricHead {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 10px;
       font-size: 12px;
       font-weight: 800;
       letter-spacing: 0.10px;
       color: rgba(233, 230, 218, 0.90);
   }

   .metricValue {
       font-size: 20px;
       font-weight: 900;
       letter-spacing: 0.04px;
       color: rgba(233, 230, 218, 0.96);
       line-height: 1.1;
   }

   .metricValue span {
       font-size: 12px;
       font-weight: 800;
       opacity: 0.72;
       margin-left: 6px;
   }

   .metricChart {
       position: relative;
       height: 140px;
   }

   .metricChart canvas {
       width: 100% !important;
       height: 100% !important;
   }

   .terminal {
       border-radius: 14px;
       border: 1px solid var(--stroke2);
       background: var(--surface3);
       padding: 12px;
       font-family: var(--mono);
       font-size: 12px;
       line-height: 1.55;
       color: rgba(233, 230, 218, 0.92);
       overflow: auto;
       max-height: 270px;
   }

   .terminal .dim {
       opacity: 0.70;
   }

   .terminal .ok {
       color: rgba(46, 211, 161, 0.95);
   }

   .terminal .warn {
       color: var(--warn);
   }

   .terminal .key {
       color: rgba(57, 198, 255, 0.95);
   }

   .proofFoot {
       display: flex;
       gap: 10px;
       flex-wrap: wrap;
       padding: 12px 14px 14px;
       border-top: 1px solid var(--stroke2);
   }

   .chip {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       font-family: var(--sans);
       font-size: 11px;
       color: rgba(233, 230, 218, 0.86);
       padding: 7px 10px;
       border-radius: 999px;
       border: 1px solid var(--stroke2);
       background: rgba(10, 10, 11, 0.75);
       white-space: nowrap;
   }

   .chip b {
       font-weight: 700;
       color: rgba(233, 230, 218, 0.92);
   }

   .section {
       margin-top: 64px;
   }

   .sectionCta {
       margin-top: 18px;
       display: flex;
       gap: 10px;
       flex-wrap: wrap;
       align-items: center;
   }

   .startShell {
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: var(--surface1);
       box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
       padding: 22px;
       overflow: hidden;
   }

   .startHead {
       display: flex;
       align-items: flex-end;
       justify-content: space-between;
       gap: 14px;
       flex-wrap: wrap;
   }

   .startHead .sub {
       margin-bottom: 0;
   }

   .stepsContainer {
       position: relative;
       margin-top: 14px;
       display: grid;
       grid-template-columns: repeat(3, minmax(0, 1fr));
       --steps-gap: 14px;
       gap: var(--steps-gap);
   }

   .stepCard {
       position: relative;
       z-index: 1;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: var(--surface1);
       padding: 20px;
       min-height: 170px;
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
       overflow: hidden;
       text-align: center;
   }

   .stepNumber {
       position: relative;
       z-index: 3;
       width: 42px;
       height: 42px;
       border-radius: 14px;
       border: 1px solid rgba(57, 198, 255, 0.42);
       background: rgba(57, 198, 255, 0.10);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       font-family: var(--mono);
       font-weight: 800;
       color: rgba(57, 198, 255, 0.95);
       margin: 0 auto 12px;
   }

   .stepTitle {
       margin: 0 0 8px;
       font-size: 15px;
       letter-spacing: 0.12px;
   }

   .stepDesc {
       margin: 0;
       color: var(--muted);
       font-size: 13px;
       line-height: 1.55;
   }

   .startGlance {
       margin-top: 14px;
       display: grid;
       grid-template-columns: repeat(12, 1fr);
       gap: 14px;
   }

   .glanceCard {
       grid-column: span 4;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: rgba(10, 10, 11, 0.55);
       overflow: hidden;
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
   }

   .glanceHead {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 10px;
       padding: 12px 12px;
       border-bottom: 1px solid rgba(233, 230, 218, 0.08);
       background: rgba(16, 16, 18, 0.55);
       color: rgba(233, 230, 218, 0.92);
   }

   .glanceHead strong {
       font-size: 13px;
       letter-spacing: 0.10px;
       font-weight: 850;
   }

   .glanceBody {
       padding: 12px 12px 14px;
       display: grid;
       gap: 10px;
   }

   .glanceLine {
       border-radius: 12px;
       border: 1px solid rgba(233, 230, 218, 0.10);
       background: rgba(6, 6, 6, 0.55);
       padding: 10px;
       font-family: var(--mono);
       font-size: 12px;
       line-height: 1.5;
       color: rgba(233, 230, 218, 0.90);
       overflow: hidden;
       text-overflow: ellipsis;
       white-space: nowrap;
   }

   .glanceLine .dim {
       opacity: 0.70;
   }

   .glanceHint {
       color: rgba(233, 230, 218, 0.70);
       font-size: 12px;
       line-height: 1.55;
   }

    .section h2,
    .how h2,
    .get h2 {
        margin: 0 0 12px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 0.12em;
        color: rgba(233, 230, 218, 0.94);
    }

    .section h2::after,
    .how h2::after,
    .get h2::after {
        content: "";
        height: 1px;
        flex: 1 1 auto;
        margin-left: 10px;
        background: linear-gradient(90deg, rgba(233, 230, 218, 0.18), rgba(233, 230, 218, 0.06), transparent);
        opacity: 0.95;
    }

    .octoMini {
        width: 28px;
        height: 28px;
        padding: 6px;
        border-radius: 10px;
        box-sizing: border-box;
        flex: 0 0 auto;
        border: 1px solid rgba(233, 230, 218, 0.14);
        background:
            radial-gradient(18px 18px at 30% 30%, rgba(57, 198, 255, 0.18), transparent 65%),
            linear-gradient(180deg, rgba(13, 13, 14, 0.92), rgba(10, 10, 11, 0.92));
        box-shadow:
            inset 0 0 0 1px rgba(57, 198, 255, 0.06),
            0 10px 28px rgba(0, 0, 0, 0.28);
        opacity: 1;
        filter: saturate(1.05) contrast(1.12);
    }

    @media (max-width: 640px) {
        .section h2::after,
        .how h2::after,
        .get h2::after {
            display: none;
        }
    }

   .sub {
       margin: 0 0 18px;
       color: var(--muted);
       line-height: 1.65;
       max-width: 78ch;
   }

   .perfCard {
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: #0c0e0f;
       box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
       overflow: hidden;
       position: relative;
   }

   .perfCard::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       box-shadow:
           inset 0 0 0 1px rgba(233, 230, 218, 0.04),
           inset 0 1px 0 rgba(233, 230, 218, 0.04);
       opacity: 0.9;
   }

      .perfGrid {
          padding: 14px;
          display: grid;
          grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
          gap: 12px;
          align-items: center;
      }

    .perfTitle {
        margin: 0;
        font-size: 19px;
        letter-spacing: 0.10px;
    }

     .perfBadges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
         margin-top: 6px;
     }

   .perfBadge {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(233, 230, 218, 0.12);
       background: rgba(6, 6, 6, 0.42);
       color: rgba(233, 230, 218, 0.90);
       letter-spacing: 0.06em;
       text-transform: uppercase;
       white-space: nowrap;
   }

      .perfText {
         margin: 6px 0 0;
         color: rgba(233, 230, 218, 0.76);
         line-height: 1.65;
         font-size: 14px;
         max-width: 72ch;
         display: -webkit-box;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }

     .perfFeatures {
         margin: 10px 0 0;
         padding: 0;
         list-style: none;
         display: grid;
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 8px;
         max-width: 72ch;
     }

      .perfFeature {
        border-radius: 14px;
        border: 1px solid rgba(233, 230, 218, 0.10);
        background: rgba(13, 13, 14, 0.42);
          padding: 9px 10px;
          display: grid;
          gap: 4px;
          transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
      }

   .perfFeature:hover {
       transform: translateY(-1px);
       border-color: rgba(233, 230, 218, 0.16);
       background: rgba(16, 16, 18, 0.55);
   }

   .perfFeatureTitle {
       font-size: 12px;
       font-weight: 900;
       letter-spacing: 0.10px;
       color: rgba(233, 230, 218, 0.94);
   }

   .perfFeatureText {
       font-size: 13px;
       line-height: 1.45;
       color: rgba(233, 230, 218, 0.70);
   }

   .perfMedia {
       position: relative;
       min-width: 0;
   }

   .perfArtifact {
       margin: 0;
       border-radius: 18px;
       border: 1px solid rgba(233, 230, 218, 0.14);
       background: rgba(10, 10, 11, 0.55);
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
       overflow: hidden;
       position: relative;
   }

   .perfArtifact::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       opacity: 0.45;
       background: radial-gradient(520px 280px at 18% 18%, rgba(57, 198, 255, 0.12), transparent 62%);
       -webkit-mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
       mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
   }

      .perfArtHead {
          padding: 9px 12px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 10px;
       border-bottom: 1px solid rgba(233, 230, 218, 0.08);
       position: relative;
       z-index: 1;
       background: rgba(13, 13, 14, 0.38);
       backdrop-filter: blur(6px);
   }

   .perfArtTitle {
       font-size: 12px;
       font-weight: 850;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       opacity: 0.86;
       white-space: nowrap;
   }

   .perfArtPill {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(57, 198, 255, 0.28);
       background: rgba(57, 198, 255, 0.08);
       color: rgba(57, 198, 255, 0.92);
       white-space: nowrap;
   }

      .perfFrame {
          position: relative;
          padding: 12px;
          z-index: 1;
      }

     .perfImg {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        border: 1px solid rgba(233, 230, 218, 0.10);
        background: rgba(6, 6, 6, 0.32);
         max-height: 260px;
         object-fit: contain;
     }

      .perfCode {
          position: absolute;
          left: 14px;
          right: 14px;
          bottom: 14px;
          margin: 0;
          padding: 8px 10px;
          border-radius: 14px;
          border: 1px solid rgba(233, 230, 218, 0.10);
          background: rgba(6, 6, 6, 0.72);
       color: rgba(233, 230, 218, 0.86);
       font-family: var(--mono);
       font-size: 11px;
       line-height: 1.5;
       white-space: pre;
       overflow: hidden;
       text-overflow: ellipsis;
       box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
       -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 75%, rgba(0, 0, 0, 0) 100%);
       mask-image: linear-gradient(180deg, #000 0%, #000 75%, rgba(0, 0, 0, 0) 100%);
   }

      .perfCaption {
          padding: 0 12px 12px;
          font-size: 12px;
          line-height: 1.55;
          color: rgba(233, 230, 218, 0.72);
          position: relative;
          z-index: 1;
      }

   .schemaCard {
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: #0c0e0f;
       box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
       overflow: hidden;
       position: relative;
   }

   .schemaCard::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       box-shadow:
           inset 0 0 0 1px rgba(233, 230, 218, 0.04),
           inset 0 1px 0 rgba(233, 230, 218, 0.04);
       opacity: 0.9;
   }

      .schemaGrid {
          padding: 14px;
          display: grid;
          grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
          gap: 12px;
          align-items: center;
      }

    .schemaTitle {
        margin: 0;
        font-size: 19px;
        letter-spacing: 0.10px;
    }

     .schemaBadges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
         margin-top: 6px;
     }

   .schemaBadge {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(233, 230, 218, 0.12);
       background: rgba(6, 6, 6, 0.42);
       color: rgba(233, 230, 218, 0.90);
       letter-spacing: 0.06em;
       text-transform: uppercase;
       white-space: nowrap;
   }

      .schemaText {
         margin: 6px 0 0;
         color: rgba(233, 230, 218, 0.76);
         line-height: 1.65;
         font-size: 14px;
         max-width: 72ch;
         display: -webkit-box;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }

     .schemaFeatures {
         margin: 10px 0 0;
         padding: 0;
         list-style: none;
         display: grid;
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 8px;
         max-width: 72ch;
     }

      .schemaFeature {
         border-radius: 14px;
         border: 1px solid rgba(233, 230, 218, 0.10);
         background: rgba(13, 13, 14, 0.42);
         padding: 9px 10px;
          display: grid;
          gap: 4px;
          transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
      }

   .schemaFeature:hover {
       transform: translateY(-1px);
       border-color: rgba(233, 230, 218, 0.16);
       background: rgba(16, 16, 18, 0.55);
   }

   .schemaFeatureTitle {
       font-size: 12px;
       font-weight: 900;
       letter-spacing: 0.10px;
       color: rgba(233, 230, 218, 0.94);
   }

   .schemaFeatureText {
       font-size: 13px;
       line-height: 1.45;
       color: rgba(233, 230, 218, 0.70);
   }

   .schemaMedia {
       position: relative;
       min-width: 0;
   }

   .schemaArtifact {
       margin: 0;
       border-radius: 18px;
       border: 1px solid rgba(233, 230, 218, 0.14);
       background: rgba(10, 10, 11, 0.55);
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
       overflow: hidden;
       position: relative;
   }

   .schemaArtifact::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       opacity: 0.45;
       background: radial-gradient(520px 280px at 18% 18%, rgba(57, 198, 255, 0.10), transparent 62%);
       -webkit-mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
       mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
   }

     .schemaArtHead {
         padding: 9px 12px;
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 10px;
       border-bottom: 1px solid rgba(233, 230, 218, 0.08);
       position: relative;
       z-index: 1;
       background: rgba(13, 13, 14, 0.38);
       backdrop-filter: blur(6px);
   }

   .schemaArtTitle {
       font-size: 12px;
       font-weight: 850;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       opacity: 0.86;
       white-space: nowrap;
   }

   .schemaArtPill {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(127, 226, 255, 0.26);
       background: rgba(127, 226, 255, 0.08);
       color: rgba(127, 226, 255, 0.92);
       white-space: nowrap;
   }

      .schemaFrame {
          position: relative;
          padding: 12px;
          z-index: 1;
      }

     .schemaImg {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        border: 1px solid rgba(233, 230, 218, 0.10);
        background: rgba(6, 6, 6, 0.32);
         max-height: 260px;
         object-fit: contain;
     }

      .schemaCode {
          position: absolute;
          left: 14px;
          right: 14px;
          bottom: 14px;
          margin: 0;
          padding: 8px 10px;
          border-radius: 14px;
          border: 1px solid rgba(233, 230, 218, 0.10);
          background: rgba(6, 6, 6, 0.72);
       color: rgba(233, 230, 218, 0.86);
       font-family: var(--mono);
       font-size: 11px;
       line-height: 1.5;
       white-space: pre;
       overflow: hidden;
       text-overflow: ellipsis;
       box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
       -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 75%, rgba(0, 0, 0, 0) 100%);
       mask-image: linear-gradient(180deg, #000 0%, #000 75%, rgba(0, 0, 0, 0) 100%);
   }

      .schemaCaption {
          padding: 0 12px 12px;
          font-size: 12px;
          line-height: 1.55;
          color: rgba(233, 230, 218, 0.72);
          position: relative;
          z-index: 1;
      }

   .whyUi {
       position: relative;
       display: grid;
       grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
       gap: 14px;
       align-items: stretch;
       margin-top: 12px;
   }

   .whyRadio {
       position: absolute;
       left: -9999px;
       opacity: 0;
       width: 1px;
       height: 1px;
       pointer-events: none;
   }

   .whyTabs {
       position: relative;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: rgba(10, 10, 11, 0.42);
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
       padding: 10px;
       display: grid;
       gap: 10px;
       align-content: center;
       overflow: hidden;
       align-self: stretch;
       height: 100%;
   }

   .whyTabs::before {
       content: "";
       position: absolute;
       left: 36px;
       top: 14px;
       bottom: 14px;
       width: 1px;
       background: linear-gradient(180deg, rgba(57, 198, 255, 0.00), rgba(57, 198, 255, 0.22), rgba(57, 198, 255, 0.00));
       opacity: 0.75;
       pointer-events: none;
   }

   .whyTab {
       position: relative;
       display: flex;
       gap: 12px;
       align-items: flex-start;
       padding: 14px 14px;
       border-radius: 14px;
       border: 1px solid rgba(233, 230, 218, 0.10);
       background: rgba(13, 13, 14, 0.50);
       cursor: pointer;
       transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
       user-select: none;
   }

   .whyTab:hover {
       transform: translateY(-1px);
       border-color: rgba(233, 230, 218, 0.16);
       background: rgba(16, 16, 18, 0.62);
   }

   .whyTab::before {
       content: "";
       position: absolute;
       left: 0;
       top: 10px;
       bottom: 10px;
       width: 3px;
       border-radius: 4px;
       background: rgba(233, 230, 218, 0.10);
       opacity: 0;
       transform: translateX(-2px);
       transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
   }

   .whyIco {
       width: 38px;
       height: 38px;
       border-radius: 13px;
       border: 1px solid rgba(233, 230, 218, 0.14);
       background: rgba(6, 6, 6, 0.45);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: rgba(57, 198, 255, 0.92);
       flex: 0 0 auto;
       box-shadow: inset 0 0 0 1px rgba(57, 198, 255, 0.06);
   }

   .whyIco svg {
       width: 18px;
       height: 18px;
   }

   .whyMeta {
       min-width: 0;
       display: grid;
       gap: 6px;
   }

   .whyTabTitle {
       font-size: 14px;
       font-weight: 900;
       letter-spacing: 0.10px;
       color: rgba(233, 230, 218, 0.96);
       line-height: 1.15;
   }

   .whyTabHint {
       font-size: 13px;
       line-height: 1.45;
       color: rgba(233, 230, 218, 0.70);
   }

   #whyLatency:checked~.whyTabs label[for="whyLatency"],
   #whyWal:checked~.whyTabs label[for="whyWal"],
   #whyOps:checked~.whyTabs label[for="whyOps"] {
       border-color: rgba(116, 118, 119, 0.5);
       background: rgba(25, 24, 24, 0.7);
   }

   #whyLatency:checked~.whyTabs label[for="whyLatency"]::before,
   #whyWal:checked~.whyTabs label[for="whyWal"]::before,
   #whyOps:checked~.whyTabs label[for="whyOps"]::before {
       opacity: 1;
       transform: translateX(0);
       background: linear-gradient(180deg, rgba(57, 198, 255, 0.95), rgba(46, 211, 161, 0.85));
   }

   #whyLatency:checked~.whyTabs label[for="whyLatency"] .whyIco,
   #whyWal:checked~.whyTabs label[for="whyWal"] .whyIco,
   #whyOps:checked~.whyTabs label[for="whyOps"] .whyIco {
       border-color: rgba(57, 198, 255, 0.36);
       background: rgb(20, 19, 19);
       color: rgba(57, 198, 255, 0.98);
   }

   .whyRadio:focus-visible~.whyTabs label[for="whyLatency"],
   .whyRadio:focus-visible~.whyTabs label[for="whyWal"],
   .whyRadio:focus-visible~.whyTabs label[for="whyOps"] {
       outline: none;
   }

   #whyLatency:focus-visible~.whyTabs label[for="whyLatency"],
   #whyWal:focus-visible~.whyTabs label[for="whyWal"],
   #whyOps:focus-visible~.whyTabs label[for="whyOps"] {
       outline: 2px solid rgba(57, 198, 255, 0.65);
       outline-offset: 3px;
   }

   .whyPanels {
       position: relative;
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: radial-gradient(1200px 520px at 24% 10%, rgba(0, 0, 0, 0.16), transparent 55%), radial-gradient(900px 440px at 84% 70%, rgba(31, 53, 59, 0.1), transparent 58%), linear-gradient(180deg, rgba(16, 16, 18, 0.70), rgba(13, 13, 14, 0.70));
       box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
       overflow: hidden;
       min-height: 220px;
       align-self: stretch;
   }

   .whyPanels::before {
       content: "";
       position: absolute;
       left: 0;
       top: 0;
       bottom: 0;
       width: 3px;
       opacity: 0.95;
       pointer-events: none;
       z-index: 2;
   }

   .whyPanel {
       position: relative;
       padding: 22px;
       display: none;
       z-index: 1;
   }

   .whyPanel::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       opacity: 0.28;
       background:
           repeating-linear-gradient(90deg, rgba(233, 230, 218, 0.06) 0, rgba(233, 230, 218, 0.06) 1px, transparent 1px, transparent 54px),
           linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.32));
       -webkit-mask-image: radial-gradient(70% 65% at 28% 26%, #000 0%, rgba(0, 0, 0, 0) 72%);
       mask-image: radial-gradient(70% 65% at 28% 26%, #000 0%, rgba(0, 0, 0, 0) 72%);
       z-index: 0;
   }

   .whyPanelGrid {
       position: relative;
       z-index: 1;
       height: 100%;
       display: grid;
       grid-template-columns: 1.05fr 0.95fr;
       gap: 14px;
       align-items: start;
   }

   .whyPanelCopy {
       min-width: 0;
   }

   .whyKicker {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 6px 10px;
       border-radius: 999px;
       border: 1px solid rgba(233, 230, 218, 0.12);
       background: rgba(6, 6, 6, 0.40);
       font-family: var(--mono);
       font-size: 11px;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       color: rgba(233, 230, 218, 0.78);
       width: fit-content;
       margin-bottom: 12px;
   }

   .whyPanel h3 {
       margin: 0;
       font-size: 18px;
       letter-spacing: 0.10px;
   }

   .whyPanel p {
       margin: 10px 0 0;
       color: rgba(233, 230, 218, 0.76);
       line-height: 1.65;
       font-size: 14px;
       max-width: 70ch;
   }

   .whyList {
       margin: 14px 0 0;
       padding: 0;
       list-style: none;
       display: grid;
       gap: 12px;
       max-width: 70ch;
   }

   .whyList li {
       position: relative;
       padding-left: 14px;
       display: grid;
       gap: 4px;
   }

   .whyList li::before {
       content: "";
       position: absolute;
       left: 0;
       top: 8px;
       width: 6px;
       height: 6px;
       border-radius: 99px;
       background: rgba(57, 198, 255, 0.75);
       box-shadow: 0 0 0 3px rgba(57, 198, 255, 0.10);
   }

   #whyWal:checked~.whyPanels .whyPanelWal .whyList li::before {
       background: rgba(46, 211, 161, 0.80);
       box-shadow: 0 0 0 3px rgba(46, 211, 161, 0.12);
   }

   #whyOps:checked~.whyPanels .whyPanelOps .whyList li::before {
       background: rgba(127, 226, 255, 0.75);
       box-shadow: 0 0 0 3px rgba(127, 226, 255, 0.10);
   }

   .whyList b {
       font-size: 12px;
       letter-spacing: 0.10px;
       font-weight: 900;
       color: rgba(233, 230, 218, 0.94);
   }

   .whyList span {
       font-size: 13px;
       line-height: 1.45;
       color: rgba(233, 230, 218, 0.70);
   }

   .whyPanelArtifact {
       border-radius: 16px;
       border: 1px solid rgba(233, 230, 218, 0.14);
       background: rgba(10, 10, 11, 0.55);
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
       padding: 14px;
       overflow: hidden;
       position: relative;
   }

   .whyPanelArtifact::after {
       content: "";
       position: absolute;
       inset: 0;
       pointer-events: none;
       opacity: 0.40;
       background: radial-gradient(420px 220px at 22% 18%, rgba(57, 198, 255, 0.18), transparent 62%);
       -webkit-mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
       mask-image: radial-gradient(70% 60% at 30% 22%, #000 0%, rgba(0, 0, 0, 0) 72%);
   }

   .whyArtHead {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 10px;
       margin-bottom: 12px;
       position: relative;
       z-index: 1;
   }

   .whyArtTitle {
       font-size: 12px;
       font-weight: 850;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       opacity: 0.82;
       white-space: nowrap;
   }

   .whyArtPill {
       font-family: var(--mono);
       font-size: 11px;
       padding: 4px 8px;
       border-radius: 999px;
       border: 1px solid rgba(57, 198, 255, 0.28);
       background: rgba(57, 198, 255, 0.08);
       color: rgba(57, 198, 255, 0.92);
       white-space: nowrap;
   }

   .whyPanelArtifactWal .whyArtPill {
       border-color: rgba(46, 211, 161, 0.28);
       background: rgba(46, 211, 161, 0.08);
       color: rgba(46, 211, 161, 0.92);
   }

   .whyPanelArtifactOps .whyArtPill {
       border-color: rgba(127, 226, 255, 0.26);
       background: rgba(127, 226, 255, 0.08);
       color: rgba(127, 226, 255, 0.92);
   }

   .whySpark {
       height: 44px;
       display: flex;
       align-items: flex-end;
       gap: 6px;
       position: relative;
       z-index: 1;
   }

   .whySpark span {
       flex: 1 1 0;
       border-radius: 999px;
       background: rgba(57, 198, 255, 0.16);
       border: 1px solid rgba(57, 198, 255, 0.16);
   }

   .whySpark span:nth-child(1) {
       height: 62%;
   }

   .whySpark span:nth-child(2) {
       height: 64%;
   }

   .whySpark span:nth-child(3) {
       height: 63%;
   }

   .whySpark span:nth-child(4) {
       height: 66%;
   }

   .whySpark span:nth-child(5) {
       height: 65%;
   }

   .whySpark span:nth-child(6) {
       height: 64%;
   }

   .whySpark span:nth-child(7) {
       height: 66%;
   }

   .whySpark span:nth-child(8) {
       height: 63%;
   }

   .whySpark span:nth-child(9) {
       height: 65%;
   }

   .whySpark span:nth-child(10) {
       height: 64%;
   }

   .whyArtRows {
       margin-top: 12px;
       display: grid;
       gap: 8px;
       position: relative;
       z-index: 1;
       font-family: var(--mono);
       font-size: 12px;
       color: rgba(233, 230, 218, 0.88);
   }

   .whyArtRows>div {
       display: flex;
       align-items: baseline;
       justify-content: space-between;
       gap: 10px;
       padding: 8px 10px;
       border-radius: 12px;
       border: 1px solid rgba(233, 230, 218, 0.10);
       background: rgba(6, 6, 6, 0.45);
   }

   .whyArtRows .k {
       opacity: 0.74;
       letter-spacing: 0.08em;
   }

   .whyArtRows .v {
       opacity: 0.92;
   }

   .whyLog,
   .whyYaml {
       margin: 0;
       padding: 12px;
       border-radius: 14px;
       border: 1px solid rgba(233, 230, 218, 0.10);
       background: rgba(6, 6, 6, 0.55);
       font-family: var(--mono);
       font-size: 12px;
       line-height: 1.55;
       color: rgba(233, 230, 218, 0.88);
       overflow: hidden;
       position: relative;
       z-index: 1;
   }

   #whyLatency:checked~.whyPanels .whyPanelLatency,
   #whyWal:checked~.whyPanels .whyPanelWal,
   #whyOps:checked~.whyPanels .whyPanelOps {
       display: block;
   }

   .grid {
       display: grid;
       grid-template-columns: repeat(12, 1fr);
       gap: 14px;
   }

   .card {
       grid-column: span 6;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: var(--surface1);
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
       overflow: hidden;
       transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
   }

   .card:hover {
       transform: translateY(-2px);
       border-color: rgba(233, 230, 218, 0.18);
       background: rgba(16, 16, 18, 0.72);
   }

   .card.reveal {
       opacity: 0;
       transform: translateY(10px);
       animation: reveal 760ms var(--ease-out) forwards;
       will-change: transform, opacity;
   }

   .card.reveal.d2 {
       animation-delay: 110ms;
   }

   .card.reveal.d3 {
       animation-delay: 220ms;
   }

   .card.reveal.d4 {
       animation-delay: 330ms;
   }

   @keyframes reveal {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .cardHead {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       margin-bottom: 10px;
   }

   .ico {
       width: 36px;
       height: 36px;
       border-radius: 12px;
       border: 1px solid var(--stroke2);
       background: rgba(10, 10, 11, 0.72);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: rgba(57, 198, 255, 0.92);
       flex: 0 0 auto;
   }

   .ico svg {
       width: 18px;
       height: 18px;
   }

   .cardInner {
       padding: 20px;
   }

   .card h3 {
       margin: 0 0 8px;
       font-size: 15px;
       letter-spacing: 0.12px;
   }

   .card p {
       margin: 0;
       color: var(--muted);
       line-height: 1.65;
       font-size: 14px;
   }

   .card .kvs {
       margin-top: 14px;
       padding-top: 14px;
       border-top: 1px solid var(--stroke2);
       display: grid;
       grid-template-columns: 1fr;
       gap: 8px;
       font-family: var(--mono);
       font-size: 12px;
       color: rgba(233, 230, 218, 0.90);
   }

   .kv {
       display: flex;
       align-items: baseline;
       justify-content: space-between;
       gap: 12px;
       opacity: 0.95;
   }

   .kv span:first-child {
       opacity: 0.74;
       letter-spacing: 0.06em;
   }

   .wide {
       grid-column: span 12;
   }

   .links {
       display: grid;
       grid-template-columns: repeat(12, 1fr);
       gap: 14px;
   }

   .links.links3 .linkcard {
       grid-column: span 4;
   }

   .linkcard {
       grid-column: span 3;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: var(--surface1);
       padding: 18px;
       display: flex;
       flex-direction: column;
       gap: 10px;
       min-height: 118px;
       transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
   }

   .linkcard:hover {
       transform: translateY(-2px);
       border-color: rgba(233, 230, 218, 0.18);
       background: rgba(16, 16, 18, 0.72);
   }

   .linkcard strong {
       font-size: 14px;
       letter-spacing: 0.12px;
   }

   .linkcard p {
       margin: 0;
       color: var(--muted);
       font-size: 13px;
       line-height: 1.55;
   }

   .linkcard .go {
       margin-top: auto;
       display: inline-flex;
       align-items: center;
       gap: 8px;
       font-weight: 850;
       letter-spacing: 0.12px;
       opacity: 0.92;
       font-size: 13px;
   }

   .linkcard .go::after {
       content: ">";
       opacity: 0.9;
       transform: translateX(0);
       transition: transform 140ms ease;
   }

   .linkcard:hover .go::after {
       transform: translateX(2px);
   }

   .cta {
       margin-top: 44px;
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: var(--surface1);
       box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
       padding: 22px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 14px;
       flex-wrap: wrap;
   }

   .how {
       margin-top: 44px;
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: var(--surface1);
       padding: 22px;
       box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
   }

   .steps {
       margin-top: 14px;
       display: grid;
       grid-template-columns: repeat(4, minmax(0, 1fr));
       gap: 12px;
       position: relative;
   }

   .step {
       border-radius: var(--radius);
       border: 1px solid var(--stroke2);
       background: rgba(10, 10, 11, 0.55);
       padding: 14px;
       position: relative;
       overflow: hidden;
   }

   .step .n {
       font-family: var(--mono);
       font-size: 11px;
       letter-spacing: 0.12em;
       opacity: 0.85;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       margin-bottom: 10px;
   }

   .badge {
       width: 28px;
       height: 28px;
       border-radius: 10px;
       border: 1px solid rgba(57, 198, 255, 0.42);
       background: rgba(57, 198, 255, 0.08);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: rgba(57, 198, 255, 0.95);
       font-weight: 700;
   }

   .step strong {
       display: block;
       font-size: 14px;
       letter-spacing: 0.10px;
       margin-bottom: 6px;
   }

   .step p {
       margin: 0;
       color: var(--muted);
       font-size: 13px;
       line-height: 1.6;
   }

   .get {
       margin-top: 44px;
       border: 1px solid var(--stroke2);
       border-radius: calc(var(--radius) + 6px);
       background: var(--surface1);
       padding: 22px;
       box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
   }

   .split {
       margin-top: 14px;
       display: grid;
       grid-template-columns: repeat(3, minmax(0, 1fr));
       gap: 14px;
       align-items: start;
   }

   .usecases {
       margin-top: 10px;
       display: grid;
       grid-template-columns: repeat(12, 1fr);
       gap: 14px;
   }

   .dashNote {
       border-radius: 14px;
       border: 1px solid var(--stroke2);
       background: rgba(10, 10, 11, 0.55);
       padding: 12px;
       color: rgba(233, 230, 218, 0.78);
       font-size: 12px;
       line-height: 1.55;
   }

   .card.cardSlab {
       grid-column: span 4;
   }

   .card.cardSlab .cardInner {
       padding: 22px;
       min-height: 210px;
       display: flex;
       flex-direction: column;
   }

   .card.cardSlab .cardHead {
       margin-bottom: 12px;
   }

   .card.cardSlab p {
       font-size: 14px;
   }

   .tags {
       margin-top: auto;
       padding-top: 14px;
       border-top: 1px solid rgba(233, 230, 218, 0.08);
       display: flex;
       flex-wrap: wrap;
       gap: 8px;
   }

   .tag {
       display: inline-flex;
       align-items: center;
       padding: 6px 10px;
       border-radius: 999px;
       border: 1px solid rgba(233, 230, 218, 0.10);
       background: rgba(13, 13, 14, 0.55);
       font-size: 11px;
       letter-spacing: 0.10px;
       color: rgba(233, 230, 218, 0.84);
       white-space: nowrap;
   }


   .usecard {
       grid-column: span 3;
       border: 1px solid var(--stroke2);
       border-radius: var(--radius);
       background: var(--surface1);
       padding: 18px;
       box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
       transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
       min-height: 120px;
       display: grid;
       align-content: start;
       gap: 10px;
   }

   .usecard:hover {
       transform: translateY(-2px);
       border-color: rgba(233, 230, 218, 0.18);
       background: rgba(16, 16, 18, 0.72);
   }

   .usecard strong {
       font-size: 14px;
       letter-spacing: 0.12px;
   }

   .usecard p {
       margin: 0;
       color: var(--muted);
       font-size: 13px;
       line-height: 1.55;
   }

   .split>div {
       min-width: 0;
   }

   @media (max-width: 1200px) {
       .split {
           grid-template-columns: repeat(2, minmax(0, 1fr));
       }
   }

   .code {
       border-radius: var(--radius);
       border: 1px solid var(--stroke2);
       background: var(--surface3);
       padding: 14px;
       max-width: 100%;
       overflow: auto;
       font-family: var(--mono);
       font-size: 12px;
       line-height: 1.55;
       color: rgba(233, 230, 218, 0.92);
   }

   .code .prompt {
       color: rgba(57, 198, 255, 0.90);
   }

   .code .comment {
       color: rgba(233, 230, 218, 0.62);
   }

   .cta h2 {
       margin: 0;
       font-size: 16px;
       letter-spacing: 0.12px;
   }

   .cta p {
       margin: 6px 0 0;
       color: var(--muted);
       font-size: 13px;
       line-height: 1.55;
       max-width: 70ch;
   }

   .cta .rhs {
       display: flex;
       gap: 10px;
       flex-wrap: wrap;
       align-items: center;
   }

   .siteFooter {
       border-top: 1px solid var(--stroke2);
       padding: 22px 0 0;
       margin-top: 44px;
       color: rgba(233, 230, 218, 0.70);
       font-size: 12px;
       line-height: 1.6;
   }

   .siteFooter a {
       text-decoration: underline;
       text-underline-offset: 3px;
       opacity: 0.9;
   }

   .siteFooter a:hover {
       opacity: 1;
   }

   .siteFooterInner {
       display: grid;
       grid-template-columns: minmax(240px, 1fr) 2fr;
       gap: 18px;
       align-items: start;
   }

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

   .footerCol {
       display: grid;
       gap: 8px;
       align-content: start;
   }

   .footerTitle {
       color: rgba(233, 230, 218, 0.86);
       font-size: 11px;
       letter-spacing: 0.16em;
       text-transform: uppercase;
   }

   .footerBottom {
       display: flex;
       align-items: center;
       gap: 10px;
       flex-wrap: wrap;
       justify-content: flex-start;
       opacity: 0.92;
       position: absolute;
       bottom: 10px;
   }

   .footerSep {
       opacity: 0.55;
   }

   .footlock {
       display: inline-flex;
       align-items: center;
       gap: 12px;
   }

   .footbrand {
       color: rgba(233, 230, 218, 0.92);
       letter-spacing: 0.12px;
   }

   .footdesc {
       opacity: 0.9;
   }

   .footlogo {
       width: 34px;
       height: 34px;
       border-radius: 10px;
       border: 1px solid var(--stroke);
       background: var(--surface1);
   }

   @media (max-width: 900px) {
       .siteFooterInner {
           grid-template-columns: 1fr;
       }

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

       .footlock {
           flex-wrap: wrap;
           align-items: center;
       }

       .footerBottom {
           position: static;
           width: 100%;
           margin-top: 10px;
       }
   }

   @media (max-width: 520px) {
       .footerCols {
           grid-template-columns: 1fr;
       }
   }

   :focus-visible {
       outline: 2px solid rgba(57, 198, 255, 0.65);
       outline-offset: 3px;
       border-radius: 10px;
   }

    @media (max-width: 1000px) {
       .heroInner {
           grid-template-columns: 1fr;
           padding: 26px;
       }

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

       .heroLogo {
           align-self: center;
           margin-left: 0;
           margin-top: 10px;
       }

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

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

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

       .perfMedia {
           grid-row: 1;
       }

       .perfCopy {
           grid-row: 2;
       }

       .perfCode {
           position: static;
           left: auto;
           right: auto;
           bottom: auto;
           margin-top: 12px;
           -webkit-mask-image: none;
           mask-image: none;
       }

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

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

       .schemaCode {
           position: static;
           left: auto;
           right: auto;
           bottom: auto;
           margin-top: 12px;
           -webkit-mask-image: none;
           mask-image: none;
       }

       .whyPanels {
           min-height: unset;
       }

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

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

       .linkcard {
           grid-column: span 6;
       }

       .links.links3 .linkcard {
           grid-column: span 6;
       }

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

       .card.cardSlab {
           grid-column: span 6;
       }

       .glanceCard {
           grid-column: span 12;
       }

       .usecard {
           grid-column: span 6;
       }

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

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

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

       .steps::before {
           left: 14px;
           right: auto;
           top: 22px;
           bottom: 22px;
           width: 1px;
           height: auto;
       }

       .step {
           padding-left: 18px;
       }

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

       .octoCameo {
           width: 420px;
           right: -160px;
           top: -160px;
       }
   }

     @media (max-width: 640px) {
       .wrap {
           padding: 20px 14px 64px;
       }

         .perfGrid {
             padding: 13px;
         }

       .perfCode {
           display: none;
       }

         .schemaGrid {
             padding: 13px;
         }

       .schemaCode {
           display: none;
       }

        .nav {
            padding: 12px 14px;
            flex-wrap: nowrap;
            row-gap: 0;
        }

        .brand {
            min-width: 0;
        }

       .brand span {
           font-size: 20px;
       }

        .navlinks {
            width: auto;
            flex: 0 0 auto;
            justify-content: flex-end;
            gap: 8px;
        }

        .navlinks .btn {
            padding: 9px 12px;
            font-size: 12px;
        }

        .navlinks a:not(.navMobileCta) {
            display: none;
        }
    
        .facts {
            grid-template-columns: 1fr;
        }

       .linkcard {
           grid-column: span 12;
       }

       .links.links3 .linkcard {
           grid-column: span 12;
       }

       .card.cardSlab {
           grid-column: span 12;
       }

       .usecard {
           grid-column: span 12;
       }

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

       .octoCameo {
           display: none;
       }

       .fact:not(:first-child) {
           border-left: none;
           border-top: 1px solid rgba(233, 230, 218, 0.10);
       }
   }

   @media (prefers-reduced-motion: reduce) {

       .btn,
       .card,
       .linkcard,
       .linkcard .go::after,
       .card.reveal,
       .whyTab,
       .whyPanel {
           transition: none !important;
           animation: none !important;
       }

       html:focus-within {
           scroll-behavior: auto;
       }
   }
