/* ============================================
   RETRO RELICS COMICS — SHARED STYLESHEET
   ============================================ */

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

:root {
  --yellow: #FFC83D;          /* bold gold, slightly warmer than before */
  --yellow-deep: #E8A91E;
  --purple: #5B2A9D;          /* richer, more confident purple */
  --purple-dark: #221042;     /* deep base */
  --purple-mid: #2D1A52;
  --purple-deep: #160B2E;
  --pink: #FF4F7B;
  --sky: #8B6BD9;             /* shifted from blue to a soft purple for cohesion */
  --white: #FFFFFF;
  --offwhite: #F3EEFA;
  --text-muted: #C7BBDF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(255,200,61,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

main, nav, footer { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  background: rgba(34,16,66,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
}

.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-brand img { height: 44px; width: auto; border-radius: 4px; }
.nav-brand span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
}

.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--purple-deep) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--yellow-deep); color: var(--purple-deep) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--purple-deep);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 var(--yellow-deep);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--yellow-deep); color: var(--purple-deep); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--yellow-deep); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.8rem;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--yellow); background: rgba(255,200,61,0.08); color: var(--white); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.88; }

/* ── LAYOUT ── */
main { min-height: 60vh; }
section { padding: 5rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--purple-deep);
  background: var(--yellow);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 6.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
h1 .accent, h1 em { color: var(--yellow); font-style: normal; }

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--yellow);
  line-height: 1.04;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

p { color: var(--offwhite); margin-bottom: 1rem; }
a { color: var(--sky); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(180deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
  border-bottom: 3px solid var(--purple);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; color: var(--offwhite); }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,200,0,0.25);
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--yellow); padding: 0.75rem 2rem; overflow: hidden; }
.trust-bar-inner { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.trust-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item::before { content: '★'; color: var(--purple); }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,200,245,0.2);
  border-radius: 6px;
}
.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0 var(--purple);
}
.step h3 { color: var(--sky); }
.step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── BUY GRID ── */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.buy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(107,33,200,0.2);
  border: 1px solid rgba(107,33,200,0.4);
  border-radius: 6px;
}
.buy-item-dot { width: 10px; height: 10px; min-width: 10px; background: var(--yellow); border-radius: 50%; margin-top: 6px; }
.buy-item p { color: var(--white); margin: 0; font-size: 0.95rem; }

/* ── FORM ── */
form { display: flex; flex-direction: column; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.8rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: 0.3rem;
}
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  padding: 0.65rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--yellow); }
select option { background: var(--purple-dark); color: var(--white); }
textarea { resize: vertical; min-height: 100px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,200,0,0.2);
  border-radius: 6px;
  padding: 1.75rem;
}
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--offwhite); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }
.reviewer { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: 0.08em; color: var(--sky); font-size: 0.9rem; }
.verified { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid rgba(107,33,200,0.4); border-radius: 4px; overflow: hidden; }
.faq-q {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(107,33,200,0.25); }
.faq-q.open { background: rgba(107,33,200,0.3); color: var(--yellow); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; background: rgba(255,255,255,0.02); }
.faq-a.open { display: block; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,33,200,0.35);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.blog-card-body { padding: 1.25rem 1.5rem; }
.blog-tag { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--pink); margin-bottom: 0.5rem; display: block; }
.blog-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 0.5rem; letter-spacing: 0; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── SHOP ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(107,33,200,0.4);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.product-img {
  height: 240px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  color: rgba(245,200,0,0.3);
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-era { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--sky); margin-bottom: 0.4rem; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; color: var(--yellow); margin: 0.5rem 0 1rem; }
.product-card .btn-primary { margin-top: auto; text-align: center; font-size: 1rem; padding: 0.6rem 1rem; }

/* ── INFO / PROSE ── */
.prose p { margin-bottom: 1.25rem; line-height: 1.8; }
.prose h2 { margin-top: 2.5rem; }
.prose ul { margin: 0 0 1.25rem 1.25rem; color: var(--offwhite); }
.prose li { margin-bottom: 0.5rem; }
.quote-block {
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.contact-method { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-method a { color: var(--white); text-decoration: none; }
.contact-method a:hover { color: var(--yellow); }

/* ── ALT SECTION BACKGROUNDS ── */
.bg-mid { background: var(--purple-mid); }
.bg-dark { background: var(--purple-dark); }

/* ── FOOTER ── */
footer { background: var(--purple-deep); border-top: 3px solid var(--purple); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(107,33,200,0.3); margin-bottom: 1.5rem; }
.footer-brand img { height: 56px; border-radius: 4px; margin-bottom: 1rem; }
.footer-about { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: 0.1em; color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(107,33,200,0.3); border: 1px solid rgba(107,33,200,0.5); color: var(--white); text-decoration: none; font-size: 0.8rem; padding: 0.4rem 0.8rem; border-radius: 4px; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: 0.08em; transition: background 0.2s, border-color 0.2s; }
.social-link:hover { background: var(--purple); border-color: var(--yellow); color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--purple); padding: 1rem 2rem 1.5rem; border-bottom: 3px solid var(--yellow); gap: 1rem; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3.5rem 1.25rem; }
  .nav-brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================
   ANIMATED ELEMENTS
   ============================================ */

/* ── ANNOUNCEMENT TICKER (top of every page) ── */
.announcement-bar {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.55rem 0;
  position: relative;
  z-index: 101;
}
.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before { left: 0; background: linear-gradient(to right, var(--yellow), transparent); }
.announcement-bar::after { right: 0; background: linear-gradient(to left, var(--yellow), transparent); }

.announcement-track {
  display: flex;
  width: max-content;
  animation: announcement 30s linear infinite;
}
.announcement-track:hover { animation-play-state: paused; }

@keyframes announcement {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--purple-dark);
  padding: 0 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.announcement-item::before { content: '★'; color: var(--purple); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ── ANIMATED HERO NUMBER COUNTER ── */
.stat-counter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--purple);
  line-height: 1;
}

/* ── GLOWING BUTTON PULSE ── */
.btn-primary {
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  background: var(--yellow);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(8px);
}
.btn-primary:hover::after { opacity: 0.4; }

/* ── CARD HOVER GLOW ── */
.card {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(107,33,200,0.35);
}

/* ── FLOATING COMIC ELEMENTS (hero decoration) ── */
.hero-float {
  position: absolute;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  z-index: 0;
}
.hero-float-1 { font-size: 12rem; color: var(--yellow); top: 5%; left: -2%; animation: float1 8s ease-in-out infinite; }
.hero-float-2 { font-size: 8rem; color: var(--purple); top: 60%; right: -1%; animation: float2 10s ease-in-out infinite; }
.hero-float-3 { font-size: 10rem; color: var(--yellow); bottom: 5%; left: 40%; animation: float1 12s ease-in-out infinite reverse; }

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(15px) rotate(-5deg); }
}

/* ── MOVING HALFTONE BACKGROUND ── */
@keyframes halftone-drift {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}
body::before {
  animation: halftone-drift 8s linear infinite;
}

/* ── NAV LINK UNDERLINE ANIMATION ── */
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }

/* ── STEP NUMBER BOUNCE ON HOVER ── */
.step:hover .step-number {
  animation: bounce 0.4s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  70% { transform: translateY(-4px); }
}

/* ── TRUST BAR SCROLL ── */
.trust-bar-inner {
  animation: trust-scroll 20s linear infinite;
  width: max-content;
}
.trust-bar-inner:hover { animation-play-state: paused; }
@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── COMIC PANEL FLASH ON LOAD ── */
@keyframes panel-flash {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0% 0 0); }
}
.hero-inner {
  animation: panel-flash 0.6s ease forwards;
}

/* ── MOBILE: reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   SIGNATURE STAMP — Retro Relics authentication seal
   Reusable brand motif. Drop <div class="rr-stamp">…</div>
   ============================================ */
.rr-stamp {
  width: 120px;
  height: 120px;
  display: inline-block;
  animation: rr-spin 26s linear infinite;
}
.rr-stamp.sm { width: 76px; height: 76px; }
.rr-stamp.lg { width: 160px; height: 160px; }
@keyframes rr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rr-stamp { animation: none; } }
.rr-stamp .rr-ring-text { fill: var(--yellow); font-family: 'Bricolage Grotesque', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.rr-stamp .rr-core { fill: none; stroke: var(--yellow); stroke-width: 2; }
.rr-stamp .rr-mid { fill: var(--yellow); font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.rr-stamp .rr-star { fill: var(--yellow); }

/* photo frame — styled slot for real photography */
.photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.88; }
/* shading so the photo sits behind the message, not in front of it */
.photo-frame .frame-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(34,16,66,0.45) 0%, rgba(34,16,66,0.05) 35%, rgba(34,16,66,0.6) 100%),
    radial-gradient(circle at 70% 40%, transparent 40%, rgba(34,16,66,0.35) 100%);
  pointer-events: none;
}
.photo-frame .frame-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(22,11,46,0.92));
  padding: 46px 20px 18px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--yellow);
  z-index: 2;
}

/* ── HOME HERO (two-column with photo + stamp) ── */
.home-hero { padding-bottom: 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-showcase { position: relative; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-showcase { max-width: 330px; margin: 0 auto; order: -1; }
  .home-hero { text-align: left; }
}
