@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #050510;
    color: #e0e0e0;
    overflow-x: hidden;
}

.bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 119, 182, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 77, 128, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #050510 0%, #0a0a1a 40%, #0d1025 100%);
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: rgba(0, 180, 216, 0.08); }
.orb-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; background: rgba(0, 119, 182, 0.06); animation-delay: -4s; }
.orb-3 { width: 200px; height: 200px; top: 40%; left: 60%; background: rgba(0, 180, 216, 0.04); animation-delay: -8s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
}

/* Header */
.header { text-align: center; padding: 60px 20px 40px; }
.header .logo { height: 80px; margin-bottom: 24px; filter: drop-shadow(0 4px 20px rgba(0, 180, 216, 0.3)); }
.header .brand { font-size: 2.4rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 8px; }
.brand-futu { background: linear-gradient(135deg, hsl(263,70%,50%), hsl(263,70%,65%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-gen { background: linear-gradient(135deg, hsl(186,100%,50%), hsl(186,100%,70%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.header h1 { font-size: 1.6rem; font-weight: 300; color: rgba(255,255,255,0.9); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.header .line { width: 60px; height: 2px; background: linear-gradient(90deg, hsl(263,70%,50%), hsl(186,100%,50%)); margin: 16px auto; border-radius: 2px; }
.header p { color: rgba(255,255,255,0.35); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em; }

/* User bar */
.user-bar {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.user-bar .username { color: rgba(255,255,255,0.7); }
.user-bar .logout-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}
.user-bar .logout-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; padding-bottom: 40px; }

/* Card */
.card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #00b4d8, #0077b6, transparent); opacity: 0; transition: opacity 0.4s; }
.card::after { content: ''; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(135deg, rgba(0,180,216,0.05) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; }
.card:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,180,216,0.08); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }
.card-content { position: relative; z-index: 1; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,119,182,0.1)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; border: 1px solid rgba(0,180,216,0.15); }
.card h2 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.card .desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.tag-live { background: rgba(46,125,50,0.15); color: #66bb6a; border: 1px solid rgba(46,125,50,0.25); }
.tag-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #66bb6a; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.tag-soon { background: rgba(255,152,0,0.1); color: rgba(255,167,38,0.7); border: 1px solid rgba(255,152,0,0.15); }
.card .arrow { position: absolute; bottom: 32px; right: 32px; font-size: 1.2rem; color: rgba(255,255,255,0.15); transition: all 0.4s; z-index: 1; }
.card:hover .arrow { color: #00b4d8; transform: translateX(6px); }
.card-disabled { opacity: 0.4; pointer-events: none; }
.card-locked { opacity: 0.5; cursor: not-allowed; filter: grayscale(0.5); }
.card-locked:hover { transform: none; box-shadow: none; border-color: rgba(255,255,255,0.06); }
.card-locked:hover::before, .card-locked:hover::after { opacity: 0; }
.tag-locked { background: rgba(255,152,0,0.1); color: rgba(255,167,38,0.7); border: 1px solid rgba(255,152,0,0.15); }
.card-public { cursor: default; }
.card-public:hover { border-color: rgba(255,255,255,0.06); transform: none; box-shadow: none; }
.card-public:hover::before, .card-public:hover::after { opacity: 0; }

/* Activity action badges */
.activity-login { background: rgba(0,180,216,0.12); color: #00b4d8; }
.activity-logout { background: rgba(239,83,80,0.12); color: #ef5350; }
.activity-service_click { background: rgba(102,187,106,0.12); color: #66bb6a; }
.activity-page_view { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.activity-download { background: rgba(171,71,188,0.12); color: #ab47bc; }

/* Footer */
.footer { position: relative; z-index: 1; padding: 40px 20px 30px; text-align: center; color: rgba(255,255,255,0.2); font-size: 0.75rem; letter-spacing: 0.05em; border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto; width: 100%; max-width: 1100px; }
.footer .footer-brand { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.footer .footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 12px; }
.footer .footer-info { color: rgba(255,255,255,0.4); font-size: 0.72rem; line-height: 1.8; }
.footer a { color: rgba(0,180,216,0.5); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: #00b4d8; }

/* Login page */
.login-container { max-width: 420px; margin: 0 auto; padding: 40px 0; }
.login-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 36px;
}
.login-tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.login-tab { flex: 1; padding: 10px; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.4); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; }
.login-tab.active { color: #00b4d8; border-bottom-color: #00b4d8; }
.login-tab:hover { color: rgba(255,255,255,0.7); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.form-group input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus { border-color: #00b4d8; }
.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, hsl(263,70%,50%), hsl(186,100%,50%));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 8px;
}
.btn-primary:hover { opacity: 0.9; }

.btn-google {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-google:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.error-msg { color: #ef5350; font-size: 0.82rem; margin-top: 8px; text-align: center; min-height: 20px; }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ── DASHBOARD ──────────────────────────────────────────────────────────── */

.admin-badge {
    background: linear-gradient(135deg, hsl(263,70%,50%), hsl(186,100%,50%));
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
    color: #fff;
}

.section-title {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 28px 0 16px;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00b4d8, hsl(263,70%,60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Status grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.status-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.status-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.status-card-header h3 { font-size: 1rem; font-weight: 600; color: #fff; }
.status-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-dot.online { background: #66bb6a; box-shadow: 0 0 8px rgba(102,187,106,0.4); animation: pulse 2s ease-in-out infinite; }
.status-dot.offline { background: #ef5350; box-shadow: 0 0 8px rgba(239,83,80,0.3); }
.status-dot.error { background: #ffa726; box-shadow: 0 0 8px rgba(255,167,38,0.3); }
.status-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.response-time { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-variant-numeric: tabular-nums; }

/* System info */
.system-info {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}
.system-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.system-info-item label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.system-info-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

/* Public CTA */
.public-info {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    line-height: 1.7;
}
.public-cta {
    text-align: center;
    padding: 32px 0 40px;
}
.public-cta .btn-primary {
    width: auto;
    padding: 14px 48px;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
}

/* Admin actions */
.admin-actions {
    text-align: center;
    padding: 20px 0 40px;
}
.admin-link {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    transition: color 0.3s;
}
.admin-link:hover { color: #00b4d8; }

/* Stats detail */
.stats-detail { margin-top: 8px; }
.stats-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
}
.stats-detail-row span { color: rgba(255,255,255,0.4); }
.stats-detail-row strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* Alert banner */
.alert-banner {
    position: relative;
    z-index: 2;
    background: rgba(239,83,80,0.12);
    border: 1px solid rgba(239,83,80,0.25);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 16px auto;
    max-width: 1100px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.alert-item {
    color: #ef5350;
    font-size: 0.85rem;
    font-weight: 500;
}
.alert-item::before {
    content: '⚠';
    margin-right: 6px;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    margin: 6px 0;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b4d8, hsl(263,70%,55%));
    border-radius: 3px;
    transition: width 0.4s ease;
}
.progress-warn { background: linear-gradient(90deg, #ffa726, #ff7043); }
.progress-danger { background: linear-gradient(90deg, #ef5350, #c62828); }

/* Infrastructure grid */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

/* Text colors */
.text-accent { color: #00b4d8 !important; }
.text-warn { color: #ffa726 !important; }
.text-hot { color: #ef5350 !important; }

/* Activity feed */
.activity-feed { margin-top: 8px; }
.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.82rem;
}
.activity-status {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-width: 72px;
    text-align: center;
}
.activity-extracted { background: rgba(0,180,216,0.12); color: #00b4d8; }
.activity-corrected { background: rgba(46,125,50,0.12); color: #66bb6a; }
.activity-completed { background: rgba(46,125,50,0.12); color: #66bb6a; }
.activity-pending { background: rgba(255,152,0,0.1); color: #ffa726; }
.activity-failed { background: rgba(239,83,80,0.12); color: #ef5350; }
.activity-conf { color: rgba(255,255,255,0.6); min-width: 36px; }
.activity-model { color: rgba(255,255,255,0.25); font-size: 0.75rem; flex: 1; }
.activity-time { color: rgba(255,255,255,0.2); font-size: 0.75rem; font-variant-numeric: tabular-nums; }
.activity-id { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* Users table */
.users-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
}
.users-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    font-size: 0.85rem;
}
.users-table th {
    text-align: left;
    padding: 12px 16px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.users-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.8);
}
.users-table td.muted { color: rgba(255,255,255,0.35); }
.users-table tr:last-child td { border-bottom: none; }
.role-select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: rgba(255,255,255,0.8);
    padding: 4px 8px;
    font-size: 0.82rem;
    cursor: pointer;
}
.role-select:focus { border-color: #00b4d8; outline: none; }
.role-select option { background: #1a1a2e; color: #e0e0e0; }
.btn-save-role {
    background: linear-gradient(135deg, hsl(263,70%,50%), hsl(186,100%,50%));
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.btn-save-role:hover { opacity: 0.85; }

/* ── SETUP WIZARD ───────────────────────────────────────────────────────── */

.wizard-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 0 40px;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.wizard-step-indicator {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    transition: all 0.3s;
    flex-shrink: 0;
}
.wizard-step-indicator.active {
    background: linear-gradient(135deg, hsl(263,70%,50%), hsl(186,100%,50%));
    border-color: transparent;
    color: #fff;
}
.wizard-step-indicator.done {
    background: rgba(46,125,50,0.15);
    border-color: rgba(46,125,50,0.3);
    color: #66bb6a;
}
.wizard-step-line {
    flex: 1;
    max-width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.06);
}

.wizard-panel {
    display: none;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    min-height: 280px;
}
.wizard-panel.active { display: block; }
.wizard-panel h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.wizard-panel p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wizard-list {
    list-style: none;
    padding: 0;
}
.wizard-list li {
    padding: 8px 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}
.wizard-list li::before {
    content: '→';
    color: #00b4d8;
    margin-right: 10px;
}

.wizard-info {
    background: rgba(0,180,216,0.06);
    border: 1px solid rgba(0,180,216,0.12);
    border-radius: 12px;
    padding: 16px 20px;
}
.wizard-info p { color: rgba(255,255,255,0.5); margin: 0; }

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.btn-secondary {
    padding: 12px 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Toggle switch */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.toggle-info strong {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.toggle-info span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: background 0.3s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, hsl(263,70%,50%), hsl(186,100%,50%));
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

/* Wizard summary */
.wizard-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px;
}
.summary-grid { display: flex; flex-direction: column; gap: 16px; }
.summary-section h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.summary-section p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 2px 0;
}
.summary-muted { color: rgba(255,255,255,0.3) !important; }
