:root {
    --deep-blue: #07173F;
    --electric-blue: #0042A6;
    --neon-blue: #0960E1;
    --blue-yonder: #2E96F5;
    --white: #FFFFFF;
    --neon-yellow: #EAFE07;
    --martian-red: #8E1100;
    --rocket-red: #E43700;

    --font-display: 'Fira Sans', sans-serif;
    --font-body: 'Overpass', sans-serif;
    --font-mono: 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--deep-blue);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    outline-color: var(--neon-yellow);
}

/* ---------- Ambient background layers ---------- */
.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: url('/public/patterns/orbits.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

/* ---------- Telemetry bar ---------- */
.telemetry-bar {
    position: relative;
    z-index: 3;
    background: rgba(4, 13, 38, 0.9);
    border-bottom: 1px solid rgba(46, 150, 245, 0.25);
    overflow: hidden;
    white-space: nowrap;
}

.telemetry-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0.55rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--blue-yonder);
    justify-content: center;
    flex-wrap: wrap;
}

.telemetry-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.telemetry-item.status {
    color: var(--neon-yellow);
}

.tdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-yonder);
    display: inline-block;
}

.tdot.pulse {
    background: var(--neon-yellow);
    box-shadow: 0 0 6px var(--neon-yellow);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 66, 166, 0.78) 0%, rgba(7, 23, 63, 0.82) 65%);
    padding: 3rem 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 150, 245, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(234, 254, 7, 0.05) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-20px, 20px) rotate(1deg);
    }

    66% {
        transform: translate(20px, -10px) rotate(-1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-yellow);
    margin-bottom: 1.75rem;
    animation: fadeInUp 1s ease-out both;
}

/* Orbit signature element */
.orbit-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 1.5rem;
    animation: fadeInDown 1s ease-out both;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(46, 150, 245, 0.4);
}

.orbit-ring.r1 {
    inset: 0;
}

.orbit-ring.r2 {
    inset: 26px;
    border-color: rgba(9, 96, 225, 0.35);
}

.orbit-ring.r3 {
    inset: 52px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
}

.satellite {
    position: absolute;
    inset: 0;
    animation: spin 16s linear infinite;
}

.satellite.s2 {
    inset: 26px;
    animation-duration: 10s;
    animation-direction: reverse;
}

.satellite i {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 7px;
    height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: var(--neon-yellow);
    box-shadow: 0 0 10px 2px rgba(234, 254, 7, 0.7);
}

.satellite.s2 i {
    background: var(--blue-yonder);
    box-shadow: 0 0 8px 2px rgba(46, 150, 245, 0.6);
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
}

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

.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 328px;
    max-width: 40vw;
    filter: drop-shadow(0 10px 30px rgba(0, 66, 166, 0.6));
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.15s both;
}

.hero h1 .nasa-text {
    color: var(--rocket-red);
}

.hero h1 .space-text {
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--blue-yonder);
    margin-bottom: 2.75rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Section */
.video-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.45s both;
}

.video-frame {
    position: relative;
    padding: 14px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(46, 150, 245, 0.2),
        0 0 40px rgba(9, 96, 225, 0.15);
    background: var(--deep-blue);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--neon-yellow);
    opacity: 0.85;
}

.corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.video-label {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(234, 254, 7, 0.1);
    border: 1px solid var(--neon-yellow);
    border-radius: 50px;
    color: var(--neon-yellow);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--rocket-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(228, 55, 0, 0.4);
}

.btn-primary:hover {
    background: var(--neon-yellow);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(234, 254, 7, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--blue-yonder);
}

.btn-secondary:hover {
    background: var(--blue-yonder);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* ---------- Briefing / Countdown ---------- */
.briefing {
    position: relative;
    z-index: 1;
    background: rgba(5, 15, 48, 0.82);
    border-top: 1px solid rgba(46, 150, 245, 0.15);
    border-bottom: 1px solid rgba(46, 150, 245, 0.15);
    padding: 4rem 2rem;
}

.briefing-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.panel-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-yonder);
    margin-bottom: 1.25rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(46, 150, 245, 0.2);
    font-size: 0.95rem;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row .label {
    font-family: var(--font-mono);
    color: var(--blue-yonder);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 0.15rem;
}

.data-row .value {
    font-family: var(--font-body);
    font-weight: 600;
    text-align: right;
}

.countdown-panel {
    position: relative;
    background: rgba(0, 66, 166, 0.12);
    border: 1px solid rgba(46, 150, 245, 0.25);
    border-radius: 4px;
    padding: 1.75rem;
}

.countdown-panel .corner {
    width: 14px;
    height: 14px;
}

.countdown {
    display: flex;
    gap: 0.75rem;
}

.c-block {
    flex: 1;
    text-align: center;
    background: rgba(7, 23, 63, 0.6);
    border: 1px solid rgba(46, 150, 245, 0.2);
    border-radius: 4px;
    padding: 0.85rem 0.25rem;
}

.c-block span {
    display: block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--neon-yellow);
    font-variant-numeric: tabular-nums;
}

.c-block label {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-yonder);
}

/* ---------- Briefing: single column variant ---------- */
.briefing-inner--single {
    grid-template-columns: 1fr;
    max-width: 640px;
}

.briefing-inner--single .briefing-data {
    width: 100%;
}

/* ================================================================
   CHRONO SECTION — 3D orbital countdown
   A standalone, deliberately maximal set-piece: a tilted orrery
   (three real 3D rings + counter-rotating satellites) orbiting behind
   a bank of flip cards that physically rotate in 3D on every tick.
   ================================================================ */
.chrono-section {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 55% at 50% 38%, rgba(9, 96, 225, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 90% 60% at 50% 100%, rgba(228, 55, 0, 0.10) 0%, transparent 60%),
        #030a24;
    padding: 5.5rem 1.5rem 4.5rem;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(46, 150, 245, 0.18);
    border-bottom: 1px solid rgba(46, 150, 245, 0.18);
}

.chrono-section::before {
    /* scanline texture — sells the "HUD readout" feel */
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.chrono-stage {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Orrery: tilted 3D rings + orbiting satellites, sits behind the clock ---- */
.orrery {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    perspective: 900px;
    z-index: 0;
    pointer-events: none;
}

.orrery-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orrery-ring.ring-1 {
    border: 1px solid rgba(228, 55, 0, 0.55);
    animation: ring-spin-1 16s linear infinite;
}

.orrery-ring.ring-2 {
    inset: 44px;
    border: 1px solid rgba(46, 150, 245, 0.55);
    animation: ring-spin-2 22s linear infinite;
}

.orrery-ring.ring-3 {
    inset: 88px;
    border: 1px dashed rgba(234, 254, 7, 0.4);
    animation: ring-spin-1 11s linear infinite reverse;
}

@keyframes ring-spin-1 {
    from {
        transform: rotateX(76deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(76deg) rotateZ(360deg);
    }
}

@keyframes ring-spin-2 {
    from {
        transform: rotateX(68deg) rotateY(18deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(68deg) rotateY(18deg) rotateZ(-360deg);
    }
}

.orrery-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: var(--neon-yellow);
    box-shadow: 0 0 16px 4px rgba(234, 254, 7, 0.7);
}

.orrery-core-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 254, 7, 0.25) 0%, transparent 70%);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Satellites: classic counter-rotation trick, flattened with scaleY to
   read as an elliptical 3D orbit under the tilted rings above. */
.orrery-orbit {
    position: absolute;
    inset: 0;
}

.orrery-orbit .sat {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    border-radius: 50%;
}

.sat-1 {
    background: var(--blue-yonder);
    box-shadow: 0 0 10px 2px rgba(46, 150, 245, 0.8);
    animation: orbit-move-a 9s linear infinite;
}

.sat-2 {
    background: var(--rocket-red);
    box-shadow: 0 0 10px 2px rgba(228, 55, 0, 0.8);
    width: 5px;
    height: 5px;
    animation: orbit-move-b 13s linear infinite;
}

.sat-3 {
    background: var(--white);
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
    width: 4px;
    height: 4px;
    animation: orbit-move-c 6.5s linear infinite;
}

@keyframes orbit-move-a {
    0% {
        transform: rotate(0deg) translateX(190px) rotate(0deg) scaleY(0.32);
    }

    100% {
        transform: rotate(360deg) translateX(190px) rotate(-360deg) scaleY(0.32);
    }
}

@keyframes orbit-move-b {
    0% {
        transform: rotate(90deg) translateX(150px) rotate(-90deg) scaleY(0.4);
    }

    100% {
        transform: rotate(450deg) translateX(150px) rotate(-450deg) scaleY(0.4);
    }
}

@keyframes orbit-move-c {
    0% {
        transform: rotate(200deg) translateX(105px) rotate(-200deg) scaleY(0.5);
    }

    100% {
        transform: rotate(560deg) translateX(105px) rotate(-560deg) scaleY(0.5);
    }
}

/* ---- Flip clock: real 3D card flips, sits above the orrery ---- */
.flip-clock {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.flip-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.flip-card {
    position: relative;
    width: 84px;
    height: 96px;
    perspective: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(0deg);
    transition: transform 0.65s cubic-bezier(0.6, 0.05, 0.25, 1);
}

.flip-card-inner.no-transition {
    transition: none;
}

.flip-card-inner.is-flipping {
    transform: rotateX(-180deg);
}

.flip-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backface-visibility: hidden;
    background:
        linear-gradient(180deg, rgba(46, 150, 245, 0.16) 0%, rgba(3, 10, 36, 0.9) 100%);
    border: 1px solid rgba(46, 150, 245, 0.4);
    box-shadow:
        0 0 0 1px rgba(3, 10, 36, 0.6) inset,
        0 12px 30px rgba(0, 0, 0, 0.45);
}

.flip-face::after {
    /* center hairline, like a real split-flap display */
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(3, 10, 36, 0.65);
}

.flip-face span {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: 0.02em;
    color: var(--neon-yellow);
    text-shadow: 0 0 14px rgba(234, 254, 7, 0.55);
    font-variant-numeric: tabular-nums;
}

.flip-face-back {
    transform: rotateX(180deg);
}

.flip-divider {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--blue-yonder);
    opacity: 0.6;
    padding-bottom: 2rem;
}

.flip-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-yonder);
}

.chrono-caption {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Info Section ---------- */
.info-section {
    position: relative;
    z-index: 1;
    background: rgba(7, 23, 63, 0.82);
    padding: 5rem 2rem;
}

.section-eyebrow {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-yonder);
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.info-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    position: relative;
    background: rgba(0, 66, 166, 0.1);
    border: 1px solid rgba(46, 150, 245, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(9, 96, 225, 0.15);
}

.card-code {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--blue-yonder);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ================================================================
   TEAM SHIP SLIDER — cápsula/nave con una ventana circular (ojo de
   buey) en el centro, dentro de la cual van pasando las fotos del
   equipo. Body en forma de cápsula con morro, aletas y propulsor.
   ================================================================ */
.team-section {
    position: relative;
    z-index: 1;
    background: rgba(5, 15, 48, 0.82);
    padding: 5.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(46, 150, 245, 0.15);
    border-bottom: 1px solid rgba(46, 150, 245, 0.15);
}

.ship-slider {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.ship-body {
    position: relative;
    height: 320px;
    margin: 2.5rem auto 0;
    max-width: 760px;
    border-radius: 160px;
    background:
        linear-gradient(180deg, rgba(46, 150, 245, 0.16) 0%, rgba(3, 10, 36, 0.92) 55%, rgba(3, 10, 36, 0.98) 100%);
    border: 1px solid rgba(46, 150, 245, 0.35);
    box-shadow:
        0 0 0 1px rgba(3, 10, 36, 0.5) inset,
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(9, 96, 225, 0.12);
}

/* Morro de la nave, apuntando a la izquierda */
.ship-nose {
    position: absolute;
    top: 50%;
    left: -1px;
    width: 120px;
    height: 320px;
    transform: translate(-96%, -50%);
    background: linear-gradient(90deg, rgba(3, 10, 36, 0) 0%, rgba(46, 150, 245, 0.22) 100%);
    clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
    border-top: 1px solid rgba(46, 150, 245, 0.35);
    border-bottom: 1px solid rgba(46, 150, 245, 0.35);
}

/* Franja decorativa tipo fuselaje */
.ship-stripe {
    position: absolute;
    left: 8%;
    right: 22%;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg,
            var(--neon-yellow) 0px,
            var(--neon-yellow) 14px,
            transparent 14px,
            transparent 24px);
    opacity: 0.55;
}

/* Ventana / ojo de buey central */
.ship-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 2;
}

.ship-window-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(234, 254, 7, 0.5), rgba(46, 150, 245, 0.3));
    padding: 0;
    box-shadow:
        0 0 0 1px rgba(234, 254, 7, 0.4),
        0 0 30px rgba(234, 254, 7, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.ship-window-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #030a24;
}

.ship-window-glass {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(46, 150, 245, 0.08);
    box-shadow: 0 0 0 1px rgba(46, 150, 245, 0.3) inset;
}

.ship-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.6, 0.05, 0.25, 1);
}

.ship-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.ship-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.2) brightness(0.95) contrast(1.05);
}

.ship-slide--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(46, 150, 245, 0.18) 0%, transparent 60%),
        rgba(46, 150, 245, 0.06);
    font-size: 2.4rem;
    color: rgba(46, 150, 245, 0.45);
}

.ship-window-bolt {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(46, 150, 245, 0.6);
    box-shadow: 0 0 6px rgba(46, 150, 245, 0.6);
    z-index: 3;
}

.ship-window-bolt.b1 {
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.ship-window-bolt.b2 {
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.ship-window-bolt.b3 {
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.ship-window-bolt.b4 {
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

/* Aletas traseras, arriba y abajo */
.ship-fin {
    position: absolute;
    right: 6%;
    width: 80px;
    height: 60px;
    background: linear-gradient(160deg, rgba(228, 55, 0, 0.55), rgba(228, 55, 0, 0.15));
    border: 1px solid rgba(228, 55, 0, 0.5);
}

.ship-fin.fin-top {
    top: 0;
    transform: translateY(-55%) skewX(-18deg);
    border-radius: 4px 10px 0 0;
}

.ship-fin.fin-bottom {
    bottom: 0;
    transform: translateY(55%) skewX(18deg);
    border-radius: 0 0 10px 4px;
}

/* Propulsor con "llamas" pulsantes en el extremo derecho */
.ship-thruster {
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 3px;
}

.ship-thruster .flame {
    display: block;
    width: 5px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--neon-yellow), var(--rocket-red));
    box-shadow: 0 0 10px 2px rgba(234, 254, 7, 0.55);
    animation: flame-flicker 0.9s ease-in-out infinite;
}

.ship-thruster .f1 {
    height: 26px;
    animation-delay: 0s;
}

.ship-thruster .f2 {
    height: 38px;
    animation-delay: 0.15s;
}

.ship-thruster .f3 {
    height: 22px;
    animation-delay: 0.3s;
}

@keyframes flame-flicker {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.85;
    }

    50% {
        transform: scaleY(0.7);
        opacity: 1;
    }
}

/* Nombre / rol de la persona activa en el slider */
.ship-caption {
    margin-top: 1.75rem;
    min-height: 3.2rem;
}

.ship-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
}

.ship-role {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--blue-yonder);
    margin-top: 0.25rem;
}

/* Controles: flechas + puntos de navegación */
.ship-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.ship-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(46, 150, 245, 0.4);
    background: rgba(46, 150, 245, 0.1);
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ship-btn:hover,
.ship-btn:focus-visible {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    color: var(--deep-blue);
    transform: scale(1.08);
}

.ship-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ship-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(46, 150, 245, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.ship-dot.is-active {
    background: var(--neon-yellow);
    box-shadow: 0 0 8px rgba(234, 254, 7, 0.6);
    transform: scale(1.3);
}

@media (max-width: 720px) {
    .ship-body {
        height: 240px;
        border-radius: 120px;
        max-width: 92vw;
    }

    .ship-nose {
        width: 80px;
        height: 240px;
    }

    .ship-window {
        width: 190px;
        height: 190px;
    }

    .ship-fin {
        width: 40px;
        height: 32px;
    }

    .ship-thruster .f1 {
        height: 18px;
    }

    .ship-thruster .f2 {
        height: 27px;
    }

    .ship-thruster .f3 {
        height: 15px;
    }

    .team-section {
        padding: 4rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ship-track,
    .ship-thruster .flame,
    .ship-dot,
    .ship-btn {
        transition: none !important;
        animation: none !important;
    }
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 23, 63, 0.85) 0%, rgba(4, 13, 38, 0.9) 100%);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(46, 150, 245, 0.1);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-title {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue-yonder);
    margin-bottom: 2.5rem;
}

.institutions-panel {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(46, 150, 245, 0.15);
}

.institutions-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/public/patterns/voronoi.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.institutions-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.75rem;
}

/* Caja de tamaño fijo por logo: esto es lo que hace que archivos muy
   distintos entre sí (cuadrados, anchos, altos) se vean parejos. */
.institution-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
}

.institution-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.15);
    opacity: 0.92;
    transition: all 0.3s ease;
}

.institution-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.06);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 150, 245, 0.1);
}

.footer-bottom p {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
    .institutions-panel {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }

    .institutions-grid {
        gap: 1.25rem 1.75rem;
    }

    .institution-logo-box {
        width: 110px;
        height: 72px;
    }

    .briefing-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .data-row .value {
        text-align: right;
        font-size: 0.85rem;
    }

    .telemetry-track {
        gap: 1.25rem;
        font-size: 0.62rem;
    }

    .orbit-wrap {
        width: 200px;
        height: 200px;
    }

    .main-logo {
        width: 100px;
    }

    .c-block span {
        font-size: 1.3rem;
    }

    .orrery {
        width: 300px;
        height: 300px;
    }

    .orrery-ring.ring-1 {
        border-width: 1px;
    }

    @keyframes orbit-move-a {
        0% {
            transform: rotate(0deg) translateX(135px) rotate(0deg) scaleY(0.32);
        }

        100% {
            transform: rotate(360deg) translateX(135px) rotate(-360deg) scaleY(0.32);
        }
    }

    @keyframes orbit-move-b {
        0% {
            transform: rotate(90deg) translateX(107px) rotate(-90deg) scaleY(0.4);
        }

        100% {
            transform: rotate(450deg) translateX(107px) rotate(-450deg) scaleY(0.4);
        }
    }

    @keyframes orbit-move-c {
        0% {
            transform: rotate(200deg) translateX(75px) rotate(-200deg) scaleY(0.5);
        }

        100% {
            transform: rotate(560deg) translateX(75px) rotate(-560deg) scaleY(0.5);
        }
    }

    .flip-card {
        width: 58px;
        height: 68px;
    }

    .flip-face span {
        font-size: 1.25rem;
    }

    .flip-divider {
        font-size: 1.1rem;
        padding-bottom: 1.4rem;
    }

    .chrono-section {
        padding: 4rem 1rem 3.5rem;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

    .satellite,
    .hero::before,
    .star,
    .tdot.pulse,
    .orrery-ring,
    .orrery-orbit .sat,
    .orrery-core-glow {
        animation: none !important;
    }

    .flip-card-inner {
        transition: none !important;
    }

    * {
        scroll-behavior: auto !important;
    }
}

/* ================================================================
   JURADO DRAWER — slides in from the left edge, overlay fades behind it
   ================================================================ */
.jurado-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(2, 7, 26, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.jurado-overlay.is-open {
    opacity: 1;
}

.jurado-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 41;
    width: min(720px, 94vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(7, 23, 63, 0.98) 0%, rgba(3, 10, 36, 0.99) 100%);
    border-right: 1px solid rgba(46, 150, 245, 0.35);
    box-shadow: 30px 0 80px rgba(0, 0, 0, 0.55);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1);
    padding: 2rem 2rem 2.5rem;
    overflow-y: auto;

    /* scrollbar fina y con la estética de la página, en vez de la gris por defecto */
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 150, 245, 0.45) transparent;
}

.jurado-modal::-webkit-scrollbar {
    width: 6px;
}

.jurado-modal::-webkit-scrollbar-track {
    background: transparent;
}

.jurado-modal::-webkit-scrollbar-thumb {
    background: rgba(46, 150, 245, 0.45);
    border-radius: 999px;
}

.jurado-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(46, 150, 245, 0.75);
}

.jurado-modal.is-open {
    transform: translateX(0);
}

.jurado-modal .corner {
    border-color: var(--neon-yellow);
}

.jurado-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(46, 150, 245, 0.25);
}

.jurado-header h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--white);
}

.jurado-header .panel-label {
    margin-bottom: 0.4rem;
}

.jurado-close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(46, 150, 245, 0.4);
    background: rgba(46, 150, 245, 0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jurado-close:hover,
.jurado-close:focus-visible {
    background: var(--rocket-red);
    border-color: var(--rocket-red);
    transform: rotate(90deg);
}

/* Contenedor exterior: dos columnas, Honor a la izq, Evaluador a la der */
.jurado-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.jurado-group-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(234, 254, 7, 0.2);
}

/* Grilla interior de cada grupo: una sola columna, fotos apiladas */
.jurado-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.jurado-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.jurado-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(46, 150, 245, 0.25);
    background: rgba(46, 150, 245, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jurado-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.25) brightness(0.95);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.jurado-photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(46, 150, 245, 0.18) 0%, transparent 60%),
        rgba(46, 150, 245, 0.06);
}

.jurado-photo--empty img {
    display: none;
}

.jurado-photo--empty::after {
    content: '☆';
    font-size: 1.8rem;
    color: rgba(46, 150, 245, 0.45);
}

.jurado-card:hover .jurado-photo img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(1.05);
}

.jurado-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.jurado-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.jurado-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: var(--blue-yonder);
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 520px) {
    .jurado-modal {
        width: 100vw;
        padding: 1.5rem 1.25rem 2rem;
    }

    .jurado-groups {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .jurado-gallery {
        gap: 0.9rem;
    }

    .jurado-header h2 {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .jurado-overlay,
    .jurado-modal,
    .jurado-close,
    .jurado-photo img {
        transition: none !important;
    }
}

/* ================================================================
   MENTOR / ASESOR MODAL — desliza desde la derecha, mismo lenguaje
   visual que el drawer del jurado, con un formulario de inscripción.
   ================================================================ */
.mentor-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(2, 7, 26, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mentor-overlay.is-open {
    opacity: 1;
}

.mentor-modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 41;
    width: min(520px, 94vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(7, 23, 63, 0.98) 0%, rgba(3, 10, 36, 0.99) 100%);
    border-left: 1px solid rgba(46, 150, 245, 0.35);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1);
    padding: 2rem 2rem 2.5rem;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: rgba(46, 150, 245, 0.45) transparent;
}

.mentor-modal::-webkit-scrollbar {
    width: 6px;
}

.mentor-modal::-webkit-scrollbar-track {
    background: transparent;
}

.mentor-modal::-webkit-scrollbar-thumb {
    background: rgba(46, 150, 245, 0.45);
    border-radius: 999px;
}

.mentor-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(46, 150, 245, 0.75);
}

.mentor-modal.is-open {
    transform: translateX(0);
}

.mentor-modal .corner {
    border-color: var(--neon-yellow);
}

.mentor-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(46, 150, 245, 0.25);
}

.mentor-header h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
}

.mentor-header .panel-label {
    margin-bottom: 0.4rem;
}

.mentor-close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(46, 150, 245, 0.4);
    background: rgba(46, 150, 245, 0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mentor-close:hover,
.mentor-close:focus-visible {
    background: var(--rocket-red);
    border-color: var(--rocket-red);
    transform: rotate(90deg);
}

/* ---- Form ---- */
.mentor-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row label,
.form-label-group {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-yonder);
}

.form-row input[type="text"],
.form-row input[type="number"] {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(46, 150, 245, 0.08);
    border: 1px solid rgba(46, 150, 245, 0.3);
    border-radius: 6px;
    padding: 0.75rem 0.9rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form-row input[type="text"]::placeholder,
.form-row input[type="number"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-row input[type="text"]:focus,
.form-row input[type="number"]:focus {
    border-color: var(--neon-yellow);
    background: rgba(46, 150, 245, 0.14);
}

.form-row input[type="file"] {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(46, 150, 245, 0.08);
    border: 1px dashed rgba(46, 150, 245, 0.35);
    border-radius: 6px;
    padding: 0.75rem 0.9rem;
    cursor: pointer;
}

.form-row input[type="file"]::file-selector-button {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--deep-blue);
    background: var(--neon-yellow);
    border: none;
    border-radius: 50px;
    padding: 0.45rem 0.9rem;
    margin-right: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.form-row input[type="file"]::file-selector-button:hover {
    transform: scale(1.05);
}

.form-hint {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
}

.radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(46, 150, 245, 0.08);
    border: 1px solid rgba(46, 150, 245, 0.3);
    border-radius: 50px;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.radio-option input[type="radio"] {
    accent-color: var(--neon-yellow);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.radio-option:has(input:checked) {
    border-color: var(--neon-yellow);
    background: rgba(234, 254, 7, 0.1);
}

.form-error {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--rocket-red);
    background: rgba(228, 55, 0, 0.1);
    border: 1px solid rgba(228, 55, 0, 0.35);
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
}

.mentor-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
}

.form-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

@media (max-width: 520px) {
    .mentor-modal {
        width: 100vw;
        padding: 1.5rem 1.25rem 2rem;
    }

    .mentor-header h2 {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mentor-overlay,
    .mentor-modal,
    .mentor-close,
    .form-row input,
    .radio-option {
        transition: none !important;
    }
}

/* ---------- Aviso de apertura de inscripciones ---------- */
.inscripciones-note {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--neon-yellow);
    background: rgba(234, 254, 7, 0.08);
    border: 1px solid rgba(234, 254, 7, 0.3);
    border-radius: 22px;
    padding: 0.85rem 1.4rem;
    text-align: center;
}

.inscripciones-note strong {
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 720px) {
    .inscripciones-note {
        font-size: 0.7rem;
        padding: 0.45rem 0.9rem;
        text-align: center;
    }
}

.inscripciones-link {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--deep-blue);
    background: var(--neon-yellow);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    margin-left: 0.4rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inscripciones-link:hover,
.inscripciones-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(234, 254, 7, 0.4);
}

@media (max-width: 720px) {
    .inscripciones-note {
        flex-wrap: wrap;
        justify-content: center;
    }

    .inscripciones-link {
        margin-left: 0;
        margin-top: 0.3rem;
    }
}