  :root {
    --bg: #1a1a1a;
    --nav: #202020;
    --footer: #1a1a1a;
    --line: #2c2c2c;
    --text: #e6e6e6;
    --muted: #bdbdbd;
    --badge: #2e2e2e;
    --hero-img: url("df4412c254ee524b174ff4dd81f9d499.jpg");
    --panel-w: 736px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  a { color: inherit; text-decoration: none; }

  /* ---------- Navbar ---------- */
  .nav {
    position: relative;
    z-index: 10;
    height: 44px;
    background: var(--nav);
    box-shadow: 0 2px 6px rgba(0,0,0,.45);
  }
  .nav-inner {
    max-width: 1700px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .nav-brand {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    font-family: "Montserrat", "Roboto", sans-serif;
    font-weight: 300; font-size: 16px; letter-spacing: .6px;
    color: #fff; white-space: nowrap;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    display: flex; align-items: center; gap: 7px;
    font-weight: 500; color: var(--text);
    transition: color .15s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links i { font-size: 12px; }
  .nav-right { display: flex; align-items: center; gap: 26px; }
  .stat { display: flex; align-items: center; gap: 8px; }
  .stat i { font-size: 12px; }
  .badge {
    background: var(--badge);
    border-radius: 3px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 500;
  }
  .user { display: flex; align-items: center; gap: 10px; font-weight: 500; cursor: pointer; }
  .avatar {
    width: 26px; height: 26px; border-radius: 4px;
    background: #111;
    display: grid; place-items: center; overflow: hidden;
  }
  .avatar img { width: 22px; mix-blend-mode: screen; }
  .user .fa-chevron-down { font-size: 10px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #111;
  }
  .hero-panels {
    position: absolute; inset: 0;
    display: flex; justify-content: center;
  }
  .hero-panel {
    flex: 0 0 var(--panel-w);
    height: 100%;
    background: var(--hero-img) center top / var(--panel-w) auto no-repeat;
  }
  .hero-panel { position: relative; }
  /* grey wash over each image, like the reference */
  .hero-panel::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(48,48,48,.5) 0%, rgba(38,38,38,.68) 60%, rgba(30,30,30,.9) 100%);
  }
  /* center panel sits darker than the outer two */
  .hero-panel:nth-child(2)::after {
    background: linear-gradient(to bottom, rgba(20,20,20,.5) 0%, rgba(22,22,22,.7) 60%, rgba(26,26,26,.92) 100%);
  }
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(40,40,40,.55), transparent 22%, transparent 78%, rgba(40,40,40,.55)),
      linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
  .hero-logo {
    position: relative;
    z-index: 2;
    align-self: center;
    height: 175px;
    mix-blend-mode: screen; /* drops the logo's black background */
    filter: drop-shadow(0 0 12px rgba(0,0,0,.6));
  }

  /* ---------- Hero product slideshow ---------- */
  .hero.hero-showcase { height: auto; display: block; padding: 20px 16px 24px; }
  .hs {
    position: relative; z-index: 2;
    max-width: 680px; margin: 0 auto;
  }
  .hs-head { margin-bottom: 10px; transition: opacity .26s ease; }
  .hs-head.hs-fading { opacity: 0; }
  .hs-title { font-size: clamp(18px, 2.2vw, 23px); font-weight: 700; letter-spacing: .2px; }
  .hs-tagline { margin-top: 3px; color: var(--muted); font-style: italic; font-size: 12.5px; }
  .hs-stage {
    position: relative; overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    border: 1px solid var(--line); border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
  }
  /* Each image sits in its own layer and slides across the stage. */
  .hs-slide {
    position: absolute; inset: 0;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  }
  .hs-slide.no-anim { transition: none; }
  .hs-slide.active { transform: translateX(0); }
  .hs-slide.off-right { transform: translateX(100%); }
  .hs-slide.off-left { transform: translateX(-100%); }
  .hs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* Timer bar: fills across the bottom of the image over one slide. */
  .hs-progress {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px; background: rgba(255,255,255,.14);
  }
  .hs-progress span { display: block; width: 0; height: 100%; background: #e6e6e6; }
  @keyframes hs-fill { from { width: 0; } to { width: 100%; } }
  .hs-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 11px;
  }
  .hs-dots { display: flex; align-items: center; gap: 7px; }
  .hs-dot {
    width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
    background: #3f3f3f; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .hs-dot:hover { background: #5a5a5a; }
  .hs-dot.active { background: #e6e6e6; transform: scale(1.2); }
  /* .hs prefix so the width here wins over the full-width .btn-buy rule further down. */
  .hs .hs-buy {
    width: auto; flex: 0 0 auto; margin-top: 0;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 18px;
  }
  .hs-buy-soon { background: #2b2b2b; border-color: #383838; color: var(--text); }
  .hs-buy-soon:hover { background: #353535; }

  /* ---------- Footer ---------- */
  main { flex: 1; }
  .footer { background: var(--footer); padding: 60px 16px 50px; }
  .footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer h4 {
    font-size: 15px; font-weight: 700; letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .about-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
  .proof-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border: 1px solid var(--line); border-radius: 4px;
    background: #232323; color: var(--text); font-size: 13px; font-weight: 500;
    transition: background .15s, border-color .15s;
  }
  .proof-badge:hover { background: #2b2b2b; border-color: #3a3a3a; color: #fff; }
  .proof-badge i { font-size: 14px; color: #f08a24; }

  .about p {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    color: var(--muted);
  }
  .about a { color: #fff; }
  .footer ul { list-style: none; }
  .footer li {
    border-bottom: 1px solid var(--line);
    padding: 11px 0 12px;
  }
  .footer li:last-child { border-bottom: 0; }
  .footer li a { display: flex; align-items: center; gap: 8px; color: var(--muted); transition: color .15s; }
  .footer li a:hover { color: #fff; }
  .footer li i { width: 12px; font-size: 11px; text-align: center; }

  @media (max-width: 1100px) {
    .nav-links { gap: 16px; }
    .nav-links span { display: none; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .about { grid-column: 1 / -1; }
  }
  @media (max-width: 900px) {
    .nav-brand { display: none; }
  }
  @media (max-width: 600px) {
    .nav-right .stat { display: none; }
    .hero { height: 170px; }
    .hero-logo { height: 130px; }
    .hero.hero-showcase { padding: 20px 14px 26px; }
    .hs-bar { flex-direction: column; align-items: stretch; gap: 12px; }
    .hs-dots { justify-content: center; }
    .hs .hs-buy { width: 100%; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; }
  }

  .nav-links a.active { color: #fff; }
  .nav-links a.discord i { color: #7289da; }

  /* ---------- Products ---------- */
  .page { width: 100%; max-width: 1500px; margin: 0 auto; padding: 40px 16px 20px; }
  .page-head {
    background: #232323;
    border-radius: 4px;
    padding: 14px 20px;
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .page-head .icon {
    width: 44px; height: 38px; border-radius: 3px;
    background: #2b2b2b; display: grid; place-items: center; font-size: 16px;
  }
  .page-head h1 { font-size: 17px; font-weight: 700; }
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .product {
    background: #222;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .15s, transform .15s;
  }
  .product:hover { border-color: #444; transform: translateY(-2px); }
  .product-top {
    height: 130px;
    background: #111 var(--hero-img) center 20% / cover;
    position: relative;
    display: grid; place-items: center;
  }
  .product-top::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(38,38,38,.6), rgba(34,34,34,.95));
  }
  .product-top img { position: relative; z-index: 1; height: 80px; mix-blend-mode: screen; }
  .product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .product-body h3 { font-size: 15px; font-weight: 700; }
  .product-body p { color: var(--muted); line-height: 1.5; flex: 1; }
  .product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
  .price { font-size: 16px; font-weight: 700; }
  .status { font-size: 11px; padding: 3px 8px; border-radius: 3px; background: #2e2e2e; }
  .status.ok { color: #7bd88f; }
  .status.soon { color: #e0b75a; }
  .btn {
    display: block; text-align: center;
    background: #2b2b2b; border: 1px solid #383838; border-radius: 3px;
    padding: 9px 0; font-weight: 500; transition: background .15s;
  }
  .btn:hover { background: #353535; }

  .price small { font-size: 11px; font-weight: 400; color: var(--muted); }
  a.icon { color: var(--text); }
  a.icon:hover { background: #333; }

  /* ---------- Product detail ---------- */
  .pd {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    background: #222;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px;
  }
  /* Product gallery: one large image with a grid of thumbnails under it. */
  .pg-main {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    border: 1px solid var(--line); border-radius: 4px;
    overflow: hidden;
  }
  .pg-main img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity .25s ease;
  }
  .pg-main.pg-swapping img { opacity: 0; }
  .pg-thumbs {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    margin-top: 10px;
  }
  .pg-thumb {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 16 / 9; padding: 0;
    background: #111; border: 1px solid var(--line); border-radius: 3px;
    transition: border-color .2s;
  }
  .pg-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(.65); transition: filter .2s, transform .35s;
  }
  .pg-thumb:hover img, .pg-thumb:focus-visible img { filter: brightness(1); transform: scale(1.05); }
  .pg-thumb.active { border-color: #e6e6e6; }
  .pg-thumb.active img { filter: brightness(1); }
  .pd-info { display: flex; flex-direction: column; gap: 12px; }
  .pd-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .pd-top h2 { font-size: 22px; }
  .pd-short { color: var(--muted); line-height: 1.5; }
  .pd-price { font-size: 28px; font-weight: 700; }
  .pd-label { font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); margin-top: 4px; }
  .variants { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 12px; }
  .variant {
    font: inherit; font-size: 14px; color: var(--text); cursor: pointer;
    background: #2a2a2a; border: 1px solid #383838; border-radius: 3px;
    padding: 18px 16px; text-align: left;
    display: flex; flex-direction: column; gap: 6px;
    transition: border-color .15s, background .15s;
  }
  .variant:hover { background: #313131; }
  .variant strong { font-size: 18px; }
  .variant.selected { border-color: #d9d9d9; background: #333; }
  .btn-buy { margin-top: 6px; padding: 12px 0; background: #e6e6e6; color: #151515; border-color: #e6e6e6; font-weight: 700; }
  .btn-buy:hover { background: #fff; }
  .buy-form .btn-buy { padding: 16px 0; font-size: 16px; border-radius: 4px; }
  .pd-note { color: var(--muted); font-size: 12px; }
  .pd-note i { color: #7289da; }

  .tabs { margin-top: 20px; background: #222; border: 1px solid var(--line); border-radius: 4px; }
  .tab-bar { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; }
  .tab {
    font: inherit; font-weight: 500; color: var(--muted); cursor: pointer;
    background: none; border: 0; border-bottom: 2px solid transparent;
    padding: 14px 20px; white-space: nowrap;
  }
  .tab:hover { color: #fff; }
  .tab.active { color: #fff; border-bottom-color: #e6e6e6; background: #262626; }
  .tab-panel { display: none; padding: 20px; line-height: 1.6; color: var(--muted); }
  .tab-panel.active { display: block; }
  .checklist { list-style: none; display: grid; gap: 8px; }
  .checklist i { color: #7bd88f; margin-right: 10px; font-size: 11px; }
  .empty { background: #222; padding: 30px; border-radius: 4px; text-align: center; }
  .empty a { color: #fff; text-decoration: underline; }

  @media (max-width: 800px) {
    .pd { grid-template-columns: 1fr; }
    .pg-thumbs { grid-template-columns: repeat(3, 1fr); }
  }

  /* ---------- Policy modals ---------- */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(0,0,0,.65);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity .2s, visibility .2s;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    position: relative;
    width: 100%; max-width: 500px; max-height: min(720px, 90vh);
    background: #1b1b1b;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    transform: translateY(10px) scale(.98);
    transition: transform .2s;
  }
  .modal-overlay.open .modal { transform: none; }
  .modal-close {
    position: absolute; top: 14px; right: 14px;
    background: none; border: 0; color: #9a9a9a; font-size: 18px; cursor: pointer;
  }
  .modal-close:hover { color: #fff; }
  .modal-head {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    padding: 34px 40px 0;
  }
  .modal-icon { font-size: 18px; color: #8a8a8a; }
  .modal-head h2 { font-size: 19px; font-weight: 700; }
  .modal-divider {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 16px 0 10px;
  }
  .modal-divider::before, .modal-divider::after {
    content: ""; width: 36px; height: 1px; background: #4a4a4a;
  }
  .modal-divider span { width: 7px; height: 7px; background: #e6e6e6; transform: rotate(45deg); }
  .modal-body {
    overflow-y: auto;
    padding: 6px 24px 24px;
    margin-right: 8px;
    font-size: 14px; line-height: 1.5; color: #a8a8a8;
    scrollbar-width: thin; scrollbar-color: #555 transparent;
  }
  .modal-body::-webkit-scrollbar { width: 5px; }
  .modal-body::-webkit-scrollbar-thumb { background: #555; border-radius: 3px; }
  .modal-body h3 { color: #fff; font-size: 14px; font-weight: 500; margin: 16px 0 4px; }
  .modal-body h3:first-child { margin-top: 4px; }
  .modal-body ul { list-style: none; margin-top: 6px; display: grid; gap: 4px; }
  .modal-body li::before { content: "•"; margin-right: 8px; }
  .modal-body a { color: #fff; text-decoration: underline; }

  /* ---------- Checkout form ---------- */
  .buy-form { display: flex; flex-direction: column; gap: 8px; }
  .input {
    font: inherit; font-size: 14px; color: var(--text);
    background: #1a1a1a; border: 1px solid #383838; border-radius: 3px;
    padding: 11px 12px; outline: none; transition: border-color .15s;
  }
  .input:focus { border-color: #9a9a9a; }
  .btn-buy { font: inherit; font-weight: 700; cursor: pointer; width: 100%; }
  .btn-buy:disabled { background: #3a3a3a; border-color: #3a3a3a; color: #9a9a9a; cursor: not-allowed; }
  .buy-error { color: #ff7b7b; font-size: 12px; min-height: 1em; }
  .pd-note a { color: #fff; text-decoration: underline; }

  /* ---------- Sign in button ---------- */
  .signin {
    font: inherit; font-weight: 500; color: var(--text); cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    background: #2b2b2b; border: 1px solid #383838; border-radius: 3px;
    padding: 6px 14px; transition: background .15s;
  }
  .signin:hover { background: #353535; color: #fff; }
  .signin i { font-size: 11px; }

  /* ---------- Auth popup ---------- */
  .policy-overlay { z-index: 110; }
  .auth-modal { max-width: 420px; }
  .auth-logo { height: 30px; mix-blend-mode: screen; }
  .auth-tabs {
    display: grid; grid-template-columns: 1fr 1fr;
    margin: 4px 24px 0; background: #151515; border: 1px solid #2a2a2a; border-radius: 4px; padding: 3px;
  }
  .auth-tab {
    font: inherit; font-weight: 500; color: var(--muted); cursor: pointer;
    background: none; border: 0; border-radius: 3px; padding: 8px 0;
  }
  .auth-tab.active { background: #2b2b2b; color: #fff; }
  .auth-body { padding-top: 16px; }
  .auth-form { display: none; flex-direction: column; gap: 12px; }
  .auth-form.active { display: flex; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field > span { font-size: 12px; color: #cfcfcf; }
  .field .input { width: 100%; }
  .pw-wrap { position: relative; }
  .pw-wrap .input { padding-right: 40px; }
  .pw-toggle {
    position: absolute; right: 0; top: 0; bottom: 0; width: 40px;
    background: none; border: 0; color: #8a8a8a; cursor: pointer;
  }
  .pw-toggle:hover { color: #fff; }
  .auth-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; }
  .check { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; cursor: pointer; }
  .check input { accent-color: #e6e6e6; margin-top: 2px; }
  .modal-body .auth-link, .auth-link { color: #e6e6e6; text-decoration: none; }
  .auth-link:hover { text-decoration: underline; }
  .auth-msg { font-size: 12px; min-height: 1em; }
  .auth-msg.error { color: #ff7b7b; }
  .auth-msg.info { color: #cfcfcf; background: #242424; border: 1px solid #333; border-radius: 3px; padding: 8px 10px; }
  .auth-or { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #6f6f6f; font-size: 12px; }
  .auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: #2e2e2e; }
  .auth-discord { width: 100%; font: inherit; font-weight: 500; color: #fff; cursor: pointer; padding: 11px 0; background: #5865f2; border-color: #5865f2; }
  .auth-discord:hover { background: #4752c4; }

  /* ---------- Homepage ---------- */
  .home { width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 16px 20px; }
  .intro { text-align: center; max-width: 760px; margin: 0 auto; padding: 36px 0 44px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; color: #cfcfcf;
    background: #242424; border: 1px solid #333; border-radius: 20px;
    padding: 5px 12px;
  }
  .eyebrow i { color: #e0b75a; }
  .intro h1 { font-size: clamp(28px, 4.5vw, 44px); line-height: 1.15; margin: 18px 0 14px; }
  .intro h1 span { color: #fff; border-bottom: 3px solid #e6e6e6; }
  .intro > p { color: var(--muted); font-size: 16px; line-height: 1.6; }
  .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
  .cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 26px; margin: 0; font-size: 14px; width: auto; }
  .cta-ghost { background: transparent; border-color: #444; font-weight: 500; }
  .cta-ghost:hover { background: #2b2b2b; }
  .trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 26px; color: #a8a8a8; }
  .trust i { margin-right: 6px; color: #e6e6e6; }

  .section { padding: 34px 0; border-top: 1px solid #242424; }
  .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
  .section-head.center { justify-content: center; text-align: center; }
  .section-head h2 { font-size: 24px; margin-bottom: 6px; }
  .section-head p { color: var(--muted); font-size: 14px; }
  .see-all { font-weight: 500; white-space: nowrap; color: #cfcfcf; }
  .see-all:hover { color: #fff; }
  .see-all i { font-size: 11px; margin-left: 4px; }

  .perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .perk { background: #222; border: 1px solid var(--line); border-radius: 4px; padding: 22px; }
  .perk-icon {
    width: 42px; height: 42px; border-radius: 4px; background: #2b2b2b;
    display: grid; place-items: center; font-size: 17px; margin-bottom: 14px;
  }
  .perk h3 { font-size: 15px; margin-bottom: 6px; }
  .perk p { color: var(--muted); line-height: 1.55; }


  .final-cta {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
    padding: 34px 32px; border: 1px solid var(--line); border-radius: 4px;
    background: #111 var(--hero-img) center 30% / cover;
  }
  .final-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,.95), rgba(38,38,38,.75));
  }
  .final-cta > * { position: relative; }
  .final-cta h2 { font-size: 24px; margin-bottom: 6px; }
  .final-cta p { color: var(--muted); font-size: 14px; }
  .final-cta .cta-row { margin-top: 0; }

  @media (max-width: 600px) {
    .section-head { flex-direction: column; align-items: flex-start; }
    .section-head.center { align-items: center; }
    .cta { width: 100%; }
    .final-cta { padding: 26px 20px; }
    .signin span { display: none; }
  }

  /* ---------- Showcase ---------- */
  .showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .shot {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 16 / 9;
    padding: 0; font: inherit; color: var(--text);
    background: #111; border: 1px solid var(--line); border-radius: 4px;
  }
  .shot img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .35s, filter .35s;
    filter: brightness(.9);
  }
  .shot:hover img, .shot:focus-visible img { transform: scale(1.04); filter: brightness(1); }
  .shot-zoom {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 30px; height: 30px; border-radius: 3px;
    background: rgba(20,20,20,.75); display: grid; place-items: center; font-size: 12px;
    opacity: 0; transition: opacity .2s;
  }
  .shot:hover .shot-zoom, .shot:focus-visible .shot-zoom { opacity: 1; }

  .lightbox {
    position: fixed; inset: 0; z-index: 120;
    background: rgba(0,0,0,.9);
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 60px 16px;
    opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lb-figure {
    margin: 0; max-width: min(1200px, 100%); max-height: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .lb-img { max-width: 100%; max-height: calc(100vh - 170px); border-radius: 4px; object-fit: contain; }
  .lb-caption { text-align: center; display: flex; flex-direction: column; gap: 4px; }
  .lb-caption strong { font-size: 16px; }
  .lb-caption span { color: var(--muted); }
  .lb-btn {
    font: inherit; color: #d0d0d0; cursor: pointer;
    background: #232323; border: 1px solid #333; border-radius: 4px;
    width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; font-size: 15px;
  }
  .lb-btn:hover { background: #2f2f2f; color: #fff; }
  .lb-close { position: absolute; top: 14px; right: 14px; }
  .lb-count { position: absolute; top: 24px; left: 20px; color: var(--muted); font-size: 13px; }

  @media (max-width: 900px) {
    .showcase { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .showcase { grid-template-columns: 1fr; }
    .lb-prev, .lb-next { position: absolute; bottom: 16px; }
    .lb-prev { left: calc(50% - 52px); }
    .lb-next { right: calc(50% - 52px); }
  }

  /* ---------- Status colors ---------- */
  .status.updating { color: #6fb3ff; }
  .status.down { color: #ff7b7b; }
  .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px; background: #7a7a7a; }
  .dot.ok { background: #7bd88f; box-shadow: 0 0 8px rgba(123,216,143,.5); }
  .dot.updating { background: #6fb3ff; }
  .dot.soon { background: #e0b75a; }
  .dot.down { background: #ff7b7b; }
  .muted { color: var(--muted); font-size: 12px; }

  /* ---------- Status page ---------- */
  .status-banner {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 20px; border-radius: 4px; margin-bottom: 14px;
    font-size: 16px; font-weight: 700;
    background: #222; border: 1px solid var(--line); border-left: 4px solid #7bd88f;
  }
  .status-banner i { font-size: 20px; color: #7bd88f; }
  .status-banner.updating { border-left-color: #6fb3ff; }
  .status-banner.updating i { color: #6fb3ff; }
  .status-banner.down { border-left-color: #ff7b7b; }
  .status-banner.down i { color: #ff7b7b; }
  .status-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); margin-bottom: 20px; }
  .status-legend span { display: flex; align-items: center; gap: 7px; }
  .status-card { background: #222; border: 1px solid var(--line); border-radius: 4px; margin-bottom: 20px; }
  .status-card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    padding: 14px 20px; border-bottom: 1px solid var(--line);
  }
  .status-card-head h2 { font-size: 15px; }
  .status-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 20px; border-bottom: 1px solid #2a2a2a;
  }
  .status-row:last-child { border-bottom: 0; }
  .status-name { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 14px; }
  .status-right { display: flex; align-items: center; gap: 14px; }
  .status-link { color: var(--muted); font-size: 12px; }
  .status-link:hover { color: #fff; text-decoration: underline; }
  .status-foot { color: var(--muted); text-align: center; margin-top: 6px; }
  .status-foot i { color: #7289da; margin-right: 4px; }
  .status-foot a { color: #fff; text-decoration: underline; }

  /* ---------- Resellers page ---------- */
  .rs-hero {
    position: relative; overflow: hidden; border-radius: 4px; border: 1px solid var(--line);
    background: #111 var(--hero-img) center 25% / cover;
    padding: 40px 32px; margin-bottom: 20px;
  }
  .rs-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,.96) 30%, rgba(38,38,38,.6));
  }
  .rs-hero-text { position: relative; max-width: 560px; }
  .rs-hero h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
  .rs-hero p { color: var(--muted); font-size: 15px; line-height: 1.6; }
  .rs-hero .cta-row { justify-content: flex-start; margin-top: 20px; }
  .rs-perks { margin-bottom: 20px; }
  .rs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 20px; }
  .rs-list { padding: 18px 20px; color: var(--muted); }
  .rs-list a { color: #fff; text-decoration: underline; }
  .rs-steps { list-style: none; padding: 18px 20px; display: grid; gap: 12px; color: var(--muted); }
  .rs-steps li { display: flex; align-items: center; gap: 12px; }
  .rs-steps span {
    display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%;
    background: #e6e6e6; color: #151515; font-weight: 700; font-size: 12px;
  }
  .rs-warning {
    margin: 16px 20px 0; padding: 10px 14px; border-radius: 3px;
    background: rgba(224,183,90,.08); border: 1px solid rgba(224,183,90,.3); color: #e7cf95; line-height: 1.5;
  }
  .rs-warning i { margin-right: 6px; }
  .rs-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; padding: 16px 20px 20px; }
  .rs-card { background: #1c1c1c; border: 1px solid #2e2e2e; border-radius: 4px; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
  .rs-card-top { display: flex; align-items: center; gap: 12px; }
  .rs-card h3 { font-size: 15px; margin-bottom: 3px; }
  .rs-verified { color: #7bd88f; font-size: 12px; }
  .rs-avatar {
    width: 42px; height: 42px; border-radius: 4px; background: #2b2b2b;
    display: grid; place-items: center; font-weight: 700; font-size: 17px;
  }
  .rs-pay { display: flex; flex-wrap: wrap; gap: 6px; }
  .rs-pay span { font-size: 11px; background: #2a2a2a; border: 1px solid #353535; border-radius: 3px; padding: 3px 8px; color: #cfcfcf; }

  @media (max-width: 600px) {
    .status-row { padding: 12px 14px; }
    .status-card-head { padding: 12px 14px; }
    .rs-hero { padding: 28px 20px; }
    .rs-grid { grid-template-columns: 1fr; }
  }
