    :root {
      /* Blueprint / patch-bay moodboard: near-black, chalk white, one signal accent */
      --void: #030303;
      --surface: #0a0a0a;
      --surface2: #111111;
      --border: #2e2e2e;
      --border-bright: rgba(255, 255, 255, 0.22);
      --text: #e6e6e6;
      --muted: #8f8f8f;
      --dim: #5a5a5a;
      --phosphor: #00ff88;
      --phosphor-dim: #00cc6a;
      --amber: #ffb020;
      --red: #ff2d55;
      --font-sans: "JetBrains Mono", ui-monospace, monospace;
      --font-display: "Archivo Black", "JetBrains Mono", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .rec-dot {
        animation: none !important;
      }

    }

    body {
      margin: 0;
      font-family: var(--font-sans);
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--text);
      background: var(--void);
      min-height: 100vh;
    }

    /* Halftone + wireframe grid (inspiration: monochrome HUD panels) */
    .atmosphere {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 58%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0.5px, transparent 0.55px);
      background-size: auto, 48px 48px, 48px 48px, 6px 6px;
    }

    .atmosphere::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.045;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .scanlines {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.11) 2px,
        rgba(0, 0, 0, 0.11) 4px
      );
      opacity: 0.5;
    }

    a {
      color: #f0f0f0;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    a:hover {
      color: var(--phosphor);
      border-bottom-color: var(--phosphor);
    }

    .wrap {
      position: relative;
      z-index: 1;
      max-width: 70rem;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    @media (min-width: 720px) {
      .wrap {
        padding: 0 2.5rem;
      }
    }

    @media (min-width: 1100px) {
      .wrap {
        padding: 0 3.25rem;
      }
    }

    header {
      border-bottom: 1px solid var(--border);
      background: rgba(3, 3, 3, 0.94);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
      flex-wrap: wrap;
    }

    .brand-lockup {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      border-bottom: none;
    }

    .brand-lockup:hover {
      border-bottom: none;
    }

    .logo-text {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.04em;
      color: #fff;
      line-height: 1;
      text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
    }

    .brand-lockup:hover .logo-text {
      color: var(--phosphor);
      text-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
    }

    .rec-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 10px var(--red);
      animation: pulse-rec 1.25s step-end infinite;
    }

    @keyframes pulse-rec {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.35;
      }
    }

    .status-strip {
      display: none;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dim);
      border: 1px solid var(--border);
      padding: 0.35rem 0.6rem;
      background: var(--surface);
    }

    @media (min-width: 900px) {
      .status-strip {
        display: flex;
        align-items: center;
        gap: 0.65rem;
      }
    }

    .status-strip .ok {
      color: #fff;
    }

    .status-strip__sq {
      width: 8px;
      height: 8px;
      background: var(--red);
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem 1.1rem;
      align-items: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links a {
      color: var(--muted);
      border-bottom: 1px solid transparent;
    }

    .nav-links a:hover {
      color: var(--phosphor);
      border-bottom-color: rgba(0, 255, 136, 0.45);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .hero {
      padding: 3.25rem 0 3rem;
    }

    @media (min-width: 720px) {
      .hero {
        padding: 4.25rem 0 3.5rem;
      }
    }

    .hero-frame {
      position: relative;
      padding: 2rem 1.5rem 2.25rem;
      background: linear-gradient(180deg, #101010 0%, #080808 100%);
      border: 1px solid var(--border-bright);
      box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    @media (min-width: 640px) {
      .hero-frame {
        padding: 2.5rem 2.25rem 2.75rem;
      }
    }

    .hero-layout {
      display: grid;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 960px) {
      .hero-layout {
        grid-template-columns: 1fr auto;
        gap: 2rem 3rem;
        align-items: center;
      }
    }

    .hero-copy {
      min-width: 0;
    }

    .hero-visual {
      position: relative;
      margin: 0 auto;
      width: 100%;
      max-width: 24rem;
      border: 1px solid var(--border-bright);
      background: #050505;
      box-shadow:
        0 0 0 1px #000,
        0 28px 70px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    @media (min-width: 960px) {
      .hero-visual {
        margin: 0;
        max-width: 20rem;
        justify-self: end;
      }
    }

    .hero-visual__chrome {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      padding: 0.35rem 0.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      background: #0c0c0c;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dim);
    }

    .hero-visual__chrome span:last-child {
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    .hero-visual__body {
      position: relative;
      line-height: 0;
      overflow: hidden;
      padding: 0.85rem;
      background: #050505;
    }

    .hero-visual__body img {
      display: block;
      width: 100%;
      height: auto;
      filter: contrast(1.06) brightness(0.94);
    }

    .hero-visual__body::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.12) 3px,
        rgba(0, 0, 0, 0.12) 5px
      );
      opacity: 0.35;
      mix-blend-mode: multiply;
    }

    .hero-binary-rail {
      margin-top: 0.65rem;
      padding: 0.35rem 0.45rem;
      border: 1px dashed rgba(255, 255, 255, 0.12);
      font-size: 0.58rem;
      letter-spacing: 0.04em;
      line-height: 1.45;
      color: var(--dim);
      word-break: break-all;
      background: rgba(0, 0, 0, 0.35);
    }

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

    .hero-frame::before,
    .hero-frame::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      border-color: rgba(255, 255, 255, 0.5);
      border-style: solid;
      opacity: 0.75;
      pointer-events: none;
    }

    .hero-frame::before {
      top: 10px;
      left: 10px;
      border-width: 2px 0 0 2px;
    }

    .hero-frame::after {
      bottom: 10px;
      right: 10px;
      border-width: 0 2px 2px 0;
    }

    .eyebrow-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem 1.25rem;
      margin-bottom: 1.25rem;
    }

    .eyebrow {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #bdbdbd;
    }

    .tag-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .tag-chips span {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.2rem 0.45rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--muted);
      background: rgba(0, 0, 0, 0.45);
    }

    .tag-chips span.hot {
      color: #0a0a0a;
      background: #fff;
      border-color: #fff;
    }

    h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 8vw, 4.25rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-transform: none;
      margin: 0 0 0.65rem;
      color: #fff;
      text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.85);
    }

    .hero-tagline {
      font-size: clamp(0.82rem, 1.8vw, 0.95rem);
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #cfcfcf;
      margin: 0 0 1.35rem;
      line-height: 1.35;
      max-width: 36rem;
    }

    .lede {
      font-size: 1rem;
      color: var(--muted);
      max-width: 44rem;
      margin: 0 0 1.15rem;
    }

    .lede strong {
      color: var(--text);
      font-weight: 600;
    }

    .hero-skill {
      margin: 1.4rem 0 0;
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem;
      padding: 0.6rem 0.85rem;
      width: fit-content;
      max-width: 100%;
      background: #080808;
      border: 1px solid var(--border);
      border-radius: 3px;
      color: #f2f2f2;
      font-family: var(--font-sans);
      font-size: 0.8rem;
      text-align: left;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease;
    }

    .hero-skill:hover {
      border-color: rgba(255, 255, 255, 0.35);
      background: #0b0b0b;
    }

    .hero-skill:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 2px;
    }

    .hero-skill__prompt {
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
    }

    .hero-skill__cmd {
      font-family: inherit;
      color: #f2f2f2;
      overflow-wrap: anywhere;
      word-break: break-word;
      flex: 1 1 auto;
      min-width: 0;
      background: none;
      padding: 0;
    }

    .hero-skill__hint {
      color: var(--dim);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      flex-shrink: 0;
      transition: color 0.18s ease;
    }

    .hero-skill:hover .hero-skill__hint {
      color: var(--muted);
    }

    .hero-skill[data-copied="true"] .hero-skill__hint {
      color: var(--text);
    }

    .hero-tooling {
      margin-top: 2rem;
      padding: 1rem 1rem 1.1rem;
      width: 100%;
      border: 1px dashed rgba(255, 255, 255, 0.18);
      background: rgba(0, 0, 0, 0.4);
      border-radius: 4px;
      font-size: 0.8rem;
      color: var(--muted);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem 1.25rem;
      align-items: start;
    }

    @media (max-width: 719px) {
      .hero-tooling {
        grid-template-columns: 1fr;
      }

      .hero-tooling__cell + .hero-tooling__cell {
        border-top: 1px dashed rgba(255, 255, 255, 0.12);
        padding-top: 1rem;
      }
    }

    .hero-tooling__cell {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    @media (min-width: 720px) {
      .hero-tooling__cell:not(:first-child) {
        border-left: 1px dashed rgba(255, 255, 255, 0.12);
        padding-left: 1.25rem;
      }
    }

    .hero-tooling__label {
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dim);
    }

    .hero-tooling a {
      font-size: 0.74rem;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .hero-tooling__install {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem 0.65rem;
      padding: 0.5rem 0.65rem;
      background: #080808;
      border: 1px solid var(--border);
      border-radius: 3px;
      font-family: var(--font-sans);
      font-size: 0.78rem;
      color: var(--dim);
    }

    .hero-tooling__install code {
      font-family: inherit;
      font-size: inherit;
      color: #f2f2f2;
      background: none;
      padding: 0;
    }

    .hero-tooling__install > a {
      font-family: inherit;
      font-size: inherit;
      color: #f2f2f2;
      text-decoration: none;
      border-bottom: none;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .hero-tooling__install > a:hover {
      color: var(--phosphor);
    }

    .hero-tooling__mcp {
      display: inline-flex;
      align-self: flex-start;
      width: fit-content;
      max-width: 100%;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.65rem;
      border: 1px solid var(--border-bright);
      border-radius: 3px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border-bright);
    }

    .hero-tooling__mcp:hover {
      color: var(--phosphor);
      border-color: rgba(0, 255, 136, 0.45);
    }

    /* Partner strip: between hero and product (not part of hero chrome) */
    section.brands-band {
      padding: 2.5rem 0 2.75rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .brands-band__kicker {
      margin: 0 0 1.25rem;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim);
    }

    .brands-band__logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem 2.75rem;
    }

    .brands-band a.logo-slot {
      border-bottom: none;
    }

    .logo-slot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      min-width: 6.5rem;
      max-width: 11rem;
      text-decoration: none;
      color: var(--muted);
      border-bottom: none;
    }

    .logo-slot:hover {
      color: #fff;
    }

    .logo-slot:hover .logo-slot__media {
      border-color: rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.06);
    }

    .logo-slot__media {
      width: 6rem;
      height: 6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.4rem;
      box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.04);
    }

    .logo-slot__media img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .logo-slot__link {
      margin-top: 0.2rem;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      color: var(--muted);
      transition: color 0.18s ease;
    }

    .logo-slot:hover .logo-slot__link {
      color: #fff;
    }

    section {
      padding: 2.75rem 0;
      border-top: 1px solid var(--border);
    }

    section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 3.5vw, 1.75rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin: 0 0 0.65rem;
      color: #fff;
    }

    .section-intro {
      color: var(--muted);
      max-width: 44rem;
      margin: 0 0 1.75rem;
      font-size: 0.92rem;
    }

    .grid {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .grid.two {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border-bright);
      border-radius: 4px;
      padding: 1.25rem 1.3rem;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
      opacity: 0.7;
    }

    .card h3 {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 0 0 0.5rem;
      padding-left: 0.6rem;
      color: var(--text);
    }

    .card p,
    .card ul {
      margin: 0;
      padding-left: 0.6rem;
      font-size: 0.86rem;
      color: var(--muted);
    }

    .card ul {
      margin-top: 0.65rem;
      padding-left: 1.35rem;
    }

    .card ul li {
      margin-bottom: 0.3rem;
    }

    .steps {
      counter-reset: step;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .steps li {
      position: relative;
      padding: 1.25rem 0 1.25rem 3.5rem;
      margin-bottom: 0;
      border-bottom: 1px solid var(--border);
    }

    @media (min-width: 880px) {
      .steps li {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
        gap: 1.75rem;
        align-items: start;
      }

      .steps li .code-block {
        margin: 0;
        align-self: start;
      }
    }

    .step-body > .muted-note {
      margin-top: 0.65rem;
    }

    .steps li:last-child {
      border-bottom: none;
    }

    .steps li::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      position: absolute;
      left: 0;
      top: 1.15rem;
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 700;
      color: #080808;
      background: #fff;
      width: 2.35rem;
      height: 2.35rem;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
    }

    .steps strong {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
    }

    .code-block {
      margin: 1.15rem 0 0;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #08090c;
    }

    .code-block .bar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.75rem;
      background: var(--surface2);
      font-size: 0.68rem;
      color: #e8e8e8;
      letter-spacing: 0.04em;
      border-bottom: 1px solid var(--border);
    }

    .code-block pre {
      margin: 0;
      padding: 0.9rem 1rem 1rem;
      font-size: 0.74rem;
      line-height: 1.55;
      overflow-x: auto;
      color: #b8c5d0;
    }

    .code-block code {
      font-family: var(--font-sans);
    }

    .muted-note {
      font-size: 0.78rem;
      color: var(--dim);
      margin-top: 0.65rem;
    }

    .list-num {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .list-num li {
      display: grid;
      grid-template-columns: 2.5rem 1fr;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }

    .list-num li:last-child {
      border-bottom: none;
    }

    .list-num .num {
      font-size: 0.72rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.55);
      padding-top: 0.2rem;
      font-variant-numeric: tabular-nums;
    }

    .status-grid {
      display: grid;
      gap: 1px;
      margin-top: 1.5rem;
      background: var(--border);
      border: 1px solid var(--border);
    }

    @media (min-width: 640px) {
      .status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 960px) {
      .status-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .status-card {
      position: relative;
      background: var(--surface);
      padding: 1.35rem 1.4rem 1.65rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      min-height: 11.5rem;
    }

    .status-card__meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .status-card__num {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--dim);
      font-variant-numeric: tabular-nums;
    }

    .status-card__tag {
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.22rem 0.55rem;
      border-radius: 2px;
      line-height: 1;
    }

    .status-card__tag--live {
      background: var(--red);
      color: #fff;
    }

    .status-card__tag--soon {
      background: var(--amber);
      color: #1a1a1a;
    }

    .status-card__tag--next {
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: var(--text);
      padding: calc(0.22rem - 1px) calc(0.55rem - 1px);
    }

    .status-card__title {
      margin: 0.15rem 0 0;
      font-family: var(--font-display);
      font-weight: normal;
      font-size: 1.1rem;
      line-height: 1.1;
      letter-spacing: 0;
      color: var(--text);
    }

    .status-card__body {
      margin: 0;
      font-size: 0.78rem;
      line-height: 1.55;
      color: var(--muted);
      padding-right: 2.5rem;
    }

    .status-card__icon {
      position: absolute;
      bottom: 1.1rem;
      right: 1.1rem;
      color: var(--dim);
      opacity: 0.55;
      pointer-events: none;
    }

    .pricing {
      display: grid;
      gap: 0.75rem;
    }

    @media (min-width: 720px) {
      .pricing {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 960px) {
      .pricing {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
      }
    }

    .price-card {
      padding: 1.35rem 1.4rem 1.55rem;
      border-radius: 4px;
      border: 1px solid var(--border-bright);
      background: var(--surface);
      position: relative;
    }

    .price-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 4px;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .price-card h3 {
      margin: 0 0 0.35rem;
      padding-right: 3.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .price-card .amt {
      font-family: var(--font-display);
      font-size: 2rem;
      letter-spacing: 0.01em;
      color: #fff;
      margin: 0.6rem 0 0.15rem;
      text-shadow: none;
      line-height: 1;
    }

    .price-card .price-card__unit {
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--dim);
      margin: 0 0 0.85rem;
    }

    .price-card__tag {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.22rem 0.5rem;
      border-radius: 2px;
      line-height: 1;
      z-index: 1;
    }

    .price-card__tag--free {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--text);
      padding: calc(0.22rem - 1px) calc(0.5rem - 1px);
    }

    .price-card__tag--usage {
      background: var(--red);
      color: #fff;
    }

    .price-card__tag--sub {
      background: var(--amber);
      color: #1a1a1a;
    }

    .price-card p {
      margin: 0;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
    }

    footer {
      margin-top: 1rem;
      padding: 2.25rem 0 2.75rem;
      border-top: 1px solid var(--border);
      font-size: 0.78rem;
      color: var(--muted);
    }

    .foot-credit {
      margin: 0;
    }

    footer strong {
      color: var(--text);
      font-weight: 700;
    }

    .fight-club-section {
      padding: 3rem 0 3.25rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .fight-club-wrap {
      max-width: 44rem;
      margin: 0 auto;
    }

    .ticker {
      text-decoration: none;
      border-bottom: none;
      font-weight: 700;
      transition: filter 0.18s ease, text-shadow 0.18s ease;
    }

    .ticker--red {
      color: var(--red);
    }

    .ticker--amber {
      color: var(--amber);
    }

    .ticker:hover {
      filter: brightness(1.15);
      text-shadow: 0 0 18px currentColor;
    }

    .fight-club-body {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--muted);
    }

    .fight-club-body__sting {
      color: var(--text);
      font-weight: 600;
    }

    .fight-club-body a {
      font-weight: 600;
      color: #f0f0f0;
    }

    .fight-club-body a:hover {
      color: var(--phosphor);
    }

    .fight-club-skill-hint {
      color: var(--dim);
      font-size: 0.88em;
    }
