﻿:root {
  --z-orange: #f58220;
  --z-navy: #0d1128;
  --z-navy-soft: #1a1f35;
  --z-bg: #ffffff;
  --z-surface: #ffffff;
  --z-yellow: #ffd700;
  --z-teal: #1e7a91;
  --z-terracotta: #c17150;
  --z-text: var(--z-navy);
  --z-muted: #5c6370;
  --z-dribbble: #ea4c89;
  --z-behance: #1769ff;
}
body {
  overflow-x: clip;
  background-color: #ffffff;
  color: #0d1128;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.bg-custom-background { background-color: #ffffff; }
.text-custom-text { color: #0d1128; }
.text-custom-muted { color: #5c6370; }
.page { min-height: 100vh; }
.header-bar {
  background: var(--z-bg);
  color: var(--z-text);
  border-bottom: 1px solid rgba(13, 17, 40, 0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem clamp(1rem, 4.5vw, 2rem);
  display: grid;
  /* Columnas iguales a izquierda y derecha: el bloque de enlaces queda centrado en la cabecera */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.header-bar__brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.header-bar__logo-mark {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.header-bar__logo-square {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
}

.header-bar__logo-square--back {
  background: var(--z-navy);
  left: 0;
  top: 0.15rem;
}

.header-bar__logo-square--front {
  background: var(--z-orange);
  right: 0;
  bottom: 0;
  box-shadow: 0 2px 8px rgba(245, 130, 32, 0.35);
}

.header-bar__logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--z-orange);
}

.header-bar__nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  flex-wrap: wrap;
  min-width: 0;
}

.header-bar__link {
  color: var(--z-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.header-bar__link:hover {
  color: var(--z-orange);
}

.header-bar__link--active {
  color: var(--z-orange);
}

.header-bar__cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.15rem;
  background: var(--z-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.header-bar__cta:hover {
  background: var(--z-navy-soft);
}

.header-bar__cta-icon {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .header-bar__inner {
    grid-template-columns: 1fr auto;
    padding: 0.65rem 1rem;
  }

  .header-bar__brand {
    grid-column: 1;
  }

  .header-bar__cta {
    grid-column: 2;
    justify-self: end;
  }

  .header-bar__nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(13, 17, 40, 0.06);
  }
}

@media (max-width: 640px) {
  .header-bar__logo-text {
    font-size: 1.15rem;
  }

  .header-bar__cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
  .header-bar__nav {
    display: none;
  }
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4.5vw, 2rem);
  padding-right: clamp(1.25rem, 4.5vw, 2rem);
  box-sizing: border-box;
}

/* Mismo ancho util que `.container` / cabecera (antes ~860px dejaba mucho margen). */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 1200px);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4.5vw, 2rem) 4rem;
  min-height: min(88vh, 760px);
  box-sizing: border-box;
}

.hero--loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.hero__visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__intro {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0.75rem;
  padding: 0;
  box-sizing: border-box;
}

.hero__intro-below {
  width: 100%;
  max-width: 100%;
  margin: 0.9rem auto 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.hero__tagline {
  margin: 0 auto;
  max-width: min(100%, 62ch);
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero__tech-block {
  margin-top: 1rem;
}

.hero__tech-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--z-navy-muted, rgba(13, 17, 40, 0.55));
}

.hero__tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.7rem 0.95rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__tech-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 4.85rem;
  margin: 0;
}

.hero__tech-icons__img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.hero__tech-icons__label {
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--z-navy);
  word-break: break-word;
}

.hero__tech-icons__item:hover .hero__tech-icons__img,
.hero__tech-icons__item:focus-within .hero__tech-icons__img {
  opacity: 1;
  transform: scale(1.06);
}

.hero__stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 280px;
  margin: 0 auto;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.hero__blob--1 {
  width: 280px;
  height: 280px;
  background: rgba(245, 130, 32, 0.12);
  top: -40px;
  right: -20px;
}

.hero__blob--2 {
  width: 220px;
  height: 220px;
  background: rgba(13, 17, 40, 0.06);
  bottom: 10%;
  left: -50px;
}

.hero__blob--3 {
  width: 120px;
  height: 120px;
  background: rgba(30, 122, 145, 0.15);
  bottom: 24%;
  right: 18%;
}

.hero__intro-video {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__intro-video__el {
  display: block;
  width: 100%;
  max-width: 420px;
  min-height: 200px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
  cursor: default;
  box-shadow: 0 8px 28px rgba(13, 17, 40, 0.12);
  background: rgba(13, 17, 40, 0.06);
}

.hero__intro-video__hint {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--z-muted);
  text-align: center;
  max-width: 22rem;
  line-height: 1.4;
}

.hero__intro-video__btn {
  position: relative;
  z-index: 4;
  padding: 0.62rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--z-navy);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.hero__intro-video__btn:hover {
  background: var(--z-navy-soft);
}

.hero__intro-video__btn:focus-visible {
  outline: 3px solid var(--z-orange);
  outline-offset: 3px;
}

.hero__photo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Antes 10% arriba separaba mucho el texto del avatar; el PNG tambien trae aire vacio arriba. */
  padding: 0 4% 6%;
  min-height: 260px;
}

.hero__avatar-lift {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.hero__avatar-lift--up {
  transform: translateY(-2.25rem);
}

.hero__panel {
  width: 100%;
  max-width: 420px;
  margin: 0.35rem auto 0;
  padding: 1rem clamp(1.15rem, 4vw, 1.5rem) 1.1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 17, 40, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(13, 17, 40, 0.07);
  box-sizing: border-box;
}

.hero__panel-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--z-navy);
  margin: 0 0 0.6rem;
}

.hero__panel-body {
  margin: 0;
}

.hero__panel-text,
.hero__panel-muted {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--z-muted);
  margin: 0;
  overflow-wrap: break-word;
}

.hero__panel-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__panel-skills li {
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--z-navy);
  background: rgba(13, 17, 40, 0.04);
  border-radius: 999px;
}

.hero__panel-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--z-orange);
  text-decoration: none;
}

.hero__panel-more:hover {
  text-decoration: underline;
}

.hero-panel-enter-active,
.hero-panel-leave-active {
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-panel-enter-from,
.hero-panel-leave-to {
  opacity: 0;
  transform: translateY(10px);
}

/* `display` en la clase vence al [hidden] por defecto; forzar oculto como v-if/v-else en Vue. */
.hero__tap-hint[hidden] {
  display: none !important;
}

/* Pills móvil (Vue: v-if="isMobile && avatarUnlocked") — en escritorio no deben verse nunca. */
.hero__quick-nav[hidden] {
  display: none !important;
}

.hero__panel[hidden] {
  display: none !important;
}

#hero-intro-below[hidden] {
  display: none !important;
}

@media (min-width: 768px) {
  #hero-quick-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #hero-panel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.hero__tap-hint {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--z-navy);
  background: #fff;
  border: 1px solid rgba(13, 17, 40, 0.12);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(13, 17, 40, 0.1);
  animation: hero-hint-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

.hero__tap-hint__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--z-orange);
  animation: hero-hint-blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__tap-hint--unlocked {
  animation: none;
  max-width: min(20rem, 92vw);
  padding: 0.5rem 0.95rem 0.55rem;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  font-weight: 600;
  font-size: 0.78rem;
}

.hero__tap-hint__text {
  display: block;
  min-width: 0;
}

.hero__tap-hint__line {
  display: block;
}

.hero-bubble-text-enter-active,
.hero-bubble-text-leave-active {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hero-bubble-text-enter-from,
.hero-bubble-text-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes hero-hint-pulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes hero-hint-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero__avatar-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.2s ease;
  overflow: hidden;
  line-height: 0;
  /* Encuadra el personaje (abajo del PNG) y recorta el hueco vacio superior del asset. */
  aspect-ratio: 3 / 4;
}

.hero__avatar-btn:focus-visible {
  outline: 3px solid var(--z-orange);
  outline-offset: 4px;
}

.hero__avatar-btn:not(.hero__avatar-btn--unlocked):hover {
  transform: scale(1.02);
}

.hero__avatar-btn:not(.hero__avatar-btn--unlocked):active {
  transform: scale(0.98);
}

.hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  filter: drop-shadow(0 8px 20px rgba(13, 17, 40, 0.08));
}

.hero-avatar-swap-enter-active,
.hero-avatar-swap-leave-active {
  transition: opacity 0.35s ease;
}

.hero-avatar-swap-enter-from,
.hero-avatar-swap-leave-to {
  opacity: 0;
}

.hero-nav-pop-enter-active {
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.hero-nav-pop-enter-from {
  opacity: 0;
  transform: translateY(8px);
}

.hero__quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin-top: 1.35rem;
  max-width: 100%;
}

@media (max-width: 767px) {
  /* Pills bajo el avatar, encima de tagline/tecnologías/panel. */
  .hero__quick-nav {
    margin-top: 1rem;
    gap: 0.45rem 0.5rem;
  }

  .hero__quick-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
  }

  #hero-panel:not([hidden]) {
    margin-top: 0.85rem;
  }
}

.hero__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--z-navy);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(13, 17, 40, 0.12);
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(13, 17, 40, 0.06);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.hero__quick-link:hover {
  border-color: rgba(245, 130, 32, 0.45);
  color: var(--z-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 17, 40, 0.08);
}

.hero__quick-link--active {
  border-color: var(--z-orange);
  color: var(--z-orange);
  background: rgba(245, 130, 32, 0.06);
  box-shadow: 0 4px 16px rgba(245, 130, 32, 0.15);
}

.hero__quick-link:focus-visible {
  outline: 2px solid var(--z-orange);
  outline-offset: 3px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.skills-list__item {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--z-navy);
  background: #fff;
  border: 1px solid rgba(13, 17, 40, 0.1);
  border-radius: 8px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--z-navy);
  margin: 0 0 1.1rem;
}

.hero__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--z-navy);
  background: #fff;
  color: var(--z-navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(13, 17, 40, 0.04);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.hero__social-btn:hover {
  background: #fafafa;
  box-shadow: 0 4px 12px rgba(13, 17, 40, 0.08);
}

.hero__social-btn--dribbble {
  border-color: var(--z-dribbble);
  color: var(--z-dribbble);
  background: #fff;
}

.hero__social-btn--dribbble:hover {
  background: rgba(234, 76, 137, 0.08);
}

.hero__social-btn--behance {
  border-color: var(--z-behance);
  color: var(--z-behance);
  background: #fff;
}

.hero__social-btn--behance:hover {
  background: rgba(23, 105, 255, 0.08);
}

.hero__social-btn--neutral:hover {
  border-color: var(--z-navy);
  color: var(--z-navy);
  background: #f3f4f6;
}

.hero__social-arrow {
  font-size: 1rem;
  opacity: 0.85;
}

/* Solo vertical: si usamos `padding: 3.5rem 0` anula el padding horizontal de `.container`
   en elementos `section.container` (el atajo pone left/right a 0). */
.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section--surface {
  background: var(--z-surface);
  box-shadow: 0 -1px 0 rgba(13, 17, 40, 0.06);
}

.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--z-navy);
  margin: 0 0 0.75rem;
}

.section__text {
  width: 100%;
  max-width: none;
  margin: 0;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.section__text--about + .section__text--about {
  margin-top: 1rem;
}

.section__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--z-navy);
  margin: 1.5rem 0 0.65rem;
  overflow-wrap: break-word;
}

.strength-list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
  box-sizing: border-box;
}

.strength-list__item {
  margin-bottom: 0.4rem;
}

.portfolio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.portfolio-list__item {
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: var(--z-surface, rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(13, 17, 40, 0.08);
}

.portfolio-list__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--z-navy);
  margin: 0 0 0.35rem;
}

.portfolio-list__summary {
  margin: 0;
  font-size: 0.95rem;
}

.portfolio-list__stack {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--z-muted, #5c6478);
  letter-spacing: 0.02em;
}

.hero__panel-projects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__panel-project {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero__panel-project-title {
  color: var(--z-navy);
  font-weight: 700;
}

.hero__panel-project-sum {
  color: var(--z-muted, #5c6478);
}

.section--contact {
  padding-bottom: 4rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.contact-links--stack {
  flex-direction: column;
  align-items: stretch;
  margin-top: 0.85rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.contact-link--whatsapp {
  background: #25d366;
}

.contact-link--telegram {
  background: #26a5e4;
}

.contact-link:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 17, 40, 0.15);
}

.contact-link:focus-visible {
  outline: 2px solid var(--z-navy, #0d1128);
  outline-offset: 2px;
}

.contact-link__icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__panel {
    text-align: justify;
  }

  .hero__panel-title {
    text-align: center;
  }

  .hero__panel-text,
  .hero__panel-muted {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .hero__panel-skills {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero__quick-link {
    padding: 0.58rem 1.1rem;
    font-size: 0.88rem;
  }

  .hero__avatar-lift--up {
    transform: translateY(-1.5rem);
  }
}

/* Vanilla: bloques de sección solo escritorio */
@media (max-width: 767px) {
  .desktop-blocks {
    display: none !important;
  }
}

.hero--loading[hidden] {
  display: none !important;
}

#bubble-line {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#bubble-line.is-updating {
  opacity: 0;
  transform: translateY(6px);
}

/* Intro vs hero principal: misma exclusión que v-if/v-else en Vue (solo uno visible). */
.hero__photo-wrap.intro-phase #hero-main-ui {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero__photo-wrap.main-phase #intro-video-wrap {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
