/* PSM Productions — glass cards, grids, form UI, buttons, brand orb, nav */

/* Minimal base for .btn (replaces daisyUI base that the original relied on) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.glass-nav {
    border: 1px solid rgba(244, 248, 251, 0.13);
    border-radius: 999px;
    background: rgba(5, 7, 10, 0.72);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand-orb {
    background: linear-gradient(135deg, var(--electric-cyan), var(--ultraviolet));
    box-shadow: var(--shadow-cyan);
}

.nav-pill {
    min-height: 2.25rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    transition: all 250ms ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
    color: var(--soft-white);
    background: rgba(244, 248, 251, 0.09);
    outline: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--electric-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--electric-cyan);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.75);
    animation: pulse-dot 1.8s infinite;
}

.section-title {
    max-width: 48rem;
    color: var(--soft-white);
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.glass-card {
    border: 1px solid rgba(244, 248, 251, 0.12);
    background: linear-gradient(145deg, rgba(244, 248, 251, 0.082), rgba(244, 248, 251, 0.026));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
}

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--soft-white);
    font-size: 0.9rem;
    font-weight: 700;
}

.pulse-input {
    border: 1px solid rgba(244, 248, 251, 0.14);
    background: rgba(244, 248, 251, 0.06);
    color: var(--soft-white);
    outline: none;
    padding: 0.7rem 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pulse-input::placeholder {
    color: rgba(167, 180, 193, 0.68);
}

.pulse-input:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.16);
}

/* Tailwind cannot apply the /opacity modifier to arbitrary CSS-variable colors
   (e.g. bg-[var(--electric-cyan)]/10), so those utilities are silently dropped.
   These token-driven helpers cover the tints used across the site. */
.bg-cyan-10 { background-color: color-mix(in srgb, var(--electric-cyan) 10%, transparent); }
.border-cyan-20 { border-color: color-mix(in srgb, var(--electric-cyan) 20%, transparent); }
.bg-carbon-40 { background-color: color-mix(in srgb, var(--carbon-black) 40%, transparent); }
.text-cyan-20 { color: color-mix(in srgb, var(--electric-cyan) 20%, transparent); }

@keyframes pulse-dot {
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}
