/* AURA MEDIA — design tokens (alineados a la app MAUI) */
:root {
  --aura-bg: #0A0A0A;
  --aura-bg-elevated: #121212;
  --aura-surface: #1A1A1A;
  --aura-card: #1F1F1F;
  --aura-primary: #FFB800;
  --aura-primary-hover: #E6A600;
  --aura-text: #F5F5F5;
  --aura-text-muted: #A0A0A0;
  --aura-border: #2A2A2A;
  --aura-danger: #E53935;
  --aura-success: #43A047;
  --aura-sidebar: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 55%, #2A2000 100%);
  --aura-radius: 14px;
  --aura-radius-sm: 10px;
  --aura-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --aura-font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

body.aura-theme,
.aura-theme body {
  background: var(--aura-bg) !important;
  color: var(--aura-text) !important;
  font-family: var(--aura-font);
}

.aura-theme .sidebar {
  background: var(--aura-sidebar) !important;
  color: var(--aura-text) !important;
  border-right: 1px solid var(--aura-border);
}

.aura-theme .sidebar .brand,
.aura-theme .sidebar .nav-link,
.aura-theme .sidebar h4,
.aura-theme .sidebar .navbar-brand {
  color: var(--aura-text) !important;
}

.aura-theme .sidebar .nav-link:hover,
.aura-theme .sidebar .nav-link.active {
  background: rgba(255, 184, 0, 0.12) !important;
  color: var(--aura-primary) !important;
}

.aura-theme .card,
.aura-theme .table,
.aura-theme .modal-content,
.aura-theme .form-control,
.aura-theme .form-select {
  background-color: var(--aura-card) !important;
  color: var(--aura-text) !important;
  border-color: var(--aura-border) !important;
}

.aura-theme .btn-primary,
.aura-theme .pp-btn-primary {
  background: var(--aura-primary) !important;
  border-color: var(--aura-primary) !important;
  color: #111 !important;
  font-weight: 600;
}

.aura-theme .btn-primary:hover {
  background: var(--aura-primary-hover) !important;
  border-color: var(--aura-primary-hover) !important;
  color: #111 !important;
}

.aura-theme .text-muted,
.aura-theme .pp-help {
  color: var(--aura-text-muted) !important;
}

.aura-theme a {
  color: var(--aura-primary);
}

/* AURA MEDIA — paneles operativos y DataTables */
body.aura-theme {
  color-scheme: dark;
  line-height: 1.5;
}

.aura-theme .main-content {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 184, 0, 0.06), transparent 28rem),
    var(--aura-bg) !important;
}

.aura-theme .main-content-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aura-border);
}

.aura-theme .main-content-header h1,
.aura-theme .main-content-header h2,
.aura-theme .main-content-header h3 {
  color: #fff !important;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.aura-theme .sidebar {
  box-shadow: 14px 0 40px rgba(0, 0, 0, 0.28) !important;
}

.aura-theme .sidebar > .p-3 {
  padding: 24px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aura-theme .sidebar .nav {
  gap: 4px;
  padding: 12px 10px;
}

.aura-theme .sidebar .nav-link {
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 1px solid transparent !important;
  border-radius: var(--aura-radius-sm);
  color: #c9c9c9 !important;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.aura-theme .sidebar .nav-link:hover {
  border-color: rgba(255, 184, 0, 0.16) !important;
  transform: translateX(2px);
}

.aura-theme .sidebar .nav-link.active {
  border-color: rgba(255, 184, 0, 0.28) !important;
  box-shadow: inset 3px 0 0 var(--aura-primary);
}

.aura-theme .sidebar .nav-link i {
  color: var(--aura-primary);
}

.aura-theme .card,
.aura-theme .stats-card,
.aura-theme .modal-content,
.aura-theme .dropdown-menu {
  overflow: hidden;
  border: 1px solid var(--aura-border) !important;
  border-radius: var(--aura-radius) !important;
  background: var(--aura-surface) !important;
  color: var(--aura-text) !important;
  box-shadow: var(--aura-shadow) !important;
}

.aura-theme .card-header,
.aura-theme .modal-header {
  border-color: var(--aura-border) !important;
}

.aura-theme .card-header {
  padding: 14px 18px !important;
  background: linear-gradient(100deg, var(--aura-primary), #ffc83d) !important;
  color: #101010 !important;
  font-weight: 750;
}

.aura-theme .card-body,
.aura-theme .modal-body,
.aura-theme .modal-footer,
.aura-theme .list-group-item,
.aura-theme .accordion-item,
.aura-theme .accordion-button {
  border-color: var(--aura-border) !important;
  background-color: var(--aura-surface) !important;
  color: var(--aura-text) !important;
}

.aura-theme .bg-white,
.aura-theme .bg-light,
.aura-theme .table-light,
.aura-theme .table-light > tr > *,
.aura-theme .table > :not(caption) > * > * {
  --bs-bg-opacity: 1;
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255, 255, 255, 0.025);
  --bs-table-hover-bg: rgba(255, 184, 0, 0.075);
  --bs-table-color: var(--aura-text);
  background-color: var(--aura-surface) !important;
  color: var(--aura-text) !important;
  border-color: var(--aura-border) !important;
  box-shadow: none !important;
}

.aura-theme .table,
.aura-theme table.dataTable,
.aura-theme table.dataTable.no-footer {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0;
  border: 0 !important;
  background: var(--aura-surface) !important;
  color: var(--aura-text) !important;
}

.aura-theme .table thead th,
.aura-theme table.dataTable thead th,
.aura-theme table.dataTable thead td {
  padding: 14px 12px !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(255, 184, 0, 0.34) !important;
  background-color: #111 !important;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.aura-theme .table tbody td,
.aura-theme table.dataTable tbody td {
  padding: 13px 12px !important;
  vertical-align: middle;
  background-color: var(--aura-surface) !important;
  color: #e7e7e7 !important;
}

.aura-theme .table-striped > tbody > tr:nth-of-type(odd) > *,
.aura-theme table.dataTable.stripe > tbody > tr.odd > *,
.aura-theme table.dataTable.display > tbody > tr.odd > * {
  background-color: #181818 !important;
  color: var(--aura-text) !important;
  box-shadow: none !important;
}

.aura-theme .table-hover > tbody > tr:hover > *,
.aura-theme table.dataTable.hover > tbody > tr:hover > *,
.aura-theme table.dataTable.display > tbody > tr:hover > * {
  background-color: rgba(255, 184, 0, 0.075) !important;
  color: #fff !important;
}

.aura-theme table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before,
.aura-theme table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::before {
  background-color: var(--aura-primary) !important;
  color: #111 !important;
  box-shadow: none !important;
}

.aura-theme .dataTables_wrapper {
  overflow: visible !important;
  padding: 14px 0 0;
  color: var(--aura-text) !important;
}

.aura-theme .dataTables_wrapper .row {
  align-items: center;
  row-gap: 12px;
}

.aura-theme .dataTables_wrapper .dataTables_length,
.aura-theme .dataTables_wrapper .dataTables_filter,
.aura-theme .dataTables_wrapper .dataTables_info,
.aura-theme .dataTables_wrapper .dataTables_paginate,
.aura-theme .dataTables_wrapper label {
  color: #cfcfcf !important;
}

.aura-theme .dataTables_wrapper .dataTables_length select,
.aura-theme .dataTables_wrapper .dataTables_filter input,
.aura-theme .form-control,
.aura-theme .form-select,
.aura-theme .input-group-text {
  min-height: 44px;
  border: 1px solid var(--aura-border) !important;
  border-radius: var(--aura-radius-sm) !important;
  background-color: #101010 !important;
  color: var(--aura-text) !important;
}

.aura-theme .dataTables_wrapper .dataTables_filter input {
  min-width: 210px;
  margin-left: 8px;
}

.aura-theme .form-control::placeholder {
  color: #777 !important;
  opacity: 1;
}

.aura-theme .form-control:focus,
.aura-theme .form-select:focus,
.aura-theme .dataTables_wrapper input:focus,
.aura-theme .dataTables_wrapper select:focus {
  border-color: var(--aura-primary) !important;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.14) !important;
}

.aura-theme .dataTables_wrapper .dataTables_paginate .pagination {
  gap: 5px;
}

.aura-theme .dataTables_wrapper .page-link,
.aura-theme .dataTables_wrapper .paginate_button,
.aura-theme .pagination .page-link {
  min-width: 38px;
  border: 1px solid var(--aura-border) !important;
  border-radius: 9px !important;
  background: #111 !important;
  color: #d8d8d8 !important;
  box-shadow: none !important;
}

.aura-theme .dataTables_wrapper .page-item.active .page-link,
.aura-theme .dataTables_wrapper .paginate_button.current,
.aura-theme .pagination .active > .page-link {
  border-color: var(--aura-primary) !important;
  background: var(--aura-primary) !important;
  color: #111 !important;
  font-weight: 800;
}

.aura-theme .dataTables_wrapper .page-link:hover,
.aura-theme .dataTables_wrapper .paginate_button:hover,
.aura-theme .pagination .page-link:hover {
  border-color: rgba(255, 184, 0, 0.52) !important;
  background: rgba(255, 184, 0, 0.1) !important;
  color: var(--aura-primary) !important;
}

.aura-theme .dataTables_wrapper .page-item.disabled .page-link,
.aura-theme .dataTables_wrapper .paginate_button.disabled {
  border-color: #252525 !important;
  background: #0d0d0d !important;
  color: #666 !important;
  opacity: 1;
}

.aura-theme .btn {
  border-radius: var(--aura-radius-sm) !important;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.aura-theme .btn:hover {
  transform: translateY(-1px);
}

.aura-theme .btn-secondary {
  border-color: #3a3a3a !important;
  background: #262626 !important;
  color: #f2f2f2 !important;
}

.aura-theme .badge {
  padding: 0.48em 0.72em;
  border-radius: 999px !important;
  font-weight: 750;
}

.aura-theme .badge.bg-primary,
.aura-theme .badge.bg-warning {
  background: var(--aura-primary) !important;
  color: #111 !important;
}

.aura-theme .badge.bg-info {
  background: #1c9ab4 !important;
  color: #fff !important;
}

.aura-theme .badge.bg-success {
  background: #278a4b !important;
  color: #fff !important;
}

.aura-theme .badge.bg-secondary {
  background: #4b4b4b !important;
  color: #fff !important;
}

.aura-theme .table-responsive {
  border-radius: 0 0 var(--aura-radius) var(--aura-radius);
}

.aura-theme .aura-ticket-preview {
  display: inline-block;
  padding: 12px;
  border: 1px solid var(--aura-border);
  border-radius: var(--aura-radius);
  background: #0d0d0d;
}

@media (max-width: 767px) {
  .aura-theme .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: min(100%, 220px);
  }

  .aura-theme .table thead th,
  .aura-theme table.dataTable thead th,
  .aura-theme .table tbody td,
  .aura-theme table.dataTable tbody td {
    padding: 11px 9px !important;
  }
}

/* AURA MEDIA — landing público de entradas */
.aura-landing {
  --landing-display: "Bebas Neue", Impact, sans-serif;
  --landing-body: "Manrope", var(--aura-font);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #080808;
  color: var(--aura-text);
  font-family: var(--landing-body);
  scroll-behavior: smooth;
}

.aura-landing *,
.aura-landing *::before,
.aura-landing *::after {
  box-sizing: border-box;
}

.aura-landing a {
  color: inherit;
  text-decoration: none;
}

.landing-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--aura-primary);
  color: #080808 !important;
  font-weight: 800;
  transform: translateY(-150%);
}

.landing-skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.landing-brand b {
  color: var(--aura-primary);
}

.landing-brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.landing-brand-logo--lg {
  width: 56px;
  height: 56px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.landing-nav > a {
  position: relative;
  transition: color 180ms ease;
}

.landing-nav > a:not(.landing-nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--aura-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.landing-nav > a:hover,
.landing-nav > a:focus-visible {
  color: #fff;
}

.landing-nav > a:hover::after,
.landing-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.landing-nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 184, 0, 0.72);
  color: var(--aura-primary) !important;
}

.landing-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
}

.landing-menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 184, 0, 0.21), transparent 0 22%, transparent 46%),
    linear-gradient(110deg, #080808 0%, #0d0d0d 52%, #171207 100%);
}

.landing-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(255, 255, 255, 0.035) 74% 74.1%, transparent 74.1%),
    linear-gradient(0deg, transparent 0 20%, rgba(255, 255, 255, 0.035) 20% 20.1%, transparent 20.1%);
}

.landing-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  pointer-events: none;
}

.landing-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 184, 0, 0.23);
  border-radius: 50%;
  pointer-events: none;
  animation: landing-drift 12s ease-in-out infinite alternate;
}

.landing-orbit::after {
  content: "";
  position: absolute;
  top: 48%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aura-primary);
  box-shadow: 0 0 22px rgba(255, 184, 0, 0.85);
}

.landing-orbit-one {
  top: 14%;
  right: -8vw;
  width: min(54vw, 780px);
  aspect-ratio: 1;
}

.landing-orbit-two {
  right: 8vw;
  bottom: -37%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  animation-delay: -4s;
}

.landing-hero-content {
  align-self: center;
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
  padding: 138px 0 92px;
  animation: landing-reveal 850ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.landing-eyebrow,
.landing-kicker {
  margin: 0 0 20px;
  color: var(--aura-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.landing-eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--aura-primary);
}

.landing-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(74px, 10vw, 164px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.76;
  text-transform: uppercase;
}

.landing-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--aura-primary);
  text-stroke: 1.5px var(--aura-primary);
}

.landing-hero-copy {
  max-width: 560px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.7;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.landing-btn svg {
  width: 19px;
  margin-left: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.landing-btn:hover,
.landing-btn:focus-visible {
  transform: translateY(-2px);
}

.landing-btn-primary {
  background: var(--aura-primary);
  color: #090909 !important;
}

.landing-btn-primary:hover,
.landing-btn-primary:focus-visible {
  background: #ffc52f;
}

.landing-btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff !important;
}

.landing-btn-ghost:hover,
.landing-btn-ghost:focus-visible {
  border-color: var(--aura-primary);
}

.landing-hero-signature {
  position: absolute;
  right: clamp(30px, 5vw, 80px);
  bottom: 9%;
  display: grid;
  justify-items: end;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--landing-display);
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.7;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.landing-hero-signature strong {
  color: rgba(255, 184, 0, 0.36);
  font-weight: 400;
}

.landing-hero-signature i {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--landing-body);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.landing-scroll-cue {
  position: absolute;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54) !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.landing-scroll-cue i {
  position: relative;
  display: block;
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.landing-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aura-primary);
  animation: landing-signal 2.2s ease-in-out infinite;
}

.landing-events,
.landing-manifesto,
.landing-access,
.landing-final-cta,
.landing-footer {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}

.landing-events {
  padding: clamp(92px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--aura-border);
}

.landing-events-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.landing-events h2 {
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.86;
  text-transform: uppercase;
}

.landing-events h2 span {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--aura-primary);
  text-stroke: 1.2px var(--aura-primary);
}

.landing-events-intro {
  justify-self: end;
  max-width: 440px;
}

.landing-events-intro > p {
  margin: 0;
  color: var(--aura-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.landing-events-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.landing-event-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--aura-border);
  background: #101010;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.landing-event-card-featured {
  grid-column: span 8;
}

.landing-event-card:hover,
.landing-event-card:focus-within {
  border-color: rgba(255, 184, 0, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-5px);
}

/* Ratio box con padding-bottom: Safari iOS no pelea con aspect-ratio + height/%. */
.landing-event-media {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 */
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 34%, rgba(255, 184, 0, 0.25), transparent 32%),
    linear-gradient(135deg, #17120a, #080808 72%);
}

.landing-event-card-featured .landing-event-media {
  padding-bottom: 43.75%; /* 16:7 */
}

.landing-event-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.landing-event-media img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  -webkit-object-fit: cover;
  -webkit-object-position: center center;
  transition: transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.landing-event-card:hover .landing-event-media img {
  transform: scale(1.045);
}

.landing-event-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  justify-items: center;
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.72;
  opacity: 0;
  pointer-events: none;
}

.landing-event-media.is-placeholder .landing-event-placeholder {
  opacity: 1;
}

.landing-event-placeholder strong {
  color: var(--aura-primary);
  font-weight: 400;
}

.landing-event-placeholder i {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--landing-body);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.36em;
}

.landing-event-category {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: var(--aura-primary);
  color: #080808;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-event-body {
  padding: clamp(20px, 3vw, 30px);
}

.landing-event-date {
  margin: 0 0 10px;
  color: var(--aura-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-event-body h3 {
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
}

.landing-event-body h3 a:focus-visible {
  outline: 2px solid var(--aura-primary);
  outline-offset: 4px;
}

.landing-event-place {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 15px 0 0;
  color: var(--aura-text-muted);
  font-size: 12px;
}

.landing-event-place svg {
  width: 15px;
  fill: none;
  stroke: var(--aura-primary);
  stroke-width: 1.5;
}

.landing-event-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--aura-border);
  font-size: 11px;
  font-weight: 800;
}

.landing-event-footer > span {
  color: #fff;
}

.landing-event-footer a {
  color: var(--aura-primary) !important;
}

.landing-event-footer b {
  margin-left: 5px;
}

.landing-events-empty {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--aura-border);
  background: linear-gradient(110deg, #101010, #171207);
}

.landing-events-empty h3,
.landing-events-empty p {
  margin: 0;
}

.landing-events-empty h3 {
  color: #fff;
  font-family: var(--landing-display);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.landing-events-empty p {
  margin-top: 4px;
  color: var(--aura-text-muted);
  font-size: 13px;
}

.landing-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(300px, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 6vw, 100px);
  padding: clamp(100px, 12vw, 180px) 0;
  border-bottom: 1px solid var(--aura-border);
}

.landing-section-index {
  color: #505050;
  font-family: var(--landing-display);
  font-size: 23px;
}

.landing-manifesto h2,
.landing-access h2,
.landing-final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.86;
  text-transform: uppercase;
}

.landing-manifesto h2 span,
.landing-final-cta h2 span {
  color: var(--aura-primary);
}

.landing-manifesto-content > p:not(.landing-kicker) {
  max-width: 650px;
  margin: 35px 0 0;
  color: var(--aura-text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.landing-text-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--aura-primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
}

.landing-text-link span {
  color: var(--aura-primary);
}

.landing-signal {
  align-self: end;
}

.landing-signal > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--aura-border);
}

.landing-signal b {
  color: var(--aura-primary);
  font-size: 11px;
}

.landing-signal span {
  color: #fff;
  font-family: var(--landing-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-access {
  padding: clamp(100px, 12vw, 180px) 0;
}

.landing-access-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 72px;
}

.landing-access-heading > p {
  max-width: 440px;
  margin: 0 0 8px auto;
  color: var(--aura-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.landing-access-list {
  border-top: 1px solid var(--aura-border);
}

.landing-access-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(260px, 1fr) minmax(210px, 0.55fr) 60px;
  gap: 24px;
  align-items: center;
  min-height: 190px;
  padding: 34px 0;
  border-bottom: 1px solid var(--aura-border);
  transition: padding 220ms ease, background-color 220ms ease;
}

.landing-access-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -24px;
  background: rgba(255, 184, 0, 0.045);
  opacity: 0;
  transition: opacity 220ms ease;
}

.landing-access-row:hover {
  padding-right: 12px;
  padding-left: 12px;
}

.landing-access-row:hover::before {
  opacity: 1;
}

.landing-access-number {
  color: #555;
  font-family: var(--landing-display);
  font-size: 22px;
}

.landing-access-copy p {
  margin: 0 0 4px;
  color: var(--aura-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-access-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-access-copy > span {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  color: var(--aura-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.landing-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.landing-access-actions a {
  padding-bottom: 5px;
  border-bottom: 1px solid #4b4b4b;
  color: #d6d6d6 !important;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.landing-access-actions a:hover,
.landing-access-actions a:focus-visible {
  border-color: var(--aura-primary);
  color: var(--aura-primary) !important;
}

.landing-access-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #353535;
  border-radius: 50%;
  color: var(--aura-primary) !important;
  font-size: 22px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.landing-access-arrow:hover,
.landing-access-arrow:focus-visible {
  background: var(--aura-primary);
  color: #080808 !important;
  transform: rotate(45deg);
}

.landing-final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: clamp(100px, 13vw, 190px) 20px;
  border: 1px solid var(--aura-border);
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 184, 0, 0.2), transparent 42%),
    #0d0d0d;
}

.landing-final-cta::before,
.landing-final-cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: 50%;
}

.landing-final-cta::before {
  top: -160px;
  left: -100px;
}

.landing-final-cta::after {
  right: -100px;
  bottom: -160px;
}

.landing-final-cta .landing-btn {
  margin-top: 42px;
}

.landing-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 35px;
  align-items: center;
  padding: 46px 0;
}

.landing-footer p,
.landing-footer small {
  margin: 0;
  color: #6e6e6e;
  font-size: 11px;
}

.landing-footer-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
}

.landing-footer-links a:hover,
.landing-footer-links a:focus-visible {
  color: var(--aura-primary);
}

@keyframes landing-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-18px, 12px, 0) rotate(8deg); }
}

@keyframes landing-signal {
  0% { transform: translateX(-105%); }
  50%, 100% { transform: translateX(105%); }
}

@media (max-width: 900px) {
  .landing-header {
    width: min(100% - 40px, 1440px);
    padding: 20px 0;
  }

  .landing-menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .landing-nav {
    position: absolute;
    top: 0;
    right: -20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 78px 28px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    border: 1px solid var(--aura-border);
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .landing-nav.is-open {
    display: flex;
  }

  .landing-nav-cta {
    text-align: center;
  }

  .landing-hero-content,
  .landing-events,
  .landing-manifesto,
  .landing-access,
  .landing-final-cta,
  .landing-footer {
    width: min(100% - 40px, 1440px);
  }

  .landing-hero-signature {
    display: none;
  }

  .landing-orbit-one {
    top: 28%;
    right: -30vw;
    width: 90vw;
  }

  .landing-event-card,
  .landing-event-card-featured {
    grid-column: span 6;
  }

  .landing-event-card-featured .landing-event-media {
    padding-bottom: 75%; /* 4:3, igual que cards normales */
  }

  .landing-manifesto {
    grid-template-columns: 50px 1fr;
  }

  .landing-signal {
    grid-column: 2;
  }

  .landing-access-row {
    grid-template-columns: 48px minmax(230px, 1fr) 52px;
  }

  .landing-access-actions {
    grid-column: 2;
  }

  .landing-access-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .landing-footer {
    grid-template-columns: auto 1fr auto;
  }

  .landing-footer p {
    display: none;
  }
}

@media (max-width: 620px) {
  .landing-header,
  .landing-hero-content,
  .landing-events,
  .landing-manifesto,
  .landing-access,
  .landing-final-cta,
  .landing-footer {
    width: min(100% - 32px, 1440px);
  }

  .landing-brand {
    font-size: 13px;
  }

  .landing-brand-logo {
    width: 34px;
    height: 34px;
  }

  .landing-hero {
    min-height: 780px;
  }

  .landing-hero-content {
    padding: 120px 0 84px;
  }

  .landing-hero h1 {
    font-size: clamp(68px, 23vw, 102px);
    line-height: 0.8;
  }

  .landing-hero-copy {
    margin-top: 27px;
    font-size: 15px;
  }

  .landing-hero-actions {
    display: grid;
  }

  .landing-btn {
    width: 100%;
  }

  .landing-scroll-cue {
    left: 16px;
    transform: none;
  }

  .landing-events {
    padding: 84px 0;
  }

  .landing-events-heading {
    display: block;
    margin-bottom: 42px;
  }

  .landing-events h2 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .landing-events-intro {
    margin-top: 28px;
  }

  .landing-events-intro > p {
    font-size: 14px;
  }

  .landing-event-card,
  .landing-event-card-featured {
    grid-column: 1 / -1;
  }

  /* Móvil: 16:9 vía padding-bottom (~190px en 340px). Sin height fija ni
     aspect-ratio (Safari iOS rompe combos aspect-ratio + max-height/%). */
  .landing-event-media,
  .landing-event-card-featured .landing-event-media {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    max-height: none;
  }

  .landing-event-media img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    -webkit-object-fit: cover;
    -webkit-object-position: center center;
  }

  .landing-event-body h3 {
    font-size: 38px;
  }

  .landing-events-empty {
    grid-template-columns: auto 1fr;
    padding: 26px 20px;
  }

  .landing-events-empty .landing-btn {
    grid-column: 1 / -1;
  }

  .landing-manifesto {
    display: block;
    padding: 92px 0;
  }

  .landing-section-index {
    margin-bottom: 42px;
  }

  .landing-manifesto h2,
  .landing-access h2,
  .landing-final-cta h2 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .landing-manifesto-content > p:not(.landing-kicker) {
    margin-top: 28px;
    font-size: 15px;
  }

  .landing-signal {
    margin-top: 52px;
  }

  .landing-access {
    padding: 92px 0;
  }

  .landing-access-heading {
    display: block;
    margin-bottom: 52px;
  }

  .landing-access-heading > p {
    margin: 28px 0 0;
    font-size: 14px;
  }

  .landing-access-row {
    grid-template-columns: 32px 1fr 42px;
    gap: 12px;
    min-height: 0;
    padding: 30px 0;
  }

  .landing-access-row:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .landing-access-copy h3 {
    font-size: 40px;
  }

  .landing-access-copy > span {
    font-size: 12px;
  }

  .landing-access-arrow {
    width: 40px;
    height: 40px;
  }

  .landing-final-cta {
    padding-inline: 16px;
  }

  .landing-footer {
    grid-template-columns: 1fr auto;
    gap: 28px 18px;
  }

  .landing-footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    order: 3;
  }
}

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

  .landing-hero-content,
  .landing-orbit,
  .landing-scroll-cue i::after {
    animation: none;
  }

  .landing-btn,
  .landing-event-card,
  .landing-event-media img,
  .landing-access-row,
  .landing-access-arrow {
    transition: none;
  }
}

/* AURA MEDIA — accesos internos (solo presentación; Bootstrap conserva formularios) */
.aura-login {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 184, 0, 0.14), transparent 0 24%),
    radial-gradient(circle at 88% 84%, rgba(255, 184, 0, 0.08), transparent 0 22%),
    #080808 !important;
}

.aura-login::before {
  content: "";
  position: fixed;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 184, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
  animation: aura-login-drift 11s ease-in-out infinite alternate;
}

.aura-login-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  animation: aura-login-reveal 650ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.aura-login-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--aura-text-muted) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.aura-login-home:hover,
.aura-login-home:focus-visible {
  color: var(--aura-primary) !important;
}

.aura-login .login-card {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 7vw, 42px);
  border: 1px solid var(--aura-border);
  border-radius: var(--aura-radius);
  background: rgba(18, 18, 18, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.aura-login .logo {
  margin-bottom: 30px;
  text-align: left;
}

.aura-login .aura-login-logo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 0 12px;
  object-fit: contain;
  border-radius: 16px;
  background: #000;
}

.aura-login .logo h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 8vw, 36px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.aura-login .logo h1 i,
.aura-login .logo h1 strong {
  color: var(--aura-primary);
}

.aura-login .logo h1 strong {
  font-weight: inherit;
}

.aura-login .logo p {
  margin: 8px 0 0;
  color: var(--aura-text-muted) !important;
}

.aura-panel-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.aura-panel-brand-logo {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background: #000;
}

.aura-login .form-label {
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 700;
}

.aura-login .input-group-text,
.aura-login .form-control {
  min-height: 48px;
  border-color: var(--aura-border);
  background: #0d0d0d;
  color: #fff;
}

.aura-login .input-group-text {
  color: var(--aura-primary);
}

.aura-login .form-control:focus {
  border-color: var(--aura-primary);
  background: #0d0d0d;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 184, 0, 0.14);
}

.aura-login .btn-primary {
  min-height: 50px;
  margin-top: 8px;
  border: 1px solid var(--aura-primary);
  background: var(--aura-primary);
  color: #0a0a0a;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.aura-login .btn-primary:hover,
.aura-login .btn-primary:focus-visible {
  border-color: #ffc52f;
  background: #ffc52f;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.aura-login .alert-danger {
  border-color: rgba(229, 57, 53, 0.45);
  background: rgba(229, 57, 53, 0.12);
  color: #ffb8b6;
}

@keyframes aura-login-reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aura-login-drift {
  from { transform: translate3d(-17vw, -9vh, 0) rotate(0deg); }
  to { transform: translate3d(18vw, 8vh, 0) rotate(8deg); }
}

@media (max-width: 480px) {
  .aura-login {
    align-items: start;
    padding: 28px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aura-login::before,
  .aura-login-shell {
    animation: none;
  }

  .aura-login .btn-primary {
    transition: none;
  }
}
