:root {
  --om-bg-dark: #050505;
  --om-text-light: #f5f5f2;
  --om-stage-text: #111111;
  --om-stage-muted: #7a4a4f;
  --om-stage-red: #ff0018;
  --om-stage-red-dark: #e10016;
  --om-stage-card-text: #f8f8f8;
}

body.om-lock-scroll {
  overflow: hidden;
}

#mainHeader {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

body.show-main-header #mainHeader {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#om-shell,
#om-shell * {
  box-sizing: border-box;
}

#om-shell {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  position: relative;
  z-index: 5;
}

#om-shell a {
  color: inherit;
  text-decoration: none;
}

#om-shell .om-page {
  width: 100%;
}

#om-shell .om-intro {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 255, 255, 0.1),
      transparent 16%
    ),
    radial-gradient(
      circle at 50% 82%,
      rgba(255, 255, 255, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 70% 55%,
      rgba(255, 120, 120, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #ff0018 0%, #ff1a2d 40%, #ff3347 100%);
  overflow: hidden;
}

#om-shell .om-intro::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45) 0.7px,
    transparent 0.9px
  );
  background-size: 8px 8px;
  opacity: 0.06;
  animation: om-noiseMove 0.25s steps(4) infinite;
  pointer-events: none;
}

#om-shell .om-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04),
      rgba(255, 0, 20, 0.08)
    ),
    radial-gradient(
      circle at center,
      transparent 0%,
      rgba(255, 40, 60, 0.08) 70%,
      rgba(255, 0, 20, 0.14) 100%
    );
  pointer-events: none;
}

@keyframes om-noiseMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1%, -1%);
  }
  50% {
    transform: translate(-1%, 1%);
  }
  75% {
    transform: translate(1%, 1%);
  }
  100% {
    transform: translate(0, 0);
  }
}

#om-shell .om-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 44%,
    rgba(255, 255, 255, 0.14) 49%,
    rgba(255, 255, 255, 0.03) 54%,
    transparent 100%
  );
  opacity: 0;
  animation: om-scanPass 2.2s ease 1 forwards;
  z-index: 3;
}

@keyframes om-scanPass {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  12% {
    opacity: 0.35;
  }
  60% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

#om-shell .om-intro-grid {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 32px 32px;
  gap: 24px;
}

#om-shell .om-intro-left {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px 0;
  position: relative;
  z-index: 6;
}

#om-shell .om-intro-title {
  width: min(1700px, 98vw);
  max-width: none;
  font-size: clamp(82px, 9.6vw, 205px);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-weight: 700;
  word-break: normal;
  margin: 0 auto;
}

#om-shell .om-intro-title span {
  display: block;
  width: 100%;
  white-space: nowrap;
}

#om-shell .om-intro-title .om-accent {
  color: #ffffff;
}

#om-shell .om-intro-sub {
  width: min(1200px, 90vw);
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(12px);
  animation: om-fadeUp 0.8s ease forwards;
  animation-delay: 2s;
}

#om-shell .om-intro-bottom {
  width: min(1600px, 96vw);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(14px);
  animation: om-fadeUp 0.8s ease forwards;
  animation-delay: 2.25s;
}

#om-shell .om-intro-bottom-left {
  font-size: clamp(22px, 2vw, 32px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
}

#om-shell .om-intro-bottom-right {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

@keyframes om-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#om-shell .om-intro-right {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  pointer-events: none;
}

#om-shell .om-right-letters {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

#om-shell .om-letter-col {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(28px, 3.1vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
}

#om-shell .om-letter-col span {
  display: block;
  animation: om-floatLetters 3.8s ease-in-out infinite;
  transform: translateY(0);
}

#om-shell .om-letter-col:nth-child(1) {
  left: 3%;
  top: 6%;
}
#om-shell .om-letter-col:nth-child(2) {
  left: 12%;
  top: 32%;
}
#om-shell .om-letter-col:nth-child(3) {
  left: 22%;
  top: 10%;
}
#om-shell .om-letter-col:nth-child(4) {
  left: 32%;
  top: 50%;
}
#om-shell .om-letter-col:nth-child(5) {
  left: 43%;
  top: 8%;
}
#om-shell .om-letter-col:nth-child(6) {
  left: 54%;
  top: 38%;
}
#om-shell .om-letter-col:nth-child(7) {
  left: 66%;
  top: 7%;
}
#om-shell .om-letter-col:nth-child(8) {
  left: 77%;
  top: 44%;
}
#om-shell .om-letter-col:nth-child(9) {
  left: 87%;
  top: 10%;
}
#om-shell .om-letter-col:nth-child(10) {
  left: 94%;
  top: 48%;
}

#om-shell .om-letter-col:nth-child(1) span:nth-child(odd) {
  animation-delay: 0.1s;
}
#om-shell .om-letter-col:nth-child(2) span:nth-child(odd) {
  animation-delay: 0.35s;
}
#om-shell .om-letter-col:nth-child(3) span:nth-child(odd) {
  animation-delay: 0.6s;
}
#om-shell .om-letter-col:nth-child(4) span:nth-child(odd) {
  animation-delay: 0.85s;
}
#om-shell .om-letter-col:nth-child(5) span:nth-child(odd) {
  animation-delay: 1.1s;
}
#om-shell .om-letter-col:nth-child(6) span:nth-child(odd) {
  animation-delay: 1.35s;
}
#om-shell .om-letter-col:nth-child(7) span:nth-child(odd) {
  animation-delay: 1.6s;
}
#om-shell .om-letter-col:nth-child(8) span:nth-child(odd) {
  animation-delay: 1.85s;
}
#om-shell .om-letter-col:nth-child(9) span:nth-child(odd) {
  animation-delay: 2.1s;
}
#om-shell .om-letter-col:nth-child(10) span:nth-child(odd) {
  animation-delay: 2.35s;
}

@keyframes om-floatLetters {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.14;
  }
  50% {
    transform: translateY(-10px) scale(1.04);
    opacity: 0.34;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.14;
  }
}

#om-shell .om-scramble-blink {
  animation: om-blink 1s steps(1) infinite;
}

@keyframes om-blink {
  50% {
    opacity: 0.45;
  }
}

#om-shell .om-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 7;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  opacity: 0;
  animation: om-fadeUp 0.7s ease forwards;
  animation-delay: 2.55s;
}

#om-shell .om-stage-shape-one {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: -90px;
  border: 1px solid rgba(255, 0, 24, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

#om-shell .om-stage-shape-two {
  position: absolute;
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 110px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 24, 0.9),
    rgba(255, 0, 24, 0.16)
  );
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.35;
  pointer-events: none;
}

#om-shell .om-stage-shape-three {
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 58%;
  background: rgba(255, 0, 24, 0.12);
  pointer-events: none;
}

#om-shell .om-stage-topbar {
  position: absolute;
  top: 28px;
  left: 34px;
  right: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#om-shell .om-stage-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

#om-shell .om-stage-brand-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--om-stage-muted);
}

#om-shell .om-stage-brand-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#om-shell .om-stage-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--om-stage-red);
  box-shadow: 0 0 0 8px rgba(255, 0, 24, 0.1);
  flex: none;
}

#om-shell .om-stage-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

#om-shell .om-stage-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 0, 24, 0.14);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--om-stage-red-dark);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

#om-shell .om-stage-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 24, 0.28);
  background: #fff;
}

#om-shell .om-stage-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 120px 34px 48px;
  align-items: center;
}

#om-shell .om-stage-left {
  max-width: 900px;
  align-self: end;
  padding-bottom: 28px;
}

#om-shell .om-stage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--om-stage-red-dark);
}

#om-shell .om-stage-kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(255, 0, 24, 0.28);
  display: block;
}

#om-shell .om-stage-title {
  font-size: clamp(54px, 6.6vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 10.5ch;
  color: var(--om-stage-text);
  text-transform: none;
}

#om-shell .om-stage-title em {
  font-style: normal;
  color: var(--om-stage-red);
}

#om-shell .om-stage-copy {
  margin-top: 24px;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--om-stage-muted);
}

#om-shell .om-stage-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

#om-shell .om-btn-primary,
#om-shell .om-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

#om-shell .om-btn-primary {
  background: var(--om-stage-red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 0, 24, 0.18);
}

#om-shell .om-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--om-stage-red-dark);
}

#om-shell .om-btn-secondary {
  border: 1px solid rgba(255, 0, 24, 0.16);
  color: var(--om-stage-red-dark);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

#om-shell .om-btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

#om-shell .om-stage-footline {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--om-stage-red-dark);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#om-shell .om-stage-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#om-shell .om-stage-panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, #ff0018 0%, #ff1e2f 55%, #ff3347 100%);
  color: var(--om-stage-card-text);
  box-shadow: 0 24px 70px rgba(255, 0, 24, 0.22);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

#om-shell .om-stage-panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -90px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

#om-shell .om-stage-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

#om-shell .om-stage-panel-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

#om-shell .om-stage-panel-badge {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

#om-shell .om-stage-panel-title {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 9ch;
  margin-bottom: 12px;
  text-transform: none;
}

#om-shell .om-stage-panel-copy {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 15px;
  max-width: 34ch;
  margin-bottom: 26px;
}

#om-shell .om-stage-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

#om-shell .om-stage-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

#om-shell .om-stage-number {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ffe3e6 100%);
  color: #ff0018;
}

#om-shell .om-stage-item h4 {
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #fff;
  text-transform: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

#om-shell .om-stage-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 14px;
}

#om-shell .om-stage-panel-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

#om-shell .om-stage-mini {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

#om-shell .om-stage-mini strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}

#om-shell .om-stage-mini span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

#om-shell .om-stage-ribbon {
  position: absolute;
  left: -18px;
  top: 34px;
  transform: rotate(-8deg);
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  color: #ff0018;
  box-shadow: 0 16px 32px rgba(255, 0, 24, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   HERO: PREPARADO PARA ANIMACIÓN CONTROLADA DESDE JS
   ========================================================= */

.hero.om-hero-reveal-section {
  overflow: hidden;
}

.hero.om-hero-reveal-section .hero-container {
  position: relative;
}

.hero.om-hero-reveal-section .hero-content-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 12rem);
  display: block;
}

.hero.om-hero-reveal-section .om-hero-text-block {
  position: relative;
  z-index: 3;
}

.hero.om-hero-reveal-section .hero-media-insert {
  z-index: 1;
}

.hero.om-hero-reveal-section .om-hero-reveal-title {
  position: relative;
  z-index: 4;
}

.hero.om-hero-reveal-section .om-hero-reveal-title .om-hero-line {
  display: block;
  width: 100%;
  visibility: visible;
  opacity: 0;
  will-change: transform, opacity, filter;
  filter: blur(10px);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hero.om-hero-reveal-section .om-hero-reveal-title .om-hero-line span {
  display: inline-block;
  transform: none !important;
  opacity: 1 !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero.om-hero-reveal-section .om-hero-reveal-title .om-hero-line.om-line-done {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero.om-hero-reveal-section .om-hero-reveal-title .om-hero-line {
    opacity: 1;
    filter: none;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  #om-shell .om-intro-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  #om-shell .om-intro-right {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 0;
    pointer-events: none;
  }

  #om-shell .om-stage-wrap {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 138px;
  }

  #om-shell .om-stage-right {
    justify-content: flex-start;
  }

  #om-shell .om-stage-shape-three {
    display: none;
  }

  #om-shell .om-stage-title {
    max-width: 12ch;
  }
}

@media (max-width: 768px) {
  #om-shell .om-intro {
    min-height: 100vh;
  }

  #om-shell .om-intro-grid {
    padding: 56px 18px 24px;
  }

  #om-shell .om-intro-left {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 24px 0;
  }

  #om-shell .om-intro-title {
    width: 100%;
    font-size: clamp(54px, 14vw, 92px);
    line-height: 0.88;
  }

  #om-shell .om-intro-sub {
    width: 100%;
  }

  #om-shell .om-intro-bottom {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #om-shell .om-intro-right {
    display: flex;
  }

  #om-shell .om-letter-col {
    font-size: clamp(18px, 5vw, 34px);
    gap: 8px;
  }

  #om-shell .om-letter-col:nth-child(1) {
    left: 3%;
    top: 8%;
  }
  #om-shell .om-letter-col:nth-child(2) {
    left: 12%;
    top: 42%;
  }
  #om-shell .om-letter-col:nth-child(3) {
    left: 24%;
    top: 10%;
  }
  #om-shell .om-letter-col:nth-child(4) {
    left: 36%;
    top: 58%;
  }
  #om-shell .om-letter-col:nth-child(5) {
    left: 50%;
    top: 8%;
  }
  #om-shell .om-letter-col:nth-child(6) {
    left: 64%;
    top: 48%;
  }
  #om-shell .om-letter-col:nth-child(7) {
    left: 78%;
    top: 10%;
  }
  #om-shell .om-letter-col:nth-child(8) {
    left: 90%;
    top: 56%;
  }
  #om-shell .om-letter-col:nth-child(9),
  #om-shell .om-letter-col:nth-child(10) {
    display: none;
  }

  #om-shell .om-stage-topbar {
    top: 18px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  #om-shell .om-stage-nav {
    justify-content: flex-start;
  }

  #om-shell .om-stage-wrap {
    padding: 180px 16px 40px;
    gap: 24px;
  }

  #om-shell .om-stage-title {
    font-size: clamp(42px, 12vw, 66px);
    max-width: 100%;
  }

  #om-shell .om-stage-copy {
    font-size: 16px;
  }

  #om-shell .om-stage-panel {
    padding: 22px;
    border-radius: 24px;
  }

  #om-shell .om-stage-panel-title {
    font-size: 28px;
  }

  #om-shell .om-stage-item {
    grid-template-columns: 50px 1fr;
  }

  #om-shell .om-stage-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  #om-shell .om-stage-panel-bottom {
    grid-template-columns: 1fr;
  }

  #om-shell .om-stage-ribbon {
    position: static;
    transform: none;
    display: inline-flex;
    margin-bottom: 16px;
  }
}


@media (max-width: 480px) {
  #om-shell .om-intro-grid {
    padding: 40px 12px 20px;
    gap: 16px;
  }

  #om-shell .om-intro-title {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  #om-shell .om-intro-title span {
    margin-bottom: 0.15em;
  }

  #om-shell .om-intro-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-top: 16px;
    line-height: 1.3;
  }

  #om-shell .om-intro-bottom {
    margin-top: 16px;
    padding-top: 12px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #om-shell .om-intro-bottom-left {
    font-size: 14px;
    text-align: center;
  }

  #om-shell .om-intro-bottom-right {
    font-size: 8px;
    text-align: center;
  }

  /* Ocultar algunas columnas de letras para evitar desbordamiento */
  #om-shell .om-letter-col:nth-child(4),
  #om-shell .om-letter-col:nth-child(6),
  #om-shell .om-letter-col:nth-child(8),
  #om-shell .om-letter-col:nth-child(9),
  #om-shell .om-letter-col:nth-child(10) {
    display: none;
  }

  /* Ajustar posiciones de las columnas restantes */
  #om-shell .om-letter-col:nth-child(1) {
    left: 2%;
    top: 15%;
    font-size: clamp(14px, 4vw, 20px);
  }
  #om-shell .om-letter-col:nth-child(2) {
    left: 15%;
    top: 45%;
    font-size: clamp(14px, 4vw, 20px);
  }
  #om-shell .om-letter-col:nth-child(3) {
    left: 30%;
    top: 25%;
    font-size: clamp(14px, 4vw, 20px);
  }
  #om-shell .om-letter-col:nth-child(5) {
    left: 55%;
    top: 18%;
    font-size: clamp(14px, 4vw, 20px);
  }
  #om-shell .om-letter-col:nth-child(7) {
    left: 80%;
    top: 35%;
    font-size: clamp(14px, 4vw, 20px);
  }
}