.gea-intro__gate-content {
  width: min(86vw, 380px);
  gap: 30px;
  justify-items: center;
}

.gea-intro__gate-logo {
  width: clamp(138px, 16vw, 178px);
  height: auto;
  filter: drop-shadow(0 20px 38px rgba(8, 42, 88, 0.12));
}

.gea-intro__gate-copy {
  display: none !important;
}

.gea-intro__start {
  min-width: 190px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, #082a58 0%, #0b356f 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 42, 88, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.gea-intro__start svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.gea-intro__start:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0b356f 0%, #10427f 100%);
  box-shadow: 0 18px 34px rgba(8, 42, 88, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.gea-intro__start:hover svg {
  transform: translateX(3px);
}

.gea-intro__start:active {
  transform: translateY(0) scale(0.985);
}

.gea-intro__start:focus-visible {
  outline: 3px solid #1674df;
  outline-offset: 4px;
}

html[data-theme="dark"] .gea-intro {
  --gea-intro-bg: #011949;
  --gea-intro-ink: #ffffff;
  --gea-intro-surface: rgba(6, 31, 74, 0.94);
  background: #011949;
}

html[data-theme="dark"] .gea-intro__gate {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 36%),
    #011949;
}

html[data-theme="dark"] .gea-intro__gate-logo {
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.26));
}

html[data-theme="dark"] .gea-intro__start {
  border-color: rgba(255, 255, 255, 0.76);
  background: #ffffff;
  color: #011949;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .gea-intro__start:hover {
  background: #f2f6fb;
  color: #011949;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.30), inset 0 1px 0 #ffffff;
}

html[data-theme="dark"] .gea-intro__start:focus-visible {
  outline-color: #ffffff;
}

html[data-theme="dark"] .gea-intro__headline,
html[data-theme="dark"] .gea-intro__service-label {
  color: #ffffff;
}

html[data-theme="dark"] .gea-intro__waves i {
  border-color: rgba(255, 255, 255, 0.13);
}

html[data-theme="dark"] .gea-intro__logo-wrap::after,
html[data-theme="dark"] .gea-intro__message-card::after {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.11) 42%, rgba(0, 0, 0, 0) 74%);
}

html[data-theme="dark"] .gea-intro__skip,
html[data-theme="dark"] .gea-intro__sound {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(5, 30, 72, 0.86);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
}

html[data-theme="dark"] .gea-intro__skip:hover,
html[data-theme="dark"] .gea-intro__sound:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
}

@media (max-width: 700px), (orientation: portrait) {
  .gea-intro__gate-content {
    width: min(84vw, 340px);
    gap: 26px;
  }

  .gea-intro__gate-logo {
    width: clamp(136px, 39vw, 166px);
  }

  .gea-intro__start {
    width: min(78vw, 270px);
    min-width: 0;
    min-height: 52px;
    border-radius: 15px;
    font-size: 14px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .gea-intro__gate-content {
    grid-template-columns: 1fr !important;
    width: min(70vw, 320px);
    gap: 14px;
    align-items: center;
  }

  .gea-intro__gate-logo {
    grid-row: auto !important;
    width: min(24vh, 116px);
  }

  .gea-intro__start {
    justify-self: center;
    align-self: auto;
    min-width: 172px;
    min-height: 44px;
    border-radius: 13px;
  }
}
/* Dos caminos visibles: acceso directo y presentación opcional. */
.gea-intro__gate-actions { display: grid; gap: 12px; width: min(100%, 290px); }
.gea-intro__gate-actions .gea-intro__start { width: 100%; min-width: 0; }
.gea-intro__gate-actions .gea-intro__secondary { background: transparent; color: var(--gea-intro-ink); border: 1px solid currentColor; box-shadow: none; }
.gea-intro__gate-actions .gea-intro__secondary:hover { background: rgba(22,116,223,.08); }
html[data-theme="dark"] .gea-intro__gate-actions .gea-intro__secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

html[data-theme="dark"] .gea-intro__gate-actions .gea-intro__secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}
@media (max-height: 520px) and (orientation: landscape) {
  .gea-intro__gate-content { gap: 10px; }
  .gea-intro__gate-actions { gap: 8px; }
  .gea-intro__gate-actions .gea-intro__start { min-height: 44px; }
}
