:root {
    --bg0: #070913;
    --bg1: #111534;
    --bg2: #1a1f4a;
    --ink: #f3f5ff;
    --muted: #adb4dc;
    --violet: #925fff;
    --blue: #56a1ff;
    --gold: #cfa964;
    --line: rgba(255, 255, 255, 0.15);
    --line-soft: rgba(255, 255, 255, 0.09);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: Manrope, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(56rem 36rem at -8% -8%, rgba(146, 95, 255, 0.26), transparent 72%),
        radial-gradient(48rem 30rem at 108% 0%, rgba(86, 161, 255, 0.22), transparent 72%),
        radial-gradient(38rem 24rem at 52% 120%, rgba(207, 169, 100, 0.1), transparent 70%),
        linear-gradient(165deg, var(--bg0), var(--bg1) 46%, var(--bg2));
    min-height: 100vh;
    overflow-x: hidden;
}

.grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.11;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.45px, transparent 0.45px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
}

.cursor-glow,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 90;
    opacity: 0;
    transition: opacity 240ms ease, transform 180ms ease;
}

.cursor-glow {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(146, 95, 255, 0.32) 0%,
            rgba(86, 161, 255, 0.16) 34%,
            rgba(86, 161, 255, 0.05) 56%,
            rgba(0, 0, 0, 0) 74%);
    filter: blur(6px);
    mix-blend-mode: screen;
}

.cursor-ring {
    width: 26px;
    height: 26px;
    margin-left: -13px;
    margin-top: -13px;
    border-radius: 50%;
    border: 1px solid rgba(209, 221, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(86, 161, 255, 0.45), 0 0 24px rgba(146, 95, 255, 0.42);
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

body.cursor-active .cursor-glow,
body.cursor-active .cursor-ring {
    opacity: 1;
}

body.cursor-hover .cursor-ring {
    transform: scale(1.9);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px rgba(207, 169, 100, 0.65), 0 0 30px rgba(207, 169, 100, 0.45);
}

body.cursor-hover .cursor-glow {
    transform: scale(1.12);
    filter: blur(8px) saturate(1.12);
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: linear-gradient(to right, rgba(7, 9, 19, 0.74), rgba(26, 31, 74, 0.74));
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--violet), var(--blue));
    box-shadow: 0 0 20px rgba(146, 95, 255, 0.8);
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    opacity: 0.92;
    transition: 0.2s ease;
}

.nav a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
}

.btn {
    border: 1px solid rgba(207, 169, 100, 0.28);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 16px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(63, 92, 230, 0.35);
    transition: transform 0.2s ease;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

section {
    padding: 42px 0;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
    filter: blur(2px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

[data-reveal="left"] {
    transform: translate3d(-34px, 0, 0) scale(0.98);
}

[data-reveal="right"] {
    transform: translate3d(34px, 0, 0) scale(0.98);
}

[data-reveal="zoom"] {
    transform: translate3d(0, 18px, 0) scale(0.92);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

[data-reveal-delay="1"] {
    transition-delay: 100ms;
}

[data-reveal-delay="2"] {
    transition-delay: 200ms;
}

[data-reveal-delay="3"] {
    transition-delay: 300ms;
}

[data-reveal-delay="4"] {
    transition-delay: 400ms;
}

[data-reveal-delay="5"] {
    transition-delay: 500ms;
}

.hero {
    padding: 54px 0 22px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(207, 169, 100, 0.34);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #dacffb;
}

.hero-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(207, 169, 100, 0.7);
}

.hero h1 {
    margin-top: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 4.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 12ch;
}

.hero h1 i {
    font-style: normal;
    background: linear-gradient(120deg, #c09bff, #66b4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.64;
    max-width: 50ch;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-link {
    color: #d6deff;
    text-decoration: none;
    border-bottom: 1px solid rgba(214, 222, 255, 0.45);
    padding-bottom: 2px;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.hero-visual img {
    width: min(360px, 100%);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 32%;
    border-radius: 24px;
    box-shadow: 0 22px 56px rgba(10, 14, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.timer-line {
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 0 0 1px rgba(207, 169, 100, 0.12);
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: 460px;
}

.timer-cell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(11, 14, 35, 0.46);
    padding: 8px 8px 6px;
}

.timer-num {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(145deg, #f2f4ff, #dfc488);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.timer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.strip {
    margin: 18px auto 36px;
    border-top: 1px solid rgba(207, 169, 100, 0.34);
    border-bottom: 1px solid rgba(207, 169, 100, 0.18);
    background: rgba(8, 10, 25, 0.45);
    overflow: hidden;
    position: relative;
}

.strip-track {
    display: flex;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: scroll-marquee 30s linear infinite;
}

.strip-line {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 10px 0;
    padding-right: 0;
    color: #d6dcff;
    font-size: 13px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .strip-track {
        animation: none;
    }

    .cursor-glow,
    .cursor-ring {
        display: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.section-head h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1.06;
    text-align: center;
    grid-column: 1 / -1;
}

#mentors .section-head h2 {
    text-align: left;
    grid-column: auto;
}

.section-head p {
    color: var(--muted);
    line-height: 1.62;
    max-width: 56ch;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 0 0 1px rgba(207, 169, 100, 0.1);
    padding: 14px 16px;
}

.feature-item h3 {
    font-size: 21px;
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--muted);
    line-height: 1.58;
}

.feature-image {
    min-height: 400px;
    display: grid;
    justify-items: center;
    align-items: start;
}

.feature-image img {
    width: min(360px, 100%);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 56px rgba(10, 14, 42, 0.65);
}

.roadmap {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 0;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--violet), var(--blue), transparent);
    opacity: 0.6;
}

.roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.roadmap-item.left {
    flex-direction: row-reverse;
}

.roadmap-item.right {
    flex-direction: row;
}

.roadmap-content {
    width: 45%;
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item.left .roadmap-content {
    margin-right: auto;
    margin-left: 0;
    background: linear-gradient(135deg, rgba(146, 95, 255, 0.15), rgba(86, 161, 255, 0.05));
    box-shadow: 0 8px 32px rgba(146, 95, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.roadmap-item.right .roadmap-content {
    margin-left: auto;
    margin-right: 0;
    background: linear-gradient(135deg, rgba(86, 161, 255, 0.15), rgba(207, 169, 100, 0.05));
    box-shadow: 0 8px 32px rgba(86, 161, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.roadmap-content:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(146, 95, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--violet);
    border: 3px solid var(--bg0);
    border-radius: 50%;
    box-shadow: 0 0 24px var(--violet), inset 0 0 8px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.roadmap-content h3 {
    font-family: Space Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--violet), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.mentors {
    margin-top: 8px;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mentor-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 0 0 1px rgba(207, 169, 100, 0.1);
    padding: 12px;
}

.mentor-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(146, 95, 255, 0.25), rgba(86, 161, 255, 0.2));
    display: grid;
    place-items: center;
    color: #e7ddff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
}

.mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.mentor-card h4 {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 17px;
}

.mentor-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.52;
}

@media (max-width: 1050px) {
    .roadmap {
        padding: 20px;
    }

    .roadmap-item {
        flex-direction: column !important;
        margin-bottom: 32px;
    }

    .roadmap::before {
        left: 26px;
    }

    .roadmap-content {
        width: 100%;
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .roadmap-dot {
        left: 26px;
    }
}

@media (max-width: 760px) {
    .roadmap {
        padding: 10px;
    }

    .roadmap::before {
        left: 16px;
    }

    .roadmap-content {
        margin-left: 50px !important;
        padding: 16px 18px;
        border-radius: 14px;
        font-size: 13px;
    }

    .roadmap-content h3 {
        font-size: 15px;
    }

    .roadmap-dot {
        left: 16px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
}

.register {
    margin-top: 6px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(130deg, rgba(146, 95, 255, 0.22), rgba(86, 161, 255, 0.18));
    box-shadow: inset 0 0 90px rgba(207, 169, 100, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 30px;
}

.register h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.03;
    margin-bottom: 10px;
}

.register p {
    color: #ebefff;
    line-height: 1.62;
    max-width: 44ch;
}

.register ul {
    margin-top: 14px;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #eef1ff;
}

.register li::before {
    content: "•";
    color: #e2be7b;
    margin-right: 8px;
}

.form {
    border-radius: 18px;
    background: rgba(10, 12, 30, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding: 18px;
    display: grid;
    gap: 10px;
}

.form label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #d4dbff;
}

.form input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    padding: 12px;
    outline: none;
    font-size: 14px;
}

.form input:focus {
    border-color: rgba(182, 141, 255, 0.86);
    box-shadow: 0 0 0 3px rgba(146, 95, 255, 0.24), 0 0 0 1px rgba(207, 169, 100, 0.28);
}

.err {
    color: #ff99ab;
    font-size: 12px;
    min-height: 16px;
}

.fine {
    color: #cfd4f2;
    font-size: 12px;
    line-height: 1.42;
}

.footer {
    margin-top: 28px;
    padding: 22px 0 34px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 13px;
}

.footer a {
    color: #d8defd;
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 222, 253, 0.34);
}

.float-action {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(130deg, rgba(146, 95, 255, 0.92), rgba(86, 161, 255, 0.92));
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 12px 16px;
    box-shadow: 0 16px 30px rgba(56, 79, 215, 0.36);
}

@media (max-width: 1050px) {

    .hero-grid,
    .feature-grid,
    .register {
        grid-template-columns: 1fr;
    }

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

    .hero-visual,
    .feature-image {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 86px;
    }

    .container {
        width: min(1160px, calc(100vw - 24px));
    }

    section {
        padding: 34px 0;
    }

    .topbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .nav {
        width: auto;
        justify-content: flex-end;
    }

    .nav a {
        font-size: 12px;
        padding: 7px 9px;
    }

    .nav a:not(.btn) {
        display: none;
    }

    .nav .btn {
        font-size: 11px;
        letter-spacing: 0.03em;
        padding: 10px 12px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .brand {
        font-size: 16px;
        gap: 8px;
    }

    .hero {
        padding-top: 34px;
    }

    .hero h1 {
        font-size: clamp(28px, 10vw, 40px);
        max-width: 100%;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-link {
        width: 100%;
        text-align: center;
    }

    .timer-num {
        font-size: 24px;
    }

    .section-head h2 {
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1.12;
    }

    .section-head {
        grid-template-columns: 1fr;
    }

    .timer-line {
        grid-template-columns: 1fr 1fr;
    }

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

    .roadmap {
        padding: 8px 0;
        margin: 24px auto 8px;
    }

    .roadmap::before {
        left: 12px;
    }

    .roadmap-item {
        margin-bottom: 24px;
    }

    .roadmap-content {
        width: auto;
        margin-left: 32px !important;
        margin-right: 0 !important;
        padding: 14px 14px;
        border-radius: 12px;
    }

    .roadmap-content p {
        font-size: 13px;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .roadmap-dot {
        left: 12px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .register {
        padding: 18px;
        border-radius: 16px;
        gap: 16px;
    }

    .form {
        padding: 14px;
    }

    .form .btn {
        width: 100%;
        text-align: center;
    }

    .float-action {
        width: calc(100% - 28px);
        text-align: center;
    }

    .cursor-glow,
    .cursor-ring {
        display: none;
    }
}