/* ==========================================================================
   OptiXtream — Modelo 04
   Dirección: Maximalismo Vibrante
   Tipografía: Unbounded (display) + Hanken Grotesk (body)
   Paleta rotativa: #FF2D8E fucsia · #B8FF2C lima · #2C5AFF cobalto · #FF7B24 naranja
   Firma: collage tipográfico que se rearma al cargar / con el scroll.
   ========================================================================== */

:root {
  /* ---- Paleta Maximalista (equilibrada: menos neón, más profundidad) ---- */
  --fuchsia: #E91E7A;
  --lime:    #C6F03C;
  --cobalt:  #2A53E8;
  --orange:  #F06C1C;
  --ink:     #0A0A0A;
  --paper:   #F7F7FF;

  /* ---- Sobreescribir tokens de theme.css ---- */
  --bg: var(--cobalt);
  --bg-1: #1a1a2e;
  --bg-2: #12121f;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.14);
  --accent: var(--lime);
  --accent-soft: #d4ff7a;
  --accent-2: var(--orange);
  --accent-2-deep: #e85d00;
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.82);
  --text-3: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.18);

  --ff-display: 'Unbounded', 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-hard: 0 18px 40px -10px rgba(10, 10, 10, 0.35);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 8px; }

.u-display, .section-title, .split-title, .slideshow-title {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   Utilidades
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { position: relative; padding: clamp(4rem, 10vw, 7rem) 0; overflow: hidden; isolation: isolate; }
.section-title { font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem); max-width: 18ch; }

/* Paleta rotativa de secciones */
.section-cobalt { background: var(--cobalt); color: var(--text); }
.section-fuchsia { background: var(--fuchsia); color: var(--text); }
.section-lime { background: var(--lime); color: var(--ink); }
.section-orange { background: var(--orange); color: var(--text); }
.section-dark { background: var(--ink); color: var(--text); }
.section-cobalt-dark { background: #152AC7; color: var(--text); }
.section-light { background: var(--paper); color: var(--ink); }

.section-lime .u-eyebrow::before,
.section-light .u-eyebrow::before { background: linear-gradient(90deg, transparent, var(--ink)); }
.section-lime .u-eyebrow,
.section-light .u-eyebrow { color: var(--ink); }

/* --------------------------------------------------------------------------
   Navegación
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transform: translateY(-102%);
  transition: transform 0.55s var(--ease), border-color 0.55s;
}
.nav.show { transform: none; border-bottom-color: var(--border); }
.nav-logo svg { display: block; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px -6px rgba(184, 255, 44, 0.45); }

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--text);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border: 2px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.35) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hard); }
.btn:hover::after { transform: translateX(130%); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-hero { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* --------------------------------------------------------------------------
   Hero + collage firma
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(140% 120% at 20% 10%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(120% 100% at 80% 90%, rgba(255,45,142,0.25), transparent 55%),
    var(--cobalt);
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 50% 20%, rgba(44,90,255,0.55), transparent 55%),
    radial-gradient(140% 90% at 80% 90%, rgba(255,43,142,0.45), transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .u-eyebrow { color: var(--lime); margin-bottom: 1rem; }
.hero .u-eyebrow::before { background: linear-gradient(90deg, transparent, var(--lime)); }
.hero-sub { margin-top: 1.5rem; max-width: 54ch; color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 0.95rem + 0.55vw, 1.35rem); text-wrap: pretty; }
.hero-sub strong { color: var(--lime); }
.hero-actions { margin-top: 2.2rem; }

/* Collage tipográfico — firma */
.collage {
  --p: 1;
  position: relative;
  width: min(920px, 92vw);
  height: clamp(300px, 42vw, 430px);
  margin: 1rem auto;
  user-select: none;
}
.collage-word {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,0.22);
  will-change: transform;
  transform:
    translate(calc(var(--ix, 0) * (1 - var(--p))), calc(var(--iy, 0) * (1 - var(--p))))
    rotate(calc(var(--ir, 0) * (1 - var(--p))))
    scale(calc(var(--is, 1) + (1 - var(--is, 1)) * var(--p)));
}

/* Posiciones finales del poster — léase: TODO EL ENTRETENIMIENTO EN UN SOLO LUGAR */
.w1 { left: 6%; top: 9%; font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--lime); }
.w2 { left: 46%; top: 11%; font-size: clamp(1rem, 2.2vw, 1.5rem); color: var(--orange); }
.w3 { left: 5%; top: 32%; font-size: clamp(2.4rem, 6.8vw, 5.6rem); letter-spacing: -0.04em; color: #fff; }
.w4 { left: 8%; top: 63%; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--fuchsia); }
.w5 { left: 21%; top: 64%; font-size: clamp(1.5rem, 3.2vw, 2.4rem); color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.25); }
.w6 { left: 37%; top: 61%; font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--lime); }
.w7 { left: 64%; top: 61%; font-size: clamp(2.6rem, 7vw, 5.2rem); color: var(--orange); }

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */
.section-intro { text-align: center; }
.section-intro .section-title { margin: 0 auto 1.4rem; max-width: 20ch; }
.section-lead { margin: 0 auto 2.5rem; max-width: 62ch; font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); color: #333; text-wrap: pretty; }
.platform-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.platform-row img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-hard); transition: transform 0.3s var(--ease); }
.platform-row img:hover { transform: translateY(-6px) rotate(-2deg); }

/* --------------------------------------------------------------------------
   Split series / cine
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text .u-eyebrow { margin-bottom: 1rem; }
.split-title { font-size: clamp(2rem, 1.2rem + 3.5vw, 3.4rem); margin-bottom: 1rem; max-width: 16ch; }
.split-body { font-size: clamp(1rem, 0.9rem + 0.35vw, 1.2rem); margin-bottom: 1.8rem; max-width: 52ch; opacity: 0.95; text-wrap: pretty; }
.section-lime .split-body { color: rgba(10,10,10,0.85); }

.split-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.split-media img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-hard); transition: transform 0.4s var(--ease); }
.split-media img:first-child { grid-column: span 2; }
.split-media img:hover { transform: scale(1.02); }

/* --------------------------------------------------------------------------
   Slideshow de plataformas
   -------------------------------------------------------------------------- */
.slideshow-wrap {
  position: relative;
  min-height: 420px;
  max-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 1.5rem;
}
.slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.slide.active { opacity: 1; }
.slideshow-caption {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.14);
}
.slideshow-caption .u-eyebrow { color: var(--lime); margin-bottom: 0.8rem; }
.slideshow-caption .u-eyebrow::before { background: linear-gradient(90deg, transparent, var(--lime)); }
.slideshow-title { font-size: clamp(1.8rem, 1.2rem + 3vw, 3.2rem); margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.section-pricing .container { max-width: 1200px; }
.section-pricing .section-title { margin-bottom: 2.5rem; text-align: center; margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.price-card {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-8px); }
.price-card:nth-child(1) header { background: var(--cobalt); }
.price-card:nth-child(2) header { background: var(--fuchsia); }
.price-card:nth-child(3) header { background: var(--orange); }
.price-card:nth-child(4) header { background: var(--lime); color: var(--ink); }
.price-card:nth-child(4) .price-sub { opacity: 0.75; }
.price-card.popular { transform: scale(1.02); z-index: 2; }
.price-card.popular:hover { transform: scale(1.02) translateY(-8px); }
.price-card header { padding: 1.6rem 1rem; text-align: center; color: #fff; }
.price-title { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 800; }
.price-sub { font-size: 0.9rem; opacity: 0.9; margin-top: 0.25rem; }
.price-body { padding: 1.8rem 1.4rem; text-align: center; }
.price-tag { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--ink); }
.features { list-style: none; margin: 0 0 1.6rem; padding: 0; text-align: left; }
.features li { padding: 0.55rem 0; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.price-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.price-btn:hover { transform: scale(1.03); background: #222; }
.ribbon {
  position: absolute;
  top: 1.1rem;
  right: -3.6rem;
  width: 11rem;
  text-align: center;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(45deg);
  padding: 0.35rem 0;
  z-index: 4;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.section-faq .container { max-width: 860px; }
.section-faq .section-title { text-align: center; margin-bottom: 2.5rem; margin-left: auto; margin-right: auto; }
.accordion { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.25s;
}
.faq-item[open] { background: rgba(255,255,255,0.13); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.4rem; }
.faq-body p { color: rgba(255,255,255,0.88); line-height: 1.6; text-wrap: pretty; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { padding: 2.5rem 0 1.4rem; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.social-icons { display: flex; gap: 1rem; justify-content: center; }
.social-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.social-icon:hover { transform: scale(1.12) translateY(-3px); background: var(--cobalt); }
.social-icon.telegram:hover { background: #229ED9; }
.social-icon.whatsapp:hover { background: #25D366; }
.footer-hours { font-size: 0.95rem; color: #555; }
.footer-logo svg { display: block; margin: 0 auto; }
.footer-copy { font-size: 0.9rem; color: #777; }

/* --------------------------------------------------------------------------
   Cursor glow coherente (desktop)
   -------------------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 255, 44, 0.14), rgba(255, 43, 142, 0.06) 45%, transparent 70%);
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

/* --------------------------------------------------------------------------
   Reveal sobre theme.css — adaptado a colores de sección
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(32px); filter: blur(8px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* --------------------------------------------------------------------------
   Movimiento reducido
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .collage { --p: 1 !important; }
  .collage-word { transition: none; }
  .slide { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse { direction: ltr; }
  .split-media { order: -1; }
  .split-media img { min-height: 220px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 7rem; }
  .collage { height: clamp(280px, 62vw, 380px); }
  .w1 { left: 5%; top: 8%; font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .w2 { left: 56%; top: 10%; font-size: clamp(0.85rem, 2.8vw, 1.2rem); }
  .w3 { left: 4%; top: 30%; font-size: clamp(1.35rem, 6.5vw, 2.6rem); }
  .w4 { left: 6%; top: 58%; font-size: clamp(0.85rem, 2.6vw, 1.2rem); }
  .w5 { left: 22%; top: 59%; font-size: clamp(1.1rem, 3.6vw, 1.6rem); }
  .w6 { left: 40%; top: 57%; font-size: clamp(1.5rem, 5.2vw, 2.2rem); }
  .w7 { left: 58%; top: 57%; font-size: clamp(1.7rem, 7vw, 3rem); }
  .platform-row img { width: 92px; height: 92px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .slideshow-caption { padding: 1.6rem; }
  .slideshow-title { font-size: 1.6rem; }
  .nav-logo svg { width: 64px; height: 32px; }
}

/* ========================================================================== 
   CINEMA PASS — póster escénico, flash y profundidad pop
   ========================================================================== */
.hero-inner::after {
  content: '';
  position: absolute;
  width: min(880px,88vw);
  height: min(880px,88vw);
  left: 50%;
  top: 43%;
  z-index: -1;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(199,255,46,.12), transparent 32%, rgba(255,104,31,.12), transparent 67%, rgba(241,38,136,.14), transparent);
  filter: blur(26px);
  animation: m04-stage 16s linear infinite;
}
.collage-word { transition: transform .65s cubic-bezier(.16,1,.3,1), filter .45s ease; }
.collage:hover .collage-word { filter: saturate(118%) brightness(1.05); }
.section-cobalt, .section-fuchsia, .section-orange, .section-lime { position: relative; }
.section-cobalt::after, .section-fuchsia::after, .section-orange::after, .section-lime::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.07) 50%, transparent 58%); transform: translateX(-100%); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.section-cobalt:hover::after, .section-fuchsia:hover::after, .section-orange:hover::after, .section-lime:hover::after { transform: translateX(100%); }
.price-card:hover { transform: translate(-5px,-8px) rotate(-.35deg); }

@keyframes m04-stage { to { transform: translate(-50%,-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-inner::after { animation: none !important; } }

@media (max-width: 380px) {
  .collage-word { text-shadow: 0 4px 14px rgba(0,0,0,0.25); }
  .w1 { font-size: 1.55rem; }
  .w2 { font-size: 0.8rem; left: 56%; }
  .w3 { font-size: 1.15rem; top: 30%; }
  .w4 { font-size: 0.75rem; left: 5%; }
  .w5 { font-size: 0.95rem; left: 22%; top: 58%; }
  .w6 { font-size: 1.25rem; left: 40%; top: 56%; }
  .w7 { font-size: 1.45rem; left: 60%; top: 57%; }
}

/* ========================================================================== 
   POWER PASS 2026 — Póster pop cinético / color sin timidez
   ========================================================================== */
:root {
  --cobalt: #274BEA;
  --fuchsia: #F12688;
  --lime: #C7FF2E;
  --orange: #FF681F;
  --paper: #FAFAF5;
  --ink: #11121A;
}

.hero { background: linear-gradient(145deg, #274BEA 0%, #1937B4 50%, #941F7E 100%); }
.hero-bg {
  opacity: .42;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(199,255,46,.22) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 74%, rgba(255,104,31,.24) 0 3px, transparent 4px);
  background-size: 42px 42px, 58px 58px;
}
.hero-vignette { background: radial-gradient(ellipse at 50% 46%, transparent 42%, rgba(17,18,26,.22) 100%); }
.collage::before, .collage::after { content: ''; position: absolute; pointer-events: none; border: 4px solid var(--ink); opacity: .16; }
.collage::before { width: 90px; height: 90px; left: 44%; top: 7%; transform: rotate(18deg); }
.collage::after { width: 42px; height: 42px; right: 8%; bottom: 12%; border-radius: 50%; background: var(--fuchsia); }
.collage-word { text-shadow: 5px 6px 0 rgba(17,18,26,.15), 0 18px 30px rgba(17,18,26,.18); }
.btn-hero { border: 3px solid var(--ink); box-shadow: 7px 7px 0 var(--ink), 0 20px 38px -14px rgba(199,255,46,.58); }
.btn-hero:hover { transform: translate(-4px,-4px); box-shadow: 11px 11px 0 var(--ink), 0 28px 46px -14px rgba(199,255,46,.7); }
.split-media img, .price-card { border: 3px solid var(--ink); box-shadow: 8px 8px 0 color-mix(in srgb, var(--ink) 82%, transparent); }
.price-card:nth-child(3n+1) { background: color-mix(in srgb, var(--lime) 16%, white); }
.price-card:nth-child(3n+2) { background: color-mix(in srgb, var(--fuchsia) 12%, white); }
.price-card:nth-child(3n) { background: color-mix(in srgb, var(--orange) 14%, white); }
.faq-item { border: 2px solid rgba(255,255,255,.28); box-shadow: 5px 5px 0 rgba(17,18,26,.28); }

@media (max-width: 640px) {
  .collage::before { width: 52px; height: 52px; }
  .btn-hero { box-shadow: 5px 5px 0 var(--ink); }
}
