/* =========================================================
   LASTHURDLE
   VISUAL SYSTEM
   ========================================================= */

:root {
    --bg: #08090c;
    --bg-soft: #0d0f13;
    --panel: #11141a;
    --panel-light: #161a21;

    --text: #f1f3f5;
    --muted: #8d949f;
    --dim: #555c66;

    --accent: #d9ff55;
    --accent-soft: rgba(217, 255, 85, 0.12);

    --line: rgba(255, 255, 255, 0.09);
    --line-bright: rgba(255, 255, 255, 0.16);

    --radius: 18px;
}


/* =========================================================
   RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--text);

    font-family: "Inter", sans-serif;

    min-height: 100vh;

    overflow-x: hidden;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.background-grid {
    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 75%
        );

    z-index: -3;
}


.ambient {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -2;
}


.ambient-one {
    top: -250px;
    right: -150px;

    background: rgba(217, 255, 85, 0.055);
}


.ambient-two {
    bottom: -300px;
    left: -200px;

    background: rgba(80, 120, 255, 0.045);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--line);
}


.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    text-decoration: none;

    font-size: 18px;

    letter-spacing: -0.5px;
}


.logo strong {
    font-weight: 700;
}


.logo-mark {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    border: 1px solid var(--line-bright);

    border-radius: 8px;

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 14px;

    box-shadow:
        0 0 25px rgba(217, 255, 85, 0.05);
}


.nav-links {
    display: flex;

    gap: 36px;
}


.nav-links a {
    color: var(--muted);

    text-decoration: none;

    font-size: 13px;

    transition: 0.25s ease;
}


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


.nav-button,
.primary-button,
.secondary-button {
    border: 0;

    cursor: pointer;

    font-family: inherit;
}


.nav-button {
    display: flex;

    align-items: center;

    gap: 12px;

    background: transparent;

    color: var(--text);

    border: 1px solid var(--line-bright);

    padding: 11px 16px;

    border-radius: 10px;

    font-size: 13px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.nav-button span {
    color: var(--accent);
}


.nav-button:hover {
    transform: translateY(-2px);

    background: var(--panel);

    border-color: rgba(217, 255, 85, 0.4);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: min(1240px, calc(100% - 48px));

    min-height: 720px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 80px;
}


.hero-content {
    padding: 80px 0;
}


.eyebrow {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-family: "DM Mono", monospace;

    font-size: 10px;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    margin-bottom: 25px;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 12px rgba(217, 255, 85, 0.7);

    animation: pulse 2s infinite;
}


@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}


.hero h1 {
    max-width: 720px;

    font-size: clamp(55px, 6vw, 88px);

    line-height: 0.94;

    letter-spacing: -5px;

    font-weight: 700;
}


.hero h1 span {
    display: block;

    color: var(--muted);
}


.hero-description {
    max-width: 520px;

    margin-top: 30px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 38px;
}


.primary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    background: var(--accent);

    color: #090a0b;

    padding: 15px 20px;

    border-radius: 11px;

    font-weight: 600;

    font-size: 13px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 35px rgba(217, 255, 85, 0.16);
}


.primary-button span {
    font-size: 18px;
}


.secondary-button {
    background: transparent;

    color: var(--text);

    border: 1px solid var(--line-bright);

    padding: 15px 20px;

    border-radius: 11px;

    font-size: 13px;

    transition: 0.25s ease;
}


.secondary-button:hover {
    background: var(--panel);

    transform: translateY(-3px);
}


.hero-note {
    display: flex;

    gap: 10px;

    align-items: center;

    margin-top: 55px;

    color: var(--dim);

    font-size: 12px;
}


.hero-note span {
    color: var(--accent);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}


.visual-card {
    position: relative;

    width: min(430px, 100%);

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid var(--line-bright);

    border-radius: 22px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.5);

    animation: floatingCard 6s ease-in-out infinite;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.card-top,
.card-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1px;

    color: var(--dim);
}


.live-indicator {
    color: var(--accent);
}


.visual-number {
    margin-top: 55px;

    font-size: 72px;

    letter-spacing: -5px;

    font-weight: 600;
}


.visual-label {
    color: var(--muted);

    font-size: 13px;

    margin-top: 5px;
}


.mini-chart {
    height: 100px;

    display: flex;

    align-items: end;

    gap: 7px;

    margin-top: 45px;

    border-bottom: 1px solid var(--line);
}


.mini-chart span {
    flex: 1;

    background: var(--accent);

    opacity: 0.7;

    border-radius: 3px 3px 0 0;

    transform-origin: bottom;

    animation: bars 3s ease-in-out infinite alternate;
}


.mini-chart span:nth-child(even) {
    animation-delay: -1s;
}


@keyframes bars {

    from {
        transform: scaleY(0.85);
    }

    to {
        transform: scaleY(1.08);
    }
}


.card-footer {
    margin-top: 18px;
}


.card-footer strong {
    color: var(--accent);

    font-weight: 500;
}


/* =========================================================
   ORBITS
   ========================================================= */

.orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    pointer-events: none;
}


.orbit-one {
    width: 540px;
    height: 280px;

    transform: rotate(-24deg);
}


.orbit-two {
    width: 620px;
    height: 350px;

    transform: rotate(30deg);

    border-color: rgba(217,255,85,0.06);
}


/* =========================================================
   FLOATING TAGS
   ========================================================= */

.floating-tag {
    position: absolute;

    padding: 9px 13px;

    border: 1px solid var(--line);

    background: rgba(13,15,19,0.88);

    backdrop-filter: blur(10px);

    border-radius: 8px;

    color: var(--muted);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    animation: tagFloat 5s ease-in-out infinite;
}


.floating-tag span {
    color: var(--accent);

    margin-right: 7px;
}


.tag-one {
    top: 12%;

    left: 0;
}


.tag-two {
    right: -3%;

    top: 40%;

    animation-delay: -2s;
}


.tag-three {
    bottom: 12%;

    left: 7%;

    animation-delay: -4s;
}


@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   STATS
   ========================================================= */

.stats-section {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.stat {
    padding: 35px 25px;

    border-right: 1px solid var(--line);
}


.stat:last-child {
    border-right: none;
}


.stat-number {
    display: block;

    font-family: "DM Mono", monospace;

    font-size: 28px;

    letter-spacing: -1px;
}


.stat-label {
    display: block;

    margin-top: 8px;

    color: var(--dim);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    padding: 150px 0;
}


.section-heading {
    max-width: 620px;

    margin-bottom: 60px;
}


.section-heading h2 {
    font-size: clamp(38px, 5vw, 62px);

    letter-spacing: -3px;

    line-height: 1;
}


.section-heading p {
    margin-top: 20px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    overflow: hidden;
}


.step-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    background: var(--panel);

    border-right: 1px solid var(--line);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.step-card:last-child {
    border-right: none;
}


.step-card:hover {
    background: var(--panel-light);

    transform: translateY(-4px);
}


.step-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(217,255,85,0.08),
            transparent
        );
}


.step-number {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 10px;
}


.step-icon {
    margin-top: 65px;

    color: var(--accent);

    font-size: 28px;
}


.step-card h3 {
    margin-top: 25px;

    font-size: 19px;
}


.step-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    max-width: 280px;
}


/* =========================================================
   HURDLES
   ========================================================= */

.hurdle-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.hurdle-card {
    position: relative;

    min-height: 180px;

    padding: 25px;

    background: var(--panel);

    border: 1px solid var(--line);

    border-radius: 15px;

    color: var(--text);

    text-align: left;

    cursor: pointer;

    font-family: inherit;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.hurdle-card:hover {
    transform: translateY(-5px);

    background: var(--panel-light);

    border-color: rgba(217,255,85,0.3);
}


.hurdle-index {
    position: absolute;

    top: 20px;
    right: 20px;

    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.hurdle-icon {
    display: block;

    color: var(--accent);

    font-size: 26px;

    margin-bottom: 45px;
}


.hurdle-name {
    font-size: 14px;

    font-weight: 500;
}


.hurdle-arrow {
    position: absolute;

    right: 22px;
    bottom: 21px;

    color: var(--muted);

    transition: 0.25s ease;
}


.hurdle-card:hover .hurdle-arrow {
    color: var(--accent);

    transform: translate(3px, -3px);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto 120px;

    padding: 1px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            rgba(217,255,85,0.35),
            transparent 35%,
            rgba(255,255,255,0.08)
        );
}


.cta-inner {
    min-height: 330px;

    padding: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 23px;

    background: var(--panel);
}


.cta-inner h2 {
    font-size: clamp(38px, 5vw, 60px);

    letter-spacing: -3px;
}


.cta-inner p {
    margin-top: 15px;

    color: var(--muted);
}


.primary-button.large {
    padding: 18px 25px;

    min-width: 190px;
}


/* =========================================================
   MODAL
   ========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 100;

    display: grid;

    place-items: center;

    padding: 20px;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;
}


.modal-overlay.active {
    opacity: 1;

    visibility: visible;
}


.modal {
    position: relative;

    width: min(500px, 100%);

    padding: 38px;

    background: var(--panel);

    border: 1px solid var(--line-bright);

    border-radius: 20px;

    transform: translateY(20px) scale(0.97);

    transition: 0.3s ease;
}


.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}


.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 34px;
    height: 34px;

    border: 1px solid var(--line);

    border-radius: 8px;

    background: transparent;

    color: var(--muted);

    font-size: 20px;

    cursor: pointer;
}


.modal h2 {
    font-size: 32px;

    letter-spacing: -1.5px;
}


.modal p {
    color: var(--muted);

    margin-top: 8px;

    font-size: 13px;
}


.modal-options {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 28px;
}


.modal-options button {
    padding: 15px;

    background: var(--bg-soft);

    border: 1px solid var(--line);

    border-radius: 10px;

    color: var(--text);

    text-align: left;

    cursor: pointer;

    font-family: inherit;

    transition: 0.2s ease;
}


.modal-options button:hover {
    border-color: rgba(217,255,85,0.4);

    background: var(--accent-soft);

    color: var(--accent);
}


/* =========================================================
   TOAST
   ========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 200;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    background: var(--panel);

    border: 1px solid var(--line-bright);

    border-radius: 10px;

    font-size: 12px;

    transform: translateY(100px);

    opacity: 0;

    transition: 0.35s ease;
}


.toast.show {
    transform: translateY(0);

    opacity: 1;
}


.toast-icon {
    color: var(--accent);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    padding: 30px 0 40px;

    border-top: 1px solid var(--line);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--dim);

    font-size: 11px;
}


.footer-logo {
    color: var(--text);

    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }


    .hero {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 50px;
    }


    .hero-content {
        padding: 50px 0 0;
    }


    .hero-visual {
        min-height: 450px;
    }


    .stats-section {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .stat:nth-child(2) {
        border-right: none;
    }


    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }


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


    .step-card {
        border-right: none;

        border-bottom: 1px solid var(--line);
    }


    .step-card:last-child {
        border-bottom: none;
    }


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


    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .navbar,
    .hero,
    .stats-section,
    .section,
    .cta-section,
    footer {
        width: min(100% - 28px, 1240px);
    }


    .navbar {
        height: 72px;
    }


    .nav-button {
        display: none;
    }


    .hero h1 {
        font-size: 54px;

        letter-spacing: -3px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .primary-button,
    .secondary-button {
        width: 100%;
    }


    .hero-visual {
        min-height: 400px;
    }


    .visual-card {
        padding: 22px;
    }


    .visual-number {
        font-size: 55px;
    }


    .floating-tag {
        display: none;
    }


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


    .stat {
        border-right: none;

        border-bottom: 1px solid var(--line);
    }


    .stat:last-child {
        border-bottom: none;
    }


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


    .section {
        padding: 100px 0;
    }


    .cta-inner {
        padding: 40px 28px;
    }


    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}
.choice-area {
    margin-top: 48px;
}

.choice-label {
    margin-bottom: 14px;
    color: var(--dim);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.choice-card {
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: 0.3s ease;
}

.choice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217,255,85,0.35);
    background: var(--panel-light);
}

.choice-card.contributor {
    background:
        linear-gradient(
            145deg,
            rgba(217,255,85,0.06),
            var(--panel)
        );
}

.choice-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.choice-number {
    color: var(--dim);
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.choice-icon {
    color: var(--accent);
    font-size: 22px;
}

.choice-card h2 {
    margin-top: 38px;
    font-size: 25px;
    letter-spacing: -1px;
}

.choice-card p {
    margin-top: 8px;
    min-height: 44px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.choice-actions {
    display: flex;
    gap: 7px;
    margin-top: 22px;
}

.choice-actions .primary-button,
.choice-actions .secondary-button {
    padding: 11px 13px;
    font-size: 11px;
}

.visual-symbol {
    margin-top: 55px;
    color: var(--accent);
    font-size: 55px;
    line-height: 1;
}

.visual-title {
    margin-top: 18px;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 2px;
}

.visual-description {
    max-width: 270px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.connection-line {
    display: flex;
    gap: 5px;
    margin: 30px 0 20px;
}

.connection-line span {
    height: 2px;
    flex: 1;
    background: var(--line-bright);
}

.connection-line span:last-child {
    background: var(--accent);
}

.system-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.system-row strong {
    font-weight: 400;
    color: var(--muted);
}

.system-row.active strong {
    color: var(--accent);
}

.about-section {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 130px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-card {
    min-height: 230px;
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.about-number {
    color: var(--accent);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.about-card h3 {
    margin-top: 65px;
    font-size: 18px;
}

.about-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-actions a {
    text-decoration: none;
}

.primary-button.large,
.secondary-button.large {
    padding: 17px 20px;
}

.hero-actions a,
.choice-actions a,
.cta-actions a {
    text-decoration: none;
}

@media (max-width: 900px) {

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

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

}

@media (max-width: 600px) {

    .choice-actions {
        flex-direction: column;
    }

    .choice-actions a {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions a {
        width: 100%;
    }

}
/* =========================================================
   JS INTERACTION DETAILS
   ========================================================= */

.nav-links a.active {
    color: var(--accent);
}


.primary-button.clicked,
.secondary-button.clicked,
.nav-button.clicked {
    transform: scale(0.97);
}


.cursor-glow {
    position: fixed;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(217, 255, 85, 0.045),
        transparent 70%
    );

    filter: blur(10px);
}


.page-loaded .hero-content {
    animation: heroEnter 0.9s ease forwards;
}


.page-loaded .hero-visual {
    animation: heroVisualEnter 1s ease 0.15s both;
}


@keyframes heroEnter {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

}


@keyframes heroVisualEnter {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

}


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

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;

    }

}
/* =========================================================
   STUDENT DASHBOARD
   ========================================================= */

.dashboard-page {
    min-height: 100vh;
}


.dashboard-label {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.dashboard-container {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    padding: 80px 0 120px;
}


.dashboard-welcome {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 50px;

    border-bottom: 1px solid var(--line);
}


.dashboard-welcome h1 {
    font-size: clamp(45px, 6vw, 70px);

    letter-spacing: -4px;

    line-height: 1;
}


.dashboard-welcome p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}


.dashboard-status {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid var(--line);

    border-radius: 8px;

    color: var(--muted);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1px;
}


.verification-card {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 25px;

    padding: 28px;

    background:
        linear-gradient(
            100deg,
            rgba(217,255,85,0.08),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(217,255,85,0.18);

    border-radius: 18px;
}


.verification-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--accent-soft);

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 20px;
}


.verification-content {
    flex: 1;
}


.verification-content .eyebrow {
    margin-bottom: 8px;
}


.verification-content h2 {
    font-size: 19px;
}


.verification-content p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 25px;
}


.dashboard-card {
    position: relative;

    min-height: 240px;

    padding: 28px;

    background: var(--panel);

    border: 1px solid var(--line);

    border-radius: 16px;

    color: var(--text);

    text-align: left;

    font-family: inherit;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.dashboard-card:hover {
    transform: translateY(-5px);

    background: var(--panel-light);

    border-color: rgba(217,255,85,0.3);
}


.dashboard-card.featured {
    background:
        linear-gradient(
            140deg,
            rgba(217,255,85,0.08),
            var(--panel)
        );
}


.dashboard-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-number {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.dashboard-card-icon {
    color: var(--accent);

    font-size: 25px;
}


.dashboard-card h3 {
    margin-top: 60px;

    font-size: 21px;

    letter-spacing: -0.5px;
}


.dashboard-card p {
    max-width: 350px;

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


.dashboard-arrow {
    position: absolute;

    right: 25px;

    bottom: 23px;

    color: var(--dim);

    transition: 0.25s ease;
}


.dashboard-card:hover .dashboard-arrow {
    color: var(--accent);

    transform: translate(3px, -3px);
}


.dashboard-bottom {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 10px;

    margin-top: 10px;
}


.info-panel,
.quote-panel {
    padding: 28px;

    background: var(--panel);

    border: 1px solid var(--line);

    border-radius: 16px;
}


.progress-line {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 35px;

    border-top: 1px solid var(--line);
}


.progress-step {
    position: relative;

    padding-top: 20px;

    color: var(--dim);
}


.progress-step::before {
    content: "";

    position: absolute;

    top: -4px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--dim);
}


.progress-step.complete,
.progress-step.active {
    color: var(--text);
}


.progress-step.complete::before,
.progress-step.active::before {
    background: var(--accent);

    box-shadow:
        0 0 12px rgba(217,255,85,0.5);
}


.progress-step span {
    display: block;

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.progress-step strong {
    display: block;

    margin-top: 7px;

    font-size: 11px;

    font-weight: 500;
}


.quote-panel {
    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.quote-panel > span {
    color: var(--accent);

    font-size: 25px;
}


.quote-panel p {
    max-width: 280px;

    font-size: 18px;

    line-height: 1.4;

    letter-spacing: -0.5px;
}


@media (max-width: 800px) {

    .dashboard-welcome {
        align-items: start;

        flex-direction: column;
    }


    .verification-card {
        align-items: start;

        flex-direction: column;
    }


    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .dashboard-container {
        width: calc(100% - 28px);

        padding-top: 50px;
    }


    .dashboard-label {
        display: none;
    }


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


    .dashboard-card {
        min-height: 210px;
    }


    .progress-line {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }

}
/* =========================================================
   STUDENT DASHBOARD
   ========================================================= */

.dashboard-page {
    min-height: 100vh;
}


.dashboard-label {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.dashboard-container {
    width: min(1240px, calc(100% - 48px));

    margin: 0 auto;

    padding: 80px 0 120px;
}


.dashboard-welcome {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 50px;

    border-bottom: 1px solid var(--line);
}


.dashboard-welcome h1 {
    font-size: clamp(45px, 6vw, 70px);

    letter-spacing: -4px;

    line-height: 1;
}


.dashboard-welcome p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}


.dashboard-status {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid var(--line);

    border-radius: 8px;

    color: var(--muted);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1px;
}


.verification-card {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 25px;

    padding: 28px;

    background:
        linear-gradient(
            100deg,
            rgba(217,255,85,0.08),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(217,255,85,0.18);

    border-radius: 18px;
}


.verification-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--accent-soft);

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 20px;
}


.verification-content {
    flex: 1;
}


.verification-content .eyebrow {
    margin-bottom: 8px;
}


.verification-content h2 {
    font-size: 19px;
}


.verification-content p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 25px;
}


.dashboard-card {
    position: relative;

    min-height: 240px;

    padding: 28px;

    background: var(--panel);

    border: 1px solid var(--line);

    border-radius: 16px;

    color: var(--text);

    text-align: left;

    font-family: inherit;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.dashboard-card:hover {
    transform: translateY(-5px);

    background: var(--panel-light);

    border-color: rgba(217,255,85,0.3);
}


.dashboard-card.featured {
    background:
        linear-gradient(
            140deg,
            rgba(217,255,85,0.08),
            var(--panel)
        );
}


.dashboard-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-number {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.dashboard-card-icon {
    color: var(--accent);

    font-size: 25px;
}


.dashboard-card h3 {
    margin-top: 60px;

    font-size: 21px;

    letter-spacing: -0.5px;
}


.dashboard-card p {
    max-width: 350px;

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


.dashboard-arrow {
    position: absolute;

    right: 25px;

    bottom: 23px;

    color: var(--dim);

    transition: 0.25s ease;
}


.dashboard-card:hover .dashboard-arrow {
    color: var(--accent);

    transform: translate(3px, -3px);
}


.dashboard-bottom {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 10px;

    margin-top: 10px;
}


.info-panel,
.quote-panel {
    padding: 28px;

    background: var(--panel);

    border: 1px solid var(--line);

    border-radius: 16px;
}


.progress-line {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 35px;

    border-top: 1px solid var(--line);
}


.progress-step {
    position: relative;

    padding-top: 20px;

    color: var(--dim);
}


.progress-step::before {
    content: "";

    position: absolute;

    top: -4px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--dim);
}


.progress-step.complete,
.progress-step.active {
    color: var(--text);
}


.progress-step.complete::before,
.progress-step.active::before {
    background: var(--accent);

    box-shadow:
        0 0 12px rgba(217,255,85,0.5);
}


.progress-step span {
    display: block;

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.progress-step strong {
    display: block;

    margin-top: 7px;

    font-size: 11px;

    font-weight: 500;
}


.quote-panel {
    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.quote-panel > span {
    color: var(--accent);

    font-size: 25px;
}


.quote-panel p {
    max-width: 280px;

    font-size: 18px;

    line-height: 1.4;

    letter-spacing: -0.5px;
}


@media (max-width: 800px) {

    .dashboard-welcome {
        align-items: start;

        flex-direction: column;
    }


    .verification-card {
        align-items: start;

        flex-direction: column;
    }


    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .dashboard-container {
        width: calc(100% - 28px);

        padding-top: 50px;
    }


    .dashboard-label {
        display: none;
    }


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


    .dashboard-card {
        min-height: 210px;
    }


    .progress-line {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }

}
/* =========================================================
   SIGN UP FORM
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 12px;
}


.signup-layout .auth-card {
    max-height: none;
}


.signup-layout .auth-header p {
    max-width: 520px;
}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================================================
   IDENTITY VERIFICATION
   ========================================================= */

.verification-container {
    width: min(1100px, calc(100% - 48px));

    min-height: calc(100vh - 170px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.15fr 0.65fr;

    align-items: center;

    gap: 90px;

    padding: 70px 0;
}


.verification-main h1 {
    max-width: 600px;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 0.95;

    letter-spacing: -4px;
}


.verification-main h1 span {
    color: var(--muted);
}


.verification-intro {
    max-width: 510px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


.demo-notice {
    display: flex;

    gap: 15px;

    align-items: flex-start;

    margin-top: 35px;

    padding: 18px;

    border: 1px solid rgba(217,255,85,0.18);

    background: rgba(217,255,85,0.04);

    border-radius: 12px;
}


.notice-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background: var(--accent-soft);

    color: var(--accent);

    font-family: "DM Mono", monospace;
}


.demo-notice strong {
    font-family: "DM Mono", monospace;

    font-size: 9px;

    letter-spacing: 1.3px;

    color: var(--accent);
}


.demo-notice p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


.upload-card {
    margin-top: 12px;

    padding: 30px;

    background: var(--panel);

    border: 1px solid var(--line-bright);

    border-radius: 18px;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.3);
}


.upload-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;
}


.upload-header .eyebrow {
    margin-bottom: 8px;
}


.upload-header h2 {
    font-size: 20px;
}


.upload-status {
    padding: 7px 9px;

    border: 1px solid var(--line);

    border-radius: 6px;

    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: 1px;
}


.upload-status.verified {
    color: var(--accent);

    border-color: rgba(217,255,85,0.3);
}


.file-drop {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 25px;

    padding: 20px;

    border: 1px dashed var(--line-bright);

    border-radius: 12px;

    cursor: pointer;

    transition: 0.25s ease;
}


.file-drop:hover,
.file-drop.has-file,
.file-drop.verified {
    border-color: rgba(217,255,85,0.35);

    background: rgba(217,255,85,0.035);
}


.file-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: var(--bg-soft);

    color: var(--accent);

    font-size: 20px;
}


.file-drop strong {
    display: block;

    font-size: 12px;
}


.file-drop p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}


.file-drop code {
    color: var(--accent);

    font-family: "DM Mono", monospace;
}


.file-browse {
    margin-left: auto;

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.selected-file {
    margin-top: 12px;

    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.verify-button {
    width: 100%;

    margin-top: 22px;
}


.verification-result {
    margin-top: 15px;

    padding: 12px;

    border-radius: 9px;

    font-size: 11px;

    line-height: 1.5;

    display: none;
}


.verification-result.success {
    display: block;

    border: 1px solid rgba(217,255,85,0.2);

    background: rgba(217,255,85,0.06);

    color: var(--accent);
}


.verification-result.error {
    display: block;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.035);

    color: #c9cdd2;
}


.verification-side h2 {
    max-width: 390px;

    margin-top: 25px;

    font-size: 43px;

    line-height: 1;

    letter-spacing: -2.5px;
}


.verification-line {
    height: 1px;

    margin: 40px 0 10px;

    background: var(--line);
}


.verification-step {
    display: flex;

    gap: 18px;

    padding: 19px 0;

    border-bottom: 1px solid var(--line);

    opacity: 0.45;
}


.verification-step.complete,
.verification-step.active {
    opacity: 1;
}


.verification-step > span {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.verification-step.active > span,
.verification-step.complete > span {
    color: var(--accent);
}


.verification-step strong {
    display: block;

    font-size: 12px;

    font-weight: 500;
}


.verification-step p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


@media (max-width: 850px) {

    .verification-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 50px;
    }


    .verification-side {
        display: none;
    }

}


@media (max-width: 600px) {

    .verification-container {
        width: calc(100% - 28px);
    }


    .upload-card {
        padding: 22px;
    }


    .file-drop {
        align-items: flex-start;

        flex-wrap: wrap;
    }


    .file-browse {
        width: 100%;

        margin-left: 58px;
    }

}
/* =========================================================
   CONTRIBUTOR DASHBOARD
   ========================================================= */

.contributor-dashboard .verification-card {
    background:
        linear-gradient(
            100deg,
            rgba(217,255,85,0.07),
            rgba(255,255,255,0.02)
        );
}


.contributor-dashboard .verification-icon {
    background: var(--accent-soft);
}
/* =========================================================
   CONTRIBUTOR SIGN IN
   ========================================================= */

.auth-page {
    min-height: 100vh;
}

.auth-label {
    color: var(--dim);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.auth-container {
    width: min(1050px, calc(100% - 48px));
    min-height: calc(100vh - 170px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: center;

    gap: 90px;
    padding: 70px 0;
}

.auth-card {
    padding: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid var(--line-bright);
    border-radius: 20px;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.4);

    backdrop-filter: blur(20px);
}

.auth-header h1 {
    font-size: clamp(44px, 5vw, 62px);
    line-height: 0.95;
    letter-spacing: -4px;
}

.auth-header p {
    max-width: 430px;
    margin-top: 17px;

    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.auth-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label,
.password-label label {
    display: block;
    margin-bottom: 9px;

    color: var(--dim);

    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.4px;
}

.password-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.password-label label {
    margin-bottom: 9px;
}

.show-password {
    border: none;
    background: transparent;

    color: var(--accent);

    font-family: "DM Mono", monospace;
    font-size: 9px;

    cursor: pointer;
}

.form-group input {
    width: 100%;
    padding: 15px 16px;

    background: var(--bg);

    border: 1px solid var(--line);
    border-radius: 10px;

    outline: none;

    color: var(--text);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input::placeholder {
    color: var(--dim);
}

.form-group input:focus {
    border-color: rgba(217,255,85,0.5);

    box-shadow:
        0 0 0 3px rgba(217,255,85,0.06);
}

.auth-submit {
    width: 100%;
    margin-top: 5px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 30px 0 20px;
}

.auth-divider span {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.auth-divider p {
    color: var(--dim);

    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 1px;
}

.auth-secondary {
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.auth-footer-text {
    margin-top: 22px;

    color: var(--dim);

    font-size: 10px;
    line-height: 1.6;

    text-align: center;
}

.auth-side {
    padding: 20px 0;
}

.auth-side h2 {
    max-width: 380px;
    margin-top: 25px;

    font-size: 45px;
    line-height: 1;
    letter-spacing: -2.5px;
}

.auth-line {
    width: 100%;
    height: 1px;

    margin: 45px 0 10px;

    background: var(--line);
}

.auth-side-item {
    display: flex;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}

.auth-side-item span {
    color: var(--accent);

    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.auth-side-item p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 850px) {

    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 50px;
    }

    .auth-side {
        display: none;
    }

}

@media (max-width: 600px) {

    .auth-container {
        width: calc(100% - 28px);
    }

    .auth-card {
        padding: 30px 22px;
    }

    .auth-label {
        display: none;
    }

}
/* =========================================================
   CONTRIBUTOR SIGN IN PAGE
   ========================================================= */

.contributor-auth {
    min-height: 100vh;
}


/* ---------------------------------------------------------
   AUTH PAGE LAYOUT
   --------------------------------------------------------- */

.contributor-auth .auth-container {
    width: min(1050px, calc(100% - 48px));
    min-height: calc(100vh - 170px);

    margin: 0 auto;
    padding: 70px 0;

    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: center;
    gap: 90px;
}


/* ---------------------------------------------------------
   SIGN IN CARD
   --------------------------------------------------------- */

.contributor-auth .auth-card {
    padding: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid var(--line-bright);
    border-radius: 20px;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.4);

    backdrop-filter: blur(20px);
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.contributor-auth .auth-header h1 {
    font-size: clamp(44px, 5vw, 62px);

    line-height: 0.95;
    letter-spacing: -4px;
}


.contributor-auth .auth-header p {
    max-width: 430px;

    margin-top: 17px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */

.contributor-auth .auth-form {
    margin-top: 40px;
}


.contributor-auth .form-group {
    margin-bottom: 22px;
}


.contributor-auth .form-group label,
.contributor-auth .password-label label {
    display: block;

    margin-bottom: 9px;

    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 9px;
    letter-spacing: 1.4px;
}


.contributor-auth .password-label {
    display: flex;

    align-items: center;
    justify-content: space-between;
}


.contributor-auth .show-password {
    border: none;

    background: transparent;

    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    cursor: pointer;
}


.contributor-auth .form-group input {
    width: 100%;

    padding: 15px 16px;

    background: var(--bg);

    border: 1px solid var(--line);

    border-radius: 10px;

    outline: none;

    color: var(--text);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.contributor-auth .form-group input::placeholder {
    color: var(--dim);
}


.contributor-auth .form-group input:focus {
    border-color: rgba(217,255,85,0.5);

    box-shadow:
        0 0 0 3px rgba(217,255,85,0.06);
}


/* ---------------------------------------------------------
   SIGN IN BUTTON
   --------------------------------------------------------- */

.contributor-auth .auth-submit {
    width: 100%;

    margin-top: 5px;
}


/* ---------------------------------------------------------
   SIGN UP DIVIDER
   --------------------------------------------------------- */

.contributor-auth .auth-divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 30px 0 20px;
}


.contributor-auth .auth-divider span {
    flex: 1;

    height: 1px;

    background: var(--line);
}


.contributor-auth .auth-divider p {
    color: var(--dim);

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: 1px;
}


.contributor-auth .auth-secondary {
    width: 100%;

    text-decoration: none;

    text-align: center;
}


.contributor-auth .auth-footer-text {
    margin-top: 22px;

    color: var(--dim);

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}


/* ---------------------------------------------------------
   RIGHT SIDE
   --------------------------------------------------------- */

.contributor-auth .auth-side {
    padding: 20px 0;
}


.contributor-auth .auth-side h2 {
    max-width: 380px;

    margin-top: 25px;

    font-size: 45px;

    line-height: 1;

    letter-spacing: -2.5px;
}


.contributor-auth .auth-line {
    width: 100%;
    height: 1px;

    margin: 45px 0 10px;

    background: var(--line);
}


.contributor-auth .auth-side-item {
    display: flex;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}


.contributor-auth .auth-side-item span {
    color: var(--accent);

    font-family: "DM Mono", monospace;

    font-size: 9px;
}


.contributor-auth .auth-side-item p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 850px) {

    .contributor-auth .auth-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 50px;
    }

    .contributor-auth .auth-side {
        display: none;
    }

}


@media (max-width: 600px) {

    .contributor-auth .auth-container {
        width: calc(100% - 28px);
    }

    .contributor-auth .auth-card {
        padding: 30px 22px;
    }

    .contributor-auth .auth-label {
        display: none;
    }

}