/* ================================================================
   condon_online shared theme — used by login, landing, and any
   future pages added behind the login gate.
   ================================================================ */

:root {
    --blue:        #1a73e8;
    --blue-d:      #1557b0;
    --blue-bg:     #e8f0fe;
    --red:         #d93025;
    --green:       #188038;
    --bg:          #f8f9fa;
    --surface:     #ffffff;
    --border:      #dadce0;
    --text:        #202124;
    --text2:       #5f6368;
    --text3:       #80868b;
    --shadow-1:    0 1px 2px rgba(60,64,67,0.3), 0 2px 6px rgba(60,64,67,0.15);
    --shadow-2:    0 1px 2px rgba(60,64,67,0.3), 0 4px 12px rgba(60,64,67,0.18);
    --font-body:   system-ui, -apple-system, Roboto, Arial, sans-serif;
    --font-head:   system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-size: 14px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Top nav (shared header) ────────────────────────────────────── */
.le-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-1);
    gap: 16px;
}
.le-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--text);
}
.le-nav-brand svg { width: 28px; height: 28px; display: block; }
.le-nav-logo      { width: 28px; height: 28px; display: block; }
.le-login-logo    { width: 48px; height: 48px; display: block; }
.le-nav-page {
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--text2);
    padding-left: 16px;
    margin-left: 4px;
    border-left: 1px solid var(--border);
}
.le-nav-spacer { flex: 1; }
.le-nav-link {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--blue);
    padding: 8px 12px;
    border-radius: 4px;
}
.le-nav-link:hover { background: var(--blue-bg); text-decoration: none; }
.le-nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text2);
    font-size: 13px;
}
.le-nav-user-name { color: var(--text); font-weight: 500; }

/* ── Page container ─────────────────────────────────────────────── */
.le-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* ── Cards / forms ──────────────────────────────────────────────── */
.le-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 36px;
    max-width: 480px;
    margin: 0 auto;
}
.le-form-row { margin-bottom: 18px; }
.le-form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.le-form-row input[type=text],
.le-form-row input[type=email],
.le-form-row input[type=password] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.le-form-row input:hover { border-color: var(--text2); }
.le-form-row input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(26,115,232,0.15);
}
.le-btn {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    letter-spacing: 0.25px;
}
.le-btn:hover { background: var(--blue-d); box-shadow: var(--shadow-1); }

.le-alert-err {
    background: #fce8e6;
    color: #c5221f;
    border: 1px solid #f5c6c4;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 13px;
}
.le-alert-ok {
    background: #e6f4ea;
    color: #137333;
    border: 1px solid #a8d5b5;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 13px;
}

/* ── Coming-Soon landing — lightweight ───────────────────────────
   Static gradient backdrop, gradient-fill title, three pulsing
   dots. No blur, no continuous background animation — fast on
   any device.
   ─────────────────────────────────────────────────────────────── */
.cs-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(900px 500px at 20% 25%, #1557b0 0%, transparent 60%),
        radial-gradient(800px 500px at 80% 75%, #6c4ee3 0%, transparent 55%),
        #0b1f4d;
}

.cs-eyebrow {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 28px;
}

.cs-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(48px, 10vw, 128px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #ffffff 0%, #b8d4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cs-sub {
    margin-top: 22px;
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    line-height: 1.55;
}

.cs-dots {
    display: inline-flex;
    gap: 10px;
    margin-top: 36px;
}
.cs-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    animation: cs-pulse 1.6s ease-in-out infinite;
}
.cs-dots span:nth-child(2) { animation-delay: 0.2s; }
.cs-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cs-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.45; }
    50%      { transform: scale(1.2); opacity: 1; }
}

.cs-foot {
    margin-top: 48px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}
.cs-foot a { color: rgba(255,255,255,0.75); }
.cs-foot a:hover { color: #fff; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
    .cs-dots span { animation: none; }
}
