﻿:root {
      --bg: #030714;
      --bg-2: #080d1c;
      --panel: #0d1324;
      --panel-2: #131b2e;
      --ink: #f6f9ff;
      --muted: #9fafc5;
      --soft: #d7e3f5;
      --line: rgba(176, 190, 216, 0.16);
      --line-2: rgba(210, 153, 42, 0.42);
      --blue: #2f9cff;
      --blue-2: #1262d3;
      --cyan: #30d7ff;
      --green: #34d399;
      --gold: #d19a2a;
      --gold-2: #f0c76a;
      --danger: #ff6b8a;
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
      --radius: 8px;
      --max: 1420px;
      --font-main: "Cairo", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        linear-gradient(135deg, rgba(209, 154, 42, 0.11), transparent 34%),
        linear-gradient(180deg, #050918 0%, var(--bg) 48%, #020511 100%);
      color: var(--ink);
      font-family: var(--font-main);
      font-weight: 500;
      line-height: 1.72;
    }

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

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

    button,
    input,
    select {
      font: inherit;
    }

    .shell {
      width: min(var(--max), calc(100% - 36px));
      margin-inline: auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(2, 5, 17, 0.96);
      backdrop-filter: blur(16px);
    }

    .topbar__inner {
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(12px, 1.7vw, 26px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: 0;
      min-width: clamp(190px, 18vw, 235px);
    }

    .brand__mark {
      width: clamp(50px, 4.5vw, 62px);
      height: clamp(50px, 4.5vw, 62px);
      display: grid;
      place-items: center;
      border: 2px solid rgba(209, 154, 42, 0.55);
      border-radius: 50%;
      background: linear-gradient(145deg, var(--gold-2), var(--gold));
      color: #070b16;
      box-shadow: 0 0 34px rgba(209, 154, 42, 0.38);
      font-size: clamp(24px, 2.1vw, 30px);
    }

    .brand__text {
      display: grid;
      gap: 0;
      line-height: 1.25;
    }

    .brand__name {
      color: var(--gold-2);
      font-size: clamp(27px, 2.5vw, 34px);
      line-height: 1;
    }

    .brand__tag {
      color: var(--muted);
      font-size: clamp(10px, 0.85vw, 12px);
      font-weight: 700;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      gap: clamp(10px, 1.45vw, 24px);
      color: var(--soft);
      font-size: clamp(13px, 1.03vw, 16px);
      font-weight: 700;
      min-width: 0;
    }

    .nav a {
      position: relative;
      padding: 10px 0;
      border-radius: 7px;
      color: #e9eef8;
      white-space: nowrap;
    }

    .nav a:hover,
    .nav a:focus-visible {
      outline: none;
      color: var(--gold-2);
      background: transparent;
    }

    .nav__hot::before {
      content: "";
      position: absolute;
      top: 6px;
      right: -10px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ff6b5f;
      box-shadow: 0 0 12px rgba(255, 107, 95, 0.72);
    }

    .topbar__actions {
      display: flex;
      align-items: center;
      gap: clamp(8px, 0.9vw, 14px);
      min-width: clamp(210px, 19vw, 270px);
      justify-content: flex-end;
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu summary {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--ink);
      cursor: pointer;
      font-size: 13px;
      font-weight: 900;
      list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu__panel {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      width: min(280px, calc(100vw - 28px));
      display: grid;
      gap: 6px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(8, 18, 33, 0.98);
      box-shadow: var(--shadow);
    }

    .mobile-menu__panel a {
      padding: 10px 11px;
      border-radius: 7px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 900;
    }

    .mobile-menu__panel a:hover,
    .mobile-menu__panel a:focus-visible {
      outline: none;
      background: rgba(255, 255, 255, 0.07);
    }

    .button {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--ink);
      font-weight: 800;
      font-size: 13px;
      cursor: pointer;
    }

    .topbar .button {
      min-height: 48px;
      min-width: 142px;
      font-size: 16px;
      border-radius: 7px;
    }

    .button--primary {
      border-color: rgba(209, 154, 42, 0.78);
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      color: #060914;
      box-shadow: 0 14px 34px rgba(209, 154, 42, 0.23);
    }

    .button--ghost {
      border-color: rgba(209, 154, 42, 0.72);
      color: var(--gold-2);
      background: transparent;
    }

    .button--outline {
      border-color: rgba(209, 154, 42, 0.78);
      color: var(--gold-2);
      background: transparent;
    }

    .button:hover,
    .button:focus-visible {
      outline: none;
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 596px;
      display: grid;
      align-items: center;
      padding: 34px 0 42px;
      background:
        linear-gradient(90deg, rgba(47, 156, 255, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 64%);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(390px, 0.62fr);
      gap: 58px;
      align-items: center;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 11px;
      border: 1px solid var(--line-2);
      border-radius: 999px;
      background: rgba(19, 44, 74, 0.62);
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
    }

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

    h1 {
      max-width: 720px;
      font-size: clamp(40px, 4.7vw, 70px);
      line-height: 1.22;
      letter-spacing: 0;
      font-weight: 800;
    }

    .text-gold {
      color: var(--gold-2);
    }

    .hero__lead {
      margin-top: 18px;
      max-width: 680px;
      color: #d7e3f5;
      font-size: clamp(16px, 1.55vw, 20px);
      font-weight: 500;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .hero__points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    .hero__points span {
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
    }

    .hero__stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 650px;
      margin-top: 18px;
    }

    .hero__stats div {
      min-height: 82px;
      display: grid;
      align-content: center;
      gap: 2px;
      padding: 13px 14px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 8px;
      background: rgba(8, 17, 31, 0.66);
    }

    .hero__stats strong {
      color: var(--gold-2);
      font-size: 24px;
      line-height: 1.15;
      font-weight: 900;
    }

    .hero__stats span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .hero__note {
      margin-top: 14px;
      max-width: 590px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .terminal-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(5, 8, 19, 0.98));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-request-card {
      max-width: 430px;
      justify-self: start;
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    }

    .terminal-card__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.035);
      color: var(--soft);
      font-size: 12px;
      font-weight: 900;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #c8f9dd;
    }

    .status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(52, 211, 153, 0.8);
    }

    .payment-form {
      display: grid;
      gap: 14px;
      padding: 18px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .field__control {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      min-height: 52px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 8px;
      background: rgba(5, 9, 21, 0.82);
    }

    .field__control b {
      font-size: 18px;
      line-height: 1.2;
    }

    .field__control span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

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

    .method {
      min-height: 76px;
      display: grid;
      place-items: center;
      gap: 2px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.045);
      text-align: center;
      font-size: 12px;
      font-weight: 900;
    }

    .method--active {
      border-color: rgba(209, 154, 42, 0.42);
      background: rgba(209, 154, 42, 0.08);
    }

    .method span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
    }

    .flow-list {
      display: grid;
      gap: 8px;
      margin-top: 2px;
    }

    .flow-row {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
      font-size: 12px;
      font-weight: 800;
    }

    .hero-card-button {
      width: 100%;
      margin-top: 2px;
    }

    .flow-row i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(47, 156, 255, 0.12);
      font-style: normal;
    }

    .flow-row small {
      color: var(--muted);
      font-weight: 700;
    }

    .system-stack {
      display: grid;
      gap: 8px;
      padding-top: 2px;
    }

    .system-layer {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 11px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
    }

    .system-layer--active {
      border-color: rgba(47, 156, 255, 0.36);
      background: rgba(47, 156, 255, 0.09);
    }

    .system-layer span {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(47, 156, 255, 0.12);
      color: #ddecff;
      font-size: 11px;
      font-weight: 900;
    }

    .system-layer b {
      color: var(--ink);
      font-size: 13px;
      line-height: 1.2;
    }

    .system-layer small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      white-space: nowrap;
    }

    .market-strip {
      width: 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(10, 14, 29, 0.96);
      overflow: hidden;
    }

    .market-track {
      display: grid;
      grid-template-columns: repeat(6, minmax(210px, 1fr));
      gap: 12px;
      width: min(100%, 1920px);
      margin-inline: auto;
      padding: 12px 0;
    }

    .market-tile {
      min-height: 74px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .market-tile b {
      color: var(--ink);
      font-size: 15px;
      line-height: 1.25;
    }

    .market-tile span {
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .proof-strip {
      padding: 0 0 52px;
      margin-top: -18px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(11, 22, 38, 0.76);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
    }

    .proof-item {
      min-height: 86px;
      display: grid;
      align-content: center;
      gap: 4px;
      padding: 14px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .proof-item strong {
      color: white;
      font-size: 19px;
      line-height: 1.25;
    }

    .proof-item span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .route-strip {
      padding: 0 0 44px;
      margin-top: -28px;
    }

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

    .route-card {
      min-height: 124px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.72);
    }

    .route-card span {
      display: inline-block;
      margin-bottom: 9px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
    }

    .route-card b {
      display: block;
      margin-bottom: 5px;
      color: var(--ink);
      font-size: 16px;
      line-height: 1.25;
    }

    .route-card p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      display: grid;
      gap: 10px;
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: clamp(27px, 4.2vw, 44px);
      line-height: 1.18;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    .cards {
      display: grid;
      gap: 14px;
    }

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

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

    .card {
      min-height: 216px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18, 33, 54, 0.94), rgba(12, 24, 41, 0.88));
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

    .card__icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border: 1px solid rgba(47, 156, 255, 0.28);
      border-radius: 8px;
      background: rgba(47, 156, 255, 0.10);
      font-size: 21px;
    }

    .card h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }

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

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

    .use-case {
      min-height: 190px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.80);
    }

    .use-case b {
      display: block;
      margin-bottom: 8px;
      font-size: 17px;
    }

    .use-case p {
      color: var(--muted);
      font-size: 13px;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 18px;
      align-items: stretch;
    }

    .panel {
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.86);
      box-shadow: var(--shadow);
    }

    .panel-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .api-block {
      direction: ltr;
      text-align: left;
      overflow: hidden;
    }

    .api-line {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 10px;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-family: Consolas, "Courier New", monospace;
      font-size: 13px;
      color: #cfe1f8;
    }

    .api-line:last-child {
      border-bottom: 0;
    }

    .api-line b {
      width: fit-content;
      padding: 4px 7px;
      border-radius: 6px;
      color: #d8fce8;
      background: rgba(52, 211, 153, 0.12);
      border: 1px solid rgba(52, 211, 153, 0.22);
    }

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

    .check {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 12px;
      padding: 13px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
    }

    .check strong {
      display: block;
      line-height: 1.3;
      margin-bottom: 2px;
    }

    .check span {
      color: var(--muted);
      font-size: 13px;
    }

    .showcase {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
      gap: 18px;
      align-items: center;
    }

    .ops-preview {
      display: grid;
      gap: 12px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18, 35, 58, 0.96), rgba(9, 18, 32, 0.96));
      box-shadow: var(--shadow);
    }

    .ops-preview__head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--soft);
      font-size: 12px;
      font-weight: 900;
    }

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

    .ops-metric {
      min-height: 88px;
      padding: 13px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.045);
    }

    .ops-metric b {
      display: block;
      font-size: 20px;
      line-height: 1.25;
    }

    .ops-metric span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .ops-preview__list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .ops-preview__list li {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(4, 12, 23, 0.42);
      color: var(--soft);
      font-size: 12px;
      font-weight: 800;
    }

    .ops-preview__list i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(47, 156, 255, 0.12);
      font-style: normal;
    }

    .ops-preview__list small {
      color: var(--muted);
      font-weight: 800;
    }

    .compare {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .compare-row {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 10px;
      align-items: stretch;
    }

    .compare-cell {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .compare-cell strong {
      display: block;
      margin-bottom: 3px;
      color: var(--ink);
      font-size: 14px;
    }

    .compare-cell--accent {
      border-color: rgba(52, 211, 153, 0.28);
      background: rgba(52, 211, 153, 0.07);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      counter-reset: step;
    }

    .step {
      min-height: 174px;
      padding: 19px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      counter-increment: step;
    }

    .step::before {
      content: counter(step);
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 8px;
      background: linear-gradient(145deg, var(--blue), var(--blue-2));
      color: white;
      font-weight: 900;
    }

    .step h3 {
      margin-bottom: 7px;
      font-size: 16px;
    }

    .step p {
      color: var(--muted);
      font-size: 13px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      gap: 18px;
      align-items: stretch;
    }

    .trust-board {
      display: grid;
      gap: 10px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.86);
      box-shadow: var(--shadow);
    }

    .trust-row {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
    }

    .trust-row i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(47, 156, 255, 0.12);
      font-style: normal;
    }

    .trust-row b {
      display: block;
      line-height: 1.25;
    }

    .trust-row span,
    .trust-row small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .trust-copy {
      display: grid;
      align-content: center;
      gap: 14px;
    }

    .trust-copy .section-head {
      margin-bottom: 0;
    }

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

    .solution {
      min-height: 330px;
      display: grid;
      align-content: start;
      gap: 16px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18, 35, 58, 0.98), rgba(10, 20, 36, 0.94));
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
    }

    .solution--featured {
      border-color: rgba(47, 156, 255, 0.48);
      background:
        linear-gradient(180deg, rgba(24, 52, 84, 0.98), rgba(10, 23, 42, 0.96));
      box-shadow: 0 24px 70px rgba(47, 156, 255, 0.16);
    }

    .solution__label {
      width: fit-content;
      padding: 5px 9px;
      border: 1px solid rgba(47, 156, 255, 0.26);
      border-radius: 999px;
      color: #ddecff;
      background: rgba(47, 156, 255, 0.10);
      font-size: 12px;
      font-weight: 900;
    }

    .solution h3 {
      font-size: 22px;
      line-height: 1.25;
    }

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

    .solution ul,
    .faq-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .solution li {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 8px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    .solution li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
    }

    .solution__action {
      width: fit-content;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      padding: 8px 11px;
      border: 1px solid rgba(209, 154, 42, 0.48);
      border-radius: 8px;
      color: var(--gold-2);
      background: rgba(209, 154, 42, 0.08);
      font-size: 13px;
      font-weight: 900;
    }

    .solution__action:hover,
    .solution__action:focus-visible {
      outline: none;
      background: rgba(209, 154, 42, 0.14);
      transform: translateY(-1px);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: 18px;
      align-items: start;
    }

    .faq-note {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.86);
      box-shadow: var(--shadow);
    }

    .faq-note strong {
      display: block;
      margin-bottom: 10px;
      font-size: 22px;
      line-height: 1.35;
    }

    .faq-note p {
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    details.faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16, 29, 48, 0.86);
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 16px 18px;
      color: var(--ink);
      font-weight: 900;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      float: left;
      color: var(--blue);
      font-weight: 900;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      padding: 0 18px 16px;
      color: var(--muted);
      font-size: 14px;
    }

    .cta {
      padding: 34px;
      border: 1px solid var(--line-2);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(47, 156, 255, 0.20), rgba(48, 215, 255, 0.08)),
        var(--panel);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
    }

    .cta--form {
      grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.82fr);
      align-items: stretch;
    }

    .cta h2 {
      margin-bottom: 8px;
      font-size: clamp(24px, 4vw, 38px);
    }

    .cta p {
      color: var(--soft);
      max-width: 720px;
    }

    .request-panel {
      display: grid;
      gap: 11px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 8px;
      background: rgba(4, 12, 23, 0.52);
    }

    .request-panel__title {
      color: var(--ink);
      font-weight: 900;
      font-size: 15px;
    }

    .request-input {
      width: 100%;
      min-height: 44px;
      padding: 9px 11px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.055);
      color: var(--ink);
      outline: none;
    }

    .request-input option {
      color: #08111f;
      background: #f7fbff;
    }

    .request-input::placeholder {
      color: #889bb4;
    }

    .request-input:focus {
      border-color: rgba(47, 156, 255, 0.62);
      box-shadow: 0 0 0 3px rgba(47, 156, 255, 0.12);
    }

    .request-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .chip {
      padding: 6px 9px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.045);
      color: var(--soft);
      font-size: 12px;
      font-weight: 900;
    }

    .request-hint {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .footer {
      padding: 30px 0;
      border-top: 1px solid var(--line);
      background: #050a13;
      color: var(--muted);
      font-size: 13px;
    }

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

    .footer a {
      color: var(--gold-2);
      font-weight: 800;
    }

    @media (max-width: 1120px) and (min-width: 761px) {
      .shell {
        width: min(var(--max), calc(100% - 24px));
      }

      .topbar__inner {
        min-height: auto;
        flex-wrap: wrap;
        row-gap: 10px;
        padding-block: 12px;
      }

      .brand {
        order: 1;
      }

      .topbar__actions {
        order: 2;
        min-width: auto;
      }

      .nav {
        order: 3;
        flex: 0 0 100%;
        justify-content: center;
        gap: 22px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 14px;
      }

      .topbar .button {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
      }

      .nav a {
        padding-block: 3px;
      }
    }

    @media (max-width: 760px) {
      .nav,
      .topbar__actions {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .hero__grid,
      .split,
      .showcase,
      .trust-grid,
      .faq-wrap,
      .cta {
        grid-template-columns: 1fr;
      }

      .hero-request-card {
        max-width: none;
        justify-self: stretch;
      }

      .cards--three,
      .cards--four,
      .proof-grid,
      .route-grid,
      .use-case-grid,
      .solution-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 620px) {
      .shell {
        width: min(var(--max), calc(100% - 26px));
      }

      .topbar__inner {
        min-height: 64px;
      }

      .hero {
        padding: 52px 0 42px;
      }

      .hero__grid {
        gap: 22px;
      }

      .hero__actions .button,
      .cta .button {
        width: 100%;
      }

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

      .cards--three,
      .cards--four,
      .proof-grid,
      .route-grid,
      .use-case-grid,
      .solution-grid,
      .steps,
      .method-grid {
        grid-template-columns: 1fr;
      }

      .compare-row {
        grid-template-columns: 1fr;
      }

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

      .system-layer {
        grid-template-columns: 34px 1fr;
      }

      .system-layer small {
        grid-column: 2;
      }

      .trust-row {
        grid-template-columns: 34px 1fr;
      }

      .trust-row small {
        grid-column: 2;
      }

      .terminal-card {
        margin-inline: -2px;
      }

      .market-track {
        display: flex;
        overflow-x: auto;
        padding-inline: 13px;
        scroll-snap-type: x mandatory;
      }

      .market-tile {
        min-width: 235px;
        scroll-snap-align: start;
      }

      .api-line {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      section {
        padding: 62px 0;
      }
    }

