/* ============================================================
   ITmarkt — home: hero + zwevende glazen aanbiedingen
   ============================================================ */

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
}

/* Hero */
.hero {
  text-align: center;
  padding: clamp(16px, 5vh, 56px) 20px 8px;
  max-width: 820px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 0 0 rgba(0, 212, 200, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 200, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(0, 212, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 200, 0); }
}
.hero h1 {
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(110deg, var(--c-teal), var(--c-blue) 40%, var(--c-violet) 70%, var(--c-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   CONVEYOR — glazen vakjes die voorbijdrijven
   ------------------------------------------------------------ */
.conveyor {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  margin-top: clamp(20px, 5vh, 60px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.lane {
  display: flex;
  gap: 26px;
  padding: 30px 13px;
  width: max-content;
  animation: marquee 46s linear infinite;
  will-change: transform;
}
.conveyor:hover .lane { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Een glazen vakje = aanbieding */
.tile {
  position: relative;
  flex: 0 0 auto;
  width: 290px;
  height: 364px;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  backdrop-filter: blur(24px) saturate(165%);
  border: 1px solid var(--glass-stroke);
  box-shadow:
    var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  animation: bob 7s ease-in-out infinite;
}
.tile:nth-child(2n) { animation-duration: 8.5s; animation-delay: -1.5s; }
.tile:nth-child(3n) { animation-duration: 6.2s; animation-delay: -3s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Gekleurde gloed per tegel (via --accent) */
.tile::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 70%;
  background: radial-gradient(60% 80% at 50% 0%, var(--accent), transparent 70%);
  opacity: 0.55;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.45s;
}

.tile:hover {
  transform: translateY(-16px) scale(1.035);
  border-color: var(--glass-stroke-bright);
  box-shadow:
    0 40px 80px -28px rgba(3, 5, 20, 0.9),
    0 0 0 1px var(--glass-stroke-bright),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.tile:hover::before { opacity: 0.85; }

.tile__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.tile__icon {
  margin: 18px 0 auto;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.tile__icon svg { width: 32px; height: 32px; }

.tile__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.tile__tagline {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.45;
  margin-top: 7px;
}
.tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.tile__cta svg { transition: transform 0.3s var(--ease); }
.tile:hover .tile__cta svg { transform: translateX(4px); }

/* Footer hint */
.foot {
  text-align: center;
  padding: 14px 20px 26px;
  font-size: 13px;
  color: var(--ink-faint);
}

@media (max-width: 560px) {
  .tile { width: 240px; height: 330px; }
  .nav-pill { display: none; }
}
