/* =========================================================
   GUSII FEST 2026
   Coming Soon Landing Page
========================================================= */

:root {
    --primary: #d99a20;
    --primary-dark: #b77d0e;

    --black: #0b0b0b;
    --dark: #111111;
    --dark-2: #181818;

    --white: #ffffff;
    --muted: #a5a5a5;

    --border: rgba(255, 255, 255, 0.12);

    --success: #38c172;
    --error: #ef4444;
}


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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: var(--black);
    color: var(--white);

    min-height: 100vh;
}


/* =========================================================
   PAGE
========================================================= */

.landing-page {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(217, 154, 32, 0.15),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(217, 154, 32, 0.08),
            transparent 30%
        ),

        var(--black);
}


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

.background-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(255,255,255,0.025) 49%,
            rgba(255,255,255,0.025) 51%,
            transparent 52%
        );

    background-size: 70px 70px;

    pointer-events: none;
}


.background-pattern::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(217, 154, 32, 0.15);

    box-shadow:
        0 0 0 80px rgba(217,154,32,0.02),
        0 0 0 160px rgba(217,154,32,0.015),
        0 0 0 240px rgba(217,154,32,0.01);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    position: relative;
    z-index: 2;

    width: min(1100px, 92%);

    margin: auto;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 40px 0 25px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 13px;
}


.brand-mark {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: -1px;
}


.brand-small {
    display: block;

    font-size: 8px;

    color: var(--muted);

    letter-spacing: 4px;

    margin-bottom: 2px;
}


.brand h1 {
    font-size: 21px;

    letter-spacing: 2px;

    font-weight: 800;
}


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

.hero {
    width: 100%;
    max-width: 680px;

    margin: 60px auto;

    text-align: center;
}


.badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 22px;

    border: 1px solid rgba(217,154,32,0.35);

    background: rgba(217,154,32,0.07);

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 4px rgba(217,154,32,0.12);

    animation: pulse 1.8s infinite;
}


@keyframes pulse {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }

}


.hero h2 {
    font-size: clamp(52px, 9vw, 105px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 900;

    margin-bottom: 25px;
}


.hero h2 strong {
    display: block;

    color: var(--primary);

    font-size: 0.62em;

    letter-spacing: 2px;

    margin-top: 15px;
}


.intro {
    max-width: 570px;

    margin: auto;

    color: #d2d2d2;

    font-size: 17px;

    line-height: 1.7;
}


.notify-text {
    margin-top: 28px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   FORM
========================================================= */

.interest-form {

    width: 100%;

    max-width: 480px;

    margin: 25px auto 0;

    text-align: left;
}


.field-group {
    margin-bottom: 12px;
}


.field-group label {
    display: block;

    margin-bottom: 7px;

    color: #cfcfcf;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.field-group input {
    width: 100%;

    height: 53px;

    padding: 0 17px;

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

    outline: none;

    border-radius: 2px;

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

    color: var(--white);

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.field-group input::placeholder {
    color: #6f6f6f;
}


.field-group input:focus {
    border-color: var(--primary);

    background: rgba(255,255,255,0.08);
}


/* =========================================================
   OR DIVIDER
========================================================= */

.or-divider {
    position: relative;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: -1px 0;
}


.or-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    height: 1px;

    background: var(--border);
}


.or-divider span {
    position: relative;

    padding: 0 12px;

    background: var(--black);

    color: #666;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   BUTTON
========================================================= */

button {
    position: relative;

    width: 100%;

    height: 55px;

    margin-top: 8px;

    border: none;

    border-radius: 2px;

    background: var(--primary);

    color: #111;

    cursor: pointer;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;

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


button:hover {
    background: #e7aa2e;

    transform: translateY(-1px);
}


button:active {
    transform: translateY(0);
}


button:disabled {
    opacity: 0.7;

    cursor: not-allowed;

    transform: none;
}


.button-loader {
    display: none;

    width: 17px;
    height: 17px;

    margin: auto;

    border: 2px solid rgba(0,0,0,0.25);

    border-top-color: #111;

    border-radius: 50%;

    animation: spin 0.7s linear infinite;
}


button.loading .button-text {
    display: none;
}


button.loading .button-loader {
    display: block;
}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note {
    margin-top: 10px;

    text-align: center;

    color: #666;

    font-size: 10px;
}


/* =========================================================
   MESSAGES
========================================================= */

.message {
    display: none;

    align-items: flex-start;

    gap: 12px;

    max-width: 480px;

    margin: 20px auto 0;

    padding: 15px;

    text-align: left;

    border: 1px solid;
}


.message.show {
    display: flex;
}


.message.success {
    border-color: rgba(56,193,114,0.35);

    background: rgba(56,193,114,0.08);
}


.message.error {
    border-color: rgba(239,68,68,0.35);

    background: rgba(239,68,68,0.08);
}


.message-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-weight: 800;
}


.success .message-icon {
    background: rgba(56,193,114,0.15);

    color: var(--success);
}


.error .message-icon {
    background: rgba(239,68,68,0.15);

    color: var(--error);
}


.message strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
}


.message p {
    color: #999;

    font-size: 12px;

    line-height: 1.5;
}


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

footer {
    display: flex;

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

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.07);

    color: #5f5f5f;

    font-size: 10px;
}


.social-links {
    display: flex;

    gap: 18px;
}


.social-links a {
    color: #777;

    text-decoration: none;

    transition: color 0.2s ease;
}


.social-links a:hover {
    color: var(--primary);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 88%;

        padding-top: 25px;
        padding-bottom: 18px;
    }


    .brand-mark {
        width: 40px;
        height: 40px;

        font-size: 13px;
    }


    .brand h1 {
        font-size: 17px;
    }


    .hero {
        margin: 45px auto;
    }


    .hero h2 {
        font-size: clamp(48px, 15vw, 72px);

        letter-spacing: -3px;
    }


    .intro {
        font-size: 15px;

        line-height: 1.6;
    }


    .notify-text {
        font-size: 12px;
    }


    footer {
        flex-direction: column;

        gap: 14px;

        text-align: center;
    }


    .social-links {
        gap: 14px;
    }

}