/* Agora Digital — dedicated package builder page */

.create-page-main {
    position: relative;
    overflow: hidden;
}

.create-page-main::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    left: -260px;
    top: -280px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 15%, transparent), transparent 68%);
    pointer-events: none;
}

.create-page .contact {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    border-top: 0;
}

.create-page .contact-layout {
    position: relative;
}

.create-page .contact-copy {
    top: 32px;
}

.create-page .project-form {
    box-shadow: 0 30px 80px color-mix(in srgb, var(--accent) 8%, transparent);
}

.create-page .site-footer {
    margin-top: 12px;
}

@media (max-width: 980px) {
    .create-page .contact {
        padding-top: 58px;
    }
}

/* Founder contact */
.founder-contact {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 430px;
}

.founder-contact p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.founder-contact p strong {
    color: var(--text);
    font-weight: 700;
}

.founder-contact-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.founder-contact-links a {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.founder-contact-links a:hover {
    color: var(--accent-deep);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* =========================================================
   CREATE YOUR AGORA — RESPONSIVE PASS
   ========================================================= */

@media (max-width: 980px) {
    .create-page .contact-layout {
        gap: 44px;
    }

    .create-page .contact-copy {
        width: 100%;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 720px) {
    .create-page .contact {
        padding-top: 34px;
    }

    .create-page .contact-copy {
        top: auto;
        text-align: center;
    }

    .create-page .contact-copy .eyebrow {
        justify-content: center;
    }

    .create-page .contact-copy > p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .create-page .founder-contact {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .create-page .founder-contact-links {
        justify-content: center;
    }

    .create-page .project-form {
        width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 420px) {
    .create-page .contact {
        padding-top: 28px;
    }

    .founder-contact {
        margin-top: 22px;
        padding-top: 18px;
    }
}

/* =========================================================
   CREATE YOUR AGORA — CUSTOM SELECT
   Removes the native glossy macOS/Safari select appearance.
   ========================================================= */

.create-page .project-form select {
    -webkit-appearance: none;
    appearance: none;

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

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

    padding: 0 46px 0 15px;

    background-image:
            linear-gradient(45deg, transparent 50%, var(--text) 50%),
            linear-gradient(135deg, var(--text) 50%, transparent 50%);

    background-position:
            calc(100% - 21px) 50%,
            calc(100% - 15px) 50%;

    background-size:
            6px 6px,
            6px 6px;

    background-repeat: no-repeat;

    box-shadow: none;
    cursor: pointer;
}

.create-page .project-form select:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.create-page .project-form select:focus {
    border-color: var(--accent);
    box-shadow:
            0 0 0 3px
            color-mix(in srgb, var(--accent) 15%, transparent);
}

.create-page .project-form select option {
    background: var(--bg);
    color: var(--text);
}

