:root {
    --color-space-900: #050012;
    --color-space-800: #0d0321;
    --color-space-700: #16053a;
    --color-space-600: #23095a;
    --color-surface: rgba(35, 18, 66, 0.82);
    --color-surface-alt: rgba(52, 26, 92, 0.8);
    --color-surface-glass: rgba(18, 8, 32, 0.65);
    --color-border: rgba(153, 113, 229, 0.35);
    --color-border-strong: rgba(188, 144, 255, 0.55);
    --color-primary: #7c3aed;
    --color-primary-light: #a855f7;
    --color-secondary: #6366f1;
    --color-highlight: rgba(132, 116, 214, 1);
    --color-highlight-soft: rgba(132, 116, 214, 0.18);
    --color-text: #fdfbff;
    --color-text-muted: rgba(253, 251, 255, 0.72);
    --shadow-lg: 0 30px 75px rgba(5, 0, 30, 0.6);
    --shadow-md: 0 20px 45px rgba(10, 0, 36, 0.45);
    --shadow-sm: 0 12px 28px rgba(15, 0, 38, 0.35);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 18% 15%, #160531 0%, #06011a 36%, #01000d 100%);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 0);
    background-size: 140px 140px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 85% 8%, rgba(88, 28, 135, 0.42), transparent 60%),
                radial-gradient(circle at 12% 88%, rgba(60, 50, 152, 0.32), transparent 55%);
    pointer-events: none;
    z-index: -1;
}

.page {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.page::before {
    content: '';
    position: fixed;
    inset: -120px;
    background: radial-gradient(60% 60% at 18% 15%, rgba(95, 42, 168, 0.24), transparent 70%),
                radial-gradient(50% 60% at 82% 28%, rgba(36, 19, 84, 0.32), transparent 75%);
    filter: blur(55px);
    z-index: -1;
    pointer-events: none;
}

.page__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page__shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding-inline: clamp(28px, 6vw, 80px);
    padding-top: 30px;
    padding-bottom: 30px;
}

.page__shell--wide {
    width: min(1280px, 100%);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(135deg, rgba(5, 8, 24, 0.96), rgba(12, 4, 32, 0.96));
    border-bottom: 1px solid rgba(66, 52, 128, 0.55);
    box-shadow: 0 12px 35px rgba(3, 0, 20, 0.55);
    backdrop-filter: blur(14px);
}

.nav__content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
    padding: 14px clamp(24px, 6vw, 72px);
}

.nav__brand::after {
    content: none;
}

.nav--standalone .nav__content {
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-right: clamp(24px, 5vw, 120px);
}

.nav__logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.nav__brand-name {
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text);
    font-size: 0.88rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 32px);
    flex-wrap: nowrap;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav__menu a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav__menu a:hover {
    color: var(--color-text);
}

.nav__menu a:hover::after {
    transform: scaleX(1);
}

.nav__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    flex-shrink: 0;
}

.nav__cta .btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #5b21b6, #3b0a6d);
    color: #fdfbff;
}

.nav__toggle {
    display: none;
    border: 1px solid rgba(130, 110, 228, 0.45);
    background: rgba(20, 12, 42, 0.6);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #f8f5ff;
    margin: 4px 0;
}

.nav--open .nav__toggle {
    border-color: rgba(168, 132, 255, 0.7);
}

.nav__menu a.is-active {
    color: #c084fc;
}

.nav__menu a.is-active::after {
    transform: scaleX(1);
    background: linear-gradient(135deg, #c084fc, #a855f7);
}

.brand {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav__link:hover {
    color: var(--color-primary-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-weight: 600;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #f472b6 0%, #a855f7 45%, #6366f1 100%);
    color: #0b031b;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    text-decoration: none;
}



.btn--gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 45%, #4338ca 100%);
    color: #fdfbff;
}

.btn--ghost {
    background: transparent;
    border: 1px solid var(--color-border-strong);
    color: var(--color-text);
    box-shadow: none;
}

.btn--ghost:hover {
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.btn--bright {
    background: linear-gradient(135deg, #facc15 0%, #f97316 90%);
    color: #1a0a2d;
    box-shadow: 0 20px 55px rgba(250, 204, 21, 0.35);
}

.btn--sm {
    padding: 10px 22px;
    border-radius: 999px;
}

.btn--primary {
    width: 100%;
    margin-top: 12px;
}

.hero {
    position: relative;
    z-index: 1;
}

.hero .page__shell {
    padding-top: 25px;
    padding-bottom: clamp(70px, 9vw, 120px);
}

.hero--galaxy .hero__inner {
    display: grid;
    gap: clamp(48px, 6vw, 120px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero__copy {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(118, 124, 247, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__copy h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 0;
}

.hero__lead {
    color: var(--color-text-muted);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__actions .btn {
    min-width: 180px;
}

.hero__meta {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.hero__meta--wide {
    grid-column: 1 / -1;
    margin-top: clamp(-20px, -3vw, -10px);
}

.meta-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.meta-card__icon {
    font-size: 1.4rem;
}

.meta-card__title {
    margin: 0;
    font-weight: 600;
}

.meta-card__subtitle {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero__support {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.hero__support-label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__support-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero__support-logos img {
    height: 40px;
    width: auto;
    border-radius: 12px;
    background: rgba(20, 10, 41, 0.72);
    border: 1px solid rgba(167, 139, 250, 0.35);
    padding: 10px 16px;
    box-shadow: var(--shadow-sm);
}

.hero__visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    transform: translateY(-12px);
}

.hero__planet {
    width: clamp(280px, 35vw, 360px);
    height: clamp(280px, 35vw, 360px);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f472b6, #7c3aed 55%, #1f0a47 100%);
    box-shadow: var(--shadow-lg);
    position: relative;
    opacity: 55%;
}

.hero__planet::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 70%);
    filter: blur(6px);
    z-index: -1;
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.4);
    mix-blend-mode: screen;
}

.hero__ring--outer {
    width: clamp(380px, 45vw, 460px);
    height: clamp(300px, 36vw, 380px);
    transform: rotate(-12deg);
}

.hero__ring--inner {
    width: clamp(320px, 38vw, 420px);
    height: clamp(240px, 32vw, 320px);
    transform: rotate(18deg);
    border-color: rgba(250, 204, 21, 0.4);
}

.hero__astronaut {
    position: absolute;
    width: clamp(300px, 24vw, 260px);
    filter: drop-shadow(0 16px 40px rgba(12, 4, 28, 0.65));
    transform: translateY(-10px);
}

.hero__floating {
    position: absolute;
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--color-surface-glass);
    border: 1px solid var(--color-border-strong);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: float 6s ease-in-out infinite;
}

.hero__floating strong {
    font-size: 1.4rem;
    letter-spacing: normal;
}

.hero__floating .floating__title {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
}

.hero__floating .floating__subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-highlight);
}

.hero__floating--prize {
    top: 12%;
    right: 6%;
    animation-delay: 0.2s;
}

.hero__floating--seats {
    bottom: 16%;
    left: 2%;
    animation-delay: 1.4s;
}

.hero__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-highlight);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.8);
    opacity: 0.85;
}

.hero__spark--one {
    top: 8%;
    left: 28%;
}

.hero__spark--two {
    bottom: 22%;
    right: 14%;
}

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

.calendar-hero {
    padding: clamp(110px, 12vw, 180px) 0 clamp(90px, 10vw, 140px);
    position: relative;
    background: radial-gradient(circle at 10% 18%, rgba(96, 41, 176, 0.35), transparent 55%),
                radial-gradient(circle at 85% 22%, rgba(45, 30, 108, 0.35), transparent 60%);
    overflow: hidden;
    margin-bottom: clamp(50px, 8vw, 120px);
}

.calendar-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 8, 28, 0.7), rgba(6, 4, 18, 0.9));
    z-index: 0;
}

.calendar-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(40px, 7vw, 120px);
    grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.95fr);
    align-items: center;
}

.calendar-hero__copy {
    display: grid;
    gap: 24px;
}

.calendar-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(130, 110, 228, 0.45);
    background: rgba(30, 18, 62, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    width: fit-content;
}

.calendar-hero__copy h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1.08;
}

.calendar-hero__lead {
    color: var(--color-text-muted);
    max-width: 520px;
}

.calendar-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.calendar-hero .btn {
    background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%);
    color: #f5f3ff;
    box-shadow: 0 18px 40px rgba(24, 10, 70, 0.45);
}

.calendar-hero .btn:hover {
    background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
}

.calendar-hero .btn.btn--ghost {
    background: rgba(25, 16, 52, 0.75);
    border-color: rgba(163, 134, 240, 0.45);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

.calendar-hero .btn.btn--ghost:hover {
    background: rgba(31, 20, 62, 0.85);
    border-color: rgba(186, 154, 255, 0.6);
}

.calendar-hero__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--color-text-muted);
}

.calendar-hero__highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-hero__highlights span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(132, 116, 214, 0.2);
    border: 1px solid rgba(148, 128, 230, 0.35);
    color: var(--color-highlight);
}

.calendar-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
}

.calendar-hero__visual::before {
    content: '';
    position: absolute;
    width: clamp(320px, 33vw, 460px);
    height: clamp(320px, 33vw, 460px);
    border-radius: 36px;
    background: radial-gradient(circle, rgba(150, 118, 250, 0.24) 0%, rgba(78, 40, 156, 0.18) 45%, rgba(20, 10, 46, 0) 75%);
    filter: blur(0);
    transform: rotate(-4deg);
}

.calendar-hero__image {
    position: relative;
    width: clamp(280px, 32vw, 420px);
    animation: floatHero 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 60px rgba(12, 5, 30, 0.6));
}

.calendar-hero--tasks {
    background: radial-gradient(circle at 15% 20%, rgba(86, 37, 168, 0.45), transparent 60%),
                radial-gradient(circle at 80% 15%, rgba(22, 34, 83, 0.45), transparent 65%),
                linear-gradient(135deg, rgba(6, 2, 18, 0.85), rgba(4, 0, 16, 0.95));
    border-bottom: 1px solid rgba(148, 128, 230, 0.35);
    margin-bottom: clamp(40px, 6vw, 100px);
}

.calendar-hero__inner--tasks {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
}

.calendar-status-window {
    width: min(440px, 100%);
    border-radius: 30px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    background: linear-gradient(145deg, rgba(18, 8, 34, 0.95), rgba(6, 2, 18, 0.92));
    box-shadow: 0 45px 90px rgba(2, 0, 20, 0.75);
    padding: 22px 24px 32px;
    position: relative;
    display: grid;
    gap: 14px;
}

.calendar-status-window__chrome {
    display: flex;
    gap: 8px;
}

.calendar-status-window__chrome span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.calendar-status-window__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.calendar-status-window__body h3 {
    margin: 8px 0 6px;
}

.calendar-status-window__date {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.calendar-status-window__slider-wrapper {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 14px;
    overflow: hidden;
    position: relative;
}

.calendar-status-window__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: block;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.calendar-status-window__slider::-webkit-scrollbar {
    display: none;
}

.calendar-status-window__slider:focus {
    outline: 2px solid rgba(124, 58, 237, 0.6);
    outline-offset: 4px;
}

.calendar-status-window__track {
    display: flex;
    gap: 14px;
}

.calendar-status-window__slide {
    flex: 0 0 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    display: grid;
    gap: 8px;
    scroll-snap-align: start;
    min-height: 150px;
}

.calendar-status-window__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.calendar-status-window__title {
    margin: 0;
    font-weight: 600;
}

.calendar-status-window__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.calendar-status-window__status {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.calendar-status-window__slide--done .calendar-status-window__dot {
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

.calendar-status-window__slide--done .calendar-status-window__status {
    color: #86efac;
}

.calendar-status-window__slide--active {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(79, 70, 229, 0.22);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

.calendar-status-window__slide--active .calendar-status-window__dot {
    background: #c084fc;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.8);
}

.calendar-status-window__slide--active .calendar-status-window__status {
    color: #c7d2fe;
}

.calendar-status-window__base {
    width: 60%;
    height: 16px;
    border-radius: 999px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
    opacity: 0.4;
}

.calendar-status-window__slider-wrapper::before,
.calendar-status-window__slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
}

.calendar-status-window__slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(6, 2, 18, 0.95), transparent);
}

.calendar-status-window__slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(6, 2, 18, 0.95), transparent);
}

.calendar-status-window__current {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
}

.calendar-status-window__empty {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

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

@media (max-width: 720px) {
    .nav__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav__content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 18px;
    }

    .nav__menu {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .nav--open .nav__menu {
        display: flex;
    }

    .nav__cta {
        width: 100%;
        justify-content: flex-start;
        display: none;
    }

    .nav--open .nav__cta {
        display: flex;
    }

    .nav__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav__menu a {
        font-size: 0.8rem;
    }

    .calendar-hero {
        padding: 70px 0;
    }

    .calendar-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .calendar-hero__copy {
        justify-items: center;
    }

    .calendar-hero__lead {
        max-width: 100%;
    }

    .calendar-hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .calendar-hero .btn,
    .calendar-hero .btn.btn--ghost {
        width: 100%;
        justify-content: center;
    }

    .calendar-hero__highlights {
        justify-items: center;
        width: 100%;
    }

    .calendar-hero__highlights li {
        justify-content: center;
        max-width: 320px;
        width: 100%;
        text-align: left;
    }

    .calendar-hero__visual {
        margin-top: 12px;
    }

    .calendar-hero__image {
        position: relative;
        width: min(260px, 80vw);
    }

    .calendar-hero__visual::before {
        display: none;
    }

    .calendar-hero__highlights span {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    .calendar-status-window {
        width: 100%;
    }

    .calendar-status-window__slider {
        scroll-snap-type: x proximity;
    }

    .calendar-status-window__slide {
        flex: 0 0 100%;
    }
}

.section {
    padding: clamp(70px, vw, 120px) 0;
    position: relative;
    z-index: 1;
}

.section--alt {
    background: linear-gradient(180deg, rgba(18, 6, 38, 0.8), rgba(9, 3, 24, 0.95));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section__header {
    max-width: 720px;
    margin-bottom: 40px;
}

.section__label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-highlight);
    margin-bottom: 16px;
}

.section__lead {
    color: var(--color-text-muted);
    margin-top: 12px;
}

.section__header--singleline h2 {
    white-space: nowrap;
    font-size: clamp(2.2rem, 4vw, 2.6rem);
}

@media (max-width: 900px) {
    .section__header--singleline h2 {
        white-space: normal;
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 26px;
}

.stat {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat__value {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.stat__caption {
    color: var(--color-text-muted);
}

.tracks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.track {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0;
}

.track img {
    width: 100%;
    display: block;
}

.track__body {
    padding: 24px;
}

.track__body p {
    margin: 0;
    color: var(--color-text-muted);
}

.timeline {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.timeline--wide {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.timeline__item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.timeline__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 60%);
    pointer-events: none;
}

.timeline__item--glow {
    background: rgba(20, 10, 38, 0.9);
    border: 1px solid rgba(123, 90, 255, 0.4);
    padding: 32px 30px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    isolation: isolate;
    backdrop-filter: blur(6px);
}

.timeline__item--glow::before,
.timeline__item--glow::after {
    content: '';
    position: absolute;
    inset: -40%;
    opacity: 0.6;
    background: radial-gradient(circle, rgba(123, 90, 255, 0.25) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -2;
    animation: timelineGlowOrbit 12s linear infinite;
}

.timeline__item--glow::after {
    inset: auto;
    top: 45%;
    left: 35%;
    right: -25%;
    bottom: -45%;
    filter: blur(18px);
    opacity: 0.45;
    animation-duration: 8s;
    animation-direction: reverse;
}

.timeline__item--glow:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(235, 207, 255, 0.8);
    box-shadow: 0 20px 45px rgba(14, 5, 30, 0.8), 0 0 35px rgba(147, 109, 255, 0.45);
}

.timeline__item--glow .timeline__meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(235, 207, 255, 0.8);
    margin-bottom: 12px;
}

.timeline__badge {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(145, 75, 255, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    box-shadow: 0 8px 25px rgba(32, 10, 63, 0.55);
    animation: timelineBadgePulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.timeline__badge span {
    display: block;
}

.timeline__content {
    position: relative;
    z-index: 1;
}

.timeline__item--card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.timeline__meta {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.timeline__item h3 {
    margin: 14px 0 10px;
}

.timeline__item p {
    margin: 0;
    color: var(--color-text-muted);
}

.experience__grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.experience__tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience__tab {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    background: rgba(15, 6, 32, 0.7);
    text-align: left;
    color: inherit;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.experience__tab span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.experience__tab strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.experience__tab.is-active {
    border-color: var(--color-highlight);
    background: linear-gradient(135deg, rgba(55, 11, 70, 0.8), rgba(28, 9, 41, 0.9));
    box-shadow: 0 10px 30px rgba(10, 3, 24, 0.4);
    transform: translateX(6px);
}

.experience__panels {
    position: relative;
}

.experience__panel {
    display: none;
    background: rgba(14, 5, 30, 0.9);
    border: 1px solid rgba(137, 112, 246, 0.5);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-lg);
}

.experience__panel.is-active {
    display: block;
}

.experience__panel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.experience__panel h3 {
    margin: 18px 0 14px;
    font-size: 1.6rem;
}

.experience__panel p {
    color: var(--color-text-muted);
    margin: 0 0 18px;
}

.experience__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.experience__checklist li {
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.experience__checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(167, 139, 250, 0.6);
    box-shadow: inset 0 0 0 4px rgba(167, 139, 250, 0.3);
}

.playground__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.playground__card {
    background: rgba(8, 3, 18, 0.85);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(118, 85, 227, 0.35);
    padding: 26px;
    display: grid;
    gap: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.playground__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.playground__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.08);
}

.playground__heading h3 {
    margin: 0;
}

.playground__heading span {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.playground__card p {
    margin: 0;
    color: var(--color-text-muted);
}

.playground__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.playground__card li {
    padding-left: 18px;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.playground__card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
}

.eligibility-board {
    padding-top: clamp(40px, 6vw, 80px);
}

.eligibility-board__surface {
    border-radius: 36px;
    padding: clamp(28px, 5vw, 64px);
    background:
        radial-gradient(circle at 0% 0%, rgba(103, 34, 169, 0.35), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(59, 7, 101, 0.45), transparent 60%),
        rgba(8, 2, 22, 0.95);
    border: 1px solid rgba(120, 94, 255, 0.45);
    box-shadow: 0 40px 60px rgba(5, 0, 20, 0.5);
    display: grid;
    gap: clamp(24px, 4vw, 40px);
}

.eligibility-board__header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.eligibility-board__header h2 {
    margin: 6px 0 0;
}

.eligibility-board__lead {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.eligibility-board__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.eligibility-card {
    position: relative;
    padding: 22px 22px 22px 72px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 2, 18, 0.8);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    min-height: 120px;
    display: flex;
    align-items: center;
}

.eligibility-card__badge {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(79, 70, 229, 0.9));
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    box-shadow: 0 12px 28px rgba(50, 10, 70, 0.6);
}

.eligibility-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
}

@keyframes timelineGlowOrbit {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.02);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes timelineBadgePulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 25px rgba(32, 10, 63, 0.55);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(94, 52, 162, 0.65);
    }
}

.prizes__grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.prize {
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.prize h3 {
    margin-top: 0;
    color: var(--color-primary-light);
}

.prize p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.prizes__note {
    margin-top: 32px;
    padding: 22px 26px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--color-border);
    background: rgba(18, 7, 36, 0.7);
    color: var(--color-text-muted);
}

.sponsors__grid {
    display: grid;
    gap: 32px;
}

.rules-hero {
    padding: clamp(70px, 9vw, 120px) 0;
    background: radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.3), transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.24), transparent 55%),
        linear-gradient(180deg, #040014, #050018 60%, #060020 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rules-hero__grid {
    display: grid;
    gap: clamp(28px, 6vw, 60px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.rules-hero__panel {
    background: rgba(11, 7, 29, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: clamp(32px, 6vw, 48px);
    display: grid;
    gap: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.rules-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.rules-hero__panel h1 {
    margin: 0;
}

.rules-hero__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.rules-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.rules-hero__ghost {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 22px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.rules-hero__chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rules-hero__chips li {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.rules-hero__visual {
    position: relative;
    min-height: 280px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.rules-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.8;
}

.rules-orb--one {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 35% 35%, rgba(124, 58, 237, 0.8), rgba(79, 70, 229, 0.4), transparent 70%);
    animation: rulesFloat 8s ease-in-out infinite;
    top: 10%;
    left: 8%;
}

.rules-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 60% 60%, rgba(34, 211, 238, 0.5), rgba(79, 70, 229, 0.35), transparent 75%);
    animation: rulesFloat 9s ease-in-out infinite reverse;
    bottom: 6%;
    right: 4%;
}

.rules-hero__frame {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    background: rgba(12, 9, 26, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: grid;
    gap: 8px;
    text-align: left;
}

.rules-hero__frame-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.rules-hero__frame span {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

.rules-hero__frame strong {
    font-size: 1.2rem;
    color: #fff;
}

.rules-hero__frame p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.rules-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.rules-hero__stack {
    width: min(520px, 100%);
    display: grid;
    gap: 14px;
    position: relative;
}

.rules-hero__frame--list ul {
    margin: 0;
    padding: 0 0 0 16px;
    color: rgba(255, 255, 255, 0.8);
    display: grid;
    gap: 6px;
}

.rules-tos {
    background: linear-gradient(180deg, rgba(3, 0, 18, 0.95), rgba(9, 0, 30, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rules-tos__layout {
    display: grid;
    gap: clamp(24px, 5vw, 60px);
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
}

.rules-tos__sidebar {
    position: sticky;
    top: 120px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 2, 22, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.rules-tos__eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.rules-tos__sidebar ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.rules-tos__sidebar li {
    border-radius: 16px;
}

.rules-tos__sidebar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rules-tos__sidebar a.is-active,
.rules-tos__sidebar a:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.1);
    color: #fff;
}

.rules-tos__content {
    display: grid;
    gap: 32px;
}

.rules-tos__block {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(24px, 4vw, 40px);
    background: rgba(12, 4, 30, 0.9);
    box-shadow: 0 20px 40px rgba(4, 0, 15, 0.5);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 140px;
}

.rules-tos__block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(167, 139, 250, 0.12);
    mix-blend-mode: screen;
}

.rules-tos__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.rules-tos__block h2 {
    margin: 18px 0 12px;
}

.rules-tos__block p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 12px;
}

.rules-tos__list {
    list-style: disc;
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.rules-tos__subsections {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.rules-tos__subsection {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.rules-tos__subsection h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.sponsors__tier {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.sponsors__tier--featured {
    background: linear-gradient(135deg, rgba(29, 14, 52, 0.95), rgba(44, 19, 78, 0.85));
    border-color: rgba(167, 139, 250, 0.55);
    box-shadow:
        0 0 18px rgba(167, 139, 250, 0.4),
        0 0 45px rgba(86, 30, 146, 0.35),
        inset 0 0 18px rgba(167, 139, 250, 0.35);
}

.sponsors__tier-label {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.sponsors__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsors__logos--detailed {
    flex-direction: column;
    gap: 16px;
}

.sponsor {
    flex: 0 1 160px;
    background: rgba(19, 10, 36, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.35);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors__tier--featured .sponsor {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 22px rgba(167, 139, 250, 0.35);
}

.sponsor img {
    max-width: min(100%, 220px);
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.sponsor--detailed {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 22px;
    padding: 18px 22px;
    align-items: center;
    min-height: 120px;
}

.sponsor--detailed img {
    flex: 0 0 180px;
    max-width: 180px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor__details {
    display: grid;
    gap: 6px;
}

.sponsor__details h3 {
    margin: 0;
}

.sponsor__details p {
    margin: 0;
    color: var(--color-text-muted);
}

.deadlines__list {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.deadline {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.deadline__meta {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-highlight);
}

.deadline p {
    color: var(--color-text-muted);
}

.eligibility {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.eligibility__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.eligibility__card h3 {
    margin-top: 0;
}

.eligibility__card ul {
    margin: 16px 0 0 18px;
    padding: 0;
    color: var(--color-text-muted);
}

.eligibility__card--context {
    background: linear-gradient(135deg, rgba(59, 29, 104, 0.8), rgba(25, 12, 58, 0.85));
    border: 1px solid rgba(155, 126, 229, 0.45);
}

.eligibility__card--context p {
    color: rgba(255, 255, 255, 0.82);
}

.eligibility__link {
    display: inline-flex;
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-primary-light);
    align-items: center;
    gap: 6px;
}

.eligibility__link:hover {
    color: var(--color-highlight);
}

.calendar-window {
    width: min(1240px, 100%);
    margin: 0 auto;
    border-radius: 32px;
    background: rgba(8, 10, 28, 0.9);
    border: 1px solid rgba(124, 96, 220, 0.35);
    box-shadow: 0 45px 90px rgba(2, 0, 16, 0.65);
    overflow: hidden;
}

.calendar-window__chrome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(20, 24, 70, 0.92), rgba(48, 24, 104, 0.92));
    border-bottom: 1px solid rgba(110, 88, 206, 0.35);
}

.calendar-window__body {
    padding: 40px 44px 44px;
    background: rgba(6, 4, 20, 0.65);
}

@media (max-width: 720px) {
    .calendar-window__body {
        padding: 28px 20px;
    }
}

.calendar-window__dots {
    display: flex;
    gap: 12px;
}

.calendar-window__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
}

.calendar-window__dot--close {
    background: #f87171;
}

.calendar-window__dot--min {
    background: #fbbf24;
}

.calendar-window__dot--max {
    background: #34d399;
}

.calendar-window__title {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.calendar-table__wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 12px;
}

.calendar-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10, 6, 30, 0.82);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(3, 0, 20, 0.45);
    overflow: hidden;
}

.calendar-table thead th {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 24px;
    background: rgba(20, 8, 52, 0.92);
    border-bottom: 1px solid rgba(120, 96, 210, 0.35);
}

.calendar-table tbody td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(94, 72, 180, 0.3);
    vertical-align: top;
}

.calendar-table tbody tr:last-child td {
    border-bottom: none;
}

.calendar-table tbody tr:nth-child(even) td {
    background: rgba(28, 14, 52, 0.35);
}

.calendar-table tbody tr:hover td {
    background: rgba(52, 26, 96, 0.32);
}

.calendar-table th:first-child,
.calendar-table td:first-child {
    width: 80px;
}

.calendar-table th:nth-child(2),
.calendar-table td:nth-child(2) {
    width: 240px;
}

.calendar__segment {
    display: grid;
    gap: 12px;
}

.calendar__segment + .calendar__segment {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(156, 134, 240, 0.3);
}

.calendar__segment-date {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(132, 116, 214, 0.18);
    border: 1px solid rgba(148, 128, 230, 0.35);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.calendar__segment-entry {
    display: grid;
    gap: 4px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(136, 112, 230, 0.3);
    background: rgba(10, 4, 30, 0.65);
}

.calendar__segment-time {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.calendar__segment-desc {
    color: var(--color-text-muted);
}

.calendar__note {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(18, 9, 38, 0.75);
    color: var(--color-text-muted);
    display: grid;
    gap: 12px;
}

.callout {
    padding-top: 0;
}

.callout__container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 44px clamp(20px, 6vw, 80px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-strong);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(99, 102, 241, 0.85));
    box-shadow: var(--shadow-lg);
}

.callout__copy h2 {
    margin: 0 0 12px;
}

.callout__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer {
    position: relative;
    border-top: 1px solid rgba(148, 128, 230, 0.25);
    padding: 52px clamp(20px, 7vw, 120px);
    background:
        radial-gradient(circle at 18% 0%, rgba(72, 42, 122, 0.25), transparent 55%),
        radial-gradient(circle at 82% 0%, rgba(30, 18, 62, 0.35), transparent 60%),
        linear-gradient(180deg, #02000a 0%, #010009 100%);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 15%;
    width: 70%;
    height: 220px;
    background: radial-gradient(circle, rgba(88, 52, 162, 0.4), transparent 60%);
    filter: blur(25px);
    pointer-events: none;
    opacity: 0.65;
}

.footer--compact {
    border-top: none;
}

.footer__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    color: #f9f7ff;
}

.footer__label {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b693ff;
}

.footer p {
    margin: 10px 0;
    color: rgba(236, 227, 255, 0.62);
}

.footer a {
    color: #a78bfa;
}

.footer a:hover {
    color: #c4b5fd;
}

.footer__social-links {
    display: flex;
    gap: 12px;
}

.footer__social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(148, 128, 230, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 245, 255, 0.85);
    transition: all 0.2s ease;
    background: transparent;
    box-shadow: inset 0 0 8px rgba(8, 2, 22, 0.35);
}

.footer__social-links a:hover {
    border-color: rgba(148, 128, 230, 0.9);
    color: #d6bcfa;
    transform: translateY(-2px);
}

/* Participants page */

.participants-hero {
    padding: clamp(60px, 10vw, 130px) 0;
}

.participants-hero--split {
    background:
        radial-gradient(circle at 18% 18%, rgba(110, 60, 200, 0.55), transparent 55%),
        radial-gradient(circle at 78% 22%, rgba(36, 17, 70, 0.65), transparent 60%),
        linear-gradient(145deg, #080012 0%, #0f0424 45%, #16063a 100%);
    border-bottom: 1px solid rgba(148, 128, 230, 0.3);
    overflow: hidden;
}

.participants-hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}

.participants-hero__copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 16px 0;
}

.participants-hero__lead {
    max-width: 520px;
    color: var(--color-text-muted);
    margin-bottom: 26px;
}

.participants-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(16, 9, 38, 0.7);
    border: 1px solid rgba(120, 98, 215, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.participants-hero__badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    display: inline-flex;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.participants-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.participants-hero__stats {
    margin-top: 10px;
}

.participants-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
}

.participants-hero__visual::after {
    content: '';
    position: absolute;
    inset: 20% -10% -10% 10%;
    background: radial-gradient(circle, rgba(73, 33, 143, 0.7), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.participants-hero__image {
    width: min(460px, 100%);
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.participants-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    filter: drop-shadow(0 35px 70px rgba(5, 0, 20, 0.65));
}

.participants {
    padding-top: clamp(60px, 8vw, 120px);
    padding-bottom: clamp(60px, 8vw, 120px);
    background:
        radial-gradient(circle at 25% -10%, rgba(93, 63, 211, 0.25), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(49, 28, 94, 0.35), transparent 55%),
        linear-gradient(180deg, #040014 0%, #080024 45%, #0d0333 100%);
}


.footer__powered img {
    max-width: 140px;
    height: auto;
}

.footer__copyright {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Register page */

.page--register {
    background: linear-gradient(150deg, #12043a 0%, #060017 55%, #0d0231 100%);
}

.register {
    display: grid;
    gap: clamp(40px, 6vw, 80px);
}

.register__intro {
    display: grid;
    gap: clamp(32px, 4vw, 60px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.register__copy h1 {
    margin-top: 0;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
}

.register__copy p {
    color: var(--color-text-muted);
}

.register__meta {
    margin-top: 24px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.register__label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.register__aside {
    display: grid;
    gap: 20px;
}

.aside-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--color-text-muted);
}

.aside-card__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-highlight);
    margin-bottom: 14px;
}

.aside-card ul {
    margin: 0;
    padding-left: 20px;
}

.register__form {
    display: grid;
    gap: 24px;
}

.form__wrapper {
    background: rgba(19, 9, 36, 0.78);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-strong);
    padding: clamp(28px, 6vw, 56px);
    box-shadow: var(--shadow-lg);
    max-width: 640px;
}

.form__field {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.form__group {
    border: 1px solid rgba(148, 128, 230, 0.35);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    background: rgba(15, 8, 30, 0.55);
}

.form__group-title {
    margin: 0 0 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.form__row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form__field label {
    font-weight: 600;
}

.form__field input,
.form__field select,
.form__field textarea {
    background: rgba(10, 4, 24, 0.78);
    border: 1px solid rgba(148, 118, 235, 0.45);
    border-radius: 14px;
    padding: 14px;
    color: var(--color-text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

textarea {
    resize: vertical;
    min-height: 150px;
}


.alert {
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 26px;
    border: 1px solid transparent;
}

.alert ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.alert--success {
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(15, 118, 110, 0.35);
    color: #d1fae5;
}

.alert--error {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.35);
    color: #fee2e2;
}

.admin-toast {
    position: fixed;
    top: 120px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(9, 26, 54, 0.92), rgba(13, 49, 90, 0.92));
    border: 1px solid rgba(94, 234, 212, 0.45);
    color: #e0f7ff;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    z-index: 120;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.admin-toast--error {
    border-color: rgba(248, 113, 113, 0.6);
    background: linear-gradient(135deg, rgba(67, 15, 33, 0.95), rgba(107, 25, 41, 0.9));
    color: #ffe4e6;
}

.admin-toast__icon {
    font-size: 1.4rem;
}

.admin-toast--hide {
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
}

.form__note {
    color: #fda4af;
    font-size: 0.9rem;
    margin-top: 12px;
}

.register__footer {
    color: var(--color-text-muted);
}

.register__footnote {
    margin: 0;
    font-size: 0.9rem;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal.is-visible {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 40px);
    background: linear-gradient(150deg, rgba(52, 52, 60, 0.78), rgba(30, 30, 36, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 25px 55px rgba(0, 0, 0, 0.3);
    display: grid;
    gap: 18px;
    color: #f5f5f7;
    backdrop-filter: blur(18px);
}

.modal__dialog h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #f5f5f7;
}

.modal__dialog ul {
    margin: 0;
    padding-left: 18px;
    color: #dcdde1;
}

.modal__dialog p {
    margin: 0;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #eee;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.05rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.modal__cta {
    justify-self: start;
    width: 100%;
    min-width: 0;
    text-align: center;
    border-radius: 14px;
    box-shadow: none;
    background: linear-gradient(135deg, #6d3bf0, #5b8bff);
    border: none;
}

.modal__header {
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr;
    align-items: start;
}

.modal__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #f7c948;
    font-size: 1.9rem;
}

.modal__content {
    display: grid;
    gap: 10px;
}

.modal__footer {
    display: grid;
    gap: 10px;
}

.modal--success .modal__icon {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}

.modal--error .modal__icon {
    color: #f7c948;
}

.modal__secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f5f7;
}

.about-hero {
    padding: clamp(40px, 6vw, 90px) 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(124, 83, 234, 0.25), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(78, 42, 142, 0.25), transparent 60%),
        linear-gradient(180deg, #050014 0%, #080022 45%, #0f0336 100%);
}

.about-hero__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(24px, 4vw, 40px);
}

.about-hero__header h1 {
    margin: 16px 0 12px;
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
}

.about-hero__header p {
    color: var(--color-text-muted);
    margin: 0;
}

.about-hero__eyebrow {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 128, 230, 0.4);
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.about-hero__counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.about-hero__counters div {
    border-radius: 18px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    background: rgba(7, 3, 18, 0.7);
    padding: 18px;
    display: grid;
    gap: 4px;
}

.about-hero__counters strong {
    font-size: 1.6rem;
}

.about-hero__counters span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}


@media (max-width: 920px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__pane {
        order: -1;
    }
}

.about-glance__grid {
    display: grid;
    gap: clamp(40px, 5vw, 70px);
}

.glance-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

.glance-split--reverse .glance-split__visual {
    order: 2;
}

.glance-split__content {
    display: grid;
    gap: 14px;
}

.glance-split__eyebrow {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.glance-split__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--color-text-muted);
}

.glance-split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.glance-window {
    border-radius: 26px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    background: rgba(3, 3, 18, 0.9);
    box-shadow: 0 25px 60px rgba(1, 0, 18, 0.6);
    overflow: hidden;
}

.glance-window__chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, rgba(20, 20, 50, 0.9), rgba(40, 24, 82, 0.9));
    padding: 12px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.glance-window__dots {
    display: flex;
    gap: 6px;
}

.glance-window__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.glance-window__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 26px 26px;
}

.glance-window__viewport img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.glance-window__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 4, 14, 0.7);
    border: 1px solid rgba(148, 128, 230, 0.35);
    color: rgba(255, 255, 255, 0.85);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.glance-window__control span {
    font-size: 1.2rem;
}

.glance-window__control--prev { left: 12px; }
.glance-window__control--next { right: 12px; }

.glance-window__indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 22px;
    background: linear-gradient(135deg, rgba(6, 6, 22, 0.95), rgba(9, 6, 30, 0.9));
    border-top: 1px solid rgba(148, 128, 230, 0.2);
}

.glance-window__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.glance-window__indicator.is-active {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
}

.hardware-showcase {
    background: linear-gradient(180deg, #030012 0%, #070022 60%, #0a0730 100%);
}

.hardware-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.hardware-showcase__copy {
    display: grid;
    gap: 18px;
}

.hardware-showcase__eyebrow {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hardware-showcase__perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--color-text-muted);
}

.hardware-showcase__perks li::before {
    content: '•';
    margin-right: 8px;
    color: var(--color-highlight);
}

.hardware-showcase__note {
    color: rgba(253, 251, 255, 0.7);
    font-size: 0.9rem;
}

.hardware-stack {
    position: relative;
    border-radius: 36px;
    padding: clamp(28px, 4vw, 48px);
    background: radial-gradient(circle at 20% 0%, rgba(219, 95, 180, 0.35), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.3), transparent 60%),
                rgba(5, 0, 18, 0.95);
    border: 1px solid rgba(148, 128, 230, 0.35);
    box-shadow: 0 40px 90px rgba(4, 0, 20, 0.6);
    overflow: hidden;
}

.hardware-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(17, 8, 52, 0.95), rgba(32, 12, 82, 0.95));
}

.hardware-stack__mac-dots {
    position: absolute;
    top: 18px;
    left: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hardware-stack__mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.hardware-stack__bg {
    position: absolute;
    inset: 20% 5% 0 5%;
    background: url('../images/raspberry.png') center/260px no-repeat;
    opacity: 0.08;
    filter: blur(1px);
    pointer-events: none;
}

.hardware-stack__logo {
    width: 90px;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.hardware-stack__cards {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: clamp(12px, 3vw, 60px);
}

.hardware-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 0, 18, 0.85);
    padding: 18px 20px;
    box-shadow: 0 15px 35px rgba(1, 0, 15, 0.45);
}

.hardware-card h3 {
    margin: 0;
    font-size: 1rem;
}

.hardware-card p {
    margin: 6px 0 0;
    color: var(--color-text-muted);
}

.hardware-stack__footer {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.register-simple {
    padding: clamp(80px, 10vw, 140px) 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(124, 83, 234, 0.15), transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(78, 42, 142, 0.18), transparent 60%),
        linear-gradient(180deg, #050014 0%, #090021 55%, #0e0333 100%);
}

.register-simple__intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.register-simple__eyebrow {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(148, 128, 230, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.register-simple__intro h1 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.register-simple__intro p {
    color: var(--color-text-muted);
}

.register-simple__card {
    border-radius: 32px;
    border: 1px solid rgba(148, 128, 230, 0.4);
    background: rgba(7, 2, 18, 0.9);
    box-shadow: 0 35px 80px rgba(2, 0, 20, 0.65);
    padding: clamp(32px, 5vw, 60px);
}

.register-closed {
    border-radius: 28px;
    border: 1px solid rgba(239, 68, 68, 0.65);
    background: radial-gradient(circle at 20% 20%, rgba(255, 99, 132, 0.15), transparent 60%), rgba(32, 6, 22, 0.92);
    padding: clamp(32px, 5vw, 60px);
    text-align: center;
    box-shadow: 0 45px 90px rgba(80, 0, 20, 0.35);
}

.register-closed__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #ff9eb2;
}

.register-closed h2 {
    margin: 18px 0 8px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #ffe4e9;
}

.register-closed__meta {
    margin: 12px 0 24px;
    font-weight: 600;
    color: #ff7a91;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.register-closed__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.register-simple__form {
    display: grid;
    gap: 32px;
}

.form-section {
    border: 1px solid rgba(148, 128, 230, 0.35);
    border-radius: 24px;
    padding: 24px;
    background: rgba(12, 4, 28, 0.7);
}

.form-section legend {
    padding: 0 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.form-section__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 18px;
}

.form-section__grid--pair {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.form__field--full {
    grid-column: 1 / -1;
}

.register-simple__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

@media (max-width: 640px) {
    .register-simple__intro {
        text-align: left;
    }

    .register-simple__eyebrow {
        justify-content: flex-start;
    }

    .register-simple__card {
        padding: 24px;
    }

    .register-closed {
        padding: 24px;
    }

    .register-closed__actions {
        flex-direction: column;
    }

    .form-section {
        padding: 18px;
    }

    .form-section__grid,
    .form-section__grid--pair {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sponsors__tier {
        padding: 20px;
    }

    .sponsors__logos {
        flex-direction: column;
    }

    .sponsor {
        flex: 1 1 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sponsor--detailed {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .sponsor--detailed img {
        max-width: 70%;
        max-height: 80px;
    }

    .sponsor__details {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sponsors__tier {
        padding: 18px;
    }

    .sponsor--detailed img {
        max-width: 80%;
    }

    .sponsor__details h3 {
        font-size: 1rem;
    }

    .sponsor__details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 960px) {
    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav__menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav__cta {
        order: 2;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 420px;
        transform: none;
    }

    .hero__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__meta--wide {
        margin-top: 24px;
    }

    .experience__grid {
        grid-template-columns: 1fr;
    }

    .experience__tab {
        transform: none;
    }

    .eligibility-board__grid {
        grid-template-columns: 1fr;
    }

    .eligibility-board__header {
        flex-direction: column;
    }

    .eligibility-board__lead {
        max-width: 100%;
    }

    .rules-tos__layout {
        grid-template-columns: 1fr;
    }

    .rules-tos__sidebar {
        position: static;
    }

    .hero__floating {
        font-size: 0.75rem;
    }

    .callout__container {
        text-align: center;
    }

    .callout__container .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__support-logos img {
        flex: 1 1 45%;
    }

    .hero__meta {
        grid-template-columns: 1fr;
    }

    .hero__meta--wide {
        margin-top: 20px;
    }

    .experience__tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .experience__tab {
        min-width: 240px;
    }

    .eligibility-card {
        padding-left: 58px;
    }

    .rules-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section__header {
        margin-bottom: 30px;
    }
}
.participants__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.participants__summary-item {
    border-radius: 999px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.participants__summary-item strong {
    font-size: 1.1rem;
    color: #fff;
}

.participants__summary-item--accepted {
    border-color: rgba(34, 197, 94, 0.45);
    background: linear-gradient(135deg, rgba(3, 52, 36, 0.85), rgba(1, 28, 20, 0.85));
    color: #c6f6d5;
    box-shadow: 0 12px 28px rgba(8, 40, 24, 0.55);
}

.participants__summary-item--accepted strong {
    color: #fff;
}

.participants__summary-item--denied {
    border-color: rgba(250, 204, 21, 0.5);
    background: linear-gradient(135deg, rgba(70, 46, 4, 0.9), rgba(40, 26, 2, 0.9));
    color: #fef9c3;
    box-shadow: 0 12px 28px rgba(70, 45, 3, 0.55);
}

.participants__summary-item--denied strong {
    color: #fff;
}

.participants-table__wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(148, 128, 230, 0.3);
    background: rgba(10, 6, 24, 0.7);
    box-shadow: 0 25px 60px rgba(2, 0, 18, 0.55);
}

.participants-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.participants-table th,
.participants-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 128, 230, 0.2);
    vertical-align: top;
}

.participants-table th {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.participants-table__students {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.participants-table__student-name {
    font-weight: 600;
}

.participants-table__students small {
    color: var(--color-text-muted);
}

.participants-table__mentor-name {
    margin: 0;
    font-weight: 600;
}
.participants-table--grid td,
.participants-table--grid th {
    text-align: left;
}

.participants-table--grid td:first-child,
.participants-table--grid th:first-child {
    width: 90px;
}

.participants-table__mentor-inline {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.participants-table__team-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.participants-table__team-meta {
    margin: 4px 0 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.participants-table__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.participants-table__status--accepted {
    border-color: rgba(34, 197, 94, 0.5);
    color: #4ade80;
    background: rgba(34, 197, 94, 0.12);
}

.participants-table__project {
    margin: 0 0 6px;
}

.participants-table__project--muted {
    margin: 0;
    color: var(--color-text-muted);
}

.participants__disclaimer {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.participants__disclaimer a {
    color: var(--color-primary-light);
    font-weight: 600;
}

.participants__alert {
    margin-bottom: 24px;
}

.admin-kpis {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 24px;
}

.kpi-card {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(148, 128, 230, 0.35);
    background: linear-gradient(135deg, rgba(11, 5, 25, 0.95), rgba(21, 12, 45, 0.9));
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kpi-card__label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.kpi-card__value {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 8px 0 4px;
}

.kpi-card__meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.kpi-card__icon {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 3rem;
    opacity: 0.15;
}

.kpi-card--pending {
    border-color: rgba(167, 139, 250, 0.6);
}

.kpi-card--accepted {
    border-color: rgba(52, 211, 153, 0.4);
}

.kpi-card--admins {
    border-color: rgba(251, 191, 36, 0.4);
}
