/* ── Landing futbol ───────────────────────────────────────── */

#screen-landing {
  max-width: 100%;
  padding: 0 0 24px;
  --landing-section-pad: clamp(24px, 6vw, 44px);
  --brand-forest: #163623;
  --brand-forest-strong: #0d2218;
  --brand-green: #22c55e;
  --brand-green-soft: #bbf7d0;
  --brand-gold: #f5c518;
  --brand-gold-soft: #fde68a;
  --brand-blue: #60a5fa;
  --brand-blue-strong: #2563eb;
  --brand-blue-soft: #bfdbfe;
  --brand-premium: #0f1714;
  --brand-premium-soft: #15211d;
}

#screen-access,
#screen-login {
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.landing-topbar,
.landing-footer,
.landing-hero,
.landing-proof,
.landing-admin-control,
.landing-story,
.landing-action-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: calc(env(safe-area-inset-top, 0px) + 18px) 0 18px;
  position: relative;
  z-index: 2;
}

.landing-topbar-brand,
.landing-topbar-actions {
  min-width: 1px;
  display: flex;
  align-items: center;
}

.landing-topbar-actions {
  gap: 12px;
}

.landing-topbar-mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-topbar-btn {
  border: none;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue-strong));
  color: #f8fbff;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.24);
}

.landing-hero {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 40px;
  align-items: center;
  padding: var(--landing-section-pad) 0;
  position: relative;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: -14% -8%;
  background:
    radial-gradient(circle at 22% 22%, rgba(245,197,24,0.16), transparent 32%),
    radial-gradient(circle at 80% 26%, rgba(96,165,250,0.15), transparent 30%),
    radial-gradient(circle at 56% 55%, rgba(18,31,20,0.28), transparent 48%);
  filter: blur(26px);
  opacity: 0.92;
  pointer-events: none;
}

.landing-hero-copy,
.landing-hero-stage {
  position: relative;
  z-index: 1;
}

/* Ocultar el panel vacío del stage cuando no hay contenido */
.landing-hero-stage {
  display: none;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,197,24,0.24);
  background: rgba(245,197,24,0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-brand-line {
  display: none;
  margin: 14px 0 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.landing-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.94;
  margin: 18px 0 22px;
  max-width: 11.5ch;
  color: #f7f8f7;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.landing-title-tail {
  display: block;
  font-size: 60%;
  line-height: 1.08;
  margin-top: 0.28em;
  letter-spacing: -0.015em;
}

.landing-subtitle {
  margin: 0;
  max-width: 500px;
  color: rgba(240,240,240,0.74);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.landing-entry-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  width: min(425px, 100%);
}

.landing-cases {
  display: none !important;
}

@media (min-width: 768px) {
  .landing-hero-copy {
    padding-top: 10px;
  }
}

@media (min-width: 1024px) {
  .landing-hero {
    min-height: auto;
    align-items: start;
    gap: 32px;
    padding: 12px 0 0;
  }

  .landing-hero-stage {
    min-height: 360px;
    align-items: flex-start;
  }

  .landing-stage-orbit {
    width: 420px;
    height: 420px;
  }
}

.landing-entry-card {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 18px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(11, 17, 14, 0.92);
  font-family: var(--font);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 40px rgba(0,0,0,0.22);
}

.landing-entry-card:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 56px rgba(0,0,0,0.28);
}

.landing-entry-card:active {
  transform: scale(0.992);
}

button.landing-entry-card {
  width: 100%;
}

.landing-entry-card--directivo {
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.98), rgba(8, 15, 13, 0.98));
  border-color: rgba(67, 112, 192, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(67, 112, 192, 0.14),
    0 18px 40px rgba(0,0,0,0.22);
}

.landing-entry-card--directivo:hover {
  border-color: rgba(87, 134, 219, 0.72);
}

.landing-entry-card--jugador {
  background: linear-gradient(180deg, rgba(54, 46, 14, 0.98), rgba(24, 23, 11, 0.98));
  border-color: rgba(148, 125, 29, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(196, 157, 32, 0.16),
    0 18px 40px rgba(0,0,0,0.22);
}

.landing-entry-card--jugador:hover {
  border-color: rgba(193, 158, 31, 0.82);
}

.landing-entry-card--demo {
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.94), rgba(10, 28, 20, 0.98));
  border-color: rgba(74, 222, 128, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(74, 222, 128, 0.1),
    0 18px 40px rgba(0,0,0,0.22);
}

.landing-entry-card--demo:hover {
  border-color: rgba(74, 222, 128, 0.62);
}

.landing-entry-icon {
  font-size: 1.55rem;
  line-height: 1;
}

.landing-entry-copy {
  display: grid;
  gap: 6px;
  width: 100%;
}

.landing-entry-title {
  color: #f6f8f6;
  font-size: clamp(1.02rem, 1.55vw, 1.34rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.landing-entry-desc {
  color: rgba(209, 220, 208, 0.72);
  font-size: clamp(0.82rem, 1.05vw, 0.94rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.landing-entry-note {
  color: rgba(245, 236, 210, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.landing-entry-card--jugador .landing-entry-title,
.landing-entry-card--jugador .landing-entry-icon {
  color: #ffc91c;
}

.landing-entry-card--jugador .landing-entry-desc {
  color: rgba(245, 236, 210, 0.82);
}

.landing-entry-card--demo .landing-entry-title,
.landing-entry-card--demo .landing-entry-icon {
  color: #86efac;
}

.landing-entry-card--demo .landing-entry-desc {
  color: rgba(220, 252, 231, 0.82);
}

.landing-mini-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #f5f7f5;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.14s, border-color 0.2s, background 0.2s;
}

.landing-mini-entry:hover {
  transform: translateY(-1px);
}

.landing-mini-entry--directivo {
  background: rgba(20, 32, 51, 0.94);
  border-color: rgba(67, 112, 192, 0.42);
  box-shadow: inset 0 0 0 1px rgba(67, 112, 192, 0.08);
}

.landing-mini-entry--directivo:hover {
  border-color: rgba(87, 134, 219, 0.66);
}

.landing-mini-entry--jugador {
  background: rgba(61, 51, 15, 0.94);
  border-color: rgba(193, 158, 31, 0.42);
  color: #ffc91c;
  box-shadow: inset 0 0 0 1px rgba(196, 157, 32, 0.08);
}

.landing-mini-entry--jugador:hover {
  border-color: rgba(193, 158, 31, 0.66);
}

.landing-mini-entry-icon {
  font-size: 1rem;
  line-height: 1;
}

.landing-mini-entry-label {
  display: inline-flex;
  align-items: center;
}

.landing-cta {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}

.landing-cta:hover {
  transform: translateY(-1px);
}

.landing-cta--primary {
  background: var(--gold);
  color: #0a0f0a;
  box-shadow: 0 12px 32px rgba(245,197,24,0.18);
}

.landing-cta--ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}

.landing-hero-stage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 540px;
}

.landing-hero-stage .landing-entry-cards {
  width: min(425px, 100%);
  margin-left: auto;
}

.landing-stage-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(21,31,21,0.92), rgba(10,14,10,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.landing-stage-panel::before {
  content: '';
  position: absolute;
  inset: -35% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.26), transparent 68%);
}

.landing-stage-pills,
.landing-stage-stack,
.landing-stage-signal-row {
  position: relative;
  z-index: 1;
}

.landing-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.landing-stage-pill {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-stage-pill--gold {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.26);
  color: var(--gold);
}

.landing-stage-stack {
  display: grid;
  gap: 12px;
}

.landing-stage-metric {
  display: grid;
  gap: 6px;
  padding: 16px 16px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.landing-stage-metric--primary {
  background: linear-gradient(180deg, rgba(245,197,24,0.14), rgba(255,255,255,0.05));
  border-color: rgba(245,197,24,0.24);
}

.landing-stage-metric-kicker {
  color: rgba(255,255,255,0.54);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-stage-metric strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.landing-stage-metric em {
  color: rgba(255,255,255,0.62);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.45;
}

.landing-stage-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.landing-stage-signal {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.64);
  font-size: 0.76rem;
  font-weight: 700;
}

.landing-stage-signal--live {
  color: #f5e9a6;
  border-color: rgba(245,197,24,0.2);
}

.landing-stage-orbit {
  display: none;
}

@keyframes landingOrbit {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  to { transform: rotate(360deg) scale(1); }
}

.landing-device-frame {
  width: min(420px, 100%);
  margin-left: auto;
  padding: 14px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(24, 35, 27, 0.96), rgba(9, 14, 10, 0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}

.landing-device-screen {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(10, 18, 10, 0.98), rgba(7, 12, 7, 0.98));
  min-height: 760px;
}

.showcase-screen {
  padding: 0;
}

.showcase-login-card {
  min-height: 100%;
  border-radius: 26px;
  margin: 0;
  width: 100%;
  box-shadow: none;
}

.landing-device-screen .home-header {
  margin: 0;
  padding: 22px 14px 6px;
}

.landing-device-screen .home-shell-card {
  margin: 0 12px 14px;
  padding: 12px 12px 14px;
  border-radius: 18px;
}

.landing-device-screen .home-nav {
  gap: 12px;
  padding: 0 12px 18px;
}

.landing-device-screen .ballot-header,
.landing-device-screen .sb-header {
  position: static;
  padding: 14px 12px 10px;
}

.landing-device-screen .group-pills-wrap {
  position: static;
  top: auto;
  padding: 10px 12px 8px;
}

.landing-device-screen .group-pills {
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 6px !important;
}

.landing-device-screen .group-pills .ko-stage-pill {
  min-width: max-content;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.72rem;
  flex: 0 0 auto;
}

.landing-device-screen .group-pill {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  font-size: 0.82rem;
}

.landing-device-screen .matches-list {
  gap: 10px;
  padding: 6px 12px 18px;
}

.landing-device-screen .match-card {
  padding: 12px 12px 10px;
}

.landing-device-screen .mc-name {
  max-width: 88px;
}

.landing-device-screen .sb-body {
  padding: 0 12px 18px;
}

.landing-device-screen .sb-body--app {
  gap: 10px;
}

.landing-device-screen .admin-section {
  margin: 0 12px 10px;
}

.landing-device-screen .admin-section-intro {
  padding: 10px 14px 14px;
}

.landing-demo-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px 8px;
}

.landing-demo-filter {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.68);
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-demo-filter.is-active {
  border-color: rgba(245,197,24,0.28);
  background: rgba(245,197,24,0.1);
  color: var(--gold);
}

.landing-demo-reactions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 2px 0 0;
}

.landing-demo-reaction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.78);
  font-family: var(--font);
  cursor: pointer;
}

.landing-demo-reaction.is-active {
  border-color: rgba(245,197,24,0.36);
  background: rgba(245,197,24,0.08);
  color: var(--gold);
}

.landing-demo-inline-btn {
  margin-left: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245,197,24,0.24);
  background: rgba(245,197,24,0.08);
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.landing-demo-admin-locks {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.landing-demo-admin-locks .admin-lock-toggle {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}

.landing-demo-admin-locks .admin-lock-toggle span,
.landing-demo-admin-locks .admin-lock-toggle strong {
  pointer-events: none;
}

.landing-demo-admin-note {
  padding: 0 14px 14px;
  color: rgba(235, 239, 235, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.landing-demo-admin-menu {
  display: grid;
  gap: 12px;
  padding: 10px 12px 18px;
}

.landing-demo-admin-item {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px 14px 13px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  text-align: left;
  font-family: var(--font);
}

.landing-demo-admin-item-title {
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.landing-demo-admin-item-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
  line-height: 1.4;
}


.landing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: var(--landing-section-pad) 0;
}

.landing-proof > div {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.landing-proof-label {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.landing-proof-copy {
  color: rgba(255,255,255,0.56);
  font-size: 0.88rem;
  line-height: 1.55;
}

.landing-admin-control,
.landing-story {
  padding: var(--landing-section-pad) 0;
}

.landing-admin-control {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.landing-admin-control .landing-section-head {
  margin-bottom: 0;
}

.landing-admin-control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-admin-control-list li {
  position: relative;
  min-height: 48px;
  padding: 0 0 0 22px;
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.landing-admin-control-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,197,24,0.1);
}

.landing-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.landing-section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.05;
  color: #f7f8f7;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.landing-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px;
}

.landing-story-block {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.landing-story-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(245,197,24,0.86);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.landing-story-block h3 {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
}

.landing-story-block p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.65;
}

.landing-action-shell {
  padding: var(--landing-section-pad) 0;
}

.login-card--public {
  min-height: auto;
  padding: 44px 24px 56px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14,19,14,0.92), rgba(10,14,10,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

#screen-access[data-access-mode="create"] .login-card--public {
  background: linear-gradient(180deg, rgba(13, 22, 41, 0.96), rgba(8, 14, 28, 0.98));
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(96, 165, 250, 0.08),
    0 28px 70px rgba(0,0,0,0.28);
}

#screen-access[data-access-mode="create"] .landing-header::after {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.42), transparent);
}

#screen-access[data-access-mode="create"] .landing-kicker {
  border-color: rgba(96, 165, 250, 0.32);
  background: rgba(96, 165, 250, 0.1);
  color: #bfdbfe;
}

#screen-access[data-access-mode="create"] .landing-input {
  background: rgba(15, 23, 42, 0.54);
  border-color: rgba(59, 130, 246, 0.28);
}

#screen-access[data-access-mode="create"] .landing-input:focus {
  border-color: rgba(96, 165, 250, 0.92);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

#screen-access[data-access-mode="create"] .login-name-btn {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #06110b;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.28), 0 4px 12px rgba(0,0,0,0.4);
}

#screen-access[data-access-mode="create"] .landing-copy-btn {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(15, 23, 42, 0.48);
}

#screen-access[data-access-mode="create"] .landing-copy-btn:hover {
  border-color: rgba(96, 165, 250, 0.68);
}

#screen-access[data-access-mode="create"] .landing-admin-note {
  color: rgba(191, 219, 254, 0.84);
}

#screen-access[data-access-mode="create"] .landing-code-display {
  color: #93c5fd;
  text-shadow: 0 0 24px rgba(96, 165, 250, 0.35);
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(96, 165, 250, 0.34);
}

.landing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 22px;
  position: relative;
}

.landing-header::after {
  content: '';
  width: min(260px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.34), transparent);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.landing-action-title {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.landing-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 336px;
}

.landing-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 0;
  padding: 20px 22px;
  background: rgba(17, 24, 17, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
  box-shadow: none;
}

.landing-opt-btn:hover  { border-color: var(--gold); background: rgba(30,42,30,0.85); }
.landing-opt-btn:active { transform: scale(0.98); }
.landing-opt-btn:disabled,
.landing-entry-card:disabled {
  cursor: progress;
  opacity: 0.68;
}

.landing-opt-btn--directivo {
  background: linear-gradient(180deg, rgba(30,64,175,0.18), rgba(15,23,42,0.16));
  border-color: rgba(96,165,250,0.18);
  box-shadow: inset 0 0 0 1px rgba(96,165,250,0.07);
}

.landing-opt-btn--directivo:hover {
  border-color: rgba(96,165,250,0.32);
  background: linear-gradient(180deg, rgba(30,64,175,0.24), rgba(15,23,42,0.2));
}

.landing-opt-btn--jugador {
  background: linear-gradient(180deg, rgba(245,197,24,0.16), rgba(202,138,4,0.12));
  border-color: rgba(245,197,24,0.24);
  box-shadow: inset 0 0 0 1px rgba(245,197,24,0.08);
}

.landing-opt-btn--jugador:hover {
  border-color: rgba(245,197,24,0.38);
  background: linear-gradient(180deg, rgba(245,197,24,0.22), rgba(202,138,4,0.18));
}

.landing-opt-btn--demo {
  background: linear-gradient(180deg, rgba(22,163,74,0.18), rgba(20,83,45,0.14));
  border-color: rgba(74,222,128,0.22);
  box-shadow: inset 0 0 0 1px rgba(74,222,128,0.08);
}

.landing-opt-btn--demo:hover {
  border-color: rgba(74,222,128,0.38);
  background: linear-gradient(180deg, rgba(22,163,74,0.24), rgba(20,83,45,0.2));
}

.landing-opt-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.landing-opt-copy {
  display: grid;
  gap: 6px;
}

.landing-opt-icon  {
  font-size: 1.6rem;
  line-height: 1;
}

.landing-opt-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: normal;
}

.landing-opt-desc  {
  max-width: none;
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.45;
  letter-spacing: normal;
}

.landing-opt-note {
  font-size: 0.76rem;
  color: rgba(245, 236, 210, 0.72);
  line-height: 1.4;
}

.landing-opt-btn--jugador .landing-opt-title,
.landing-opt-btn--jugador .landing-opt-icon {
  color: #ffc91c;
}

.landing-opt-btn--jugador .landing-opt-desc {
  color: rgba(245, 236, 210, 0.82);
}

.landing-opt-btn--demo .landing-opt-title,
.landing-opt-btn--demo .landing-opt-icon {
  color: #86efac;
}

.landing-opt-btn--demo .landing-opt-desc {
  color: rgba(220, 252, 231, 0.82);
}

.landing-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.landing-back-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: fit-content;
}

.landing-back-btn:hover { color: var(--text); }

.landing-back-btn--center {
  margin: 6px auto 0;
  text-align: center;
}

.landing-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-input {
  width: 100%;
  background: rgba(17, 24, 17, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  padding: 12px 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}

.landing-code-input {
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-code-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.landing-code-msg {
  text-align: center;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.landing-code-display {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(245,197,24,0.5);
  padding: 16px 24px;
  background: rgba(245,197,24,0.08);
  border: 2px solid rgba(245,197,24,0.3);
  border-radius: 16px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.landing-copy-btn {
  background: rgba(17,24,17,0.75);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 10px 18px;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.2s;
}

.landing-copy-btn:hover { border-color: var(--gold); }

.landing-admin-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0 0 4px;
  text-align: left;
}

.landing-admin-note strong { color: var(--text); }

.landing-sa-link {
  margin-top: 22px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
  max-width: 320px;
}

.landing-sa-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.15s;
}

.landing-sa-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.landing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0 calc(env(safe-area-inset-bottom, 0px) + 28px);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.landing-footer-copy {
  max-width: 460px;
}

.landing-footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-footer-text {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.84rem;
  line-height: 1.5;
}

.landing-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.landing-footer-link {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

button.landing-footer-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
}

.landing-footer-link:hover {
  color: #fff;
}

#screen-access .landing-action-shell,
#screen-login .landing-action-shell {
  width: min(440px, calc(100% - 32px));
  padding: 0;
}

#screen-access .landing-header,
#screen-login .landing-header {
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 18px;
}

@media (max-width: 767px) {
  .landing-topbar,
  .landing-footer,
  .landing-hero,
  .landing-proof,
  .landing-admin-control,
  .landing-story,
  .landing-action-shell {
    width: min(100%, calc(100% - 28px));
  }

  .landing-hero,
  .landing-proof,
  .landing-admin-control,
  .landing-story-grid {
    grid-template-columns: 1fr;
  }

  .landing-admin-control-list {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
    padding: 18px 0 34px;
    gap: 24px;
  }

  .landing-hero-stage {
    min-height: auto;
  }

  .landing-stage-orbit {
    width: 360px;
    height: 360px;
  }

  .landing-title,
  .landing-section-title,
  .landing-subtitle {
    max-width: none;
  }

  .landing-entry-cards {
    width: min(425px, 100%);
    gap: 12px;
  }

  .landing-entry-card {
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .landing-entry-desc {
    max-width: 28ch;
  }

  .landing-device-frame {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .landing-device-screen {
    min-height: 680px;
  }

  .landing-options {
    max-width: none;
    gap: 16px;
  }
}

@media (max-width: 639px) {
  .landing-topbar {
    align-items: flex-start;
    gap: 12px;
  }

  .landing-topbar-actions {
    margin-left: auto;
  }

  .landing-topbar-btn,
  .landing-cta {
    width: 100%;
  }

  .landing-hero-actions {
    flex-direction: column;
  }

  .landing-mini-entry {
    width: 100%;
    justify-content: center;
  }

  .landing-device-frame {
    padding: 10px;
    border-radius: 28px;
  }

  .landing-device-screen {
    min-height: 620px;
    border-radius: 20px;
  }

  .landing-stage-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .landing-brand-line {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .landing-entry-card {
    padding: 16px 16px 18px;
    border-radius: 16px;
    gap: 8px;
  }

  .landing-entry-icon {
    font-size: 1.35rem;
  }

  .landing-entry-title {
    font-size: 1rem;
    line-height: 1.12;
  }

  .landing-entry-desc {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.4;
  }
}

.landing-action-shell {
  padding-top: 12px;
}

.landing-pricing {
  padding: var(--landing-section-pad) 0;
}

.landing-pricing .landing-section-head {
  margin: 0 auto 22px;
  padding-inline: clamp(14px, 3vw, 28px);
}

.landing-pricing .landing-section-title {
  max-width: none;
  white-space: normal;
  text-wrap: balance;
}

.landing-pricing-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-inline: clamp(14px, 3vw, 28px);
}

.landing-enterprise-panel {
  margin-top: 16px;
  padding-inline: clamp(14px, 3vw, 28px);
}

.landing-price-card {
  display: grid;
  gap: 10px;
  align-content: start;
  grid-template-rows: auto auto auto auto 1fr auto;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 20, 0.98), rgba(10, 16, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  color: #f6faf7;
}

.landing-price-card h3 {
  margin: 0;
  color: #f6faf7;
}

.landing-price-card--featured {
  border-color: rgba(245, 197, 24, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(245, 197, 24, 0.12),
    0 22px 44px rgba(245, 197, 24, 0.12);
}

.landing-price-card--enterprise {
  background: linear-gradient(180deg, rgba(18, 28, 44, 0.98), rgba(10, 18, 30, 0.98));
  border-color: rgba(96, 165, 250, 0.28);
}

.landing-enterprise-panel .landing-price-card--enterprise {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.landing-enterprise-panel .landing-price-pill,
.landing-enterprise-panel .landing-price-card h3,
.landing-enterprise-panel .landing-price-copy,
.landing-enterprise-panel .landing-price-meta {
  grid-column: 1;
}

.landing-enterprise-panel .landing-price-value,
.landing-enterprise-panel .landing-price-cta {
  grid-column: 2;
}

.landing-enterprise-panel .landing-price-value {
  grid-row: 1 / 3;
  justify-self: end;
}

.landing-enterprise-panel .landing-price-cta {
  grid-row: 3 / 5;
  width: min(220px, 100%);
  justify-self: end;
}

.landing-price-pill {
  justify-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--brand-green-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-price-card--featured .landing-price-pill {
  background: rgba(245, 197, 24, 0.14);
  color: var(--brand-gold-soft);
}

.landing-price-card--enterprise .landing-price-pill {
  background: rgba(96, 165, 250, 0.14);
  color: var(--brand-blue-soft);
}

.landing-price-copy,
.landing-price-meta,
.landing-code-plan {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.landing-price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-green-soft);
  line-height: 1.05;
}

.landing-price-card--featured .landing-price-value {
  color: var(--brand-gold-soft);
}

.landing-price-card--enterprise .landing-price-value {
  color: var(--brand-blue-soft);
}

.landing-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-green), #159947);
  color: #06110b;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
}

.landing-price-cta--secondary {
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue-strong));
  color: #f8fbff;
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.landing-plan-picker {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px;
}

.landing-plan-picker--compact {
  margin: 14px 0 12px;
}

.landing-plan-picker--compact .landing-plan-option {
  padding: 12px 14px;
  border-radius: 16px;
}

.landing-plan-picker--compact .landing-plan-option-head strong {
  font-size: 0.94rem;
}

.landing-plan-picker--compact .landing-plan-option-copy {
  font-size: 0.8rem;
}

.landing-plan-option {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(8, 31, 12, 0.18);
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  color: #102b1c;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 10px 22px rgba(6, 18, 30, 0.14);
}

.landing-plan-option.is-selected {
  border-color: rgba(110, 255, 172, 0.88);
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow:
    0 0 0 2px rgba(110, 255, 172, 0.26),
    0 16px 32px rgba(4, 18, 12, 0.28);
  color: #06110b;
}

.landing-plan-option.is-selected .landing-plan-option-copy,
.landing-plan-option.is-selected .landing-plan-option-head span {
  color: #06110b;
  opacity: 0.9;
}

.landing-plan-option.is-selected .landing-plan-option-head strong {
  color: #06110b;
}

.landing-plan-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-plan-option-head strong {
  font-size: 0.98rem;
  color: #143524;
}

.landing-plan-option-head span {
  color: #1e4a34;
  font-weight: 700;
}

.landing-plan-option-copy {
  color: #5e7466;
  font-size: 0.84rem;
  font-weight: 600;
}

.landing-payment-summary {
  display: grid;
  gap: 10px;
  margin: 12px 0 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 31, 12, 0.08);
  color: #32433a;
}

.landing-payment-summary strong {
  color: #185231;
}

@media (max-width: 639px) {
  .landing-pricing .landing-section-head {
    margin-bottom: 18px;
    padding-inline: 14px;
  }

  .landing-pricing .landing-section-title {
    max-width: 14ch;
  }

  .landing-price-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .landing-pricing-grid {
    padding-inline: 14px;
  }

  .landing-enterprise-panel {
    padding-inline: 14px;
  }

  .landing-enterprise-panel .landing-price-card--enterprise {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .landing-enterprise-panel .landing-price-pill,
  .landing-enterprise-panel .landing-price-card h3,
  .landing-enterprise-panel .landing-price-copy,
  .landing-enterprise-panel .landing-price-meta,
  .landing-enterprise-panel .landing-price-value,
  .landing-enterprise-panel .landing-price-cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }

  .landing-enterprise-panel .landing-price-cta {
    width: 100%;
  }

  .landing-price-value {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}

@media (min-width: 1024px) {
  .landing-pricing-grid {
    padding-inline: clamp(18px, 2vw, 36px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .landing-enterprise-panel {
    padding-inline: clamp(18px, 2vw, 36px);
  }
}
