/* Madar STS Co. — Coming Soon page custom styles (complements Tailwind utilities) */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(59, 111, 224, 0.35);
    box-shadow: 0 12px 32px rgba(59, 111, 224, 0.12);
    transform: translateY(-2px);
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
}

::selection {
    background: rgba(59, 111, 224, 0.2);
}

/* Success / error state helpers for the signup form */
#notify-message.is-success {
    color: #16a34a;
}

#notify-message.is-error {
    color: #dc2626;
}

#notify-email:invalid[data-touched="true"] {
    border-color: rgba(220, 38, 38, 0.6);
}

/* Scrollbar polish */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b6fe0;
}
