/* =========================================================
   MUNDICOM - OnePage (HTML/CSS/JS)
   Estilo: oscuro + acento turquesa (inspirado en el brochure)
   ========================================================= */

:root {
  --bg: #00061c;
  --panel: #11131a;
  --panel-2: #151826;
  --text: #e9edf7;
  --muted: rgba(233, 237, 247, .72);

  --accent: #34d2c6;
  --accent-2: #4ea3ff;

  --ring: rgba(52, 210, 198, .35);
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;

  --ease: cubic-bezier(.2, .9, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 15% 0%, rgba(78, 163, 255, .10), transparent 55%),
    radial-gradient(900px 700px at 95% 10%, rgba(52, 210, 198, .12), transparent 50%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 16, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: .8px;
  user-select: none;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(52, 210, 198, .10);
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
}

.brand-sub {
  font-weight: 600;
  font-size: 12px;
  opacity: .75;
  transform: translateY(-2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(233, 237, 247, .82);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.nav-link:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-link.active {
  background: rgba(52, 210, 198, .12);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(52, 210, 198, .18) inset;
}

.nav-cta {
  background: linear-gradient(135deg, rgba(52, 210, 198, .20), rgba(78, 163, 255, .18));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: rgba(233, 237, 247, .9);
  margin: 6px auto;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 34px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 12, 16, .15), rgba(11, 12, 16, .80)), radial-gradient(900px 700px at 30% 30%, rgb(0 102 255 / 45%), transparent 55%), url(assets/hero.jpg) center / cover no-repeat;
  filter: saturate(.95) contrast(1.05);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .07);
  color: rgba(233, 237, 247, .86);
  width: fit-content;
  margin-bottom: 14px;
}

.kicker i {
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.8px;
}

.lead {
  margin: 0 0 18px;
  color: rgba(233, 237, 247, .82);
  font-size: 15.8px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .35);
}

.btn-primary {
  border-color: rgba(52, 210, 198, .28);
  background: linear-gradient(135deg, rgba(52, 210, 198, .26), rgba(78, 163, 255, .18));
  box-shadow: 0 0 0 6px rgba(52, 210, 198, .10);
}

.btn-ghost {
  background: rgba(11, 12, 16, .35);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(233, 237, 247, .80);
  font-size: 12.5px;
}

.pill i {
  color: var(--accent);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

.hero-card-top {
  aspect-ratio: 16 / 10;
  background: radial-gradient(600px 400px at 20% 10%, rgb(173 52 210 / 18%), transparent 55%), radial-gradient(600px 400px at 90% 10%, rgba(78, 163, 255, .16), transparent 55%), rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-card-top img {
  width: 70%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .10);
}

.hero-card-body {
  padding: 16px 18px 18px;
}

.hero-card-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.hero-card-body p {
  margin: 0 0 14px;
  color: rgba(233, 237, 247, .75);
  font-size: 13.5px;
}

.mini-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  color: rgba(233, 237, 247, .86);
}

.mini-link i {
  color: var(--accent);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 34px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
  display: grid;
  place-items: center;
  z-index: 2;
}

.scroll-hint span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: bounce 1.4s var(--ease) infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-8px);
    opacity: .55;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
  margin-bottom: 22px;
  max-width: 72ch;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -.5px;
}

.section-head p {
  margin: 0;
  color: rgba(233, 237, 247, .78);
}

/* Layout grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Cards */
.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
  padding: 18px;
}

.card-soft {
  background: rgba(255, 255, 255, .03);
}

.card-accent {
  background: linear-gradient(135deg, rgba(52, 210, 198, .09), rgba(78, 163, 255, .07));
  border-color: rgba(52, 210, 198, .20);
  box-shadow: 0 0 0 6px rgba(52, 210, 198, .06), 0 18px 60px rgba(0, 0, 0, .24);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.card h3 i {
  color: var(--accent);
  margin-right: 8px;
}

.muted {
  color: var(--muted);
}

/* Checklist */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: rgba(233, 237, 247, .80);
  line-height: 1.45;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: rgba(52, 210, 198, .18);
  border: 1px solid rgba(52, 210, 198, .35);
  box-shadow: 0 0 0 4px rgba(52, 210, 198, .08);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(233, 237, 247, .95);
  border-bottom: 2px solid rgba(233, 237, 247, .95);
  transform: rotate(-45deg);
}

/* Mission/Vision */
.mv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mv-block h3 {
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: .3px;
}

.mv-block p {
  margin: 0;
  color: rgba(233, 237, 247, .80);
  line-height: 1.6;
}

.mv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 210, 198, .35), transparent);
}

/* Stats */
.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: rgba(233, 237, 247, .72);
  font-size: 12.5px;
}

/* Services */
.service {
  padding: 0;
  overflow: hidden;
}

.service-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.02);
  transition: transform .55s var(--ease);
}

.service:hover .service-media img {
  transform: scale(1.08);
}

.media-zoom {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.media-zoom i {
  color: rgba(233, 237, 247, .95);
  font-size: 18px;
}

.service-body {
  padding: 16px 18px 18px;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-title i {
  color: var(--accent);
  font-size: 18px;
}

.service-body p {
  margin: 0 0 12px;
  color: rgba(233, 237, 247, .75);
  line-height: 1.55;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(52, 210, 198, .10);
  border: 1px solid rgba(52, 210, 198, .18);
  color: rgba(233, 237, 247, .80);
  font-size: 12px;
}

/* Strip */
.strip {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.strip-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
  cursor: pointer;
}

.strip-item i {
  color: var(--accent);
}

/* Products */
.product h3 {
  margin-top: 12px;
}

.product p {
  margin: 8px 0 0;
  color: rgba(233, 237, 247, .75);
  line-height: 1.55;
}

.product-logo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.product-logo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.gallery-item {
  text-align: left;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-thumb {
  width: 92px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-meta strong {
  display: block;
}

.gallery-meta span {
  color: rgba(233, 237, 247, .72);
  font-size: 12.5px;
}

/* Logos wall */
.logos-wall {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  margin-top: 12px;
}

.logos-wall img {
  width: 100%;
  height: auto;
}

/* Contact */
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .10);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  color: rgba(233, 237, 247, .92);
}

.contact-item span {
  color: rgba(233, 237, 247, .72);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 14px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.contact-link i {
  color: var(--accent);
}

.contact-form .field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  font-size: 12.5px;
  color: rgba(233, 237, 247, .72);
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(52, 210, 198, .45);
  box-shadow: 0 0 0 6px rgba(52, 210, 198, .10);
}

textarea {
  resize: vertical;
}

.form-hint {
  margin: 12px 0 0;
  color: rgba(233, 237, 247, .60);
  font-size: 12.5px;
}

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(0, 0, 0, .22);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.brand-footer {
  margin-bottom: 10px;
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .78);
  z-index: 4000;
  padding: 18px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close i {
  font-size: 20px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 26px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(11, 12, 16, .88);
    backdrop-filter: blur(10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
    display: none;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    flex: 1 1 auto;
    text-align: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .scroll-hint span {
    animation: none;
  }
}

/* =========================================
   CINEMATIC TOUCH - PRODUCTORA AUDIOVISUAL
   ========================================= */

/* 1. Vignette & Film Grain Overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background:
    /* Vignette: Oscurecer bordes */
    radial-gradient(circle at center, transparent 60%, rgba(0, 0, 0, 0.4) 100%),
    /* Grain: Ruido visual sutil */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.7;
}

/* 2. Cinematic Glow en Textos Clave */
h1,
h2 {
  text-shadow: 0 0 30px rgba(52, 210, 198, 0.15);
  /* Brillo turquesa muy sutil */
}

/* 3. Efecto Monitor/Scanlines en Imágenes al Hover */
.service-media,
.product-logo,
.hero-card-top {
  position: relative;
}

.service-media::before,
.product-logo::before,
.hero-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 3px);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service:hover .service-media::before,
.product:hover .product-logo::before,
.hero-card:hover .hero-card-top::before {
  opacity: 1;
  /* Aparecen las líneas al pasar el mouse */
}

/* 4. Bordes Brillantes (Tech Border) */
.card:hover,
.service:hover .card,
.product:hover .card {
  border-color: rgba(52, 210, 198, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(52, 210, 198, 0.1) inset;
  /* Borde interior brillante */
}

/* 5. Botones con 'Bloom' */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
  box-shadow:
    0 0 20px rgba(52, 210, 198, 0.4),
    0 0 40px rgba(52, 210, 198, 0.2);
  transform: translateY(-2px) scale(1.02);
}

/* Ajuste de scrollbar para look pro */
::-webkit-scrollbar {
  width: 8px;
  background: #0b0c10;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}