/* ============================================================
   AZIST — CREATIVE HUB
   ============================================================ */

/* PAGE HERO (dark) ------------------------------------------ */
.ch-hero {
  min-height: 80vh;   /* taller hero so the cards section starts below the fold and reveals on scroll (matches Slide Center behavior) */
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-height) + clamp(64px, 8vw, 100px));
  padding-bottom: clamp(52px, 6vw, 88px);   /* tighter bottom cut — reduces the hero→cards gap (matches Slide Center) */
  background-color: var(--color-black);
  /* Animated moving gradient — dark base, drifting blue / purple / sky */
  background-image:
    radial-gradient(45% 55% at 20% 30%, rgba(65,100,254,0.30), transparent 60%),
    radial-gradient(42% 50% at 80% 66%, rgba(206,166,252,0.20), transparent 60%),
    radial-gradient(40% 48% at 60% 24%, rgba(125,196,255,0.16), transparent 60%);
  background-size: 200% 200%;
  animation: ch-hero-drift 18s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}
/* DECO — sistema Elementos SVG */
.ch-hero__deco {
  position: absolute;
  left: -1%;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(180px, 28vh, 320px);
  width: auto;
  z-index: 0;
  pointer-events: none;
}
.ch-hero__deco-img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.9;
}
.ch-hero__ghost {
  top: -10%;
  right: -4%;
  color: rgba(255,255,255,0.03);
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  font-size: clamp(100px, 16vw, 200px);
}
.ch-hero__content {
  position: relative;
  z-index: 1;
}
.ch-hero__title {
  font-family: var(--font-frama);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  width: fit-content;                       /* hover target hugs the text */
  transition: color 0.35s var(--ease-out);
}
.ch-hero__title:hover { color: var(--color-blue); }

/* Thin geometric grid behind the title — draws itself in on title hover */
.ch-hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.ch-hero__grid line {
  stroke: var(--color-blue);
  stroke-width: 1;
  stroke-opacity: 0.12;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 0.9s var(--ease-out);
}
.ch-hero:has(.ch-hero__title:hover) .ch-hero__grid line { stroke-dashoffset: 0; }
.ch-hero__grid line:nth-child(2) { transition-delay: 0.05s; }
.ch-hero__grid line:nth-child(3) { transition-delay: 0.10s; }
.ch-hero__grid line:nth-child(4) { transition-delay: 0.15s; }
.ch-hero__grid line:nth-child(5) { transition-delay: 0.20s; }
.ch-hero__grid line:nth-child(6) { transition-delay: 0.25s; }
.ch-hero__grid line:nth-child(7) { transition-delay: 0.30s; }
@keyframes ch-hero-drift {
  0%   { background-position: 0% 0%,   100% 100%, 50% 50%; }
  50%  { background-position: 100% 30%, 0% 70%,   40% 60%; }
  100% { background-position: 60% 100%, 30% 0%,   70% 40%; }
}
@media (prefers-reduced-motion: reduce) {
  .ch-hero__grid line { transition: none; }
  .ch-hero { animation: none; }
}
.page-hero__subtitle {
  font-family: var(--font-eiko);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}
.ch-hero__body {
  font-family: var(--font-manrope);
  font-weight: 300;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 880px;          /* wider measure → reflows to 2 lines */
  text-wrap: balance;
}

/* SERVICIOS GRID -------------------------------------------- */
.ch-services {
  padding-top: clamp(60px, 7vw, 100px);   /* tightened to bring the cards closer to the hero */
  padding-bottom: clamp(52px, 6vw, 84px);
  background-color: var(--color-black);
}
.ch-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;   /* both rows equal height → all 4 cards uniform, dividers align */
  gap: var(--space-4);
}
/* Positioning-statement heading above the cards (reuses .ch-how__title type;
   white colour since this section is dark, plus bottom spacing) */
.ch-how__title.ch-services__intro {
  color: #fff;
  margin-bottom: clamp(40px, 5vw, 64px);
  font-size: clamp(18px, 2.2vw, 28px);   /* smaller than the section-heading default */
  text-align: center;
  white-space: nowrap;                   /* keep the statement on a single line */
}
.ch-card {
  background-color: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;   /* equal-height cards: pin tagline to the bottom */
  background-size: cover;
  background-position: center;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
/* dark overlay so card content stays readable over the background image */
.ch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
/* lift all content above the overlay (accent keeps its own absolute layer) */
.ch-card > :not(.ch-card__accent) { position: relative; z-index: 1; }
.ch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(65,100,254,0.15);
  border-color: rgba(65,100,254,0.30);
}
.ch-card:hover .ch-card__num { color: var(--color-blue); }   /* colour shift — matches Slide Center */
.ch-card__num {
  font-family: var(--font-frama);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.20);
  display: block;
  margin-bottom: var(--space-5);
  transition: color var(--duration-base) var(--ease-out);
}
.ch-card__title {
  font-family: var(--font-frama);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}
.ch-card__body {
  font-family: var(--font-manrope);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(255,255,255,0.50);
  margin-bottom: var(--space-6);
}
.ch-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.ch-card__list li {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.5;
}
.ch-card__tagline {
  font-family: var(--font-eiko);
  font-weight: 300;
  font-style: italic;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-sky-blue);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;   /* pin the tagline block to the bottom */
  min-height: calc(var(--space-5) + 3.4em);   /* fixed height → divider sits at the same Y in every card */
  display: flex;
  align-items: flex-end;   /* bottom-align text so 1- & 2-line taglines share the baseline */
}
/* Constrain only the phrase (not the tagline's divider border) so it wraps to 2 lines.
   ~22em ≈ ~44 chars/line → Branding (70) & Custom (54) wrap to 2 lines; the two short
   bajadas use a manual <br> (set in the HTML). */
.ch-card__bajada { display: block; max-width: 22em;
}
.ch-card__accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
}
.ch-card:nth-child(1) .ch-card__accent { background: radial-gradient(circle, rgba(65,100,254,0.12) 0%, transparent 70%); }
.ch-card:nth-child(2) .ch-card__accent { background: radial-gradient(circle, rgba(233,75,36,0.10) 0%, transparent 70%); }
.ch-card:nth-child(3) .ch-card__accent { background: radial-gradient(circle, rgba(125,196,255,0.10) 0%, transparent 70%); }
.ch-card:nth-child(4) .ch-card__accent { background: radial-gradient(circle, rgba(206,166,252,0.10) 0%, transparent 70%); }

/* HOW IT WORKS ---------------------------------------------- */
.ch-how {
  padding-block: clamp(80px, 10vw, 130px);
  background-color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}
.ch-how__ghost {
  bottom: -15%;
  left: -3%;
  font-size: clamp(100px, 14vw, 180px);
}
.ch-how__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
  z-index: 1;
}
.ch-how__title {
  font-family: var(--font-frama);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.15;
  color: var(--color-near-black);
  margin-bottom: var(--space-5);
}
.ch-how__subtitle {
  font-family: var(--font-manrope);
  font-weight: 300;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-grey);
  max-width: 760px;
  margin-inline: auto;
}
.ch-how__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
.ch-phase {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.ch-phase:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(65, 100, 254, 0.15);
  border-color: rgba(65, 100, 254, 0.28);
}
.ch-phase:hover .ch-phase__num { color: var(--color-sky-blue); }   /* colour shift */
.ch-phase__num {
  font-family: var(--font-frama);
  font-weight: 200;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  color: var(--color-light-grey);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--space-5);
}
.ch-phase__title {
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-near-black);
  margin-bottom: var(--space-4);
}
.ch-phase__body {
  font-family: var(--font-manrope);
  font-weight: 300;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-grey);
}
.ch-phase__tag {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* LATEST PROJECTS ------------------------------------------- */
.ch-projects {
  padding-block: clamp(80px, 10vw, 130px);
  background-color: var(--color-black);
}
.ch-projects__header {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.ch-projects__title {
  font-family: var(--font-frama);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.ch-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.ch-project-item__thumb {
  aspect-ratio: 4/3;
  background-color: #111111;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.ch-project-item__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,100,254,0.08) 0%, transparent 60%);
}
.ch-project-item__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}
.ch-project-item__title {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}
.ch-project-item__year {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.30);
}

/* RESPONSIVE ------------------------------------------------ */
@media (max-width: 900px) {
  .ch-services__grid { grid-template-columns: 1fr; }
  .ch-how__phases { grid-template-columns: 1fr; }
  .ch-projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ch-hero__deco { display: none; }
  .ch-projects__grid { grid-template-columns: 1fr; }
}

/* ── LATEST PROJECTS — CATEGORY FILTER CARDS ─────────────────────── */
.ch-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

/* Card / popup container */
.ch-pop {
  position: relative;
  border-radius: var(--radius-xl);
  isolation: isolate;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
/* Open: the card transforms in place — lift ~20px + scale 1.05, raised */
.ch-pop.is-open {
  transform: translateY(-20px) scale(1.05);
  z-index: 5;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
}

/* Default card face (the trigger) */
.ch-pop__trigger {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  overflow: hidden;
  cursor: pointer;
  background: #0e0e0e;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.ch-pop:not(.is-open) .ch-pop__trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}
.ch-pop.is-open .ch-pop__trigger { visibility: hidden; }   /* carousel takes over */

.ch-pop__media {
  display: block;
  height: clamp(220px, 26vw, 320px);
  background-size: cover;
  background-position: center;
  transition: transform 240ms var(--ease-out);
  will-change: transform;
}
.ch-pop__label {
  display: block;
  padding: clamp(18px, 2.2vw, 28px) clamp(22px, 2.6vw, 34px);
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-frama);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

/* ════════════════════════════════════════════════════════════════
   IN-PLACE CARD POPUP CAROUSEL (no fullscreen / no modal)
   ════════════════════════════════════════════════════════════════ */
/* The carousel sits exactly over the card face, same size as the card */
.ch-pop__car {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 220ms;
  z-index: 2;
}
.ch-pop.is-open .ch-pop__car {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 260ms var(--ease-out);
}

.ch-pop__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.ch-pop__viewport:active { cursor: grabbing; }
.ch-pop__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.94) translateY(10px);
  will-change: transform, opacity;
  pointer-events: none;
}
.ch-pop__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* show the whole board PNG within the card */
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
/* Video slides */
.ch-pop__video {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fill the card; switch to contain to avoid cropping */
  display: block;
  background: #000;
  pointer-events: none;
}
/* Play / pause control — a visible button centred over the active video */
.ch-pop__playpause {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(20, 20, 24, 0.55);
  color: #fff; cursor: pointer;
  pointer-events: auto;         /* clickable even though the slide is pointer-events:none */
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0.85;
  transition: opacity 0.2s var(--ease-out), background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.ch-pop__playpause:hover {
  background: rgba(40, 40, 48, 0.9);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}
.ch-pop__playpause .ch-pp { display: none; }
.ch-pop__playpause .ch-pp--play { display: block; margin-left: 3px; }  /* optical-centre the triangle */
.ch-pop__playpause.is-playing .ch-pp--play { display: none; }
.ch-pop__playpause.is-playing .ch-pp--pause { display: block; }
/* Slide counter (e.g. "2 / 6") */
.ch-pop__counter {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
  pointer-events: none;
}

/* Controls — sized for the small in-card popup */
.ch-pop__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 24, 0.55);
  color: #fff; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.ch-pop__nav:hover { background: rgba(40, 40, 48, 0.85); transform: translateY(-50%) scale(1.08); }
.ch-pop__nav--prev { left: 10px; }
.ch-pop__nav--next { right: 10px; }
.ch-pop__close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 4;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 24, 0.6);
  color: #fff; cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.ch-pop__close:hover { background: rgba(40, 40, 48, 0.85); transform: rotate(90deg); }
.ch-pop__dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 7px;
}
.ch-pop__dot {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3); cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.ch-pop__dot.is-active { background: #fff; transform: scale(1.3); }

@media (max-width: 860px) {
  .ch-filter { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ch-pop, .ch-pop__trigger, .ch-pop__media, .ch-pop__car { transition: none; }
}

/* ── PROJECT FEATURE GRID (ported from slide-center.css) ─────────────────── */
.sc-feat { margin-bottom: clamp(40px, 5vw, 64px); }
.sc-feat__title {
  font-family: var(--font-frama);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.sc-feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sc-feat__cell {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0e0e0e;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: transform 200ms ease-out, filter 200ms ease-out, opacity 200ms ease-out;
}
.sc-feat__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
/* hover focus: hovered cell scales up & stays sharp; the rest blur + fade */
.sc-feat__grid:hover .sc-feat__cell { filter: blur(2px); opacity: 0.5; }
.sc-feat__grid .sc-feat__cell:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
  z-index: 2;
  border-color: rgba(65, 100, 254, 0.30);
}

/* ── FULLSCREEN VIDEO LIGHTBOX (Animation) ───────────────────────────────── */
.sc-vl {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms var(--ease-out), visibility 0s linear 240ms;
}
.sc-vl.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms var(--ease-out);
}
.sc-vl__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw;
  height: 85vh;
}
.sc-vl__video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  background: #000;
  outline: none;
}
.sc-vl__close {
  position: absolute;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  z-index: 4;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 24, 0.6);
  color: #fff; cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.sc-vl__close:hover { background: rgba(40, 40, 48, 0.85); transform: rotate(90deg); }

@media (max-width: 900px) { .sc-feat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sc-feat__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .sc-feat__cell { transition: none; }
  .sc-feat__grid:hover .sc-feat__cell { filter: none; opacity: 1; }
  .sc-feat__grid .sc-feat__cell:hover { transform: none; }
  .sc-vl { transition: none; }
}
