/*
Theme Name: HellYeahBuyIt
Theme URI: https://hellyeahbuyit.example
Author: HellYeahBuyIt
Author URI: https://hellyeahbuyit.example
Description: HELL YEAH BUY IT! — a dark neon arcade product-discovery theme for ridiculously awesome stuff nobody needs and everybody wants. Product grid with live category filtering, glowing price tags, a Surprise Me button, and a 3D chrome logo. Products are regular posts in the HellYeahBuyIt categories; price and buy link live in the "Product Details" box on the post edit screen.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hellyeahbuyit
Tags: dark, entertainment, e-commerce, custom-logo, featured-images
*/

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --hyb-bg: #05050c;
  --hyb-bg-2: #0b0b1a;
  --hyb-panel: #12122a;
  --hyb-panel-2: #0d0d1f;
  --hyb-ink: #f4f4ff;
  --hyb-muted: #9d9dc0;
  --hyb-pink: #ff2bd6;
  --hyb-violet: #8a4dff;
  --hyb-cyan: #00e8ff;
  --hyb-yellow: #ffe14d;
  --hyb-grad: linear-gradient(100deg, #ff2bd6 0%, #8a4dff 52%, #00e8ff 100%);
  --hyb-line: rgba(255, 255, 255, 0.08);
  --hyb-radius: 18px;
  --hyb-font-display: 'Bungee', 'Arial Black', sans-serif;
  --hyb-font-body: 'Outfit', -apple-system, 'Segoe UI', sans-serif;
  --hyb-header-h: 66px;
}

/* ============================================================
   2. BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--hyb-bg);
  color: var(--hyb-ink);
  font-family: var(--hyb-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* neon haze blobs */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 12% -5%, rgba(255, 43, 214, 0.16), transparent 60%),
    radial-gradient(900px 560px at 95% 15%, rgba(0, 232, 255, 0.13), transparent 60%),
    radial-gradient(700px 700px at 50% 115%, rgba(138, 77, 255, 0.14), transparent 62%),
    var(--hyb-bg);
}

/* CRT scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 3px);
  opacity: 0.5;
}

img { max-width: 100%; height: auto; }
a { color: var(--hyb-cyan); text-decoration: none; }
a:hover { color: #7ff3ff; }

:focus-visible {
  outline: 2px solid var(--hyb-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--hyb-pink); color: #fff; }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute;
}

.hyb-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100000;
  padding: 10px 18px; background: var(--hyb-pink); color: #fff;
  font-weight: 700; border-radius: 0 0 10px 0;
}
.hyb-skip:focus { left: 0; color: #fff; }

.hyb-main { display: block; min-height: 60vh; }

/* ============================================================
   3. HEADER
   ============================================================ */
.hyb-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5, 5, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hyb-line);
  transition: box-shadow 0.3s ease;
}
.hyb-header.is-scrolled { box-shadow: 0 10px 40px -18px rgba(255, 43, 214, 0.45); }

.hyb-header__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 9px 22px; min-height: var(--hyb-header-h);
}

.hyb-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.hyb-logo img {
  height: 42px; width: auto; display: block;
  mix-blend-mode: screen;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.hyb-logo:hover img { transform: scale(1.05); filter: brightness(1.25); }

.hyb-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; flex-wrap: wrap;
}
.hyb-nav a {
  font-family: var(--hyb-font-body);
  font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hyb-muted);
  padding: 8px 11px; border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, text-shadow 0.2s ease;
}
.hyb-nav a:hover {
  color: #fff;
  background: rgba(0, 232, 255, 0.08);
  text-shadow: 0 0 12px rgba(0, 232, 255, 0.8);
}

.hyb-surprise {
  font-family: var(--hyb-font-body);
  font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--hyb-yellow);
  background: rgba(255, 225, 77, 0.07);
  border: 1px solid rgba(255, 225, 77, 0.45);
  border-radius: 999px; padding: 8px 15px;
  margin-left: 8px; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hyb-surprise:hover {
  transform: translateY(-1px) rotate(-1deg);
  background: rgba(255, 225, 77, 0.14);
  box-shadow: 0 0 22px -4px rgba(255, 225, 77, 0.7);
}

.hyb-nav-toggle { display: none; }

@media (max-width: 1180px) and (min-width: 821px) {
  .hyb-logo img { height: 34px; }
  .hyb-nav a { font-size: 11.5px; padding: 7px 8px; letter-spacing: 0.1em; }
  .hyb-surprise { font-size: 11.5px; padding: 7px 12px; }
}

/* ============================================================
   4. HERO
   ============================================================ */
.hyb-hero {
  text-align: center;
  padding: clamp(34px, 7vh, 84px) 22px 10px;
  position: relative;
}

.hyb-hero__logo {
  width: min(740px, 92vw);
  mix-blend-mode: screen;
  animation: hyb-float 6s ease-in-out infinite alternate;
}

@keyframes hyb-float {
  from { transform: translateY(-7px); }
  to   { transform: translateY(9px); }
}

.hyb-hero__tagline {
  margin: 6px auto 6px;
  max-width: 700px;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: 0.01em;
}

.hyb-hero__sub {
  margin: 0 auto 26px;
  color: var(--hyb-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
}

.hyb-hero__cta {
  display: inline-block;
  font-family: var(--hyb-font-display);
  font-size: clamp(0.85rem, 1.7vw, 1.05rem);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--hyb-grad);
  box-shadow: 0 10px 34px -8px rgba(255, 43, 214, 0.65), 0 0 30px -6px rgba(0, 232, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: hyb-pulse 2.6s ease-in-out infinite;
}
.hyb-hero__cta:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.15);
}

@keyframes hyb-pulse {
  0%, 100% { box-shadow: 0 10px 34px -8px rgba(255, 43, 214, 0.65), 0 0 30px -6px rgba(0, 232, 255, 0.4); }
  50%      { box-shadow: 0 10px 44px -6px rgba(255, 43, 214, 0.9), 0 0 44px -4px rgba(0, 232, 255, 0.6); }
}

/* ============================================================
   5. MARQUEE
   ============================================================ */
.hyb-marquee {
  margin-top: clamp(28px, 5vh, 52px);
  border-top: 1px solid var(--hyb-line);
  border-bottom: 1px solid var(--hyb-line);
  background: linear-gradient(90deg, rgba(255, 43, 214, 0.08), rgba(0, 232, 255, 0.08));
  overflow: hidden;
  white-space: nowrap;
}
.hyb-marquee__track {
  display: inline-block;
  padding: 11px 0;
  font-family: var(--hyb-font-display);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: rgba(244, 244, 255, 0.82);
  text-shadow: 0 0 14px rgba(255, 43, 214, 0.5);
  animation: hyb-marquee 40s linear infinite;
  will-change: transform;
}
.hyb-marquee:hover .hyb-marquee__track { animation-play-state: paused; }

@keyframes hyb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   6. FILTER PILLS
   ============================================================ */
.hyb-shop { max-width: 1280px; margin: 0 auto; padding: 30px 22px 70px; }

.hyb-filters {
  position: sticky;
  top: var(--hyb-header-h);
  z-index: 900;
  display: flex; flex-wrap: wrap; gap: 9px;
  padding: 14px 4px;
  margin-bottom: 20px;
  background: linear-gradient(rgba(5, 5, 12, 0.88), rgba(5, 5, 12, 0.74));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hyb-pill {
  font-family: var(--hyb-font-body);
  font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hyb-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hyb-line);
  border-radius: 999px;
  padding: 9px 17px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.hyb-pill:hover {
  color: #fff;
  border-color: rgba(0, 232, 255, 0.6);
  box-shadow: 0 0 18px -4px rgba(0, 232, 255, 0.55);
  transform: translateY(-1px);
}
.hyb-pill.is-active {
  color: #fff;
  background: var(--hyb-grad);
  border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(255, 43, 214, 0.8);
}

/* ============================================================
   7. PRODUCT GRID + CARDS
   ============================================================ */
.hyb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 22px;
  perspective: 1400px;
}

.hyb-card {
  --tiltX: 0deg; --tiltY: 0deg; --lift: 0px;
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--hyb-panel) 0%, var(--hyb-panel-2) 100%);
  border: 1px solid var(--hyb-line);
  border-radius: var(--hyb-radius);
  overflow: hidden;
  transform: translateY(var(--lift)) rotateX(var(--tiltX)) rotateY(var(--tiltY));
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: hyb-rise 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(min(var(--i, 0), 12) * 55ms);
}

@keyframes hyb-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hyb-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--hyb-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hyb-card:hover {
  --lift: -8px;
  border-color: rgba(255, 43, 214, 0.45);
  box-shadow:
    0 24px 60px -22px rgba(255, 43, 214, 0.5),
    0 0 44px -14px rgba(0, 232, 255, 0.4);
}
.hyb-card:hover::before { opacity: 1; }

.hyb-card.is-hidden { display: none; }

.hyb-card.is-zapped {
  animation: hyb-zap 0.9s ease-in-out 2;
  border-color: var(--hyb-yellow);
}
@keyframes hyb-zap {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 225, 77, 0); transform: rotate(0deg); }
  30%      { box-shadow: 0 0 0 5px rgba(255, 225, 77, 0.65), 0 0 60px -6px rgba(255, 225, 77, 0.9); transform: rotate(-1.2deg) scale(1.025); }
  60%      { transform: rotate(1.2deg) scale(1.025); }
}

.hyb-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}
.hyb-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hyb-card:hover .hyb-card__media img { transform: scale(1.07); }

.hyb-card__noimg {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 56px;
  background: linear-gradient(140deg, #1c1c3c, #101024);
}

.hyb-price {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: var(--hyb-font-display);
  font-size: 15px;
  color: #190826;
  background: var(--hyb-yellow);
  border: 2px solid #190826;
  border-radius: 10px;
  padding: 5px 11px;
  transform: rotate(-4deg);
  box-shadow: 0 6px 20px -4px rgba(255, 225, 77, 0.65), 0 2px 0 #190826;
  transition: transform 0.25s ease;
}
.hyb-card:hover .hyb-price { transform: rotate(3deg) scale(1.08); }

.hyb-card__body {
  display: flex; flex-direction: column; gap: 9px;
  padding: 17px 18px 19px;
  flex: 1;
}

.hyb-chip {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--hyb-cyan);
  border: 1px solid rgba(0, 232, 255, 0.4);
  background: rgba(0, 232, 255, 0.07);
  border-radius: 999px;
  padding: 4px 10px;
}
a.hyb-chip:hover { color: #fff; border-color: rgba(0, 232, 255, 0.9); box-shadow: 0 0 14px -2px rgba(0, 232, 255, 0.6); }

.hyb-card__title {
  margin: 0;
  font-family: var(--hyb-font-body);
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0.005em;
}
.hyb-card__title a { color: var(--hyb-ink); }
.hyb-card__title a:hover { color: #fff; text-shadow: 0 0 16px rgba(0, 232, 255, 0.75); }

.hyb-card__blurb {
  margin: 0;
  color: var(--hyb-muted);
  font-size: 0.93rem;
  flex: 1;
}

.hyb-card__actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 4px;
}

.hyb-card__more {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--hyb-muted);
}
.hyb-card__more:hover { color: var(--hyb-cyan); }

/* ============================================================
   8. BUTTONS
   ============================================================ */
.hyb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--hyb-font-display);
  font-size: 13px;
  color: #fff !important;
  background: var(--hyb-grad);
  border: 0; border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 26px -8px rgba(255, 43, 214, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.hyb-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.16);
  box-shadow: 0 12px 34px -8px rgba(255, 43, 214, 0.95), 0 0 30px -6px rgba(0, 232, 255, 0.55);
}
.hyb-btn:active { transform: translateY(0); }

.hyb-btn--big {
  font-size: clamp(15px, 2vw, 19px);
  padding: 17px 34px;
  animation: hyb-pulse 2.6s ease-in-out infinite;
}

/* ============================================================
   9. EMPTY STATES & MESSAGES
   ============================================================ */
.hyb-empty, .hyb-empty-state {
  text-align: center;
  color: var(--hyb-muted);
  padding: 60px 20px;
}
.hyb-empty-state h2 {
  font-family: var(--hyb-font-display);
  color: var(--hyb-ink);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0 0 10px;
}

/* ============================================================
   10. ARCHIVE / CATEGORY
   ============================================================ */
.hyb-archive-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(36px, 6vh, 64px) 22px 6px;
  text-align: center;
}
.hyb-archive-title {
  font-family: var(--hyb-font-display);
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  margin: 12px 0 8px;
  background: var(--hyb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 43, 214, 0.35));
}
.hyb-archive-desc { color: var(--hyb-muted); max-width: 640px; margin: 0 auto; }

/* pagination */
.hyb-shop .navigation.pagination { margin-top: 40px; text-align: center; }
.hyb-shop .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hyb-shop .page-numbers {
  font-weight: 800;
  color: var(--hyb-muted);
  border: 1px solid var(--hyb-line);
  border-radius: 10px;
  padding: 8px 14px;
}
.hyb-shop .page-numbers.current,
.hyb-shop .page-numbers:hover { color: #fff; background: var(--hyb-grad); border-color: transparent; }

/* ============================================================
   11. SINGLE PRODUCT
   ============================================================ */
.hyb-single {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vh, 60px) 22px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.hyb-single__media {
  position: sticky; top: calc(var(--hyb-header-h) + 22px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--hyb-line);
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(255, 43, 214, 0.4), 0 0 60px -20px rgba(0, 232, 255, 0.3);
}
.hyb-single__media img { display: block; width: 100%; height: auto; }

.hyb-price--big {
  font-size: 21px;
  top: 16px; right: 16px;
  padding: 8px 16px;
}

.hyb-single__title {
  font-family: var(--hyb-font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  margin: 14px 0 12px;
  text-shadow: 0 0 30px rgba(255, 43, 214, 0.35);
}

.hyb-single__content { color: #c9c9e2; font-size: 1.04rem; }
.hyb-single__content a { text-decoration: underline; }

.hyb-single__info .hyb-btn--big { margin-top: 18px; }

.hyb-single__fine {
  color: var(--hyb-muted);
  font-size: 0.82rem;
  margin-top: 10px;
}

.hyb-related { max-width: 1280px; margin: 30px auto 0; padding: 0 22px 80px; }

.hyb-section-title {
  font-family: var(--hyb-font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0 0 22px;
  text-shadow: 0 0 24px rgba(0, 232, 255, 0.45);
}

/* ============================================================
   12. SEARCH & 404
   ============================================================ */
.hyb-page-hero {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(46px, 9vh, 90px) 22px 20px;
}
.hyb-page-hero h1 {
  font-family: var(--hyb-font-display);
  font-size: clamp(1.8rem, 6vw, 4rem);
  margin: 0 0 14px;
  background: var(--hyb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 43, 214, 0.4));
}
.hyb-page-hero p { color: var(--hyb-muted); font-size: 1.05rem; }

.hyb-search-form {
  display: flex; gap: 10px; justify-content: center;
  max-width: 520px; margin: 22px auto 0;
}
.hyb-search-form input[type="search"] {
  flex: 1;
  background: var(--hyb-panel-2);
  border: 1px solid var(--hyb-line);
  border-radius: 999px;
  color: var(--hyb-ink);
  padding: 12px 20px;
  font-family: var(--hyb-font-body);
  font-size: 15px;
}
.hyb-search-form input[type="search"]:focus {
  outline: none;
  border-color: rgba(0, 232, 255, 0.7);
  box-shadow: 0 0 22px -6px rgba(0, 232, 255, 0.7);
}

/* ============================================================
   13. GENERIC CONTENT (pages / classic posts)
   ============================================================ */
.hyb-content {
  max-width: 780px; margin: 0 auto;
  padding: clamp(30px, 5vh, 60px) 22px 80px;
  color: #c9c9e2;
}
.hyb-content h1, .hyb-content h2, .hyb-content h3 { color: var(--hyb-ink); line-height: 1.25; }
.hyb-content h1 { font-family: var(--hyb-font-display); font-size: clamp(1.6rem, 4vw, 2.6rem); }
.hyb-content img { border-radius: 14px; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.hyb-footer {
  border-top: 1px solid var(--hyb-line);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(138, 77, 255, 0.12), transparent 70%),
    #04040a;
  text-align: center;
  padding: 54px 22px 40px;
  margin-top: 30px;
}
.hyb-footer__logo {
  height: 40px; width: auto;
  mix-blend-mode: screen;
}
.hyb-footer__tag { color: var(--hyb-muted); margin: 14px 0 24px; }

.hyb-newsletter {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.hyb-newsletter input[type="email"] {
  flex: 1; min-width: 220px;
  background: var(--hyb-panel-2);
  border: 1px solid var(--hyb-line);
  border-radius: 999px;
  color: var(--hyb-ink);
  padding: 12px 20px;
  font-family: var(--hyb-font-body);
  font-size: 15px;
}
.hyb-newsletter input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 43, 214, 0.7);
  box-shadow: 0 0 22px -6px rgba(255, 43, 214, 0.7);
}
.hyb-newsletter__msg { color: var(--hyb-yellow); font-weight: 700; margin-top: 16px; }

.hyb-footer__fine { color: #6d6d90; font-size: 0.8rem; max-width: 560px; margin: 26px auto 6px; }
.hyb-footer__copy { color: #6d6d90; font-size: 0.8rem; margin: 4px 0 0; }

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hyb-single { grid-template-columns: 1fr; }
  .hyb-single__media { position: static; }
}

@media (max-width: 820px) {
  .hyb-nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--hyb-line);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
  }
  .hyb-nav-toggle span:not(.screen-reader-text) {
    display: block; height: 2px; width: 100%;
    background: var(--hyb-ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .hyb-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hyb-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hyb-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hyb-nav {
    display: none;
    position: fixed;
    top: var(--hyb-header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(5, 5, 12, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--hyb-line);
    padding: 16px 22px 22px;
    gap: 6px;
  }
  .hyb-nav.is-open { display: flex; }
  .hyb-nav a { font-size: 15px; padding: 12px 14px; }
  .hyb-surprise { margin: 10px 0 0; padding: 13px; }
}

@media (max-width: 520px) {
  .hyb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hyb-card__body { padding: 12px 12px 14px; }
  .hyb-card__title { font-size: 0.98rem; }
  .hyb-card__blurb { font-size: 0.85rem; }
  .hyb-btn { font-size: 11px; padding: 9px 14px; }
  .hyb-price { font-size: 12.5px; padding: 4px 8px; }
  .hyb-card__actions { flex-wrap: wrap; gap: 8px; }
}

/* ============================================================
   16. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hyb-hero__logo, .hyb-hero__cta, .hyb-btn--big { animation: none; }
  .hyb-marquee__track { animation-duration: 120s; }
  .hyb-card { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
