:root {
    --primary-color: #5e8dff;
    --primary-dark: #0b234b;
    --primary-light: #47c3ff;
    --secondary-color: #7eb5ff;
    --accent-color: #8ed9ff;
    --accent-dark: #4bbcff;
    --success-color: #3fc1a4;
    --success-dark: #2d8e7b;
    --warning-color: #ffc857;
    --info-color: #71b1ff;
    --dark-color: #f5f8ff;
    --light-color: #0b1426;
    --gray-50: #f6f8ff;
    --gray-100: #dde6f5;
    --gray-200: #c4d3ee;
    --gray-300: #8ca1c4;
    --gray-400: #7c8cad;
    --gray-500: #66738f;
    --gray-600: #4d5a76;
    --gray-700: #dfe7f7;
    --gray-800: #12203a;
    --gray-900: #08101f;
    --surface-0: #050b16;
    --surface-1: rgba(8, 17, 34, 0.94);
    --surface-2: rgba(6, 12, 24, 0.98);
    --surface-3: rgba(10, 20, 39, 0.92);
    --surface-border: rgba(124, 164, 255, 0.18);
    --surface-border-soft: rgba(124, 164, 255, 0.1);
    --frame-blue: rgba(114, 169, 255, 0.62);
    --frame-cyan: rgba(92, 210, 255, 0.6);
    --frame-blue-strong: rgba(114, 169, 255, 0.82);
    --frame-cyan-strong: rgba(92, 210, 255, 0.84);
    --text-primary: #f5f8ff;
    --text-secondary: rgba(223, 231, 247, 0.76);
    --text-muted: rgba(196, 211, 238, 0.62);
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(124, 164, 255, 0.04) inset;
    --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(124, 164, 255, 0.06) inset;
    --border-radius: 24px;
    --border-radius-sm: 18px;
    --border-radius-lg: 34px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 18% 16%, rgba(75, 121, 255, 0.24), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(66, 177, 255, 0.14), transparent 22%),
        radial-gradient(circle at 50% 78%, rgba(104, 94, 255, 0.1), transparent 28%),
        linear-gradient(180deg, #050b16 0%, #0a1328 42%, #040914 100%);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    color-scheme: dark;
}
.navbar {
    background: rgba(5, 11, 22, 0.78);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(124, 164, 255, 0.12);
    position: sticky; top: 0; z-index: 1000;
}
.app-topbar {
    background: rgba(5, 11, 22, 0.78);
    border-bottom: 1px solid rgba(124, 164, 255, 0.12);
}
.navbar-inner {
    max-width: 1180px; margin: 0 auto; padding: 0.9rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 1.1rem; color: var(--text-primary); text-decoration: none;
    letter-spacing: 0.01em;
}
.navbar-brand:hover { color: var(--accent-color); }
.navbar-toggle {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; }
.navbar-links { display: flex; gap: 0.75rem; align-items: center; }
.nav-link { font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; padding: 0; }
.nav-link:hover { color: var(--accent-color); }
.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(124, 164, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(124, 164, 255, 0.08) inset;
}
.nav-pill:hover {
    color: var(--text-primary);
    border-color: rgba(124, 164, 255, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(124, 164, 255, 0.1) inset;
    transform: translateY(-1px);
}
.nav-pill.is-active {
    background: rgba(104, 163, 255, 0.12);
    border-color: rgba(124, 164, 255, 0.3);
    color: var(--text-primary);
}
.nav-pill.nav-pill-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: rgba(124, 164, 255, 0.34);
    color: #07101d;
}
.nav-pill.nav-pill-secondary:hover {
    color: #07101d;
    background: linear-gradient(135deg, #6a98ff, #57ccff);
    border-color: rgba(124, 164, 255, 0.4);
}
.nav-pill.is-disabled {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(124, 164, 255, 0.08);
    color: rgba(196, 211, 238, 0.4);
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .navbar-toggle { display: flex; }
    .navbar-links { display: none; flex-direction: column; width: 100%; padding-top: 1rem; align-items: stretch; }
    .navbar-links.is-open { display: flex; }
    .navbar-inner { flex-wrap: wrap; }
    .nav-pill { width: 100%; }
}
.container { max-width: 1180px; margin: 2rem auto; padding: 0 1.5rem; }
.app-shell {
    position: relative;
    isolation: isolate;
    padding-top: 2rem;
    padding-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(180deg, rgba(8, 17, 34, 0.44), rgba(6, 12, 24, 0.5));
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.34);
}
.app-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) top/100% 1.9px no-repeat,
        linear-gradient(180deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) right/1.9px 100% no-repeat,
        linear-gradient(270deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) bottom/100% 1.9px no-repeat,
        linear-gradient(0deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) left/1.9px 100% no-repeat,
        radial-gradient(circle at top left, rgba(126,175,255,0.38), transparent 24%),
        radial-gradient(circle at bottom right, rgba(92,210,255,0.32), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.98;
}
.card {
    position: relative;
    border: 1.5px solid rgba(124, 164, 255, 0.18);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, rgba(8, 17, 34, 0.94), rgba(6, 12, 24, 0.98));
    backdrop-filter: blur(20px);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    color: var(--text-primary);
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) top/100% 1.9px no-repeat,
        linear-gradient(180deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) right/1.9px 100% no-repeat,
        linear-gradient(270deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) bottom/100% 1.9px no-repeat,
        linear-gradient(0deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) left/1.9px 100% no-repeat,
        radial-gradient(circle at top left, rgba(126,175,255,0.28), transparent 24%),
        radial-gradient(circle at bottom right, rgba(92,210,255,0.24), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.98;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: rgba(124, 164, 255, 0.24); }
.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #07101d; padding: 1.25rem 1.5rem; font-weight: 600;
    border-bottom: 1px solid rgba(124, 164, 255, 0.12);
}
.card-body { padding: 1.5rem; }
.task-generation-card .card-body {
    padding-bottom: 1rem;
}
.task-generation-status:empty {
    display: none;
}
.business-tasks-summary {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    padding-bottom: 0.75rem;
}
.business-tasks-action {
    border-width: 1px;
}
.business-task-item {
    border-radius: var(--border-radius-sm);
}
.business-task-checkbox {
    width: 1.1rem;
    height: 1.1rem;
}
.empty-business-tasks {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(124, 164, 255, 0.24);
    border-radius: var(--border-radius-sm);
}
.btn {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm); font-weight: 600; font-size: 0.875rem;
    padding: 0.625rem 1.25rem; border: 1.5px solid rgba(124, 164, 255, 0.22); cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(124, 164, 255, 0.08) inset;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) top/100% 1.9px no-repeat,
        linear-gradient(180deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) right/1.9px 100% no-repeat,
        linear-gradient(270deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) bottom/100% 1.9px no-repeat,
        linear-gradient(0deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.62) 16%, rgba(92,210,255,0.60) 84%, rgba(92,210,255,0) 100%) left/1.9px 100% no-repeat,
        radial-gradient(circle at top left, rgba(126,175,255,0.28), transparent 24%),
        radial-gradient(circle at bottom right, rgba(92,210,255,0.24), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.98;
}
.btn > * { position: relative; z-index: 1; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: #07101d;
    border-color: rgba(124, 164, 255, 0.34);
    box-shadow: 0 20px 54px rgba(63, 126, 255, 0.3), 0 0 0 1px rgba(124, 164, 255, 0.1) inset;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #6a98ff, #57ccff);
    transform: translateY(-1px); box-shadow: 0 24px 58px rgba(63, 126, 255, 0.34), 0 0 0 1px rgba(124, 164, 255, 0.12) inset;
}
.btn-secondary { background: linear-gradient(135deg, #586684, #3f4c67); color: var(--text-primary); }
.btn-success { background: linear-gradient(135deg, var(--success-color), var(--success-dark)); color: #07101d; }
.btn-outline-light,
.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border-color: rgba(124, 164, 255, 0.22);
}
.btn-outline-light:hover,
.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}
.flash-container { max-width: 1200px; margin: 1rem auto; padding: 0 1.5rem; }
.flash {
    padding: 0.75rem 1rem; border-radius: var(--border-radius-sm); margin-bottom: 0.5rem;
    display: flex; justify-content: space-between; align-items: center; animation: fadeIn 0.3s ease;
}
.flash-success { background: rgba(63, 193, 164, 0.18); color: #abffe4; }
.flash-error   { background: rgba(255, 109, 109, 0.18); color: #ffd3d3; }
.flash-warning { background: rgba(255, 200, 87, 0.18); color: #ffe9a8; }
.flash-info    { background: rgba(94, 141, 255, 0.18); color: #d8e5ff; }
.flash-close   { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: inherit; }
.form-control {
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(124, 164, 255, 0.18);
    padding: 0.75rem 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    background: rgba(7, 16, 31, 0.92);
    color: var(--text-primary);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(124, 164, 255, 0.06) inset;
}
.form-control,
.form-select,
textarea.form-control,
input.form-control {
    background-color: rgba(7, 16, 31, 0.92);
    color: var(--text-primary);
    caret-color: var(--text-primary);
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus,
input.form-control:focus {
    border-color: rgba(124, 164, 255, 0.34);
    box-shadow: 0 0 0 3px rgba(94, 141, 255, 0.16), 0 16px 38px rgba(0, 0, 0, 0.22);
    outline: none;
    transform: translateY(-1px);
    background-color: rgba(9, 21, 43, 0.96);
    color: var(--text-primary);
}
.form-control:disabled,
.form-select:disabled {
    background-color: rgba(9, 19, 39, 0.7);
    color: var(--text-secondary);
}
.form-control::placeholder { color: rgba(196, 211, 238, 0.42); }
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-select:-webkit-autofill,
.form-select:-webkit-autofill:hover,
.form-select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary);
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0 1000px rgba(9, 21, 43, 0.96) inset;
}
.form-label,
.form-check-label { color: var(--text-primary); }
.input-group-text {
    background: rgba(9, 19, 39, 0.92);
    color: var(--text-muted);
    border: 1.5px solid rgba(124, 164, 255, 0.18);
    border-right: 0;
}
.input-group > .form-control {
    border-left: 0;
}
.input-group > .input-group-text,
.input-group > .form-control {
    min-height: 52px;
}
.htmx-indicator { display: none; position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999; }
.htmx-request .htmx-indicator, .htmx-indicator.htmx-request { display: block; }
.spinner {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Custom gradient backgrounds */
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important; }
.bg-gradient-success { background: linear-gradient(135deg, var(--success-color), var(--success-dark)) !important; }
.bg-gradient-accent  { background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important; }
.bg-gradient-info    { background: linear-gradient(135deg, var(--info-color), var(--primary-light)) !important; }

/* Hero section (index.html) */
.hero-section {
    position: relative;
    padding: 4rem 0; text-align: center;
    background: radial-gradient(circle at 26% 18%, rgba(88, 132, 255, 0.16), transparent 26%), radial-gradient(circle at 72% 28%, rgba(71, 186, 255, 0.1), transparent 20%), linear-gradient(135deg, rgba(10, 20, 46, 0.96), rgba(7, 14, 29, 0.98));
    border-radius: var(--border-radius-lg); margin-bottom: 2rem;
    border: 1.5px solid rgba(124, 164, 255, 0.18);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) top/100% 1.9px no-repeat,
        linear-gradient(180deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) right/1.9px 100% no-repeat,
        linear-gradient(270deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) bottom/100% 1.9px no-repeat,
        linear-gradient(0deg, rgba(114,169,255,0) 0%, rgba(114,169,255,0.72) 16%, rgba(92,210,255,0.72) 84%, rgba(92,210,255,0) 100%) left/1.9px 100% no-repeat,
        radial-gradient(circle at top left, rgba(126,175,255,0.38), transparent 24%),
        radial-gradient(circle at bottom right, rgba(92,210,255,0.32), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.98;
}
.hero-title   { font-size: 3.375rem; font-weight: 800; line-height: 1.06; letter-spacing: -0.032em; color: #fff; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.15rem; color: rgba(223, 231, 247, 0.85); max-width: 600px; margin: 0 auto 2rem; }

/* Utility classes */
.synthee-margins { padding: 0.5rem 0; }
.feature-icon    { width: 60px; height: 60px; border-radius: 50%; display: inline-flex;
                   align-items: center; justify-content: center; font-size: 1.5rem;
                   background: linear-gradient(135deg, rgba(97, 144, 255, 0.22), rgba(69, 177, 255, 0.12)); color: #9dc8ff; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1) !important; }
.cost-highlight { background: rgba(255, 255, 255, 0.02); border-left: 4px solid var(--primary-color); padding: 1rem 1.25rem;
                  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0; }

.text-primary { color: #8fc1ff !important; }
.text-muted,
.small.text-muted,
p.text-muted,
.card-text.text-muted,
.opacity-75 { color: var(--text-secondary) !important; }
.text-white { color: var(--text-primary) !important; }
.bg-light,
.card.bg-light,
.card-footer {
    background: linear-gradient(180deg, rgba(10, 20, 39, 0.92), rgba(7, 14, 29, 0.98)) !important;
    color: var(--text-primary);
}
.alert {
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(124, 164, 255, 0.16);
    background: linear-gradient(180deg, rgba(9, 21, 43, 0.94), rgba(7, 15, 30, 0.98));
    color: var(--text-primary);
    box-shadow: var(--shadow);
}
.alert-info { color: var(--text-primary); }
.progress {
    background: rgba(7, 16, 31, 0.24);
    border-radius: 999px;
    border: 1px solid rgba(7, 16, 31, 0.1);
    overflow: hidden;
}
.progress-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}
.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 164, 255, 0.28);
    background: linear-gradient(180deg, rgba(16, 31, 60, 0.98), rgba(9, 18, 36, 0.96));
    color: #dce8ff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.tool-activity-panel {
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(124, 164, 255, 0.18);
    background: linear-gradient(180deg, rgba(9, 21, 43, 0.94), rgba(7, 15, 30, 0.98));
    padding: 0.85rem 1rem;
}
.tool-activity-log {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.tool-activity-entry {
    color: var(--text-secondary);
}
.tool-activity-entry.is-warning {
    color: #ffe9a8;
}
.tool-activity-entry.is-error {
    color: #ffd3d3;
}
.chat-bubble-user {
    background: linear-gradient(135deg, rgba(67, 113, 255, 0.95), rgba(42, 156, 255, 0.86));
    color: #f7fbff;
}
.chat-bubble-assistant {
    background: linear-gradient(180deg, rgba(10, 20, 39, 0.92), rgba(7, 14, 29, 0.98));
    color: var(--text-primary);
    border: 1px solid rgba(124, 164, 255, 0.16);
}
.chat-bubble-assistant a,
.chat-bubble-user a {
    color: inherit;
    text-decoration: underline;
}
.attachment-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 164, 255, 0.24);
    background: rgba(11, 24, 48, 0.92);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .app-shell {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
        border-radius: 24px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .card-body,
    .card-header {
        padding: 1.25rem;
    }
}

/* Animations */
.fade-in       { animation: fadeIn 0.6s ease-out; }
.slide-in-left { animation: slideInLeft 0.6s ease-out; }
.bounce-in     { animation: bounceIn 0.6s ease-out; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounceIn {
    0%   { opacity: 0; transform: scale(0.9); }
    60%  { transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
