@font-face {
  font-family: "Urbanist";
  src: url("../webfonts/Urbanist.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Now";
  src: url("../webfonts/Now-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --cv-navy: #002b49;
  --cv-deep: #001726;
  --cv-blue: #008ff0;
  --cv-orange: #ff7b13;
  --cv-white: #f7fbff;
  --cv-muted: rgba(231, 244, 255, .72);
  --cv-theme: #4757d7;
  --cv-theme-rgb: 71, 87, 215;
  --cv-topbar: 84px;
  --cv-radius: 400px;
  --cv-card-w: 270px;
  --cv-card-h: 168px;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
html { background: var(--cv-deep); }
body {
  margin: 0;
  overflow: hidden;
  color: var(--cv-white);
  background: var(--cv-deep);
  font-family: "Urbanist", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { max-width: 100%; }

.cv-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 12px;
  color: #001c30;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: top .2s ease;
}
.cv-skip-link:focus { top: 16px; }

.cv-background,
.cv-background__photo,
.cv-background__vignette,
.cv-background__scanlines,
.cv-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.cv-background { z-index: 0; overflow: hidden; }
.cv-background__photo {
  background:
    linear-gradient(90deg, rgba(0, 19, 34, .84) 0%, rgba(0, 31, 54, .61) 43%, rgba(0, 22, 39, .88) 100%),
    linear-gradient(0deg, rgba(0, 18, 31, .69), rgba(0, 18, 31, .16)),
    url("../img/inicio/cumbre-vanguardia/fondo-cumbre-leon.png") 58% center / cover no-repeat;
  transform: scale(1.025);
}
.cv-canvas {
  width: 100%;
  height: 100%;
  opacity: .82;
}
.cv-canvas--webgl { z-index: 1; }
.cv-canvas--fallback { z-index: 0; }
.cv-background__vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 34% 48%, rgba(var(--cv-theme-rgb), .18), transparent 33%),
    radial-gradient(circle at 75% 50%, rgba(0, 146, 240, .11), transparent 31%),
    linear-gradient(180deg, rgba(0, 12, 22, .15), rgba(0, 12, 22, .72));
  transition: background .5s ease;
}
.cv-background__scanlines {
  z-index: 3;
  opacity: .13;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,.055) 4px
  );
  mix-blend-mode: overlay;
}

.cv-topbar {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: var(--cv-topbar);
  display: grid;
  /*grid-template-columns: minmax(190px, 280px) 1fr minmax(180px, auto);*/
  grid-template-columns: minmax(300px, 360px) 1fr minmax(180px, auto);
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 3.5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(0,22,38,.82), rgba(0,22,38,.34));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cv-brand {
  width: 300px;
  height: 62px;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.cv-brand img {
  display: block;
  width: 300px;
  height: auto;
  max-height: 58px;

  object-fit: contain;
  object-position: left center;
}
/*.cv-brand {
  width: 180px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}
.cv-brand img {
  display: block;
  width: 180px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 6px 12px rgba(0,0,0,.24));
}*/
.cv-motto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 22px);
  color: rgba(255,255,255,.72);
  font-family: "Now", "Urbanist", sans-serif;
  font-size: clamp(10px, .86vw, 13px);
  letter-spacing: .22em;
  white-space: nowrap;
}
.cv-motto i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cv-orange);
  box-shadow: 0 0 12px rgba(255,123,19,.8);
}
.cv-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.cv-ghost-button,
.cv-home-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.055);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.cv-ghost-button {
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.cv-home-button {
  width: 40px;
  font-size: 19px;
}
.cv-button-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(var(--cv-theme-rgb), .72);
}
.cv-ghost-button:hover,
.cv-ghost-button:focus-visible,
.cv-home-button:hover,
.cv-home-button:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.13);
  outline: none;
}


/* Pantalla inicial: ¿Qué es la Cumbre? */
.cv-intro {
  position: fixed;
  z-index: 20;
  inset: var(--cv-topbar) 0 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vh, 54px) clamp(22px, 5vw, 78px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px) scale(.985);
  transition: opacity .65s ease, transform .8s cubic-bezier(.2,.8,.2,1), visibility 0s linear .8s;
}
.cv-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,18,31,.93) 0%, rgba(0,25,43,.78) 48%, rgba(0,20,35,.48) 100%),
    radial-gradient(circle at 74% 48%, rgba(0,143,240,.20), transparent 35%);
  backdrop-filter: blur(2px);
}
.cv-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(104,206,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104,206,255,.18) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
}
.cv-intro.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}
.cv-intro__grid {
  position: relative;
  z-index: 2;
  width: min(1480px, 100%);
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 88px);
}
.cv-intro__copy {
  width: min(720px, 100%);
  align-self: center;
}
.cv-intro__kicker {
  margin: 0 0 9px;
  color: rgba(255,255,255,.63);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .27em;
}
.cv-intro h1 {
  margin: 0;
  font-family: "Now", "Urbanist", sans-serif;
  font-size: clamp(44px, 5.3vw, 82px);
  line-height: .9;
  letter-spacing: -.055em;
  text-shadow: 0 15px 45px rgba(0,0,0,.42);
}
.cv-intro h1 em {
  display: block;
  color: var(--cv-blue);
  font-style: italic;
}
.cv-intro__lead {
  max-width: 680px;
  margin: clamp(17px, 2.3vh, 26px) 0 0;
  color: rgba(244,250,255,.84);
  font-size: clamp(14px, 1.22vw, 18px);
  line-height: 1.48;
}
.cv-intro__statements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: clamp(16px, 2.2vh, 24px);
}
.cv-intro__statements article {
  position: relative;
  min-height: 102px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 18px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(16px);
}
.cv-intro__statements article::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cv-blue), transparent);
  box-shadow: 0 0 15px rgba(0,143,240,.7);
}
.cv-intro__statements span {
  color: var(--cv-orange);
  font-family: "Now", sans-serif;
  font-size: 20px;
  line-height: 1;
}
.cv-intro__statements p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  line-height: 1.42;
}
.cv-intro__quote {
  margin: clamp(14px, 2vh, 22px) 0 0;
  padding: 13px 16px 13px 18px;
  border-left: 3px solid var(--cv-orange);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(255,123,19,.13), transparent);
}
.cv-intro__quote span,
.cv-intro__quote strong {
  display: block;
  font-size: clamp(12px, 1.03vw, 15px);
  line-height: 1.35;
}
.cv-intro__quote span { color: rgba(255,255,255,.72); }
.cv-intro__quote strong { color: #fff; }
.cv-intro__footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(17px, 2.4vh, 28px);
}
.cv-intro__enter {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 13px 11px 23px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, rgba(0,143,240,.94), rgba(0,95,174,.94));
  box-shadow: 0 14px 38px rgba(0,119,205,.29), inset 0 1px 0 rgba(255,255,255,.28);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cv-intro__enter i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #00223a;
  background: #fff;
  font-size: 21px;
  font-style: normal;
  transition: transform .2s ease;
}
.cv-intro__enter:hover,
.cv-intro__enter:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 18px 48px rgba(0,143,240,.38), inset 0 1px 0 rgba(255,255,255,.3);
  outline: none;
}
.cv-intro__enter:hover i,
.cv-intro__enter:focus-visible i { transform: translateX(3px); }
.cv-intro__date {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.19);
}
.cv-intro__date small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}
.cv-intro__date strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: "Now", sans-serif;
  font-size: 16px;
}
.cv-intro__visual {
  position: relative;
  min-width: 0;
  height: min(620px, 78vh);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.cv-intro__portal {
  --intro-rx: 0deg;
  --intro-ry: 0deg;
  position: relative;
  width: min(520px, 40vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(var(--intro-rx)) rotateY(var(--intro-ry));
  transition: transform .18s ease-out;
  animation: cvIntroFloat 6s ease-in-out infinite;
}
.cv-intro__portal::before {
  content: "";
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,143,240,.22), rgba(0,143,240,.04) 48%, transparent 70%);
  filter: blur(12px);
  transform: translateZ(-50px);
}
.cv-intro__halo,
.cv-intro__axis,
.cv-intro__logo-card,
.cv-intro__signal { position: absolute; }
.cv-intro__halo {
  inset: 50% auto auto 50%;
  border: 1px solid rgba(115,211,255,.32);
  border-radius: 50%;
  transform-style: preserve-3d;
  box-shadow: 0 0 34px rgba(0,143,240,.14), inset 0 0 28px rgba(0,143,240,.08);
}
.cv-intro__halo--outer {
  width: 100%; height: 100%;
  transform: translate(-50%,-50%) rotateX(68deg) rotateZ(6deg);
  animation: cvIntroOrbit 18s linear infinite;
}
.cv-intro__halo--middle {
  width: 76%; height: 76%;
  border-style: dashed;
  transform: translate(-50%,-50%) rotateY(67deg) rotateZ(-14deg);
  animation: cvIntroOrbitReverse 15s linear infinite;
}
.cv-intro__halo--inner {
  width: 57%; height: 57%;
  border-color: rgba(255,123,19,.46);
  transform: translate(-50%,-50%) rotateX(62deg) rotateY(19deg);
  box-shadow: 0 0 30px rgba(255,123,19,.14);
  animation: cvIntroOrbit 11s linear infinite;
}
.cv-intro__axis {
  left: 50%; top: 50%;
  width: 96%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,208,255,.35), transparent);
  transform-origin: center;
}
.cv-intro__axis--x { transform: translate(-50%,-50%) rotateZ(-12deg) translateZ(-8px); }
.cv-intro__axis--y { transform: translate(-50%,-50%) rotateZ(78deg) translateZ(-8px); }
.cv-intro__logo-card {
  left: 50%; top: 50%;
  width: 55%;
  aspect-ratio: .86;
  display: grid;
  place-items: center;
  padding: 14%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 34px;
  transform: translate(-50%,-50%) translateZ(76px) rotateX(-2deg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.035)),
    rgba(0,36,62,.72);
  box-shadow: 0 35px 80px rgba(0,0,0,.34), 0 0 48px rgba(0,143,240,.23), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(22px) saturate(120%);
}
.cv-intro__logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.16) 46%, transparent 62%);
  transform: translateX(-130%);
  animation: cvIntroShine 5.5s ease-in-out infinite;
}
.cv-intro__logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.cv-intro__signal {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.64);
  background: rgba(0,27,47,.62);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .22em;
  backdrop-filter: blur(12px);
}
.cv-intro__signal::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cv-orange);
  box-shadow: 0 0 11px rgba(255,123,19,.9);
}
.cv-intro__signal--one { left: 4%; top: 21%; transform: translateZ(110px); }
.cv-intro__signal--two { right: 0; top: 45%; transform: translateZ(45px); }
.cv-intro__signal--three { left: 10%; bottom: 15%; transform: translateZ(80px); }
.cv-intro__metrics {
  position: absolute;
  inset: auto 3% 2%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: rgba(0,25,43,.56);
  backdrop-filter: blur(16px);
}
.cv-intro__metrics span {
  padding: 12px 9px;
  color: rgba(255,255,255,.52);
  text-align: center;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}
.cv-intro__metrics span + span { border-left: 1px solid rgba(255,255,255,.11); }
.cv-intro__metrics b {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-family: "Now", sans-serif;
  font-size: 22px;
  letter-spacing: 0;
}
.cv-intro__edge {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cv-blue) 35%, var(--cv-orange) 66%, transparent);
  box-shadow: 0 0 18px rgba(0,143,240,.55);
}

.cv-app {
  transition: opacity .62s ease, transform .75s cubic-bezier(.2,.8,.2,1), filter .62s ease;
}
.cv-app.cv-app--waiting {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.985);
  filter: blur(8px);
}
.cv-app.cv-app--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.cv-app {
  position: relative;
  z-index: 10;
  height: 100svh;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(410px, 42%);
  padding-top: var(--cv-topbar);
  overflow: hidden;
}
.cv-stage {
  position: relative;
  min-width: 0;
  height: calc(100svh - var(--cv-topbar));
  overflow: hidden;
  perspective: 1300px;
  user-select: none;
  touch-action: pan-y;
}
.cv-stage-copy {
  position: absolute;
  z-index: 8;
  top: clamp(36px, 5.6vh, 76px);
  left: clamp(24px, 5vw, 82px);
  width: min(520px, 70%);
  pointer-events: none;
}
.cv-kicker,
.cv-detail__eyebrow,
.cv-modal__kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
}
.cv-stage-copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.25vw, 54px);
  line-height: .96;
  font-weight: 300;
  letter-spacing: -.035em;
  text-shadow: 0 10px 35px rgba(0,0,0,.4);
}
.cv-stage-copy h1 strong {
  display: inline-block;
  color: #fff;
  font-family: "Now", "Urbanist", sans-serif;
  font-size: .93em;
  font-weight: 700;
}
.cv-stage-instruction {
  margin: 18px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: .03em;
}

.cv-orbit-shell {
  position: absolute;
  z-index: 5;
  left: 48%;
  top: 57%;
  width: min(800px, 92%);
  height: min(540px, 65%);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  cursor: grab;
}
.cv-orbit-shell:active { cursor: grabbing; }
.cv-orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  perspective: 1300px;
}
.cv-orbit-glow {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(var(--cv-theme-rgb), .30), rgba(var(--cv-theme-rgb), .06) 44%, transparent 70%);
  filter: blur(8px);
  transition: background .4s ease;
}
.cv-orbit-ring {
  position: absolute;
  left: 50%;
  top: 54%;
  border: 1px solid rgba(133,210,255,.20);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotateX(72deg);
  box-shadow: 0 0 28px rgba(var(--cv-theme-rgb), .12), inset 0 0 28px rgba(var(--cv-theme-rgb), .07);
}
.cv-orbit-ring--one {
  width: 620px;
  height: 620px;
  animation: cvRingPulse 5.5s ease-in-out infinite;
}
.cv-orbit-ring--two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  opacity: .45;
  animation: cvRingSpin 20s linear infinite;
}
.cv-orbit-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 54%;
  width: 124px;
  height: 124px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  transform: translate(-50%,-50%) translateZ(55px);
  color: #fff;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.22), transparent 25%),
    linear-gradient(145deg, rgba(var(--cv-theme-rgb), .88), rgba(0,31,53,.84));
  box-shadow:
    0 0 0 10px rgba(var(--cv-theme-rgb), .05),
    0 0 60px rgba(var(--cv-theme-rgb), .34),
    inset 0 0 30px rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  transition: background .45s ease, box-shadow .45s ease;
}
.cv-core-number {
  font-family: "Now", "Urbanist", sans-serif;
  font-size: 42px;
  line-height: .9;
}
.cv-orbit-core small {
  margin-top: 7px;
  color: rgba(255,255,255,.66);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.cv-orbit-card {
  position: absolute;
  left: 50%;
  top: 54%;
  width: var(--cv-card-w);
  height: var(--cv-card-h);
  padding: 0;
  border: 0;
  border-radius: 23px;
  transform-style: preserve-3d;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: transform .72s cubic-bezier(.2,.78,.22,1), opacity .48s ease, filter .48s ease;
}
.cv-orbit-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px 19px 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: inherit;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035)),
    rgba(0,27,47,.68);
  box-shadow:
    0 24px 60px rgba(0,0,0,.27),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.cv-orbit-card__face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--card-rgb), .34), transparent 42%),
    linear-gradient(130deg, transparent 52%, rgba(var(--card-rgb), .15));
  pointer-events: none;
}
.cv-orbit-card__face::after {
  content: "";
  position: absolute;
  inset: auto 15px 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: rgb(var(--card-rgb));
  box-shadow: 0 0 22px rgba(var(--card-rgb), .9);
}
.cv-card-top,
.cv-card-title,
.cv-card-bottom { position: relative; z-index: 1; }
.cv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cv-card-number {
  font-family: "Now", "Urbanist", sans-serif;
  font-size: 22px;
  color: rgb(var(--card-rgb));
}
.cv-card-date {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  background: rgba(255,255,255,.05);
}
.cv-card-title {
  align-self: center;
  margin: 8px 0;
  font-family: "Now", "Urbanist", sans-serif;
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: -.015em;
}
.cv-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.57);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.cv-card-bottom b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(var(--card-rgb), .7);
}
.cv-orbit-card.is-active .cv-orbit-card__face {
  border-color: rgba(255,255,255,.42);
  box-shadow:
    0 30px 80px rgba(0,0,0,.36),
    0 0 38px rgba(var(--card-rgb), .24),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.cv-orbit-card:focus-visible { outline: none; }
.cv-orbit-card:focus-visible .cv-orbit-card__face {
  box-shadow: 0 0 0 3px #fff, 0 0 0 7px rgba(var(--card-rgb), .8), 0 30px 80px rgba(0,0,0,.4);
}

.cv-stage-controls {
  position: absolute;
  z-index: 12;
  left: clamp(24px, 5vw, 82px);
  bottom: clamp(64px, 7vh, 92px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cv-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cv-arrow:hover,
.cv-arrow:focus-visible {
  transform: scale(1.07);
  border-color: rgba(255,255,255,.48);
  background: rgba(var(--cv-theme-rgb), .55);
  outline: none;
}
.cv-counter {
  min-width: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.cv-counter span:first-child {
  color: #fff;
  font-size: 17px;
}
.cv-counter i {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

.cv-detail {
  position: relative;
  z-index: 15;
  align-self: stretch;
  min-width: 0;
  height: calc(100svh - var(--cv-topbar));
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  margin: 0;
  padding: clamp(30px, 4.2vh, 54px) clamp(25px, 3.2vw, 52px) clamp(23px, 3vh, 38px);
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(160deg, rgba(7,45,70,.78), rgba(0,24,42,.91)),
    rgba(0,25,43,.78);
  box-shadow: -28px 0 75px rgba(0,0,0,.22);
  backdrop-filter: blur(23px) saturate(118%);
  -webkit-backdrop-filter: blur(23px) saturate(118%);
}
.cv-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--cv-theme-rgb), .17), transparent 18%),
    radial-gradient(circle at 95% 5%, rgba(var(--cv-theme-rgb), .21), transparent 32%);
  transition: background .45s ease;
}
.cv-detail__glow {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(var(--cv-theme-rgb), .18);
  filter: blur(85px);
  transition: background .45s ease;
}
.cv-detail__topline,
.cv-detail__body,
.cv-detail__footer { position: relative; z-index: 2; }
.cv-detail__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.cv-forum-label,
.cv-forum-date {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}
.cv-forum-label { color: rgba(255,255,255,.56); }
.cv-forum-label b { color: rgb(var(--cv-theme-rgb)); font-size: 14px; }
.cv-forum-date {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(var(--cv-theme-rgb), .7);
  box-shadow: 0 0 18px rgba(var(--cv-theme-rgb), .24);
}
.cv-detail__body {
  min-height: 0;
  padding: clamp(24px, 3.4vh, 44px) 2px 18px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--cv-theme-rgb), .7) transparent;
}
.cv-detail__body::-webkit-scrollbar { width: 5px; }
.cv-detail__body::-webkit-scrollbar-thumb { background: rgba(var(--cv-theme-rgb), .75); border-radius: 5px; }
.cv-detail__body.is-changing { animation: cvPanelChange .42s ease both; }
.cv-detail__eyebrow { color: rgb(var(--cv-theme-rgb)); }
.cv-detail h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-family: "Now", "Urbanist", sans-serif;
  font-size: clamp(29px, 3.1vw, 50px);
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.cv-venue {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: clamp(20px, 2.8vh, 31px);
}
.cv-venue__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--cv-theme-rgb), .52);
  border-radius: 14px;
  color: rgb(var(--cv-theme-rgb));
  background: rgba(var(--cv-theme-rgb), .10);
  font-size: 19px;
}
.cv-venue small,
.cv-speakers-head small,
.cv-theme-modal__venue small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}
.cv-venue strong {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.2;
}
.cv-sessions {
  display: grid;
  gap: 10px;
  margin-top: clamp(20px, 2.7vh, 30px);
}
.cv-session {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0,1fr);
  align-items: center;
  gap: 13px;
  min-height: 57px;
  padding: 10px 13px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
}
.cv-session::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgb(var(--cv-theme-rgb));
  box-shadow: 0 0 15px rgba(var(--cv-theme-rgb), .7);
}
.cv-session time {
  justify-self: start;
  padding: 5px 7px;
  border-radius: 7px;
  color: #fff;
  background: rgba(var(--cv-theme-rgb), .66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
}
.cv-session span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.22;
}
.cv-speakers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(22px, 3vh, 33px);
}
.cv-speakers-head strong {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.cv-speakers-head > span {
  color: rgba(255,255,255,.44);
  font-size: 10px;
  font-weight: 700;
}
.cv-speakers {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  padding: 2px 2px 5px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cv-speakers::-webkit-scrollbar { display: none; }
.cv-speaker-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cv-speaker-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  background: #e7eef4;
}
.cv-speaker-avatar::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border: 2px solid #06243a;
  border-radius: 50%;
  background: rgb(var(--cv-theme-rgb));
}
.cv-speaker-avatar:hover,
.cv-speaker-avatar:focus-visible {
  z-index: 2;
  transform: translateY(-4px) scale(1.08);
  border-color: rgb(var(--cv-theme-rgb));
  box-shadow: 0 10px 22px rgba(0,0,0,.32), 0 0 18px rgba(var(--cv-theme-rgb), .3);
  outline: none;
}
.cv-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.cv-primary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(var(--cv-theme-rgb), .96), rgba(var(--cv-theme-rgb), .55));
  box-shadow: 0 12px 26px rgba(0,0,0,.18), 0 0 24px rgba(var(--cv-theme-rgb), .14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cv-primary-button span { font-size: 19px; }
.cv-primary-button:hover,
.cv-primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.26), 0 0 30px rgba(var(--cv-theme-rgb), .25);
  outline: none;
}
.cv-summit-date {
  text-align: right;
}
.cv-summit-date small {
  display: block;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}
.cv-summit-date strong {
  color: #fff;
  font-family: "Now", "Urbanist", sans-serif;
  font-size: 17px;
  letter-spacing: .03em;
}

.cv-theme-nav {
  position: fixed;
  z-index: 25;
  left: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}
.cv-theme-dot {
  width: 31px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, box-shadow .25s ease;
}
.cv-theme-dot.is-active {
  width: 63px;
  background: rgb(var(--dot-rgb));
  box-shadow: 0 0 16px rgba(var(--dot-rgb), .5);
}
.cv-theme-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.cv-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(12px, 3vw, 38px);
}
.cv-modal.is-open { display: grid; }
.cv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,13,24,.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.cv-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1060px);
  max-height: min(91svh, 900px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 26px;
  background:
    radial-gradient(circle at 95% 0, rgba(var(--cv-theme-rgb), .20), transparent 34%),
    linear-gradient(145deg, rgba(7,48,75,.98), rgba(0,23,40,.98));
  box-shadow: 0 36px 110px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.12);
  animation: cvModalIn .32s cubic-bezier(.18,.84,.24,1) both;
}
.cv-modal__close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.cv-modal__close:hover,
.cv-modal__close:focus-visible {
  transform: rotate(5deg) scale(1.05);
  background: rgba(255,255,255,.17);
  outline: none;
}
.cv-modal__dialog--theme {
  height: min(72svh, 640px);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto minmax(0,1fr);
}
.cv-theme-modal__header {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 80px 25px 32px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.cv-theme-modal__header > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-family: "Now";
  font-size: 30px;
  background: rgba(var(--cv-theme-rgb), .8);
  box-shadow: 0 0 32px rgba(var(--cv-theme-rgb), .26);
}
.cv-theme-modal__header small {
  color: rgb(var(--cv-theme-rgb));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
.cv-theme-modal__header h2 {
  margin: 5px 0 0;
  font-family: "Now";
  font-size: clamp(24px, 3vw, 42px);
  line-height: .96;
  letter-spacing: -.03em;
}
.cv-theme-modal__content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) 1.35fr;
}
.cv-theme-modal__agenda,
.cv-theme-modal__speakers {
  min-height: 0;
  padding: 28px 30px;
  overflow-y: auto;
}
.cv-theme-modal__agenda {
  border-right: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.025);
}
.cv-modal-section-label {
  margin: 0 0 16px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}
.cv-theme-modal__agenda .cv-session {
  grid-template-columns: 72px 1fr;
  margin-bottom: 10px;
}
.cv-theme-modal__venue {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.cv-theme-modal__venue strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}
.cv-speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.cv-speaker-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  color: #fff;
  text-align: left;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.cv-speaker-card img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(var(--cv-theme-rgb), .7);
  border-radius: 50%;
  object-fit: cover;
  background: #e7eef4;
}
.cv-speaker-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.08;
}
.cv-speaker-card small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cv-speaker-card:hover,
.cv-speaker-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--cv-theme-rgb), .6);
  background: rgba(var(--cv-theme-rgb), .10);
  outline: none;
}

.cv-modal__dialog--speaker { width: min(760px, 100%); }
.cv-speaker-profile {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) 1.35fr;
  min-height: 430px;
}
.cv-speaker-profile__image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(var(--cv-theme-rgb), .38), rgba(0,20,34,.95));
}
.cv-speaker-profile__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,23,40,.38), transparent 55%);
  pointer-events: none;
}
.cv-speaker-profile__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cv-speaker-profile__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px 44px;
}
.cv-speaker-profile__copy h2 {
  margin: 0;
  font-family: "Now";
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: .95;
  letter-spacing: -.04em;
}
.cv-speaker-profile__copy > p:last-child {
  margin: 22px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.55;
}

body.cv-modal-open { overflow: hidden !important; }

.cv-noscript {
  position: fixed;
  z-index: 2000;
  inset: auto 20px 20px;
  padding: 15px 20px;
  border-radius: 14px;
  color: #001c30;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0,0,0,.4);
}

@keyframes cvIntroFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
@keyframes cvIntroOrbit {
  to { rotate: 0 0 1 360deg; }
}
@keyframes cvIntroOrbitReverse {
  to { rotate: 0 1 0 -360deg; }
}
@keyframes cvIntroShine {
  0%,58% { transform: translateX(-130%); }
  78%,100% { transform: translateX(135%); }
}

@keyframes cvRingPulse {
  0%,100% { opacity:.32; transform:translate(-50%,-50%) rotateX(72deg) scale(.98); }
  50% { opacity:.65; transform:translate(-50%,-50%) rotateX(72deg) scale(1.03); }
}
@keyframes cvRingSpin {
  to { transform:translate(-50%,-50%) rotateX(72deg) rotateZ(360deg); }
}
@keyframes cvPanelChange {
  0% { opacity:.15; transform:translateX(12px); filter:blur(3px); }
  100% { opacity:1; transform:translateX(0); filter:blur(0); }
}
@keyframes cvModalIn {
  from { opacity:0; transform:translateY(18px) scale(.975) rotateX(2deg); }
  to { opacity:1; transform:translateY(0) scale(1) rotateX(0); }
}

@media (max-width: 1180px) {
  .cv-intro__grid { grid-template-columns:minmax(0,1.08fr) minmax(340px,.82fr); gap:30px; }
  .cv-intro__portal { width:min(460px,39vw); }
  :root { --cv-radius: 340px; --cv-card-w: 244px; --cv-card-h: 156px; }
  .cv-app { grid-template-columns: minmax(0, 54%) minmax(390px, 46%); }
  .cv-topbar { grid-template-columns: 250px 1fr auto; /*grid-template-columns: 190px 1fr auto; gap: 12px;*/ }
  .cv-ghost-button { padding: 9px 11px; }
  .cv-ghost-button .cv-button-icon { display:none; }
  .cv-stage-copy { width: 72%; }
  .cv-orbit-shell { left:45%; }
  .cv-brand,
  .cv-brand img {
	width: 240px;
  }
}

@media (max-width: 960px) {
  .cv-intro { padding:26px 24px; }
  .cv-intro__grid { grid-template-columns:1fr; }
  .cv-intro__copy { position:relative; z-index:2; width:min(670px,78%); }
  .cv-intro__visual { position:absolute; z-index:1; right:-7%; top:4%; width:57%; height:92%; opacity:.58; }
  .cv-intro__portal { width:min(430px,52vw); }
  .cv-intro__metrics { display:none; }
  :root { --cv-topbar: 70px; --cv-card-w: 220px; --cv-card-h: 142px; }
  .cv-topbar {
    /*grid-template-columns: 136px 1fr auto;*/
	grid-template-columns: 150px 1fr auto;
    padding: 7px 14px;
  }
 /* .cv-brand { width: 128px; height: 54px; }
  .cv-brand img { width: 128px; height:auto; max-height:50px; }*/
  .cv-brand,
  .cv-brand img {
    width: 145px;
  }
  
  .cv-brand img {
    max-height: 48px;
  }
  .cv-motto { justify-content:flex-start; font-size:9px; letter-spacing:.13em; }
  .cv-top-actions .cv-ghost-button span:last-child { display:none; }
  .cv-ghost-button { width:38px; min-height:38px; padding:0; }
  .cv-ghost-button .cv-button-icon { display:grid; }
  .cv-home-button { width:38px; height:38px; }

  .cv-app {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(270px, 44%) minmax(0, 56%);
    padding-top: var(--cv-topbar);
  }
  .cv-stage {
    height: auto;
    min-height: 0;
  }
  .cv-stage-copy {
    top: 18px;
    left: 20px;
    width: 55%;
  }
  .cv-stage-copy h1 { font-size: clamp(23px, 4.7vw, 39px); }
  .cv-stage-instruction { display:none; }
  .cv-orbit-shell {
    left: 68%;
    top: 58%;
    width: 61%;
    height: 95%;
    transform:translate(-50%,-50%) scale(.76);
  }
  .cv-orbit-ring--one { width:540px; height:540px; }
  .cv-orbit-ring--two { width:370px; height:370px; }
  .cv-stage-controls { left:20px; bottom:18px; }

  .cv-detail {
    height:auto;
    min-height:0;
    padding: 18px 20px 15px;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.16);
  }
  .cv-detail__topline { padding-bottom:10px; }
  .cv-detail__body { padding:14px 1px 10px; }
  .cv-detail h2 { font-size:clamp(25px, 5.3vw, 39px); }
  .cv-venue { margin-top:13px; }
  .cv-sessions { margin-top:13px; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .cv-session { grid-template-columns:58px 1fr; min-height:51px; }
  .cv-session span { font-size:10px; }
  .cv-speakers-head { margin-top:14px; }
  .cv-detail__footer { padding-top:10px; }
  .cv-theme-nav { bottom: 8px; left:auto; right:18px; transform:none; }
  .cv-theme-dot { width:20px; height:5px; }
  .cv-theme-dot.is-active { width:38px; }
}

@media (max-width: 680px) {
  .cv-intro { padding:18px 16px 16px; }
  .cv-intro::after { opacity:.07; background-size:42px 42px; }
  .cv-intro__grid { align-items:center; }
  .cv-intro__copy { width:100%; }
  .cv-intro h1 { font-size:clamp(38px,12vw,54px); }
  .cv-intro__lead { margin-top:14px; font-size:13px; line-height:1.38; }
  .cv-intro__statements { grid-template-columns:1fr; gap:7px; margin-top:12px; }
  .cv-intro__statements article { min-height:0; grid-template-columns:30px 1fr; padding:10px 12px; border-radius:14px; }
  .cv-intro__statements span { font-size:17px; }
  .cv-intro__statements p { font-size:11px; line-height:1.32; }
  .cv-intro__quote { margin-top:11px; padding:9px 11px 9px 13px; }
  .cv-intro__quote span, .cv-intro__quote strong { font-size:10.5px; }
  .cv-intro__footer { margin-top:14px; gap:11px; }
  .cv-intro__enter { min-height:48px; padding:8px 9px 8px 17px; font-size:10px; gap:11px; }
  .cv-intro__enter i { width:31px; height:31px; }
  .cv-intro__date { padding-left:11px; }
  .cv-intro__date strong { font-size:12px; }
  .cv-intro__visual { display:none; }
  :root { --cv-card-w: 205px; --cv-card-h: 133px; }
  .cv-motto span:not(:last-child), .cv-motto i { display:none; }
  .cv-motto { justify-content:center; }
  .cv-app { grid-template-rows: minmax(255px, 41%) minmax(0,59%); }
  .cv-stage-copy { width:65%; }
  .cv-stage-copy h1 { font-size:clamp(21px, 6.8vw, 31px); }
  .cv-kicker { font-size:8px; }
  .cv-orbit-shell {
    left:76%;
    top:61%;
    width:58%;
    transform:translate(-50%,-50%) scale(.66);
  }
  .cv-stage-controls { bottom:11px; gap:5px; }
  .cv-arrow { width:38px; height:38px; }
  .cv-counter { display:none; }

  .cv-detail { padding:14px 15px 11px; }
  .cv-detail h2 { font-size:clamp(23px, 7.2vw, 33px); }
  .cv-detail__eyebrow { margin-bottom:6px; font-size:8px; }
  .cv-venue__icon { width:35px; height:35px; border-radius:11px; }
  .cv-venue strong { font-size:11px; }
  .cv-sessions { grid-template-columns:1fr; gap:7px; }
  .cv-session { min-height:44px; padding:7px 10px; }
  .cv-speakers-head { margin-top:12px; }
  .cv-speaker-avatar { width:45px; height:45px; flex-basis:45px; }
  .cv-detail__footer { gap:8px; }
  .cv-primary-button { min-height:42px; padding:9px 12px; font-size:10px; }
  .cv-summit-date strong { font-size:13px; }
  .cv-theme-nav { display:none; }

  .cv-modal { padding:8px; }
  .cv-modal__dialog { border-radius:19px; }
  .cv-modal__close { top:10px; right:10px; width:38px; height:38px; }

  .cv-modal__dialog--theme {
    height:calc(100svh - 16px);
    min-height:0;
  }
  .cv-theme-modal__header { grid-template-columns:55px 1fr; gap:12px; padding:18px 55px 16px 16px; }
  .cv-theme-modal__header > span { width:52px; height:52px; border-radius:14px; font-size:22px; }
  .cv-theme-modal__content { grid-template-columns:1fr; overflow-y:auto; }
  .cv-theme-modal__agenda,
  .cv-theme-modal__speakers { overflow:visible; padding:18px 16px; }
  .cv-theme-modal__agenda { border-right:0; border-bottom:1px solid rgba(255,255,255,.13); }
  .cv-speaker-grid { grid-template-columns:1fr; }

  .cv-speaker-profile { grid-template-columns:1fr; max-height:calc(100svh - 16px); overflow-y:auto; }
  .cv-speaker-profile__image { min-height:250px; height:250px; }
  .cv-speaker-profile__copy { padding:28px 22px 30px; }
}

@media (max-height: 700px) and (min-width: 961px) {
  .cv-intro { padding-top:20px; padding-bottom:20px; }
  .cv-intro h1 { font-size:clamp(42px,4.8vw,64px); }
  .cv-intro__lead { margin-top:13px; font-size:14px; }
  .cv-intro__statements { margin-top:13px; }
  .cv-intro__statements article { min-height:84px; padding:12px 13px; }
  .cv-intro__quote { margin-top:11px; padding-top:9px; padding-bottom:9px; }
  .cv-intro__footer { margin-top:13px; }
  .cv-intro__visual { height:570px; }
  :root { --cv-topbar: 70px; --cv-card-w: 235px; --cv-card-h: 145px; }
  .cv-brand { height:52px; }
  .cv-brand img { max-height:48px; }
  .cv-stage-copy { top:25px; }
  .cv-stage-copy h1 { font-size:38px; }
  .cv-orbit-shell { top:59%; transform:translate(-50%,-50%) scale(.87); }
  .cv-stage-controls { bottom:36px; }
  .cv-detail { padding-top:28px; padding-bottom:20px; }
  .cv-detail__body { padding-top:20px; }
  .cv-detail h2 { font-size:37px; }
  .cv-venue { margin-top:16px; }
  .cv-sessions { margin-top:16px; }
  .cv-speakers-head { margin-top:17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior:auto !important;
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .cv-background__scanlines { display:none; }
}

/* =========================================================
   Accesibilidad para baja visión
   ========================================================= */
:root {
  --cv-reading-scale: 1;
}

/* Tamaños de lectura. La interfaz no crece completa: sólo el contenido esencial. */
html[data-cv-text-size="large"] { --cv-reading-scale: 1.17; }
html[data-cv-text-size="xlarge"] { --cv-reading-scale: 1.34; }

html[data-cv-text-size="large"] .cv-intro__lead,
html[data-cv-text-size="xlarge"] .cv-intro__lead {
  font-size: calc(17px * var(--cv-reading-scale));
  line-height: 1.55;
}
html[data-cv-text-size="large"] .cv-intro__statements p,
html[data-cv-text-size="xlarge"] .cv-intro__statements p {
  font-size: calc(13px * var(--cv-reading-scale));
  line-height: 1.5;
}
html[data-cv-text-size="large"] .cv-intro__quote span,
html[data-cv-text-size="large"] .cv-intro__quote strong,
html[data-cv-text-size="xlarge"] .cv-intro__quote span,
html[data-cv-text-size="xlarge"] .cv-intro__quote strong {
  font-size: calc(13px * var(--cv-reading-scale));
  line-height: 1.48;
}
html[data-cv-text-size="large"] .cv-intro__enter,
html[data-cv-text-size="xlarge"] .cv-intro__enter {
  font-size: calc(12px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-stage-instruction,
html[data-cv-text-size="xlarge"] .cv-stage-instruction,
html[data-cv-text-size="large"] .cv-venue strong,
html[data-cv-text-size="xlarge"] .cv-venue strong,
html[data-cv-text-size="large"] .cv-speakers-head strong,
html[data-cv-text-size="xlarge"] .cv-speakers-head strong {
  font-size: calc(13px * var(--cv-reading-scale));
  line-height: 1.4;
}
html[data-cv-text-size="large"] .cv-session span,
html[data-cv-text-size="xlarge"] .cv-session span {
  font-size: calc(12px * var(--cv-reading-scale));
  line-height: 1.4;
}
html[data-cv-text-size="large"] .cv-session time,
html[data-cv-text-size="xlarge"] .cv-session time,
html[data-cv-text-size="large"] .cv-forum-label,
html[data-cv-text-size="large"] .cv-forum-date,
html[data-cv-text-size="xlarge"] .cv-forum-label,
html[data-cv-text-size="xlarge"] .cv-forum-date {
  font-size: calc(10px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-primary-button,
html[data-cv-text-size="xlarge"] .cv-primary-button {
  font-size: calc(12px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-theme-modal__header small,
html[data-cv-text-size="xlarge"] .cv-theme-modal__header small,
html[data-cv-text-size="large"] .cv-modal-section-label,
html[data-cv-text-size="xlarge"] .cv-modal-section-label,
html[data-cv-text-size="large"] .cv-theme-modal__venue,
html[data-cv-text-size="xlarge"] .cv-theme-modal__venue {
  font-size: calc(11px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-speaker-card strong,
html[data-cv-text-size="xlarge"] .cv-speaker-card strong {
  font-size: calc(12px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-speaker-card small,
html[data-cv-text-size="xlarge"] .cv-speaker-card small {
  font-size: calc(10px * var(--cv-reading-scale));
}
html[data-cv-text-size="large"] .cv-speaker-profile__copy > p:last-child,
html[data-cv-text-size="xlarge"] .cv-speaker-profile__copy > p:last-child {
  font-size: calc(15px * var(--cv-reading-scale));
  line-height: 1.65;
}
html[data-cv-text-size="large"] .cv-intro__copy,
html[data-cv-text-size="xlarge"] .cv-intro__copy {
  max-height: 100%;
  padding-right: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(128,214,255,.72) transparent;
}
html[data-cv-text-size="large"] .cv-intro__statements article,
html[data-cv-text-size="xlarge"] .cv-intro__statements article {
  min-height: 118px;
}

/* Alto contraste: refuerza legibilidad sin perder la estética. */
html.cv-high-contrast .cv-background__photo {
  filter: brightness(.68) contrast(1.18) saturate(.88);
}
html.cv-high-contrast .cv-background__scanlines { display: none; }
html.cv-high-contrast .cv-intro::before {
  background: linear-gradient(90deg, rgba(0,12,22,.985), rgba(0,22,38,.94) 62%, rgba(0,18,31,.88));
}
html.cv-high-contrast .cv-intro__lead,
html.cv-high-contrast .cv-intro__statements p,
html.cv-high-contrast .cv-intro__quote span,
html.cv-high-contrast .cv-stage-instruction,
html.cv-high-contrast .cv-venue strong,
html.cv-high-contrast .cv-session span,
html.cv-high-contrast .cv-speakers-head strong,
html.cv-high-contrast .cv-speaker-profile__copy > p:last-child,
html.cv-high-contrast .cv-card-bottom,
html.cv-high-contrast .cv-motto {
  color: #fff;
}
html.cv-high-contrast .cv-intro__statements article,
html.cv-high-contrast .cv-session,
html.cv-high-contrast .cv-speaker-card {
  border-color: rgba(255,255,255,.42);
  background: rgba(0,18,31,.84);
}
html.cv-high-contrast .cv-detail {
  background: linear-gradient(160deg, rgba(2,35,57,.98), rgba(0,15,27,.99));
  border-left-color: rgba(255,255,255,.42);
}
html.cv-high-contrast .cv-topbar {
  background: rgba(0,16,28,.97);
  border-bottom-color: rgba(255,255,255,.36);
}
html.cv-high-contrast .cv-orbit-card__face,
html.cv-high-contrast .cv-modal__dialog {
  border-color: rgba(255,255,255,.42);
  background-color: rgba(0,18,31,.97);
}
html.cv-high-contrast :focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 3px !important;
}


@media (max-width: 680px) {
  html[data-cv-text-size="xlarge"] .cv-intro__lead { font-size: calc(13px * var(--cv-reading-scale)); }
  html[data-cv-text-size="xlarge"] .cv-intro__statements p { font-size: calc(11px * var(--cv-reading-scale)); }
  html[data-cv-text-size="xlarge"] .cv-intro__quote span,
  html[data-cv-text-size="xlarge"] .cv-intro__quote strong { font-size: calc(10.5px * var(--cv-reading-scale)); }
  html[data-cv-text-size="xlarge"] .cv-intro__statements article { min-height: 0; }
  html[data-cv-text-size="xlarge"] .cv-intro__date { display: none; }
}

/* ==========================================================
   PORTADA CUMBRE
   SWAP DE LADOS + BARRA INFERIOR SEPARADA
   ========================================================== */

@media (min-width: 1025px) {

 

  /* Mantener el tamaño actual del portal/logo */
  .cv-intro__portal {
    width: min(540px, 40vw);
  }

  /* El logo se mantiene como en tu captura */
  .cv-intro__logo-card {
    z-index: 3;
  }

  /* Etiquetas visibles por encima del resto */
  .cv-intro__signal {
    z-index: 5;
  }

  /* Reacomodo de las etiquetas para que no se escondan */
  .cv-intro__signal--one {
    left: 2%;
    top: 22%;
    transform: translateZ(110px);
  }

  .cv-intro__signal--two {
    right: 2%;
    top: 46%;
    transform: translateZ(45px);
  }

  .cv-intro__signal--three {
    left: 8%;
    bottom: 18%;
    transform: translateZ(80px);
  }

  /* Barra inferior separada del portal */
  .cv-intro__metrics {
    position: static;
    inset: auto;
    z-index: 2;

    width: min(620px, 100%);
    margin-top: 8px;

    align-self: center;
  }
}

/* Recuadro principal del logotipo */
.cv-intro__logo-card {
  width: 85%;
  padding: 5%;
  border-radius: 38px;
}

/* Logotipo dentro del recuadro */
.cv-intro__logo-card img {
  width: 100%;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
}

/* Etiquetas: FUTURO, CIUDAD y ACCIÓN */
.cv-intro__signal {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;

  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 27, 47, 0.82);

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Punto naranja de las etiquetas */
.cv-intro__signal::before {
  width: 10px;
  height: 10px;
  margin-right: 10px;

  background: var(--cv-orange);
  box-shadow:
    0 0 8px rgba(255, 123, 19, 1),
    0 0 16px rgba(255, 123, 19, 0.7);
}

/* Posición de las tres etiquetas */
.cv-intro__signal--one {
  left: 1%;
  top: 18%;
  transform: translateZ(110px);
}

.cv-intro__signal--two {
  right: -1%;
  top: 43%;
  transform: translateZ(80px);
}

.cv-intro__signal--three {
  left: 7%;
  bottom: 14%;
  transform: translateZ(80px);
}


/* ==========================================================
   AJUSTE PARA TABLETAS
   ========================================================== */

@media (max-width: 1024px) {
  .cv-intro__logo-card {
    width: 62%;
    padding: 10%;
  }

  .cv-intro__signal {
    padding: 10px 15px;
    font-size: 11px;
  }

  .cv-intro__signal--one {
    left: 1%;
    top: 18%;
  }

  .cv-intro__signal--two {
    right: 0;
    top: 43%;
  }

  .cv-intro__signal--three {
    left: 6%;
    bottom: 14%;
  }
}


/* ==========================================================
   AJUSTE PARA CELULARES
   ========================================================== */

@media (max-width: 700px) {
  .cv-intro__logo-card {
    width: 67%;
    padding: 10%;
    border-radius: 28px;
  }

  .cv-intro__signal {
    padding: 8px 11px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .cv-intro__signal::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
  }

  .cv-intro__signal--one {
    left: 0;
    top: 18%;
  }

  .cv-intro__signal--two {
    right: 0;
    top: 44%;
  }

  .cv-intro__signal--three {
    left: 5%;
    bottom: 15%;
  }
}

/* ==========================================================
   EXPLORA LA CIUDAD
   ÓRBITA 3D GRANDE — WOW INSTITUCIONAL
   ========================================================== */

/

/* Órbita exterior */
.cv-orbit-ring--one {
  width: 720px;
  height: 720px;

  border-color: rgba(133, 210, 255, 0.28);

  box-shadow:
    0 0 38px rgba(var(--cv-theme-rgb), 0.16),
    inset 0 0 35px rgba(var(--cv-theme-rgb), 0.09);
}

/* Órbita interior */
.cv-orbit-ring--two {
  width: 510px;
  height: 510px;

  border-color: rgba(133, 210, 255, 0.3);
  opacity: 0.58;
}

/* Centro de la órbita */
.cv-orbit-core {
  width: 145px;
  height: 145px;

  border-color: rgba(255, 255, 255, 0.38);

  box-shadow:
    0 0 0 12px rgba(var(--cv-theme-rgb), 0.06),
    0 0 75px rgba(var(--cv-theme-rgb), 0.42),
    inset 0 0 34px rgba(255, 255, 255, 0.16);
}

.cv-core-number {
  font-size: 50px;
}

.cv-orbit-core small {
  margin-top: 9px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Tarjetas con mayor profundidad */
.cv-orbit-card__face {
  padding: 21px 22px 18px;

  border-color: rgba(255, 255, 255, 0.28);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(var(--card-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Número del foro */
.cv-card-number {
  font-size: 26px;
}

/* Fecha */
.cv-card-date {
  padding: 6px 10px;
  font-size: 10px;
}

/* Título principal de la tarjeta */
.cv-card-title {
  font-size: 22px;
  line-height: 1.05;
}

/* Tarjeta activa más brillante */
.cv-orbit-card.is-active .cv-orbit-card__face {
  border-color: rgba(255, 255, 255, 0.48);

  box-shadow:
    0 38px 85px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(var(--card-rgb), 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}


/* ==========================================================
   TABLETAS
   ========================================================== */

@media (max-width: 1100px) {
  :root {
    --cv-card-w: 270px;
    --cv-card-h: 170px;
  }

  .cv-orbit-shell {
    width: min(100%, 720px);
    height: min(100%, 650px);
  }

  .cv-orbit-glow {
    width: 390px;
    height: 390px;
  }

  .cv-orbit-ring--one {
    width: 610px;
    height: 610px;
  }

  .cv-orbit-ring--two {
    width: 430px;
    height: 430px;
  }

  .cv-orbit-core {
    width: 132px;
    height: 132px;
  }

  .cv-core-number {
    font-size: 44px;
  }

  .cv-card-title {
    font-size: 19px;
  }
}


/* ==========================================================
   CELULARES
   ========================================================== */

@media (max-width: 700px) {
  :root {
    --cv-card-w: 238px;
    --cv-card-h: 150px;
  }

  .cv-orbit-shell {
    width: 100%;
    height: 520px;
  }

  .cv-orbit-glow {
    width: 310px;
    height: 310px;
  }

  .cv-orbit-ring--one {
    width: 470px;
    height: 470px;
  }

  .cv-orbit-ring--two {
    width: 330px;
    height: 330px;
  }

  .cv-orbit-core {
    width: 112px;
    height: 112px;
  }

  .cv-core-number {
    font-size: 38px;
  }

  .cv-orbit-core small {
    font-size: 8px;
  }

  .cv-orbit-card__face {
    padding: 16px;
  }

  .cv-card-number {
    font-size: 21px;
  }

  .cv-card-title {
    font-size: 17px;
  }

  .cv-card-date {
    padding: 5px 8px;
    font-size: 8px;
  }
}

/* ==========================================================
   TEXTO NÍTIDO EN TARJETAS 3D
   ========================================================== */

.cv-orbit-card__face {
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

.cv-card-number,
.cv-card-date,
.cv-card-title,
.cv-card-bottom,
.cv-card-bottom span {
  filter: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Mayor definición en la tarjeta seleccionada */
.cv-orbit-card.is-active .cv-card-number,
.cv-orbit-card.is-active .cv-card-date,
.cv-orbit-card.is-active .cv-card-title,
.cv-orbit-card.is-active .cv-card-bottom {
  opacity: 1;
  filter: none;
}

/* ==========================================================
   CARRUSEL SUAVE Y TEXTO NÍTIDO
   ========================================================== */

/* Se elimina definitivamente el círculo central */
.cv-orbit-core {
  display: none !important;
}

/*
 * Restablece las dimensiones normales.
 * Esto anula la modificación anterior que cambiaba
 * bruscamente el ancho y alto de la tarjeta activa.
 */
.cv-orbit-card,
.cv-orbit-card.is-active {
  width: var(--cv-card-w);
  height: var(--cv-card-h);
}

/* Transición suave entre tarjetas */
.cv-orbit-card {
  transition:
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.65s ease,
    filter 0.45s ease;

  will-change: transform, opacity;
}

/* Fondo sólido translúcido, sin desenfocar el texto */
.cv-orbit-card__face {
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(var(--card-rgb), 0.22),
      transparent 46%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(2, 25, 43, 0.96);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Nitidez de las letras */
.cv-card-number,
.cv-card-date,
.cv-card-title,
.cv-card-bottom,
.cv-card-bottom span {
  filter: none !important;
  opacity: 1;
  text-shadow: none;

  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* La tarjeta activa se distingue sin modificar su tamaño real */
.cv-orbit-card.is-active .cv-orbit-card__face {
  border-color: rgba(255, 255, 255, 0.48);

  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(var(--card-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Por seguridad, elimina cualquier flecha anterior */
.cv-card-bottom b {
  display: none !important;
}

.cv-card-bottom {
  justify-content: flex-start;
}

/* ==========================================================
   FIREFOX — TARJETAS NÍTIDAS SIN PERDER LA TRANSICIÓN
   ========================================================== */

@supports (-moz-appearance: none) {

  /*
   * Firefox utilizará posiciones 2D.
   * No necesita perspectiva ni preserve-3d.
   */
  .cv-orbit-shell,
  .cv-orbit {
    perspective: none !important;
    transform-style: flat !important;
  }

  .cv-orbit-card {
    transform-style: flat !important;

    transition:
      transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.65s ease !important;

    /*
     * Evita mantener permanentemente la tarjeta
     * como textura en una capa acelerada.
     */
    will-change: auto !important;
  }

  .cv-orbit-card__face {
    transform-style: flat !important;

    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .cv-card-number,
  .cv-card-date,
  .cv-card-title,
  .cv-card-bottom,
  .cv-card-bottom span {
    filter: none !important;
    transform: none !important;

    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;

    text-rendering: auto !important;
    text-shadow: none !important;
  }

  /*
   * La tarjeta central no se escala:
   * su texto se dibuja a tamaño real.
   */
  .cv-orbit-card.is-active {
    filter: none !important;
  }
}

/* ==========================================================
   ENCABEZADO: LOGO, LEMA CENTRADO Y BOTONES A LA DERECHA
   ========================================================== */

@media (min-width: 961px) {

  /* Logo: primera columna */
  .cv-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  /* Lema: centro exacto de la pantalla */
  .cv-motto {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
  }

  /* Botones: tercera columna */
  .cv-top-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: auto;
  }
}

/* Botón temporalmente desactivado */
.cv-intro__enter:disabled {
  /*opacity: 0.72;*/
  cursor: default;
  pointer-events: none;
  /*filter: saturate(0.72);*/
}

.cv-intro__enter:disabled:hover {
  transform: none;
}
/* ==========================================================
   PORTADA RESPONSIVA PARA LAPTOPS CON POCA ALTURA
   Evita que el contenido inferior se corte en pantallas de
   15 pulgadas y ventanas con una altura útil reducida.
   ========================================================== */
@media (min-width: 961px) and (max-height: 820px) {
  :root {
    --cv-topbar: 70px;
  }

  .cv-topbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .cv-intro {
    padding: 12px clamp(22px, 4vw, 62px) 14px;
  }

  .cv-intro__grid {
    height: 100%;
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
    gap: clamp(20px, 3vw, 46px);
  }

  html[data-cv-text-size="large"] .cv-intro__copy,
  html[data-cv-text-size="xlarge"] .cv-intro__copy {
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .cv-intro__kicker {
    margin-bottom: 6px;
  }

  .cv-intro h1 {
    font-size: clamp(42px, 4.45vw, 64px);
  }

  html[data-cv-text-size="large"] .cv-intro__lead,
  html[data-cv-text-size="xlarge"] .cv-intro__lead {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.38;
  }

  .cv-intro__statements {
    gap: 8px;
    margin-top: 12px;
  }

  html[data-cv-text-size="large"] .cv-intro__statements article,
  html[data-cv-text-size="xlarge"] .cv-intro__statements article {
    min-height: 86px;
    grid-template-columns: 32px 1fr;
    gap: 9px;
    padding: 11px 12px;
  }

  .cv-intro__statements span {
    font-size: 18px;
  }

  html[data-cv-text-size="large"] .cv-intro__statements p,
  html[data-cv-text-size="xlarge"] .cv-intro__statements p {
    font-size: 13px;
    line-height: 1.35;
  }

  .cv-intro__quote {
    margin-top: 10px;
    padding: 9px 13px 9px 15px;
  }

  html[data-cv-text-size="large"] .cv-intro__quote span,
  html[data-cv-text-size="large"] .cv-intro__quote strong,
  html[data-cv-text-size="xlarge"] .cv-intro__quote span,
  html[data-cv-text-size="xlarge"] .cv-intro__quote strong {
    font-size: 12.5px;
    line-height: 1.32;
  }

  .cv-intro__footer {
    gap: 16px;
    margin-top: 12px;
  }

  .cv-intro__enter {
    min-height: 48px;
    padding: 8px 10px 8px 19px;
  }

  html[data-cv-text-size="large"] .cv-intro__enter,
  html[data-cv-text-size="xlarge"] .cv-intro__enter {
    font-size: 12px;
  }

  .cv-intro__enter i {
    width: 32px;
    height: 32px;
  }

  .cv-intro__date {
    padding-left: 15px;
  }

  .cv-intro__date strong {
    font-size: 14px;
  }

  .cv-intro__visual {
    height: 100%;
    max-height: calc(100svh - var(--cv-topbar) - 26px);
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 7px;
  }

  .cv-intro__portal {
    width: min(470px, 35vw, calc(100svh - var(--cv-topbar) - 105px));
  }

  .cv-intro__metrics {
    width: min(520px, 100%);
    margin-top: 0;
  }

  .cv-intro__metrics span {
    padding: 8px 8px;
  }

  .cv-intro__metrics b {
    font-size: 20px;
  }
}

@media (min-width: 961px) and (max-height: 700px) {
  .cv-intro {
    padding-top: 8px;
    padding-bottom: 9px;
  }

  .cv-intro h1 {
    font-size: clamp(38px, 4vw, 56px);
  }

  html[data-cv-text-size="large"] .cv-intro__lead,
  html[data-cv-text-size="xlarge"] .cv-intro__lead {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.32;
  }

  .cv-intro__statements {
    margin-top: 9px;
  }

  html[data-cv-text-size="large"] .cv-intro__statements article,
  html[data-cv-text-size="xlarge"] .cv-intro__statements article {
    min-height: 76px;
    padding: 9px 11px;
  }

  html[data-cv-text-size="large"] .cv-intro__statements p,
  html[data-cv-text-size="xlarge"] .cv-intro__statements p {
    font-size: 12px;
    line-height: 1.3;
  }

  .cv-intro__quote {
    margin-top: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  html[data-cv-text-size="large"] .cv-intro__quote span,
  html[data-cv-text-size="large"] .cv-intro__quote strong,
  html[data-cv-text-size="xlarge"] .cv-intro__quote span,
  html[data-cv-text-size="xlarge"] .cv-intro__quote strong {
    font-size: 11.5px;
  }

  .cv-intro__footer {
    margin-top: 9px;
  }

  .cv-intro__portal {
    width: min(425px, 33vw, calc(100svh - var(--cv-topbar) - 96px));
  }

  .cv-intro__metrics span {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}


/* ==========================================================
   BOTONES DE REGISTRO POR FORO
   ========================================================== */
.cv-detail__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cv-registration-button {
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(var(--cv-theme-rgb), .34));
  border-color: rgba(var(--cv-theme-rgb), .7);
  box-shadow:
    0 12px 26px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 0 24px rgba(var(--cv-theme-rgb), .16);
}

.cv-registration-button:hover,
.cv-registration-button:focus-visible {
  background:
    linear-gradient(135deg, rgba(var(--cv-theme-rgb), .9), rgba(var(--cv-theme-rgb), .48));
}

.cv-registration-button[hidden] {
  display: none !important;
}

.cv-registration-button--modal {
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 680px) {
  .cv-detail__actions {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .cv-detail__actions .cv-primary-button {
    min-height: 40px;
    padding: 8px 10px;
    gap: 8px;
    font-size: 9px;
  }

  .cv-detail__actions .cv-primary-button span {
    font-size: 15px;
  }
}
