/* Slatebrooks - Neo-Brutalist sample label, Brunswick Melbourne */

:root {
  --bg: #F1E9D6;
  --ink: #0F0E0E;
  --pink: #FF3D7F;
  --cyan: #39C7E0;
  --marigold: #F5C13D;
  --lime: #C9E847;
  --paper: #FAF4E2;
  --shadow: rgba(15, 14, 14, .14);
  --max: 1240px;
  --r: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Noise overlay */
.noise {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 50;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.42; mix-blend-mode: multiply;
}

/* Typography */
h1, h2, h3, h4, .hero-title, .section-title, .bundle-title, .display {
  font-family: "Bagel Fat One", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.eyebrow, .label, .product-kind, .nav-links a, .footer-col h4,
.proof-cell strong, .review-stars, .bundle-badge, .cassette-side,
.cassette-meta, .cassette-title {
  font-family: "VT323", "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--ink); color: var(--marigold);
  padding: 6px 14px; border-radius: 999px;
  font-size: 15px; line-height: 1; margin-bottom: 22px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
}
.eyebrow .dot {
  width: 9px; height: 9px; background: var(--lime); border-radius: 50%;
  animation: blink 1.4s ease infinite;
}
@keyframes blink { 0%, 49% { opacity: 1 } 50%, 100% { opacity: .2 } }

/* Sticker word highlight */
.sticker {
  display: inline-block;
  padding: 2px 14px 4px;
  margin: 0 4px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  transform: rotate(-2.5deg);
  font-family: "Bagel Fat One", sans-serif;
}
.sticker-pink { background: var(--pink); color: var(--paper); box-shadow: 4px 4px 0 var(--ink); transform: rotate(-3deg); }
.sticker-cyan { background: var(--cyan); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(3deg); }
.sticker-marigold { background: var(--marigold); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(-2deg); }
.sticker-lime { background: var(--lime); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(2deg); }

/* Hand-drawn underline */
.underline-it {
  position: relative; display: inline-block;
}
.underline-it svg {
  position: absolute; left: 0; bottom: -10px; width: 100%; height: 12px;
  color: var(--pink);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 16px;
  padding: 14px 28px;
  background: var(--pink); color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(0, 0); box-shadow: 3px 3px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.btn-lg { padding: 18px 34px; font-size: 18px; }
.btn-sm { padding: 9px 18px; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); }
.btn-sm:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn-full { width: 100%; }
.btn-ghost { background: var(--paper); color: var(--ink); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 2.5px solid var(--ink);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Bagel Fat One", sans-serif; font-size: 24px; color: var(--ink);
}
.nav-logo-mark { color: var(--pink); display: inline-flex; }
.nav-links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  font-size: 16px;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* HERO */
.hero { padding: 70px 0 80px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.hero-title {
  font-size: clamp(44px, 6.4vw, 78px);
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 19px; max-width: 540px; color: #1a1916;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border-top: 2.5px solid var(--ink); padding-top: 22px;
}
.proof-cell strong {
  display: block; font-family: "Bagel Fat One", sans-serif;
  font-size: 30px; line-height: 1; margin-bottom: 4px;
  letter-spacing: 0;
}
.proof-cell span { font-size: 13px; color: #3b3833; font-family: "Space Grotesk", sans-serif; text-transform: none; letter-spacing: 0; }

.hero-art {
  position: relative;
  display: grid; grid-template-rows: auto auto; gap: 22px;
}
.hero-photo {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: 10px 10px 0 var(--cyan);
}

/* CASSETTE WIDGET */
.cassette {
  background: var(--ink); border: 2.5px solid var(--ink);
  border-radius: var(--r); padding: 18px;
  box-shadow: 10px 10px 0 var(--pink);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.cassette-body {
  background: linear-gradient(180deg, #1a1916 0%, #0F0E0E 100%);
  border-radius: 10px; padding: 18px 22px;
  position: relative;
}
.cassette-label {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 14px; font-size: 15px;
}
.cassette-side { background: var(--pink); color: var(--ink); padding: 2px 8px; border-radius: 4px; font-weight: 700; }
.cassette-title { color: var(--marigold); }
.cassette-meta { color: #aaa097; }
.cassette-window {
  height: 90px; background: #211f1c; border-radius: 6px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.reel {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle, #2a2825 0%, #0f0e0e 70%);
  border: 2px solid #4a443e;
  position: relative;
  animation: spin 4s linear infinite;
}
.reel-spokes {
  position: absolute; inset: 14px; border-radius: 50%;
  background:
    conic-gradient(from 0deg, #645c52 0deg 5deg, transparent 5deg 90deg,
                              #645c52 90deg 95deg, transparent 95deg 180deg,
                              #645c52 180deg 185deg, transparent 185deg 270deg,
                              #645c52 270deg 275deg, transparent 275deg 360deg);
}
.reel::before {
  content: ""; position: absolute; inset: 26px; border-radius: 50%;
  background: var(--marigold);
}
.cassette-tape {
  position: absolute; left: 32px; right: 32px; top: 48px; height: 2px;
  background: var(--marigold);
  opacity: .7;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cassette-bottom {
  display: flex; justify-content: space-around; margin-top: 14px;
}
.cassette-bottom span {
  width: 12px; height: 12px; border-radius: 50%;
  background: #2a2825; border: 1.5px solid #4a443e;
}

/* EQ bars */
.eq {
  display: flex; gap: 5px; justify-content: space-between;
  padding: 16px 4px 4px;
  height: 70px; align-items: flex-end;
}
.eq span {
  flex: 1; background: var(--pink);
  border-radius: 3px 3px 0 0;
  animation: wave 1.1s ease-in-out infinite;
}
.eq span:nth-child(1) { animation-delay: 0s; background: var(--pink); }
.eq span:nth-child(2) { animation-delay: .1s; background: var(--cyan); }
.eq span:nth-child(3) { animation-delay: .2s; background: var(--marigold); }
.eq span:nth-child(4) { animation-delay: .3s; background: var(--lime); }
.eq span:nth-child(5) { animation-delay: .05s; background: var(--pink); }
.eq span:nth-child(6) { animation-delay: .15s; background: var(--cyan); }
.eq span:nth-child(7) { animation-delay: .25s; background: var(--marigold); }
.eq span:nth-child(8) { animation-delay: .35s; background: var(--lime); }
.eq span:nth-child(9) { animation-delay: .12s; background: var(--pink); }
.eq span:nth-child(10) { animation-delay: .22s; background: var(--cyan); }
.eq span:nth-child(11) { animation-delay: .32s; background: var(--marigold); }
.eq span:nth-child(12) { animation-delay: .08s; background: var(--lime); }
@keyframes wave {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

/* MARQUEE */
.marquee {
  background: var(--ink); color: var(--paper);
  border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  overflow: hidden; padding: 16px 0;
}
.marquee-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  font-family: "VT323", monospace; font-size: 26px; letter-spacing: 0.04em;
  animation: marquee 38s linear infinite;
}
.marquee-track span:nth-child(4n+1) { color: var(--pink); }
.marquee-track span:nth-child(4n+2) { color: var(--cyan); }
.marquee-track span:nth-child(4n+3) { color: var(--marigold); }
.marquee-track span:nth-child(4n+4) { color: var(--lime); }
.marquee-track span::after { content: " /"; color: var(--paper); margin-left: 14px; opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION HEAD */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.label {
  display: inline-block; font-size: 15px;
  background: var(--ink); color: var(--lime);
  padding: 4px 12px; border-radius: 4px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(34px, 4.4vw, 56px);
  margin: 0 0 16px;
}
.section-sub { font-size: 18px; max-width: 620px; color: #2a2825; }

/* PRODUCT GRID */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.product-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:nth-child(1) { box-shadow: 8px 8px 0 var(--pink); transform: translateY(0); }
.product-card:nth-child(2) { box-shadow: 8px 8px 0 var(--cyan); transform: translateY(22px); }
.product-card:nth-child(3) { box-shadow: 8px 8px 0 var(--marigold); transform: translateY(44px); }
.product-card:nth-child(4) { box-shadow: 8px 8px 0 var(--lime); transform: translateY(66px); }
.product-card:nth-child(1):hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--pink); }
.product-card:nth-child(2):hover { transform: translate(-3px, 19px); box-shadow: 12px 12px 0 var(--cyan); }
.product-card:nth-child(3):hover { transform: translate(-3px, 41px); box-shadow: 12px 12px 0 var(--marigold); }
.product-card:nth-child(4):hover { transform: translate(-3px, 63px); box-shadow: 12px 12px 0 var(--lime); }
.product-image {
  aspect-ratio: 4/5; overflow: hidden;
  border-bottom: 2.5px solid var(--ink);
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px 22px 22px; }
.product-kind {
  font-size: 13px; color: var(--ink); opacity: .7;
  display: block; margin-bottom: 8px;
}
.product-name {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 22px; line-height: 1.15; margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.product-desc { font-size: 14.5px; color: #3a3833; min-height: 100px; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 14px; border-top: 1.5px solid var(--ink);
}
.product-price {
  font-family: "Bagel Fat One", sans-serif; font-size: 28px;
}
.product-price small {
  font-family: "VT323", monospace; font-size: 14px; margin-left: 5px; opacity: .7;
}
.product-buy {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  background: var(--ink); color: var(--paper);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px;
  border: 2px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-buy:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--pink);
}

/* BUNDLE */
.bundle { background: var(--ink); color: var(--paper); }
.bundle .label { background: var(--pink); color: var(--ink); }
.bundle .section-sub { color: #d3cdb7; }
.bundle-wrap {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center;
}
.bundle-media {
  position: relative;
}
.bundle-media img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border: 2.5px solid var(--paper);
  border-radius: var(--r);
  box-shadow: 12px 12px 0 var(--lime);
}
.bundle-badge {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  background: var(--marigold); color: var(--ink);
  padding: 14px 20px; border-radius: 999px;
  font-size: 18px;
  border: 2.5px solid var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
  transform: rotate(8deg);
}
.bundle-list {
  list-style: none; padding: 0; margin: 26px 0;
  border-top: 1.5px solid #3a3833;
}
.bundle-list li {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1.5px solid #3a3833;
  font-size: 17px;
}
.bundle-list li span:last-child { font-family: "VT323", monospace; color: var(--marigold); font-size: 22px; }
.bundle-price-row {
  display: flex; align-items: baseline; gap: 18px; margin: 20px 0 28px;
}
.bundle-price-now {
  font-family: "Bagel Fat One", sans-serif; font-size: 64px; color: var(--marigold);
}
.bundle-price-was {
  font-family: "VT323", monospace; font-size: 28px; color: #aaa097; text-decoration: line-through;
}
.bundle-save {
  font-family: "VT323", monospace; font-size: 18px;
  background: var(--lime); color: var(--ink);
  padding: 4px 10px; border-radius: 4px;
}
.bundle .btn { background: var(--lime); color: var(--ink); }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start;
}
.about-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: 10px 10px 0 var(--marigold);
  transform: rotate(1.5deg);
}
.about-values {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.about-values li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-top: 1.5px solid var(--ink);
}
.about-values li:last-child { border-bottom: 1.5px solid var(--ink); }
.about-values-num {
  font-family: "Bagel Fat One", sans-serif; font-size: 30px;
  color: var(--pink); flex-shrink: 0; min-width: 38px;
}
.about-values strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 18px; margin-bottom: 4px; }
.about-values span { color: #3a3833; font-size: 15.5px; }

/* REVIEWS */
.reviews { background: var(--paper); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review {
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:nth-child(6n+1) { box-shadow: 5px 5px 0 var(--pink); transform: rotate(-1deg); }
.review:nth-child(6n+2) { box-shadow: 5px 5px 0 var(--cyan); transform: rotate(1deg); }
.review:nth-child(6n+3) { box-shadow: 5px 5px 0 var(--marigold); transform: rotate(-0.6deg); }
.review:nth-child(6n+4) { box-shadow: 5px 5px 0 var(--lime); transform: rotate(0.6deg); }
.review:nth-child(6n+5) { box-shadow: 5px 5px 0 var(--cyan); transform: rotate(-1.2deg); }
.review:nth-child(6n+6) { box-shadow: 5px 5px 0 var(--pink); transform: rotate(1.2deg); }
.review:hover { transform: translate(-2px, -2px) rotate(0); box-shadow: 8px 8px 0 var(--ink); }
.review-stars { color: var(--marigold); margin-bottom: 12px; font-size: 16px; }
.review-text { font-size: 16px; margin: 0 0 18px; }
.review-meta strong { display: block; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 15px; }
.review-meta span { font-family: "VT323", monospace; font-size: 15px; color: #4a443e; }

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.contact-details {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-details li {
  display: flex; gap: 12px; align-items: center; font-size: 16px;
}
.contact-details a { border-bottom: 2px solid var(--pink); padding-bottom: 1px; }
.contact-form {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--cyan);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: "VT323", monospace; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink); border-radius: 8px;
  background: var(--bg); color: var(--ink);
  font-family: "Space Grotesk", sans-serif; font-size: 16px;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* FOOTER */
.footer { background: var(--ink); color: var(--paper); padding: 60px 0 30px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 38px; border-bottom: 1.5px solid #3a3833;
}
.footer-wordmark {
  font-family: "Bagel Fat One", sans-serif; font-size: 36px; color: var(--marigold);
  display: block; margin-bottom: 14px;
}
.footer-tagline { font-size: 15px; color: #c9c3ad; max-width: 340px; }
.footer-col h4 { font-size: 14px; color: var(--lime); margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--paper); font-size: 15px; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 14px; color: #aaa097;
}
.footer-bottom-inner p { margin: 0; }
.footer-legal-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; }
.footer-legal-links a { color: #aaa097; font-size: 14px; }
.footer-legal-links a:hover { color: var(--pink); }
.footer-minimal { padding: 28px 0; }
.footer-minimal .footer-bottom-inner { padding-top: 0; border: none; }

/* LEGAL PAGES */
.legal-page { padding: 70px 0 100px; }
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(36px, 4.6vw, 56px); margin: 0 0 12px; }
.legal-content h2 { font-size: 24px; margin: 38px 0 12px; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.legal-content p, .legal-content li { font-size: 16px; line-height: 1.65; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--ink); border-bottom: 2px solid var(--pink); }
.legal-updated {
  font-family: "VT323", monospace; font-size: 17px; color: #4a443e;
  margin: 0 0 26px; display: inline-block;
  background: var(--paper); border: 2px solid var(--ink);
  padding: 4px 12px; border-radius: 6px;
  box-shadow: 3px 3px 0 var(--cyan);
}

/* RESULT PAGES (success/cancel) */
.result-page { padding: 80px 0 100px; min-height: 60vh; }
.result-content { max-width: 620px; margin: 0 auto; text-align: center; }
.result-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; margin: 0 auto 26px;
  border: 2.5px solid var(--ink); border-radius: 50%;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--pink);
}
.result-content h1 { font-size: clamp(40px, 5vw, 62px); margin: 0 0 14px; }
.result-sub { font-size: 18px; color: #2a2825; margin: 0 0 32px; }
.result-details {
  text-align: left;
  background: var(--paper); border: 2.5px solid var(--ink);
  border-radius: var(--r); padding: 24px 28px;
  box-shadow: 6px 6px 0 var(--cyan);
  margin-bottom: 28px;
}
.result-detail-row {
  font-family: "VT323", monospace; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px; color: var(--ink);
}
.result-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.result-steps li { display: flex; gap: 12px; align-items: center; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Bagel Fat One", sans-serif; flex-shrink: 0;
  font-size: 15px;
}
.result-actions { display: flex; justify-content: center; }

/* REVEAL */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(3) { transform: translateY(0); }
  .product-card:nth-child(4) { transform: translateY(22px); }
  .product-card:nth-child(3):hover { transform: translate(-3px, -3px); }
  .product-card:nth-child(4):hover { transform: translate(-3px, 19px); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { padding: 50px 0 60px; }
  .hero-grid, .bundle-wrap, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { transform: none !important; }
  .product-card:hover { transform: translate(-3px, -3px) !important; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .nav-logo-text { font-size: 21px; }
  .marquee-track { font-size: 22px; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel, .eq span, .marquee-track, .eyebrow .dot { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
