:root {
  --bg: #09090b;
  --text-primary: rgba(255,255,255,0.9);
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

/* ─── Background ─────────────────────────────── */

canvas#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ─── Nav ─────────────────────────────────────── */

.shop-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, gap 0.2s ease;
}

.nav-back i { font-size: 13px; transition: transform 0.2s ease; }

.nav-back:hover { color: rgba(255,255,255,0.75); gap: 10px; }
.nav-back:hover i { transform: translateX(-2px); }

.nav-logo {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
}

/* ─── Page layout ─────────────────────────────── */

.page-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 88px;
}

/* ─── Hero ────────────────────────────────────── */

.shop-hero {
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.shop-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.shimmer-text {
  background: linear-gradient(
    105deg,
    rgba(200,220,255,0.5),
    #f0f0f0 32%,
    rgba(220,210,255,0.55) 52%,
    #f0f0f0 68%,
    rgba(200,220,255,0.5)
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-line 9s linear infinite;
}

.shop-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 20px;
}

/* Trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

.trust-pill i { font-size: 11px; color: rgba(255,255,255,0.28); }

/* ─── Section header ──────────────────────────── */

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.section-header::before {
  display: none;
}

.section-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  font-weight: 500;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}

.section-count {
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 1px 7px;
}

/* ─── Section spacing ─────────────────────────── */

.section-block { margin-bottom: 52px; }

/* ═══════════════════════════════════════════════
   CARD TYPE 1 — Featured resource (full-width)
═══════════════════════════════════════════════ */

.card-featured {
  position: relative;
  background: rgba(147,230,180,0.03);
  border: 1px solid rgba(147,230,180,0.22);
  border-radius: 20px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 28px;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 1px 0 rgba(147,230,180,0.08) inset, 0 8px 32px rgba(0,0,0,0.12);
}

.card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 8% 50%, rgba(147,230,180,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.card-featured::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,230,180,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.card-featured:hover {
  border-color: rgba(147,230,180,0.4);
  background: rgba(147,230,180,0.05);
  box-shadow: 0 1px 0 rgba(147,230,180,0.12) inset, 0 12px 48px rgba(147,230,180,0.07);
}

.card-featured .feat-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-featured .feat-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.card-featured .cat-badge {
  align-self: flex-start;
}

.card-featured .feat-title {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.84);
  line-height: 1.38;
  margin: 0;
}

.card-featured .feat-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  margin: 0;
}

.card-featured .feat-price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(200,245,220,0.92);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   CARD TYPE 2 — Compact API key tiles
═══════════════════════════════════════════════ */

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

.card-key {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card-key::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(147,210,255,0.45), transparent);
}

.card-key::after {
  content: '';
  position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 60px;
  background: radial-gradient(ellipse, rgba(147,210,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.card-key:hover {
  background: rgba(147,210,255,0.05);
  border-color: rgba(147,210,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.24), 0 0 0 1px rgba(147,210,255,0.08);
}

.card-key .key-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(147,210,255,0.09);
  border: 1px solid rgba(147,210,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(147,210,255,0.75);
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(147,210,255,0.08);
}

.card-key .key-name {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.74);
  line-height: 1.35;
  flex: 1;
}

.card-key .key-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(210,235,255,0.9);
  letter-spacing: -0.02em;
}

.card-key .key-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   CARD TYPE 3 — Source code cards (2-col)
═══════════════════════════════════════════════ */

.grid-source {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card-source {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
}

.card-source:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.card-source.bot-card:hover {
  border-color: rgba(147,210,255,0.18);
  background: rgba(147,210,255,0.025);
}

.card-source.casino-card:hover {
  border-color: rgba(255,200,120,0.18);
  background: rgba(255,200,120,0.02);
}

.source-accent {
  height: 3px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.bot-card .source-accent {
  background: linear-gradient(90deg, rgba(147,210,255,0.7), rgba(147,210,255,0.2), transparent);
  box-shadow: 0 2px 12px rgba(147,210,255,0.18);
}

.casino-card .source-accent {
  background: linear-gradient(90deg, rgba(255,200,120,0.7), rgba(255,200,120,0.2), transparent);
  box-shadow: 0 2px 12px rgba(255,200,120,0.18);
}

.source-inner {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.source-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.source-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.source-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}

.bot-card .source-price { color: rgba(200,232,255,0.88); }
.casino-card .source-price { color: rgba(255,220,150,0.88); }

.source-body { flex: 1; }

.source-title {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.42;
  margin: 0 0 5px;
}

.source-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin: 0;
}

/* ─── Category badges ─────────────────────────── */

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cat-badge.api {
  background: rgba(147,210,255,0.08);
  border: 1px solid rgba(147,210,255,0.18);
  color: rgba(147,210,255,0.8);
}

.cat-badge.resource {
  background: rgba(147,230,180,0.1);
  border: 1px solid rgba(147,230,180,0.22);
  color: rgba(147,230,180,0.85);
}

.cat-badge.source {
  background: rgba(196,168,255,0.08);
  border: 1px solid rgba(196,168,255,0.16);
  color: rgba(196,168,255,0.75);
}

/* ─── Extra badge ─────────────────────────────── */

.extra-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.extra-badge.popular {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}

.extra-badge.premium {
  background: rgba(255,200,120,0.08);
  border: 1px solid rgba(255,200,120,0.18);
  color: rgba(255,200,120,0.7);
}

/* ─── Stack pills ─────────────────────────────── */

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.stack-pill {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

/* ─── Buy button ──────────────────────────────── */

.buy-btn {
  width: 100%;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  text-transform: uppercase;
}

.buy-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}

.buy-btn:active { transform: translateY(0); }

/* — Featured buy btn — */
.card-featured .buy-btn {
  width: auto;
  padding: 10px 22px;
  border-color: rgba(147,230,180,0.28);
  background: rgba(147,230,180,0.09);
  color: rgba(147,230,180,0.78);
  font-size: 12px;
}

.card-featured .buy-btn:hover {
  background: rgba(147,230,180,0.16);
  border-color: rgba(147,230,180,0.45);
  color: rgba(147,230,180,1);
  box-shadow: 0 6px 24px rgba(147,230,180,0.1);
}

/* — API key tile buy btn — */
.card-key .buy-btn {
  border-color: rgba(147,210,255,0.14);
  background: rgba(147,210,255,0.06);
  color: rgba(147,210,255,0.62);
}

.card-key .buy-btn:hover {
  background: rgba(147,210,255,0.13);
  border-color: rgba(147,210,255,0.28);
  color: rgba(147,210,255,0.95);
  box-shadow: 0 4px 20px rgba(147,210,255,0.09);
}

/* — Bot source card buy btn — */
.bot-card .buy-btn {
  border-color: rgba(147,210,255,0.14);
  background: rgba(147,210,255,0.05);
  color: rgba(147,210,255,0.6);
}

.bot-card .buy-btn:hover {
  background: rgba(147,210,255,0.12);
  border-color: rgba(147,210,255,0.28);
  color: rgba(147,210,255,0.95);
  box-shadow: 0 4px 20px rgba(147,210,255,0.08);
}

/* — Casino source card buy btn — */
.casino-card .buy-btn {
  border-color: rgba(255,200,120,0.16);
  background: rgba(255,200,120,0.05);
  color: rgba(255,200,120,0.62);
}

.casino-card .buy-btn:hover {
  background: rgba(255,200,120,0.12);
  border-color: rgba(255,200,120,0.3);
  color: rgba(255,200,120,0.98);
  box-shadow: 0 4px 20px rgba(255,200,120,0.09);
}

/* ─── Footer note ─────────────────────────────── */

.shop-footer-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ─── WIP overlay ─────────────────────────────── */

#wip-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
}

#wip-overlay.visible { opacity: 1; }

/* Spinning gradient border wrapper */
.wip-border {
  position: relative;
  border-radius: 24px;
  padding: 1.5px;
  overflow: hidden;
  transform: scale(0.88) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

#wip-overlay.visible .wip-border {
  transform: scale(1) translateY(0);
}

.wip-border::before {
  content: '';
  position: absolute;
  width: 250%;
  height: 250%;
  top: -75%;
  left: -75%;
  background: conic-gradient(
    from 0deg,
    #f59e0b,
    #f87171,
    #a78bfa,
    #34d399,
    #60a5fa,
    #f59e0b
  );
  animation: wip-border-spin 3s linear infinite;
  z-index: 0;
}

/* Inner card */
.wip-card {
  position: relative;
  z-index: 1;
  background: rgb(10,10,13);
  border-radius: 23px;
  padding: 28px 26px 24px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

/* Warm radial glow behind icon */
.wip-card::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 160px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating spark dots */
.wip-spark {
  position: absolute;
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: 50%;
  background: rgba(245,158,11,0.55);
  pointer-events: none;
  animation: wip-spark-float 2.4s ease-in-out infinite;
  z-index: 2;
}

/* Icon wrapper */
.wip-icon-wrap {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.18) 0%, rgba(251,113,133,0.1) 100%);
  border: 1px solid rgba(245,158,11,0.3);
  box-shadow: 0 0 28px rgba(245,158,11,0.15), inset 0 1px 0 rgba(255,255,255,0.07);
}

.wip-gear {
  font-size: 26px;
  color: rgba(245,158,11,0.9);
  animation: wip-gear-spin 4s linear infinite;
  display: block;
  line-height: 1;
}

/* Status chip */
.wip-status-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.07);
  margin-bottom: 12px;
}

#wip-status-text {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.7);
}

.wip-pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: wip-dot-pulse 1.8s ease-in-out infinite;
}

/* Title & desc */
.wip-title {
  position: relative;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.wip-desc {
  position: relative;
  z-index: 2;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0 0 18px;
}

/* Fake progress bar */
.wip-progress-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.wip-progress-track {
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  margin-bottom: 6px;
}

.wip-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #f59e0b, #f87171 60%, #a78bfa);
  width: 0%;
  animation: wip-progress 2s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

.wip-progress-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Close button */
.wip-close-btn {
  position: relative;
  z-index: 2;
  padding: 9px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-transform: uppercase;
}

.wip-close-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.82);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ─── Animations ──────────────────────────────── */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer-line {
  0%  { background-position: -200%; }
  to  { background-position:  200%; }
}

@keyframes blob-float {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-50px) scale(1.05); }
  66%  { transform: translate(-20px,20px) scale(0.95); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes wip-border-spin {
  to { transform: rotate(360deg); }
}

@keyframes wip-gear-spin {
  to { transform: rotate(360deg); }
}

@keyframes wip-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}

@keyframes wip-spark-float {
  0%, 100% { opacity: 0.55; transform: translateY(0) scale(1); }
  50%       { opacity: 0.15; transform: translateY(-6px) scale(0.7); }
}

@keyframes wip-progress {
  0%   { width: 0%; }
  70%  { width: 72%; }
  85%  { width: 68%; }
  100% { width: 68%; }
}

/* ─── Responsive ──────────────────────────────── */

@media (max-width: 680px) {
  .shop-nav { padding: 16px 16px 0; }
  .page-content { padding: 32px 16px 64px; }
  .grid-keys { grid-template-columns: repeat(2, 1fr); }
  .grid-source { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .card-featured .feat-right { grid-row: auto; flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-trust { gap: 6px; }
  .trust-pill { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 420px) {
  .grid-keys { grid-template-columns: repeat(2, 1fr); }
  .nav-logo { display: none; }
}
