.contact-page {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 82px;
}

.contact-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.11), transparent 30rem),
        radial-gradient(circle at bottom right, rgba(245, 182, 66, 0.08), transparent 28rem),
        rgba(15, 23, 42, 0.78);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    padding: clamp(24px, 4vw, 38px);
}

.contact-hero {
    margin-bottom: 26px;
}

.contact-kicker {
    margin: 0;
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.contact-hero h1 {
    margin: 8px 0 0;
    color: #f8fafc;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.contact-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #cbd5e1;
    line-height: 1.65;
}

.contact-alert {
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 13px 15px;
    font-weight: 800;
}

.contact-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
    font-size: 0.9rem;
}

.contact-alert.success {
    border: 1px solid rgba(16, 185, 129, 0.45);
    background: rgba(16, 185, 129, 0.11);
    color: #bbf7d0;
}

.contact-alert.danger {
    border: 1px solid rgba(248, 113, 113, 0.45);
    background: rgba(248, 113, 113, 0.11);
    color: #fecaca;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-honeypot {
    display: none;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field label {
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 15px;
    background: rgba(2, 6, 23, 0.88);
    color: #f8fafc;
    padding: 0 14px;
    font-weight: 800;
    outline: none;
}

.contact-field input {
    min-height: 48px;
}

.contact-field textarea {
    min-height: 180px;
    padding-top: 13px;
    resize: vertical;
    line-height: 1.55;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(103, 232, 249, 0.85);
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.1);
}

.contact-turnstile-box {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.42);
    padding: 16px;
}

.contact-turnstile-status {
    margin: 12px 0 0;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-submit {
    padding-top: 4px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(103, 232, 249, 0.42);
    border-radius: 999px;
    background: #67e8f9;
    color: #020617;
    padding: 0 22px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 140ms ease,
        background 140ms ease,
        border-color 140ms ease,
        color 140ms ease,
        opacity 140ms ease;
}

.contact-button:hover {
    transform: translateY(-1px);
    background: #22d3ee;
}

.contact-button.is-disabled,
.contact-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

@media (max-width: 620px) {
    .contact-page {
        width: min(100% - 24px, 820px);
        padding-top: 30px;
    }

    .contact-card {
        border-radius: 22px;
    }

    .contact-button {
        width: 100%;
    }
}