/* Training enrollment — Coming Soon (standalone page) */
:root {
    --cs-black: #0a0a0a;
    --cs-red: #c41e3a;
    --cs-red-deep: #7a1328;
    --cs-gold: #eab308;
    --cs-gold-soft: #fbbf24;
    --cs-muted: rgba(255, 255, 255, 0.72);
}

body.cs-enroll-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cs-black);
    font-family: 'Outfit', system-ui, sans-serif;
    color: #f8fafc;
}

.cs-enroll-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(48px, 10vw, 96px) 24px 80px;
    overflow: hidden;
}

/* Layered background */
.cs-enroll-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(196, 30, 58, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(234, 179, 8, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #0f0f0f 0%, #0a0a0a 45%, #111 100%);
    pointer-events: none;
}

.cs-enroll-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.9;
}

.cs-enroll-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cs-red) 25%, var(--cs-gold) 50%, var(--cs-red) 75%, transparent);
    z-index: 1;
}

.cs-enroll-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.cs-enroll-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 179, 8, 0.35);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(234, 179, 8, 0.08) 100%);
    margin-bottom: 28px;
}

.cs-enroll-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cs-gold);
    box-shadow: 0 0 14px rgba(234, 179, 8, 0.65);
    animation: csPulse 2.4s ease-in-out infinite;
}

@keyframes csPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.92); }
}

.cs-enroll-title {
    margin: 0 0 20px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.75rem, 8vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cs-enroll-title .line1 {
    display: block;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.cs-enroll-title .line2 {
    display: block;
    margin-top: 0.06em;
    background: linear-gradient(105deg, var(--cs-gold-soft) 0%, #fde68a 35%, var(--cs-red) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: csShimmer 8s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes csShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.cs-enroll-lead {
    margin: 0 auto 28px;
    max-width: 34em;
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--cs-muted);
}

.cs-enroll-features {
    list-style: none;
    margin: 0 auto 36px;
    padding: 0;
    max-width: 380px;
    text-align: left;
}

.cs-enroll-features li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-enroll-features li:last-child {
    border-bottom: none;
}

.cs-enroll-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--cs-red), var(--cs-gold));
    opacity: 0.9;
}

.cs-enroll-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cs-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cs-red) 0%, var(--cs-red-deep) 100%);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.45);
    border: none;
}

.cs-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.5);
    color: #fff !important;
}

.cs-btn--ghost {
    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cs-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff !important;
    transform: translateY(-1px);
}

.cs-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cs-enroll-note {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
}

.cs-enroll-note a {
    color: var(--cs-gold-soft);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(251, 191, 36, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cs-enroll-note a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* Footer sits on dark — match page */
body.cs-enroll-page .site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.cs-enroll-page .site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 480px) {
    .cs-enroll-actions {
        flex-direction: column;
        width: 100%;
    }

    .cs-btn {
        width: 100%;
    }
}
