    :root {
      color-scheme: dark;
      --bg: #070b12;
      --panel: #0e141f;
      --panel-2: #121a29;
      --glass: rgba(18, 26, 41, .88);
      --glass-bd: rgba(160, 185, 230, .35);
      --txt: #ffffff;
      --muted: #d4dff5;
      --brand-1: #60a5ff;
      --brand-2: #b794f6;
      --brand-3: #ff6ec7;
      --ok: #3dd68c;
      --warn: #ffb86b;
      --err: #ff6b9d;
      --rad-sm: 14px;
      --rad-md: 22px;
      --rad-lg: 28px;
      --shadow: 0 20px 60px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .1);
      --tr-fast: .2s cubic-bezier(.2, .8, .2, 1);
      --tr-med: .35s cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--txt);
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      line-height: 1.65;
    }

    a {
      color: inherit;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(16px, 4vw, 28px);
    }

    .page {
      padding: clamp(48px, 8vw, 96px) 0;
    }

    #root:focus {
      outline: none;
    }

    #root:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px rgba(96, 165, 255, .28);
      border-radius: clamp(12px, 3vw, 22px);
    }

    .title-xxl {
      font-size: clamp(36px, 6.2vw, 82px);
      letter-spacing: -.03em;
      line-height: 1.05;
      margin: 0 0 24px;
      color: #ffffff;
      font-weight: 800;
      text-shadow: 0 2px 20px rgba(96, 165, 255, .3);
    }

    .lead {
      color: #e8f0ff;
      font-size: clamp(17px, 2.2vw, 20px);
      max-width: 840px;
      line-height: 1.75;
      font-weight: 500;
    }

    .glow {
      position: fixed;
      inset: -20vh -10vw -10vh -10vw;
      z-index: -3;
      filter: blur(80px);
      opacity: .35;
      background:
        radial-gradient(40vw 40vw at 15% 20%, #1b5cff33, transparent 55%),
        radial-gradient(36vw 36vw at 85% 10%, #ff6ec722, transparent 60%),
        radial-gradient(30vw 30vw at 60% 80%, #7c3aed33, transparent 60%),
        radial-gradient(36vw 36vw at 15% 85%, #00ffbf22, transparent 60%);
      pointer-events: none;
    }

    canvas#aurora {
      position: fixed;
      inset: 0;
      z-index: -2;
      opacity: .9;
    }

    .skip-link {
      position: absolute;
      inset-inline-start: clamp(12px, 5vw, 40px);
      top: 12px;
      z-index: 999;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--panel);
      border: 1px solid var(--glass-bd);
      color: #fff;
      font-weight: 600;
      transform: translateY(-120%);
      transition: transform var(--tr-fast);
    }

    .skip-link:focus {
      transform: translateY(0);
      outline: none;
    }

    .hdr {
      position: sticky;
      top: 0;
      z-index: 100;
      background: linear-gradient(180deg, rgba(7, 11, 18, .98), rgba(7, 11, 18, .88));
      backdrop-filter: saturate(180%) blur(16px);
      border-bottom: 1px solid var(--glass-bd);
    }

    .hdr-row {
      display: flex;
      align-items: center;
      gap: clamp(12px, 2vw, 20px);
      padding: clamp(8px, 1.2vw, 14px) clamp(14px, 3vw, 28px);
      flex-wrap: wrap;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: clamp(8px, 1.5vw, 12px);
      text-decoration: none;
      color: var(--txt);
      flex-shrink: 0;
    }

    .logo-badge {
      width: clamp(32px, 5.5vw, 48px);
      height: clamp(32px, 5.5vw, 48px);
      border-radius: 11px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, #243041, #0b1220);
      border: 1px solid var(--glass-bd);
      box-shadow: var(--shadow);
    }

    .logo-badge svg {
      width: clamp(16px, 3vw, 24px);
      height: clamp(16px, 3vw, 24px);
      color: var(--brand-1);
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand b {
      letter-spacing: .05em;
      font-size: clamp(13px, 2.2vw, 17px);
      color: #ffffff;
      font-weight: 700;
    }

    .brand small {
      color: #b5c7e9;
      letter-spacing: .16em;
      font-size: clamp(8px, 1.5vw, 11px);
      font-weight: 600;
      text-transform: uppercase;
    }

    .menu-toggle {
      display: none;
      border: 1px solid var(--glass-bd);
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
      color: #ffffff;
      font-weight: 700;
      padding: 10px 14px;
      border-radius: 999px;
      cursor: pointer;
      gap: 10px;
      align-items: center;
      transition: background var(--tr-fast);
    }

    .menu-toggle svg {
      width: 18px;
      height: 18px;
    }

    .menu-toggle:focus-visible {
      outline: 2px solid var(--brand-1);
      outline-offset: 3px;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(5px, .9vw, 8px);
      margin-left: auto;
      align-items: center;
      transition: max-height var(--tr-fast) ease;
    }

    nav a {
      color: #e8f0ff;
      text-decoration: none;
      padding: clamp(7px, 1.1vw, 11px) clamp(11px, 1.6vw, 18px);
      border-radius: 9px;
      position: relative;
      transition: all var(--tr-fast);
      font-size: clamp(13px, 1.7vw, 16px);
      font-weight: 600;
      background: rgba(255, 255, 255, .02);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    nav a:hover,
    nav a:focus-visible {
      transform: translateY(-2px);
      color: #fff;
      background: rgba(255, 255, 255, .06);
      border-color: rgba(160, 185, 230, .2);
    }

    nav a.active {
      background: linear-gradient(135deg, #1f2a3a, #0e1726);
      border: 1px solid var(--glass-bd);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    }

    .cta {
      flex-shrink: 0;
      margin-left: clamp(5px, 1vw, 12px);
    }

    .cta .btn {
      width: auto;
      max-width: min(100%, 320px);
    }

    .btn {
      all: unset;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      padding: clamp(7px, 1.1vw, 11px) clamp(11px, 1.6vw, 18px);
      border-radius: 10px;
      font-weight: 700;
      font-size: clamp(13px, 1.7vw, 16px);
      transition: all var(--tr-fast);
      text-align: center;
      justify-content: center;
      white-space: normal;
      word-break: break-word;
    }

    .hdr .btn {
      white-space: nowrap;
    }

    .btn:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .btn-ghost {
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
      border: 1px solid var(--glass-bd);
      color: #ffffff;
    }

    .btn-ghost:hover,
    .btn-ghost:focus-visible {
      background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
      color: #0a0e17;
      box-shadow: 0 6px 20px rgba(96, 165, 255, .22);
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-3px);
      box-shadow: 0 9px 26px rgba(96, 165, 255, .32);
    }

    @media (hover: none) {
      .btn-ghost:hover,
      .btn-ghost:focus-visible {
        transform: none;
        box-shadow: none;
      }

      .btn-primary:hover,
      .btn-primary:focus-visible {
        transform: none;
        box-shadow: 0 6px 20px rgba(96, 165, 255, .22);
      }

      nav a:hover,
      nav a:focus-visible {
        transform: none;
      }

      .card:hover,
      .card:focus-within,
      .card:focus-visible,
      .metric:hover,
      .metric:focus-visible {
        transform: none;
        box-shadow: var(--shadow);
      }
    }

    .hero {
      display: grid;
      gap: 20px;
      justify-items: start;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 8px;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
    }

    .hero-cta .btn {
      flex: 0 1 auto;
      min-height: 44px;
      min-width: 0;
      max-width: 100%;
      padding-inline: clamp(14px, 4vw, 22px);
    }

    .metrics {
      margin-top: clamp(28px, 5vw, 56px);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: clamp(12px, 2vw, 20px);
    }

    .metric {
      border: 1px solid var(--glass-bd);
      background: var(--glass);
      border-radius: 16px;
      padding: clamp(16px, 2.5vw, 24px) clamp(18px, 3vw, 28px);
      text-align: left;
      box-shadow: var(--shadow);
      transition: all var(--tr-med);
      position: relative;
      overflow: hidden;
    }

    .metric::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--brand-1), var(--brand-3));
      border-radius: 16px 16px 0 0;
    }

    .metric:hover,
    .metric:focus-visible {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .15);
    }

    .metric-value {
      font-size: clamp(28px, 4.5vw, 48px);
      font-weight: 800;
      background: linear-gradient(135deg, #60a5ff, #ff6ec7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .metric-label {
      color: #ffffff;
      font-size: clamp(14px, 2vw, 18px);
      font-weight: 600;
      margin-bottom: 5px;
    }

    .metric-desc {
      color: #c5d5f5;
      font-size: clamp(12px, 1.7vw, 15px);
      line-height: 1.5;
      font-weight: 500;
    }

    .chip {
      font-size: clamp(10px, 1.6vw, 13px);
      border: 1px solid var(--glass-bd);
      background: var(--glass);
      padding: 6px 11px;
      border-radius: 999px;
      color: #e8f4ff;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .grid {
      display: grid;
      gap: clamp(14px, 2.5vw, 24px);
    }

    .g-3 {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    }

    .panel {
      border: 1px solid var(--glass-bd);
      background: var(--glass);
      border-radius: var(--rad-md);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .card {
      padding: clamp(18px, 2.8vw, 26px);
      position: relative;
      transition: all var(--tr-med);
    }

    .card:hover,
    .card:focus-within,
    .card:focus-visible {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .ic {
      width: clamp(44px, 7vw, 56px);
      height: clamp(44px, 7vw, 56px);
      border-radius: 13px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      background: linear-gradient(145deg, #1a2838, #0d1622);
      border: 1px solid var(--glass-bd);
      box-shadow: var(--shadow);
    }

    .ic svg {
      width: clamp(22px, 4vw, 28px);
      height: clamp(22px, 4vw, 28px);
      color: #e8f4ff;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: clamp(17px, 2.8vw, 22px);
      color: #ffffff;
      font-weight: 700;
      line-height: 1.3;
    }

    .card p {
      color: #d4dff5;
      margin: 0 0 12px;
      font-size: clamp(13px, 2vw, 16px);
      line-height: 1.65;
      font-weight: 500;
    }

    .muted {
      color: var(--muted);
    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 10px 0;
    }

    .tag {
      font-size: clamp(10px, 1.6vw, 13px);
      border: 1px solid var(--glass-bd);
      padding: 5px 9px;
      border-radius: 8px;
      color: #d0e0ff;
      font-weight: 600;
      background: rgba(96, 165, 255, .08);
    }

    .actions {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    .action-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .action-meta .chip {
      flex: 0 0 auto;
    }

    .action-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .action-buttons .btn,
    .action-buttons a.btn {
      min-height: 40px;
      min-width: 132px;
      width: auto;
    }

    .soon {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: clamp(9px, 1.5vw, 12px);
      padding: 6px 11px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffd16644, #ff6ec744);
      border: 1px solid #ffffff33;
      font-weight: 700;
      color: #fff4d0;
    }

    .controls {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .search {
      flex: 1;
      min-width: 220px;
      padding: 12px 15px;
      border-radius: 12px;
      border: 1px solid var(--glass-bd);
      background: linear-gradient(180deg, #0c1320, #0a101b);
      color: #ffffff;
      font-size: clamp(13px, 1.9vw, 16px);
      font-weight: 500;
    }

    .search::placeholder {
      color: #8fa5c9;
    }

    .kb-grid {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    }

    mark {
      background: linear-gradient(135deg, #ffe08a77, #ff6ec755);
      padding: 2px 5px;
      border-radius: 5px;
      color: #ffffff;
      font-weight: 600;
    }

    dialog.modal {
      width: min(1100px, 94vw);
      max-height: 90vh;
      border: 1px solid var(--glass-bd);
      border-radius: 20px;
      background: rgba(12, 18, 30, .97);
      backdrop-filter: saturate(160%) blur(14px);
      color: var(--txt);
      padding: 0;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    }

    dialog::backdrop {
      background: rgba(2, 6, 12, .75);
      backdrop-filter: blur(4px);
    }

    .m-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: clamp(12px, 2vw, 18px) clamp(16px, 2.8vw, 24px);
      border-bottom: 1px solid var(--glass-bd);
      background: linear-gradient(180deg, #101828, #0c1422);
      flex-wrap: wrap;
      gap: 10px;
    }

    .m-hdr strong {
      font-size: clamp(16px, 2.4vw, 20px);
      color: #ffffff;
      font-weight: 700;
    }

    .m-body {
      padding: clamp(14px, 2.5vw, 20px) clamp(16px, 2.8vw, 24px);
      max-height: calc(88vh - 60px);
      overflow: auto;
    }

    .m-meta {
      display: flex;
      gap: 9px;
      color: #d4dff5;
      font-size: clamp(11px, 1.6vw, 14px);
      flex-wrap: wrap;
      margin: 0 0 10px;
    }

    .toc {
      border: 1px solid var(--glass-bd);
      border-radius: 13px;
      padding: 12px;
      margin: 10px 0;
      background: #0b1320;
    }

    .toc b {
      color: #ffffff;
      font-size: clamp(13px, 1.9vw, 16px);
    }

    .toc a {
      color: #c5d5f5;
      text-decoration: none;
      display: block;
      padding: 4px 0;
      font-size: clamp(12px, 1.8vw, 15px);
      font-weight: 500;
      transition: color var(--tr-fast);
    }

    .toc a:hover,
    .toc a:focus-visible {
      color: #fff;
    }

    .m-body pre {
      background: #0a1120;
      border: 1px solid var(--glass-bd);
      border-radius: 13px;
      padding: clamp(10px, 2vw, 14px);
      overflow: auto;
      font-size: clamp(12px, 1.8vw, 15px);
      color: #f0f8ff;
      font-weight: 500;
      position: relative;
    }

    .m-body h2 {
      color: #ffffff;
      font-size: clamp(20px, 3vw, 26px);
      margin-top: clamp(20px, 3.2vw, 32px);
      font-weight: 700;
    }

    .m-body h3 {
      color: #ffffff;
      font-size: clamp(17px, 2.5vw, 22px);
      font-weight: 600;
    }

    .m-body ul,
    .m-body ol {
      color: #d4dff5;
      line-height: 1.75;
      font-weight: 500;
      padding-left: 20px;
    }

    .m-body li {
      margin: 7px 0;
    }

    .m-body code {
      background: rgba(96, 165, 255, .15);
      padding: 2px 6px;
      border-radius: 5px;
      color: #a5d5ff;
      font-weight: 600;
      font-size: .92em;
    }

    .copy {
      float: right;
    }

    .video {
      position: relative;
      padding-top: 56.25%;
      background: #000;
      border-radius: 13px;
      overflow: hidden;
    }

    .video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .term {
      font-family: 'Fira Code', ui-monospace, Consolas, monospace;
      font-size: clamp(12px, 1.8vw, 15px);
      height: clamp(360px, 55vh, 580px);
      overflow: auto;
      position: relative;
      color: #f0f8ff;
    }

    .term::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #0a111e, #0a0f19);
      opacity: .98;
    }

    .term .inner {
      position: relative;
      padding: clamp(34px, 5vw, 44px) clamp(12px, 2vw, 18px) clamp(12px, 2vw, 18px);
    }

    .term .bar {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: clamp(36px, 5.5vw, 42px);
      border-bottom: 1px solid var(--glass-bd);
      background: linear-gradient(180deg, #0e1626, #0c1320);
    }

    .prompt {
      color: var(--ok);
      font-weight: 700;
      margin-right: 7px;
    }

    .user {
      color: var(--brand-1);
    }

    .term input {
      all: unset;
      color: #f0f8ff;
      caret-color: var(--brand-1);
      width: 100%;
      font-weight: 500;
    }

    .ok {
      color: var(--ok);
    }

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

    .er {
      color: var(--err);
    }

    table {
      border-collapse: collapse;
      width: 100%;
      overflow-x: auto;
      display: block;
      font-size: clamp(11px, 1.7vw, 14px);
      color: #f0f8ff;
    }

    th,
    td {
      border-bottom: 1px solid #ffffff22;
      padding: clamp(4px, 1vw, 7px) clamp(6px, 1.4vw, 9px);
      text-align: left;
      white-space: nowrap;
    }

    th {
      color: #c5d5ff;
      font-weight: 700;
    }

    footer {
      border-top: 1px solid var(--glass-bd);
      padding: clamp(20px, 3.2vw, 32px) 0;
      color: #c5d5f5;
      margin-top: clamp(50px, 8vw, 90px);
      background: linear-gradient(180deg, transparent, #0a0f18);
    }

    footer.hide {
      display: none;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
      gap: clamp(18px, 3vw, 28px);
    }

    .foot h4 {
      margin: 0 0 10px;
      color: #ffffff;
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 700;
    }

    .foot a {
      color: #c5d5f5;
      text-decoration: none;
      font-size: clamp(13px, 1.8vw, 16px);
      display: block;
      margin: 6px 0;
      font-weight: 500;
      transition: color var(--tr-fast);
    }

    .foot a:hover,
    .foot a:focus-visible {
      color: #fff;
    }

    @media (min-width: 640px) {
      .hero-cta {
        justify-content: flex-start;
      }

      .action-buttons .btn,
      .action-buttons a.btn {
        min-width: 144px;
      }
    }

    @media (max-width: 1024px) {
      .brand small {
        display: none;
      }
    }

    @media (max-width: 900px) {
      nav {
        width: 100%;
        order: 2;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        margin-left: 0;
      }

      nav[data-open="true"] {
        max-height: 360px;
        padding-top: 6px;
      }

      nav a {
        font-size: 15px;
        padding: 11px 14px;
        border-radius: 12px;
        justify-content: center;
        white-space: normal;
      }

      .cta {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .cta .btn {
        width: min(100%, 320px);
      }

      .menu-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
      }
    }

    @media (max-width: 768px) {
      .hdr-row {
        padding: 10px 16px;
        gap: 12px;
      }

      .logo-badge {
        width: 36px;
        height: 36px;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-cta .btn {
        width: auto;
        align-self: center;
      }

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

      .g-3,
      .kb-grid {
        grid-template-columns: 1fr;
      }

      .actions {
        align-items: stretch;
      }

      .action-meta {
        justify-content: center;
      }

      .action-buttons {
        justify-content: center;
        width: 100%;
      }

      .action-buttons .btn,
      .action-buttons a.btn {
        width: auto;
        min-width: 0;
        max-width: min(100%, 260px);
      }

      .btn {
        white-space: normal;
      }

      .m-hdr {
        flex-direction: column;
        align-items: stretch;
      }

      .m-hdr > div {
        width: 100%;
        display: flex;
        gap: 8px;
        margin-top: 8px;
      }

      .m-hdr > div .btn {
        flex: 1;
      }

      table {
        font-size: 12px;
      }
    }

    @media (max-width: 560px) {
      .title-xxl {
        font-size: clamp(28px, 8vw, 42px);
      }

      .lead {
        font-size: clamp(15px, 3vw, 18px);
      }

      .btn {
        white-space: normal;
      }

      .card h3 {
        font-size: clamp(16px, 3.2vw, 20px);
      }

      .card p {
        font-size: clamp(12px, 2.2vw, 15px);
      }

      .metric-value {
        font-size: clamp(24px, 6vw, 36px);
      }

      .metric-label {
        font-size: clamp(13px, 2.5vw, 16px);
      }

      .controls {
        flex-direction: column;
        align-items: stretch;
      }

      .controls .chip,
      .controls .btn {
        width: 100%;
        justify-content: center;
      }

      .search {
        min-width: 100%;
      }

      .action-buttons {
        justify-content: center;
      }

      dialog.modal {
        width: 96vw;
        max-height: 94vh;
      }

      .m-body {
        padding: 12px;
      }

      .term {
        height: clamp(280px, 45vh, 400px);
        font-size: 11px;
      }
    }

    @media (max-width: 420px) {
      .hdr-row {
        gap: 10px;
      }

      .logo-badge {
        width: 32px;
        height: 32px;
      }

      .card {
        padding: 16px;
      }

      .ic {
        width: 40px;
        height: 40px;
      }

      .ic svg {
        width: 20px;
        height: 20px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
      }
    }
