* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #050914;
  --dark-2: #07101f;
  --blue: #60a5fa;
  --blue-strong: #3b82f6;
  --red: #ef4444;
  --silver: #cbd5e1;
  --muted: #94a3b8;
  --white: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050914;
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.26), transparent 34%),
    radial-gradient(circle at 15% 85%, rgba(239, 68, 68, 0.14), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(96, 165, 250, 0.12), transparent 32%),
    linear-gradient(180deg, #050914 0%, #07101f 48%, #050914 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.network-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.network-bg span {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.35;
  animation: orbitGlow 18s ease-in-out infinite;
}

.network-bg span:nth-child(1) {
  top: -120px;
  left: 20%;
  background: rgba(59, 130, 246, 0.42);
}

.network-bg span:nth-child(2) {
  bottom: -160px;
  right: 10%;
  background: rgba(239, 68, 68, 0.24);
  animation-delay: -6s;
}

.network-bg span:nth-child(3) {
  top: 42%;
  left: -160px;
  background: rgba(96, 165, 250, 0.20);
  animation-delay: -11s;
}

@keyframes orbitGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(34px, -26px, 0) scale(1.12);
  }
}

.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -20px;
  border-radius: 999px;
  box-shadow: 0 0 16px currentColor;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-110vh) translateX(40px);
    opacity: 0;
  }
}

.page-shell {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card,
.reviews-section {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(148,163,184,0.035)),
    rgba(5, 9, 20, 0.82);
  backdrop-filter: blur(22px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(59, 130, 246, 0.10);
}

.review-card::before,
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(96,165,250,0.65), rgba(239,68,68,0.18), rgba(255,255,255,0.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-card {
  padding: 34px 24px 26px;
}

.brand-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-orbit {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  animation: floatLogo 6.5s ease-in-out infinite;
}

.logo-orbit::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-top-color: rgba(147, 197, 253, 0.85);
  animation: spinSlow 12s linear infinite;
}

.logo-orbit::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  filter: blur(26px);
  z-index: -1;
}

.logo-img {
  width: 92px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(96, 165, 250, 0.38))
    drop-shadow(0 0 36px rgba(59, 130, 246, 0.18));
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.eyebrow {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin-top: 14px;
  font-size: clamp(30px, 7vw, 50px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.subtitle {
  max-width: 520px;
  margin: 18px auto 0;
  color: rgba(203, 213, 225, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.review-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 9px;
}

label {
  color: rgba(248, 250, 252, 0.92);
  font-size: 14px;
  font-weight: 800;
}

label span {
  color: rgba(148, 163, 184, 0.8);
  font-weight: 600;
}

input[type="text"],
textarea {
  width: 100%;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.72);
  color: white;
  padding: 15px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input[type="text"]:focus,
textarea:focus {
  border-color: rgba(96, 165, 250, 0.72);
  background: rgba(7, 16, 31, 0.88);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.62);
}

.image-preview {
  min-height: 116px;
  border: 1.5px dashed rgba(147, 197, 253, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(203, 213, 225, 0.72);
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px;
  cursor: pointer;
  transition: 0.25s ease;
}

.image-preview:hover {
  border-color: rgba(96, 165, 250, 0.72);
  background: rgba(59, 130, 246, 0.08);
  color: white;
}

.image-preview img {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(147, 197, 253, 0.45);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}

.stars-container {
  display: grid;
  gap: 10px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 38px;
}

.stars span {
  cursor: pointer;
  color: rgba(148, 163, 184, 0.35);
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.stars span:hover,
.stars span.active {
  color: #facc15;
  transform: scale(1.12);
  text-shadow: 0 0 18px rgba(250, 204, 21, 0.38);
}

.rating-text {
  text-align: center;
  color: rgba(203, 213, 225, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.btn-submit,
.ver-resenas-btn {
  width: 100%;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #93c5fd, #3b82f6 48%, #1d4ed8);
  color: #050914;
  padding: 15px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-submit:hover:not(:disabled),
.ver-resenas-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(59, 130, 246, 0.36);
  filter: brightness(1.06);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.mensaje {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
  display: none;
}

.mensaje.success {
  display: block;
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(59, 130, 246, 0.12);
}

.mensaje.error {
  display: block;
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.24);
  background: rgba(239, 68, 68, 0.12);
}

.reviews-section {
  margin-top: 22px;
  padding: 24px 18px;
  animation: fadeInUp 0.55s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-title {
  text-align: center;
  margin-bottom: 16px;
}

.reviews-title h2 {
  margin-top: 10px;
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 4px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar {
  height: 7px;
}

.carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(96,165,250,0.55);
  border-radius: 999px;
}

.carousel-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  text-align: center;
  border-radius: 26px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: rgba(5, 9, 20, 0.62);
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.carousel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(255, 255, 255, 0.055);
}

.carousel-avatar,
.carousel-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 13px;
  border: 2px solid rgba(147, 197, 253, 0.38);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.20);
}

.carousel-avatar {
  object-fit: cover;
}

.carousel-avatar-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  color: #050914;
  font-size: 30px;
  font-weight: 950;
}

.carousel-name {
  font-weight: 900;
  font-size: 16px;
}

.carousel-stars {
  margin-top: 7px;
  color: #facc15;
  letter-spacing: 1px;
}

.carousel-comment {
  margin-top: 10px;
  color: rgba(203, 213, 225, 0.80);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-date {
  margin-top: 12px;
  color: rgba(148, 163, 184, 0.7);
  font-size: 11px;
}

.empty-card {
  flex: 1;
  color: rgba(203, 213, 225, 0.8);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  background: rgba(255,255,255,0.045);
  color: white;
  cursor: pointer;
  font-size: 20px;
  transition: 0.22s ease;
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.20);
  transform: translateY(-2px);
}

.ver-resenas-btn {
  margin-top: 18px;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 20px 14px;
    justify-content: flex-start;
  }

  .review-card {
    padding: 26px 16px 20px;
    border-radius: 28px;
  }

  .logo-orbit {
    width: 92px;
    height: 92px;
  }

  .logo-img {
    width: 76px;
  }

  .stars {
    font-size: 34px;
    gap: 5px;
  }

  .carousel-card {
    flex-basis: 225px;
  }
}

.darkveil-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background: #050914;
}

.darkveil-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.darkveil-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(59,130,246,0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(185,28,28,0.18), transparent 36%),
    linear-gradient(180deg, rgba(5,9,20,0.55), rgba(5,9,20,0.92));
  backdrop-filter: blur(1.4px);
}

/* DARKVEIL FIX - FONDO PRINCIPAL */
.darkveil-bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
  background: #050914 !important;
  pointer-events: none !important;
}

.darkveil-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  opacity: 1 !important;
}

.darkveil-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(59,130,246,0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(185,28,28,0.18), transparent 36%),
    linear-gradient(180deg, rgba(5,9,20,0.38), rgba(5,9,20,0.78));
  backdrop-filter: blur(1px);
}

.network-bg,
.particles {
  z-index: 1 !important;
  opacity: 0.28 !important;
}

.page-shell {
  position: relative !important;
  z-index: 5 !important;
}

body::before,
body::after {
  opacity: 0.35 !important;
}

/* FORZAR DARKVEIL COMO FONDO PRINCIPAL */
.network-bg,
.particles,
body::before,
body::after {
  display: none !important;
}

.darkveil-bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: #050914 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.darkveil-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  opacity: 1 !important;
}

.darkveil-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.18), transparent 35%),
    linear-gradient(180deg, rgba(5,9,20,0.35), rgba(5,9,20,0.72));
  backdrop-filter: blur(0.7px);
}

.page-shell {
  position: relative !important;
  z-index: 5 !important;
}

/* AJUSTE VISIBILIDAD DARKVEIL */
.darkveil-bg::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.08), transparent 38%),
    linear-gradient(180deg, rgba(5,9,20,0.08), rgba(5,9,20,0.38)) !important;
  backdrop-filter: none !important;
}

.darkveil-bg canvas {
  opacity: 1 !important;
  filter: contrast(1.18) saturate(1.35) brightness(1.18) !important;
}

.review-card,
.reviews-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(148,163,184,0.025)),
    rgba(5, 9, 20, 0.68) !important;
  backdrop-filter: blur(14px) !important;
}

/* LOGO SIN ANIMACIÓN */
.logo-orbit {
  animation: none !important;
  transform: none !important;
}

.logo-orbit::before {
  animation: none !important;
}

/* TRUE FOCUS TITLE */
.brand-header h1 {
  display: block;
  margin-top: 18px;
}

.true-focus-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em 0.32em;
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(34px, 6.7vw, 58px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #f8fafc;
  user-select: none;
}

.true-focus-word {
  position: relative;
  display: inline-block;
  filter: blur(4px);
  opacity: 0.54;
  transform: scale(0.98);
  transition:
    filter 0.55s ease,
    opacity 0.55s ease,
    transform 0.55s ease,
    text-shadow 0.55s ease;
}

.true-focus-word.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
  text-shadow:
    0 0 18px rgba(96,165,250,0.35),
    0 0 42px rgba(59,130,246,0.16);
}

.true-focus-frame {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(.22,1,.36,1),
    width 0.55s cubic-bezier(.22,1,.36,1),
    height 0.55s cubic-bezier(.22,1,.36,1),
    opacity 0.35s ease;
}

.tf-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #60a5fa;
  border-radius: 4px;
  filter:
    drop-shadow(0 0 6px rgba(96,165,250,0.85))
    drop-shadow(0 0 14px rgba(59,130,246,0.45));
}

.tf-top-left {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.tf-top-right {
  top: -8px;
  right: -8px;
  border-left: none;
  border-bottom: none;
}

.tf-bottom-left {
  bottom: -8px;
  left: -8px;
  border-right: none;
  border-top: none;
}

.tf-bottom-right {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

@media (max-width: 560px) {
  .true-focus-title {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
    gap: 0.14em 0.24em;
  }

  .true-focus-word {
    filter: blur(3px);
  }

  .tf-corner {
    width: 11px;
    height: 11px;
  }
}

/* SUCCESS LANYARD OVERLAY */
.zenith-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at top, rgba(59,130,246,0.18), transparent 36%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.zenith-success-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.success-lanyard {
  position: relative;
  width: min(92vw, 430px);
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-20px) scale(0.94);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(.22,1,.36,1),
    opacity 0.5s ease;
}

.zenith-success-overlay.show .success-lanyard {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lanyard-cord {
  position: absolute;
  top: -130px;
  left: 50%;
  width: 210px;
  height: 230px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.lanyard-cord span {
  position: absolute;
  top: 0;
  width: 10px;
  height: 260px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #1e3a8a, #60a5fa 45%, #cbd5e1 60%, #1d4ed8);
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.28),
    0 0 24px rgba(59,130,246,0.35);
}

.lanyard-cord span:first-child {
  left: 58px;
  transform: rotate(18deg);
}

.lanyard-cord span:last-child {
  right: 58px;
  transform: rotate(-18deg);
}

.lanyard-clip {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 3;
  width: 74px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 18px;
  border: 1px solid rgba(203,213,225,0.35);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(100,116,139,0.25)),
    rgba(15,23,42,0.96);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    0 0 24px rgba(96,165,250,0.22);
}

.lanyard-clip div {
  position: absolute;
  inset: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(148,163,184,0.65);
}

.success-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 112px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(147,197,253,0.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(148,163,184,0.04)),
    rgba(5,9,20,0.92);
  padding: 56px 28px 28px;
  text-align: center;
  box-shadow:
    0 34px 100px rgba(0,0,0,0.62),
    0 0 80px rgba(59,130,246,0.18);
  transform-origin: top center;
  animation: cardSwing 4.8s ease-in-out infinite;
}

.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(96,165,250,0.75), rgba(203,213,225,0.28), rgba(59,130,246,0.10));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.success-card-glow {
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 50% 10%, rgba(96,165,250,0.24), transparent 35%),
    radial-gradient(circle at 20% 90%, rgba(239,68,68,0.12), transparent 32%);
  pointer-events: none;
}

.success-logo-wrap {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  border: 1px solid rgba(147,197,253,0.22);
  background: rgba(255,255,255,0.045);
  box-shadow:
    inset 0 0 24px rgba(255,255,255,0.05),
    0 0 40px rgba(59,130,246,0.24);
}

.success-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  background: rgba(59,130,246,0.16);
  filter: blur(22px);
  z-index: -1;
}

.success-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(96,165,250,0.35))
    drop-shadow(0 0 28px rgba(59,130,246,0.18));
}

.success-eyebrow {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.success-card h2 {
  margin-top: 14px;
  color: #f8fafc;
  font-size: clamp(30px, 7vw, 46px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.success-card p:not(.success-eyebrow) {
  max-width: 330px;
  margin: 18px auto 0;
  color: rgba(203,213,225,0.82);
  font-size: 14px;
  line-height: 1.65;
}

.success-card button {
  margin-top: 26px;
  width: 100%;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #93c5fd, #3b82f6 48%, #1d4ed8);
  color: #050914;
  padding: 14px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(59,130,246,0.28);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.success-card button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

@keyframes cardSwing {
  0%, 100% {
    transform: rotate(-1.2deg);
  }
  50% {
    transform: rotate(1.2deg);
  }
}

@media (max-width: 560px) {
  .success-lanyard {
    width: min(94vw, 360px);
    min-height: 520px;
  }

  .lanyard-cord {
    top: -118px;
    width: 180px;
  }

  .lanyard-cord span:first-child {
    left: 48px;
  }

  .lanyard-cord span:last-child {
    right: 48px;
  }

  .success-card {
    margin-top: 104px;
    border-radius: 28px;
    padding: 48px 20px 22px;
  }

  .success-logo-wrap {
    width: 96px;
    height: 96px;
  }

  .success-logo {
    width: 72px;
  }
}

/* LOGO ZENITH - SIN RECUADRO + ANIMACIÓN TECH */
.logo-orbit {
  width: 118px !important;
  height: 118px !important;
  margin: 0 auto 22px !important;
  display: grid !important;
  place-items: center !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: zenithLogoEntrance 1.6s cubic-bezier(.22,1,.36,1) both, zenithLogoFloat 6s ease-in-out 1.7s infinite !important;
  transform-origin: center !important;
}

.logo-orbit::before,
.logo-orbit::after {
  display: none !important;
}

.logo-img {
  width: 96px !important;
  height: auto !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 14px rgba(96,165,250,0.42))
    drop-shadow(0 0 32px rgba(59,130,246,0.20)) !important;
  animation: zenithLogoGlitch 4.8s ease-in-out 1.8s infinite !important;
}

.logo-orbit::selection,
.logo-img::selection {
  background: transparent;
}

.logo-orbit {
  position: relative !important;
}

.logo-orbit .logo-scanline {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.95), rgba(255,255,255,0.95), transparent);
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(96,165,250,0.85));
  animation: zenithScanLine 3.8s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes zenithLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.78) rotateX(18deg);
    filter: blur(10px);
  }
  45% {
    opacity: 1;
    transform: translateY(-6px) scale(1.08) rotateX(0deg);
    filter: blur(0);
  }
  70% {
    transform: translateY(2px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes zenithLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.015);
  }
}

@keyframes zenithLogoGlitch {
  0%, 88%, 100% {
    transform: translate(0, 0) skew(0deg);
    filter:
      drop-shadow(0 0 14px rgba(96,165,250,0.42))
      drop-shadow(0 0 32px rgba(59,130,246,0.20));
  }
  90% {
    transform: translate(1px, -1px) skew(0.8deg);
    filter:
      drop-shadow(3px 0 0 rgba(96,165,250,0.55))
      drop-shadow(-3px 0 0 rgba(239,68,68,0.35))
      drop-shadow(0 0 24px rgba(96,165,250,0.34));
  }
  92% {
    transform: translate(-1px, 1px) skew(-0.8deg);
  }
  94% {
    transform: translate(0, 0) skew(0deg);
  }
}

@keyframes zenithScanLine {
  0%, 68%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-42px) scaleX(0.25);
  }
  74% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-12px) scaleX(1);
  }
  82% {
    opacity: 0.85;
    transform: translate(-50%, -50%) translateY(32px) scaleX(0.85);
  }
  88% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(52px) scaleX(0.2);
  }
}
