/* ─────────────────────────────────────────────
   WAT EEN K#T SPEL — design tokens
   ───────────────────────────────────────────── */
:root {
  --bg: #0f0614;
  --bg-2: #1a0a1f;
  --ink: #f7f4ee;
  --dim: rgba(247, 244, 238, 0.62);
  --purple: #6a1b4d;
  --magenta: #c8137b;
  --magenta-hot: #ff2a8a;
  --yellow: #ffd200;
  --yellow-soft: #ffe45c;
  --orange: #ff8a2b;
  --green: #49c26b;
  --blue: #29a4e0;
  --red: #e11d2e;
  --edge: rgba(255, 255, 255, 0.08);

  --font-display: "Bangers", "Permanent Marker", system-ui, sans-serif;
  --font-brush: "Permanent Marker", cursive;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --pad: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 18px;
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ol, ul { margin: 0; padding-left: 1.1rem; }

/* ─── utility ─── */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--magenta-hot);
  margin: 0 0 1rem;
}
.section-head { max-width: 880px; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}
.section-head h2 em {
  font-family: var(--font-brush);
  font-style: normal;
  color: var(--yellow);
  -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}
.section-head.light h2 em { color: var(--magenta-hot); }
.dim { color: var(--dim); }

/* ─── nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  background: rgba(15, 6, 20, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--edge);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__logo .hash { color: var(--magenta-hot); }
.nav__links { display: flex; gap: 1.75rem; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--dim);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 22px rgba(255, 210, 0, 0.22);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 210, 0, 0.35); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { padding: 0.55rem 0.85rem; font-size: 0.78rem; }
}

/* sticky mobile-only CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 40;
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 36px rgba(255, 210, 0, 0.4), 0 4px 12px rgba(0,0,0,0.4);
  align-items: center; justify-content: space-between;
  transform: translateY(200%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__label { font-size: 0.95rem; }
.sticky-cta__price { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .nav__cta { display: none; } /* avoid duplicate CTA on mobile — sticky handles it */
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 6rem var(--pad) 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 1fr;
    padding: 7rem var(--pad) 4rem;
    gap: 3rem;
  }
}
.hero__bg {
  position: absolute; inset: -10%;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(200, 19, 123, 0.35), transparent 70%),
    radial-gradient(50% 60% at 85% 60%, rgba(255, 42, 138, 0.22), transparent 70%),
    radial-gradient(40% 40% at 50% 100%, rgba(255, 210, 0, 0.15), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: hue 24s ease-in-out infinite alternate;
}
@keyframes hue {
  0% { filter: blur(30px) hue-rotate(0deg); }
  100% { filter: blur(30px) hue-rotate(30deg); }
}
.hero__drip {
  position: absolute; width: 3px; background: var(--magenta-hot);
  border-radius: 0 0 4px 4px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.hero__drip.drip-1 { top: 0; left: 12%; height: 120px; animation: drip 5s ease-out infinite; }
.hero__drip.drip-2 { top: 0; right: 18%; height: 80px; background: var(--yellow); animation: drip 7s ease-out infinite 1.2s; }
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; }
}

.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 1.5rem;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 210, 0, 0.4);
  border-radius: 999px;
  background: rgba(255, 210, 0, 0.06);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.88;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__title .line { display: block; }
.hero__title .line-row {
  display: flex;
  align-items: baseline;
  gap: 0.22em;
  flex-wrap: wrap;
}
.hero__title .title-big {
  font-size: 1.15em;
  color: var(--ink);
  text-shadow:
    4px 4px 0 var(--magenta),
    -2px -2px 0 rgba(255, 42, 138, 0.4);
}
.hero__title .hash-big { color: var(--magenta-hot); }
.hero__title .title-yellow {
  color: var(--yellow);
  -webkit-text-stroke: 2px rgba(0,0,0,0.15);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 42ch;
  margin: 0 0 2.2rem;
  line-height: 1.5;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.05rem 1.6rem;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .2s;
  line-height: 1;
  text-align: center;
}
.btn--primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 10px 30px rgba(255, 210, 0, 0.3);
}
.btn--primary:hover { transform: translateY(-3px) rotate(-0.5deg); box-shadow: 0 14px 36px rgba(255, 210, 0, 0.48); }
.btn__sub { font-size: 0.7rem; font-weight: 500; opacity: 0.6; margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--edge);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
}
.btn--ghost:hover { border-color: var(--magenta-hot); color: var(--magenta-hot); }

.btn--huge { padding: 1.35rem 2rem; font-size: 1.1rem; width: 100%; }

/* hero card-stack (tappable deck) */
.hero__stage {
  position: relative;
  perspective: 1200px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 1rem 2.5rem;
}
.hero__stage::before {
  content: "";
  position: absolute; inset: 5% -5% -5% -5%;
  background: radial-gradient(closest-side, rgba(255, 138, 43, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.deck {
  position: relative;
  width: min(72vw, 300px);
  aspect-ratio: 5 / 7;
  transform-style: preserve-3d;
}
.game-card {
  position: absolute; inset: 0;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(155deg, #ffc24d 0%, #ff8a1a 50%, #e96a00 100%);
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 -2px 0 rgba(0,0,0,0.1) inset;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .8s cubic-bezier(.2,.85,.3,1.05), box-shadow .4s ease;
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
/* spray-paint drip texture overlay */
.game-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.45), transparent 18%),
    radial-gradient(circle at 82% 92%, rgba(0,0,0,0.25), transparent 30%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
/* yellow drip from top */
.game-card::after {
  content: "";
  position: absolute;
  top: -2px; right: 20%;
  width: 24%; height: 45%;
  background: linear-gradient(180deg, #ffdd44 0%, #ffb347 60%, transparent 100%);
  border-radius: 0 0 40% 40% / 0 0 60% 60%;
  opacity: 0.45;
  filter: blur(1px);
  pointer-events: none;
}
.game-card__cat {
  font-family: var(--font-brush);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.18);
  position: relative; z-index: 1;
  margin-top: 0.8rem;
  padding-right: 1rem;
}
.game-card__q {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.25rem, 4.2vw, 1.6rem);
  line-height: 1.3;
  color: #111;
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin: 0;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  align-self: center;
  justify-self: start;
  position: relative; z-index: 1;
  max-width: 100%;
}
.game-card__tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
  align-self: end;
  justify-self: end;
  position: relative; z-index: 1;
}

/* stack positions (top card = idx 0) — pure CSS fan */
.game-card[data-idx="0"] { transform: translate(0, 0)    rotate(-3deg); z-index: 5; }
.game-card[data-idx="1"] { transform: translate(6%, 3%)  rotate(4deg);  z-index: 4; }
.game-card[data-idx="2"] { transform: translate(-5%, 5%) rotate(-7deg); z-index: 3; }
.game-card[data-idx="3"] { transform: translate(4%, 7%)  rotate(8deg);  z-index: 2; }
.game-card[data-idx="4"] { transform: translate(-3%, 9%) rotate(-10deg);z-index: 1; }

/* when the top card flies out, JS adds .is-flying */
.game-card.is-flying {
  transform: translate(55%, 40%) rotate(18deg) scale(.92) !important;
  opacity: 0;
  transition: transform .55s cubic-bezier(.6,.1,.4,1), opacity .45s ease;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--magenta-hot), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* hero title sizing – smaller on mobile so title + first card fit above fold */
@media (max-width: 899px) {
  .hero__title { font-size: clamp(4rem, 18vw, 7rem); }
  .hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; padding: 0.35rem 0.7rem; }
  .hero__sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .btn--primary { padding: 0.95rem 1.3rem; }
  .hero__scroll { display: none; } /* no room on mobile */
  .hero { padding-bottom: 4.5rem; }
}

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee {
  background: var(--magenta);
  color: #fff;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transform: rotate(-1.5deg);
  margin: 2.5rem 0 1rem;
  position: relative;
  z-index: 1;
}
.marquee__track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
}
.marquee__track .dot { color: var(--yellow); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   CATEGORIEËN
   ───────────────────────────────────────────── */
.cats {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .cats__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.cat-card {
  --c1: #e96a00;
  --c2: #ffa04d;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.5rem;
  min-height: 340px;
  background: linear-gradient(155deg, var(--c2) 0%, #ff8a1a 50%, var(--c1) 100%);
  color: #fff;
  display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow:
    0 22px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.12) inset;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat-card:nth-child(2) { transform: rotate(1deg); }
.cat-card:nth-child(3) { transform: rotate(-1.5deg); }
.cat-card:hover { transform: translateY(-6px) rotate(-0.8deg); box-shadow: 0 30px 50px rgba(0,0,0,0.5); }
.cat-card__spray {
  position: absolute; inset: -10% -10% auto auto;
  width: 80%; height: 60%;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.35), transparent 22%),
    radial-gradient(circle at 80% 92%, rgba(0,0,0,0.18), transparent 35%),
    radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}
/* yellow drip on category cards */
.cat-card header::after {
  content: "";
  position: absolute;
  top: -2px; left: 18%;
  width: 26%; height: 40%;
  background: linear-gradient(180deg, #ffdd44 0%, #ffb347 60%, transparent 100%);
  border-radius: 0 0 40% 40% / 0 0 60% 60%;
  opacity: 0.35;
  filter: blur(1px);
  pointer-events: none;
}
.cat-card header { position: relative; }
.cat-tag {
  font-family: var(--font-brush);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1;
  display: block;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18);
  position: relative; z-index: 1;
}
.cat-q {
  background: #fff; color: #111;
  font-weight: 800; font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.3;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  align-self: flex-start;
  max-width: 100%;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  position: relative; z-index: 1;
  margin: 0;
}
.cat-card footer {
  font-size: 0.88rem;
  opacity: 0.92;
  line-height: 1.45;
  margin-top: auto;
  position: relative; z-index: 1;
}
.cat-card footer em { color: #111; background: var(--yellow); padding: 0 0.25em; border-radius: 3px; font-style: normal; font-weight: 700; }

.cats__footnote {
  text-align: center;
  max-width: 560px; margin: 3rem auto 0;
  color: var(--dim);
  font-size: 0.95rem;
}
.cats__footnote strong { color: var(--yellow); font-weight: 800; }

/* ─────────────────────────────────────────────
   USP
   ───────────────────────────────────────────── */
.usp {
  background: linear-gradient(180deg, var(--magenta) 0%, var(--purple) 100%);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  position: relative;
}
.usp .section-head h2 em { color: var(--yellow); }
.usp .eyebrow { color: var(--yellow); }
.usp__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .usp__grid { grid-template-columns: 1fr; } }
.usp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  transition: transform .25s ease, border-color .25s ease;
}
.usp-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.usp-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.usp-card p { margin: 0; color: rgba(255,255,255,0.9); font-size: 1rem; }
.usp-card--accent {
  background: var(--yellow);
  color: #111;
  border-color: transparent;
  transform: rotate(-1deg);
}
.usp-card--accent h3 { color: #111; }
.usp-card--accent .usp-num { color: var(--magenta); text-shadow: 3px 3px 0 rgba(0,0,0,0.1); }
.usp-card--accent p { color: #222; }

/* ─────────────────────────────────────────────
   RULES
   ───────────────────────────────────────────── */
.rules {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.rules__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (max-width: 800px) { .rules__grid { grid-template-columns: 1fr; } }
.rules-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 2rem 1.8rem;
}
.rules-col h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rules-col--do h3 { color: var(--yellow); }
.rules-col--warn h3 { color: var(--magenta-hot); }
.rules-col li { margin-bottom: 0.7rem; line-height: 1.5; }
.rules-col strong { color: var(--yellow); }
.rules-col em { color: var(--magenta-hot); font-style: normal; }

/* ─────────────────────────────────────────────
   QUOTES
   ───────────────────────────────────────────── */
.quotes {
  padding: 3rem var(--pad) 6rem;
  max-width: var(--max); margin: 0 auto;
}
.quotes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .quotes__grid { grid-template-columns: 1fr; } }
.quotes blockquote {
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--yellow);
  padding: 1.4rem 1.5rem;
  border-radius: 14px;
  position: relative;
}
.quotes blockquote:nth-child(2) { border-left-color: var(--magenta-hot); transform: rotate(-0.5deg); }
.quotes blockquote:nth-child(3) { border-left-color: var(--orange); }
.quotes p { margin: 0 0 0.8rem; font-size: 1rem; font-style: italic; line-height: 1.45; }
.quotes cite { color: var(--dim); font-size: 0.85rem; font-style: normal; }

/* ─────────────────────────────────────────────
   ORDER
   ───────────────────────────────────────────── */
.order {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  background: linear-gradient(160deg, #1e0a26 0%, #3b0a2a 100%);
  position: relative;
  overflow: hidden;
}
.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(255, 210, 0, 0.15), transparent 60%),
    radial-gradient(50% 50% at 80% 80%, rgba(200, 19, 123, 0.25), transparent 60%);
  pointer-events: none;
}
.order__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .order__inner { grid-template-columns: 1fr; } }
.order__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}
.order__copy h2 em {
  font-family: var(--font-brush);
  font-style: normal;
  color: var(--yellow);
}
.order__copy .lead { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 50ch; }
.order__bullets { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.order__bullets li { padding: 0.5rem 0; font-weight: 500; }
.tiny { font-size: 0.78rem; color: var(--dim); margin-top: 1.2rem; }

.order__card {
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: rotate(1.2deg);
  position: relative;
}
.order__card::after {
  content: "RUZIE-GARANTIE";
  position: absolute;
  top: -14px; right: 20px;
  background: var(--magenta-hot);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transform: rotate(4deg);
}
.order__price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; }
.order__price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--purple);
}
.order__price .cents { font-size: 1.8rem; vertical-align: super; }
.order__incl {
  font-size: 0.78rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  background: var(--magenta-hot);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transform: rotate(2deg);
  box-shadow: 0 4px 14px rgba(255, 42, 138, 0.45);
  white-space: nowrap;
}
.order__box { width: 70%; margin: 0 auto 1.2rem; filter: drop-shadow(0 14px 22px rgba(0,0,0,0.2)); }
.order__mini { font-size: 0.78rem; color: #555; text-align: center; margin: 1rem 0 0; line-height: 1.5; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.foot {
  background: #0a0410;
  padding: 3rem var(--pad) 2rem;
  border-top: 1px solid var(--edge);
}
.foot__cols {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--edge);
}
@media (max-width: 700px) { .foot__cols { grid-template-columns: 1fr; } }
.foot__logo { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 0.4rem; }
.foot__logo .hash { color: var(--magenta-hot); }
.foot__tag { margin: 0; color: var(--dim); font-size: 0.9rem; }
.foot__h { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.14em; color: var(--dim); margin: 0 0 0.8rem; }
.foot a { display: block; color: var(--ink); padding: 0.3rem 0; font-size: 0.92rem; transition: color .2s; }
.foot a:hover { color: var(--magenta-hot); }
.foot__copy { max-width: var(--max); margin: 1.5rem auto 0; font-size: 0.78rem; color: var(--dim); text-align: center; }

/* reveal: JS sets hidden state on load; without JS everything stays visible */
.js-ready [data-reveal] { opacity: 0; }

/* respect motion prefs */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
