/* ============================================================
   VEREDICTIVE — neon-noir dropshipping storefront
   ============================================================ */
:root {
  --bg: #08080a;
  --bg-2: #0f0f12;
  --panel: #141418;
  --panel-2: #1a1a20;
  --line: #26262e;
  --ink: #f4f2ee;
  --ink-dim: #a9a7b0;
  --ink-faint: #6c6a74;
  --red: #fc7d3a;
  --red-soft: #ffa26b;
  --lime: #b6ff2e;
  --lime-deep: #8fdb00;
  --glow-red: 0 0 6px rgba(252,125,58,.7), 0 0 22px rgba(255,80,20,.4), 0 0 46px rgba(153,3,1,.45); /* falloff matches the neon sign */
  --glow-lime: 0 0 6px rgba(182,255,46,.6), 0 0 20px rgba(182,255,46,.35);
  --display: "Bebas Neue", sans-serif;
  --mono: "Hanken Grotesk", sans-serif; /* unified: only 2 typefaces site-wide */
  --body: "Hanken Grotesk", sans-serif;
  --radius: 8px;      /* buttons, inputs, small chips */
  --radius-lg: 12px;  /* cards, panels, modals */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { /* film grain */
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- shared ---------- */
.neon { color: var(--red); text-shadow: var(--glow-red); }
.neon--flicker { animation: flicker 4.5s infinite; }
@keyframes flicker {
  0%,18%,22%,25%,53%,57%,100% { opacity: 1; text-shadow: var(--glow-red); }
  20%,24%,55% { opacity: .4; text-shadow: none; }
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .95; letter-spacing: .01em; font-weight: 400;
  display: flex; align-items: center; gap: .5em; flex-wrap: wrap;
}
.section-lead { color: var(--ink-dim); max-width: 54ch; margin-top: .9rem; font-size: 1.05rem; }
.approved-tag, .skip-tag {
  font-family: var(--mono); font-size: .8rem; font-weight: 600;
  padding: .3em .7em; border-radius: 4px; letter-spacing: .05em;
  transform: rotate(-3deg); align-self: center;
}
.approved-tag { color: var(--lime); border: 1.5px solid var(--lime); box-shadow: var(--glow-lime); }
.skip-tag { color: var(--red); border: 1.5px solid var(--red); box-shadow: var(--glow-red); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--body); font-weight: 700; font-size: .98rem;
  padding: .95rem 1.7rem; border-radius: var(--radius); cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s, box-shadow .25s, background .2s;
  display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .01em;
}
.btn--primary { background: var(--red); color: #120400; box-shadow: var(--glow-red); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 8px rgba(252,125,58,.9), 0 0 34px rgba(252,125,58,.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }
.btn--full { width: 100%; justify-content: center; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 5vw, 5rem); /* same horizontal rhythm as the sections below */
  background: rgba(8,8,10,.6); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,8,10,.85); }
/* ---------- neon logo (uses the real VEREDICTIVE sign image) ---------- */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo__img { display: block; width: auto; }
.logo--nav .logo__img { height: 54px; }
.logo--footer .logo__img { height: 66px; }
.logo__word { display: none; } /* fallback text, only shown if the image fails to load */
.logo--noimg .logo__img { display: none; }
.logo--noimg .logo__word { display: inline-block; }
.logo--noimg .logo__word {
  font-family: var(--display); font-weight: 400; letter-spacing: .16em;
  color: #ffd0a8;
  border: 2px solid #ff5a2a; border-radius: 12px;
  padding: .2em .55em .12em; line-height: 1; white-space: nowrap;
  text-shadow: 0 0 4px #ffcaa0, 0 0 11px #ff7a2e, 0 0 22px #fc7d3a, 0 0 40px rgba(252,125,58,.6);
  box-shadow: 0 0 5px rgba(255,90,42,.75), 0 0 16px rgba(252,125,58,.5), inset 0 0 12px rgba(255,90,42,.28);
  transition: text-shadow .3s, box-shadow .3s;
}
.logo:hover .logo__word { text-shadow: 0 0 5px #ffe0c4, 0 0 14px #ff8a3d, 0 0 30px #fc7d3a, 0 0 55px rgba(252,125,58,.8); }
.logo--nav .logo__word { font-size: 1.45rem; }
.logo--footer .logo__word { font-size: 2rem; }
.nav__links { display: flex; gap: 1.8rem; font-size: .9rem; font-weight: 600; color: var(--ink-dim); }
.nav__links a:hover { color: var(--red); }
.cart-btn {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .55rem .7rem; cursor: pointer; line-height: 1;
  color: var(--ink); display: inline-flex; align-items: center;
  transition: border-color .2s, color .2s;
}
.cart-btn:hover { border-color: var(--red); color: var(--red); }
.cart-btn__icon { display: block; }
.cart-btn__count {
  position: absolute; top: -8px; right: -8px; background: var(--red); color: #120400;
  font-family: var(--mono); font-size: .68rem; font-weight: 600; min-width: 18px; height: 18px;
  border-radius: 9px; display: grid; place-items: center; padding: 0 4px; box-shadow: var(--glow-red);
}

/* ---------- hero ---------- */
.hero { position: relative; display: flex; flex-direction: column; justify-content: center;
  padding: 7.5rem clamp(1rem, 5vw, 5rem) 0; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px; opacity: .25;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 20%, transparent 75%);
}
.hero__glow {
  position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -10vw; top: 5vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,125,58,.28), transparent 62%); filter: blur(30px);
}
.hero__wrap { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__inner { max-width: 1100px; }

/* ---------- LIVE VERDICT stage ---------- */
.hero__stage { position: relative; display: block; height: clamp(380px, 44vw, 470px); }
.stage__live { position: absolute; top: -1.3rem; right: .4rem; z-index: 4; font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .18em; color: var(--red); opacity: .85; animation: livePulse 2.2s ease-in-out infinite; }
@keyframes livePulse { 50% { opacity: .4; } }
/* stacked deck, centered & symmetric behind the main card */
.stage__card { position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel-2); box-shadow: 0 16px 40px -24px rgba(0,0,0,.8); }
.stage__card--b1 { transform: rotate(-2.5deg) scale(.985); opacity: .55; }
.stage__card--b2 { transform: rotate(2.5deg) scale(.985); opacity: .35; }
.stage__main { position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background: var(--panel); box-shadow: 0 24px 60px -28px rgba(0,0,0,.85); animation: stageFloat 7s ease-in-out infinite; }
@keyframes stageFloat { 50% { transform: translateY(-6px); } }
.stage__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .4s; }
/* the big center stamp — the verdict slams onto the product */
.stage__stamp { position: absolute; top: 50%; left: 50%; z-index: 3; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: .08em; padding: .18em .55em .1em; border: 3px solid var(--lime); border-radius: var(--radius); color: var(--lime); box-shadow: var(--glow-lime), inset 0 0 18px rgba(182,255,46,.2); background: rgba(8,8,10,.55); backdrop-filter: blur(2px); transform: translate(-50%, -50%) rotate(-12deg); opacity: 0; }
.stage__stamp.is-skip { border-color: var(--red); color: var(--red); box-shadow: var(--glow-red), inset 0 0 18px rgba(252,125,58,.2); }
.stage__stamp.stamp-in { animation: stampIn .55s cubic-bezier(.2,1.4,.4,1) forwards; }
@keyframes stampIn {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-12deg) scale(2.4); }
  55% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(.92); }
  75% { transform: translate(-50%, -50%) rotate(-12deg) scale(1.05); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(1); }
}
.stage__meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.2rem; background: linear-gradient(transparent, rgba(8,8,10,.92) 40%); }
.stage__meta b { font-family: var(--body); font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.stage__meta i { font-style: normal; font-family: var(--display); font-size: 1.3rem; color: var(--ink); border: 1.5px solid var(--line); border-radius: 4px; padding: .05em .45em 0; }
@media (max-width: 1080px) {
  .hero__wrap { grid-template-columns: 1fr; }
  .hero__stage { display: none; }
}
.hero__logo { display: block; width: min(92vw, 560px); height: auto; margin: -2rem 0 1rem -1.5rem;
  filter: drop-shadow(0 0 34px rgba(252,125,58,.4)); }
.hero__eyebrow { font-family: var(--mono); color: var(--red); letter-spacing: .25em; font-size: .82rem; margin-bottom: 1rem; text-transform: uppercase; font-weight: 600; }
.hero__title {
  font-family: var(--display); font-weight: 400; font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: .9; letter-spacing: .005em;
}
.hero__sub { color: var(--ink-dim); max-width: 46ch; margin: 1.2rem 0 1.6rem; font-size: 1.05rem; }
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--display); font-size: 2.1rem; color: var(--ink); line-height: 1; }
.hero__stats span { font-family: var(--mono); font-size: .74rem; color: var(--ink-faint); letter-spacing: .06em; margin-top: .35rem; text-transform: uppercase; }

/* ---------- marquee ---------- */
.marquee { position: relative; z-index: 2; margin-top: 2.4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--red); overflow: hidden; padding: .5rem 0; }
.marquee__track { display: flex; width: max-content; animation: scroll 26s linear infinite; }
.marquee__track span { font-family: var(--display); font-size: 1.3rem; letter-spacing: .1em; color: #120400; padding-right: 2rem; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- verdict ---------- */
.verdict { padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 5vw, 5rem); }
.verdict__head { margin-bottom: 3rem; }
.verdict__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.vcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.6rem; position: relative; overflow: hidden; transition: border-color .25s, transform .25s; }
.vcard:hover { border-color: var(--red); transform: translateY(-4px); }
.vcard__no { font-family: var(--mono); color: var(--red); font-size: .85rem; letter-spacing: .1em; }
.vcard h3 { font-family: var(--body); font-weight: 800; font-size: 1.2rem; margin: .8rem 0 .6rem; }
.vcard p { color: var(--ink-dim); font-size: .95rem; }

/* ---------- store ---------- */
.store { padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem); }
.store__head { margin-bottom: 2.6rem; }
.store__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }

.pcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; transition: transform .25s, border-color .25s, box-shadow .25s; }
.pcard:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 20px 50px -20px rgba(252,125,58,.4); }
.pcard__media { aspect-ratio: 1/1; display: grid; place-items: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 40%, var(--panel-2), var(--bg-2)); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.pcard__media.no-img::before { content: "◇"; font-family: var(--display); color: var(--ink-faint); font-size: 3rem; }
.pcard__media.no-img::after { content: "PHOTO"; position: absolute; bottom: 14px; font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; color: var(--ink-faint); }
.pcard__score { position: absolute; top: .9rem; right: .9rem; z-index: 2; font-family: var(--display);
  font-size: 1.05rem; color: var(--lime); border: 1.5px solid var(--lime); border-radius: 4px;
  padding: .1em .5em .05em; box-shadow: var(--glow-lime); letter-spacing: .04em; }
.pcard__stamp { position: absolute; top: .9rem; left: .9rem; z-index: 2; font-family: var(--mono); font-size: .66rem;
  font-weight: 600; color: var(--lime); border: 1.5px solid var(--lime); border-radius: 4px; padding: .25em .5em;
  transform: rotate(-6deg); letter-spacing: .05em; }
.pcard__body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pcard__cat { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase; }
.pcard__name { font-family: var(--body); font-weight: 800; font-size: 1.18rem; margin: .3rem 0 .5rem; }
.pcard__verdict { color: var(--ink-dim); font-size: .9rem; font-style: italic; border-left: 2px solid var(--red); padding-left: .7rem; margin-bottom: 1.1rem; }
.pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.pcard__price { font-family: var(--display); font-size: 1.9rem; line-height: 1; }
.pcard__price s { font-family: var(--body); font-size: .9rem; color: var(--ink-faint); margin-left: .4rem; }
.pcard__add { background: var(--red); color: #120400; border: none; border-radius: var(--radius); padding: .8rem 1.3rem; font-family: var(--body); font-weight: 700; cursor: pointer; transition: box-shadow .25s, transform .15s; font-size: .9rem; letter-spacing: .01em; }
.pcard__add:hover { box-shadow: var(--glow-red); transform: translateY(-2px); }
.pcard__add:active { transform: scale(.97); }

/* ---------- rejected ---------- */
.rejected { padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rejected__head { margin-bottom: 2.6rem; }
.rejected__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem; }
.rcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; opacity: .9; transition: opacity .2s, border-color .25s, transform .25s; }
.rcard:hover { opacity: 1; border-color: var(--red); transform: translateY(-4px); }
.rcard__media { aspect-ratio: 1/1; position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, var(--panel-2), var(--bg-2)); }
.rcard__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.72); }
.rcard__media::after { content: ""; position: absolute; inset: 0; background: rgba(252,125,58,.14); pointer-events: none; }
.rcard__media.no-img::before { content: "\2715"; color: var(--red); font-family: var(--body); font-weight: 800; font-size: 3rem; }
.rcard__stamp { position: absolute; top: .9rem; left: .9rem; z-index: 2; font-family: var(--mono); font-size: .66rem; font-weight: 600; color: var(--red); border: 1.5px solid var(--red); border-radius: 4px; padding: .25em .5em; transform: rotate(-6deg); letter-spacing: .05em; box-shadow: var(--glow-red); }
.rcard__score { position: absolute; top: .9rem; right: .9rem; z-index: 2; font-family: var(--display); font-size: 1.05rem; color: var(--red); border: 1.5px solid var(--red); border-radius: 4px; padding: .1em .5em .05em; box-shadow: var(--glow-red); letter-spacing: .04em; }
.rcard__body { padding: 1rem 1.1rem 1.3rem; }
.rcard__name { font-weight: 800; font-size: 1.08rem; margin-bottom: .4rem; }
.rcard__why { color: var(--ink-dim); font-size: .88rem; }

/* ---------- trust ---------- */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line); }
.trust__item { background: var(--bg); padding: 2.2rem 1.8rem; display: flex; flex-direction: column; gap: .5rem; }
.trust__item b { font-size: 1.05rem; }
.trust__item span { color: var(--ink-dim); font-size: .9rem; }

/* ---------- footer ---------- */
.footer { text-align: center; padding: 4rem 1.5rem 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer__brand { display: flex; align-items: center; gap: .6rem; }
.footer__tag { font-family: var(--mono); color: var(--ink-dim); letter-spacing: .04em; }
.footer__follow { font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-top: .4rem; }
.footer__social { display: flex; gap: 1rem; margin-top: .9rem; }
.footer__social a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .95rem; color: var(--ink); padding: .6rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, color .2s, box-shadow .2s; }
.footer__social a:hover { color: var(--red); border-color: var(--red); box-shadow: var(--glow-red); }
.footer__contact { margin-top: .3rem; }
.footer__contact a { font-family: var(--mono); font-size: .88rem; color: var(--red); text-shadow: var(--glow-red); letter-spacing: .03em; }
.footer__contact a:hover { text-decoration: underline; }
.footer__legal { font-family: var(--mono); font-size: .74rem; color: var(--ink-faint); margin-top: 1rem; }

/* ---------- cart drawer ---------- */
.drawer-overlay, .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(3px); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.open, .modal-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--panel); border-left: 1px solid var(--line); z-index: 201; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--display); font-size: 1.6rem; letter-spacing: .06em; }
.drawer__close, .modal__close { background: none; border: none; color: var(--ink-dim); font-size: 1.2rem; cursor: pointer; }
.drawer__close:hover, .modal__close:hover { color: var(--red); }
.drawer__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.drawer__empty { color: var(--ink-faint); text-align: center; margin-top: 3rem; font-family: var(--mono); font-size: .9rem; }
.citem { display: flex; gap: 1rem; align-items: center; }
.citem__media { width: 60px; height: 60px; border-radius: var(--radius); background: var(--panel-2); display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--line); overflow: hidden; }
.citem__media img { width: 100%; height: 100%; object-fit: cover; }
.citem__media.no-img::before { content: "◇"; font-family: var(--display); color: var(--ink-faint); font-size: 1.4rem; }
.citem__info { flex: 1; min-width: 0; }
.citem__name { font-weight: 700; font-size: .95rem; }
.citem__price { font-family: var(--mono); color: var(--ink-dim); font-size: .82rem; }
.citem__qty { display: flex; align-items: center; gap: .5rem; margin-top: .4rem; }
.citem__qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: var(--panel-2); color: var(--ink); border-radius: 4px; cursor: pointer; font-size: .9rem; line-height: 1; }
.citem__qty button:hover { border-color: var(--red); color: var(--red); }
.citem__qty span { font-family: var(--mono); min-width: 20px; text-align: center; }
.citem__remove { background: none; border: none; color: var(--ink-faint); cursor: pointer; font-size: .8rem; }
.citem__remove:hover { color: var(--red); }
.drawer__foot { border-top: 1px solid var(--line); padding: 1.4rem 1.5rem; }
.drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3rem; }
.drawer__subtotal b { font-family: var(--display); font-size: 1.8rem; }
.drawer__note { color: var(--ink-faint); font-size: .78rem; margin-bottom: 1rem; }

/* ---------- modal ---------- */
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%); width: min(480px, 94vw); max-height: 90vh; overflow-y: auto; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); z-index: 202; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
.modal-overlay.open ~ .modal, .modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.modal__close { position: absolute; top: 1.2rem; right: 1.4rem; }
.modal__title { font-family: var(--display); font-size: 2rem; letter-spacing: .05em; }
.modal__lead { color: var(--ink-dim); font-size: .92rem; margin: .5rem 0 1.5rem; }
.modal__hint { color: var(--ink-faint); font-family: var(--mono); font-size: .78rem; }
.modal__form { display: flex; flex-direction: column; gap: 1rem; }
.modal__form label { display: flex; flex-direction: column; gap: .35rem; font-size: .82rem; font-weight: 600; color: var(--ink-dim); }
.modal__form input { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: .75rem .9rem; color: var(--ink); font-family: var(--body); font-size: .95rem; }
.modal__form input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(252,125,58,.15); }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal__ordersum { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; font-family: var(--mono); font-size: .82rem; color: var(--ink-dim); display: flex; flex-direction: column; gap: .4rem; }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--lime); color: #0a1400; font-weight: 700; padding: .9rem 1.5rem; border-radius: var(--radius); z-index: 300; box-shadow: var(--glow-lime); transition: transform .35s cubic-bezier(.34,1.56,.64,1); font-size: .92rem; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- legal / policy pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 8.5rem 1.5rem 4rem; }
.legal h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: .95; margin-bottom: .4rem; }
.legal .updated { font-family: var(--mono); font-size: .8rem; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2.2rem; }
.legal h2 { font-family: var(--body); font-weight: 800; font-size: 1.15rem; margin: 2.2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink-dim); font-size: .98rem; }
.legal p + p { margin-top: .6rem; }
.legal ul { padding-left: 1.2rem; display: grid; gap: .45rem; margin: .6rem 0; }
.legal a { color: var(--red); }
.legal a:hover { text-decoration: underline; }
.legal .callout { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.4rem 0; }

/* ---------- footer policy links ---------- */
.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; margin-top: 1.2rem; font-size: .85rem; }
.footer__links a { color: var(--ink-faint); font-weight: 600; }
.footer__links a:hover { color: var(--red); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .hero__stats { gap: 1.6rem; }
  .modal__row { grid-template-columns: 1fr; }

  /* store: 2 columnas con tarjetas compactas */
  .store__grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .pcard__body { padding: .75rem .7rem .85rem; }
  .pcard__cat { font-size: .56rem; letter-spacing: .06em; }
  .pcard__name { font-size: .92rem; margin: .25rem 0 .4rem; line-height: 1.25; }
  .pcard__verdict { font-size: .74rem; padding-left: .5rem; margin-bottom: .75rem; }
  .pcard__foot { flex-direction: column; align-items: stretch; gap: .55rem; }
  .pcard__price { font-size: 1.45rem; }
  .pcard__price s { font-size: .78rem; margin-left: .3rem; }
  .pcard__add { width: 100%; padding: .68rem .8rem; font-size: .84rem; }
  .pcard__score { top: .5rem; right: .5rem; font-size: .82rem; padding: .1em .4em .05em; }
  .pcard__stamp { top: .5rem; left: .5rem; font-size: .54rem; padding: .22em .45em; }

  /* hall of shame: 2 columnas compactas */
  .rejected__grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .rcard__body { padding: .7rem .7rem .85rem; }
  .rcard__name { font-size: .9rem; margin-bottom: .3rem; line-height: 1.25; }
  .rcard__why { font-size: .74rem; }
  .rcard__score { top: .5rem; right: .5rem; font-size: .82rem; padding: .1em .4em .05em; }
  .rcard__stamp { top: .5rem; left: .5rem; font-size: .54rem; padding: .22em .45em; }
}
