:root {
    --bg: #0a0a0a;
    --bg-dark: #050505;
    --bg-light: #121212;
    --card: rgba(20, 20, 20, 0.85);
    --card-hover: rgba(30, 30, 30, 0.95);
    --card-border: rgba(212, 175, 55, 0.25);
    --card-glow: rgba(212, 175, 55, 0.15);
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --text-light: #e2e8f0;
    --primary: #d4af37;
    --primary-light: #e6c158;
    --primary-dark: #b8941f;
    --secondary: #c0a050;
    --secondary-light: #d4b96a;
    --accent: #d4af37;
    --accent-light: #e6c158;
    --danger: #c53030;
    --success: #38a169;
    --warning: #d69e2e;
    --border: rgba(212, 175, 55, 0.2);
    --radius: 24px;
    --radius-sm: 12px;
    --radius-lg: 32px;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    --glow: 0 0 50px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    --gradient-bg: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                   radial-gradient(circle at 100% 100%, rgba(192, 160, 80, 0.08) 0%, transparent 50%),
                   radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-feature-settings: "ss01", "ss02", "cv01", "cv02";
    letter-spacing: -0.01em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        var(--gradient-bg),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
    z-index: -3;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 160, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite alternate;
    z-index: -2;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

#gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.user-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.language-selector select {
    padding: 0.6rem 1rem;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--card-glow);
}

.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    box-shadow: var(--glow);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.mode-content {
    display: none;
}

.mode-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.personal-card, .post-card, .match-card, .sidebar, .progress-section, .dashboard-card {
    background: var(--card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.personal-card::before, .post-card::before, .match-card::before, .sidebar::before, .dashboard-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.personal-card:hover, .post-card:hover, .match-card:hover, .dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), 0 0 60px rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
}

.personal-card:hover::before, .post-card:hover::before, .match-card:hover::before, .dashboard-card:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 1.75rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

select, textarea, input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

select:focus, textarea:focus, input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--card-glow);
    background: rgba(30, 30, 30, 0.8);
}

textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.chat-messages {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(15px);
    margin-bottom: 1.5rem;
}

.message {
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    max-width: 85%;
    line-height: 1.6;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-user {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-left: auto;
    border-left: 4px solid var(--primary);
}

.message-ai {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(192, 160, 80, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 4px solid var(--secondary);
}

.message-system {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--accent);
    font-style: italic;
}

.chat-input-area {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.chat-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--card-glow);
}

.hub-layout {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 2rem;
}

@media (max-width: 1200px) {
    .hub-layout { grid-template-columns: 1fr; }
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.match-card {
    cursor: pointer;
    margin-bottom: 1rem;
}

.match-score {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.match-role {
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.post-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.progress-section {
    margin-top: 2.5rem;
}

.progress-item {
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.progress-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.progress-item.completed {
    border-left-color: var(--success);
    background: rgba(56, 161, 105, 0.1);
}

.anonymous-counter {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(20, 20, 20, 0.9));
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(15px);
}

.anonymous-warning-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.anonymous-progress {
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    margin: 0.75rem 0;
    overflow: hidden;
}

.anonymous-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

.anonymous-count {
    font-weight: 600;
    color: var(--accent-light);
}

.welcome-screen {
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.welcome-icon {
    font-size: 6rem;
    margin-bottom: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.welcome-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.welcome-features {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 40px rgba(212, 175, 55, 0.2);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(30px);
    width: 560px;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 100px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    animation: modalAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    border-bottom: 1px solid var(--border);
    color: var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-close {
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.15);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.checkbox-label {
    flex: 1;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.required-star {
    color: var(--danger);
    font-weight: bold;
    margin-right: 4px;
}

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3000;
}

.toast {
    min-width: 350px;
    background: var(--card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top right;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(100%) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.toast.toast-exit {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
    to { opacity: 0; transform: translateX(100%) scale(0.9); }
}

.toast-icon { font-size: 1.8rem; }
.toast-success .toast-icon { color: var(--success); }
.toast-error   .toast-icon { color: var(--danger); }
.toast-warning .toast-icon { color: var(--warning); }
.toast-info    .toast-icon { color: var(--primary); }

.toast-content {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 0.25rem;
    border-radius: 6px;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.typing-indicator {
    display: none;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.typing-dots {
    display: flex;
    gap: 6px;
}

.typing-dots span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.skeleton {
    background: linear-gradient(90deg, rgba(30,30,30,0.5) 25%, rgba(40,40,40,0.7) 50%, rgba(30,30,30,0.5) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeletonLoading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-text          { height: 1.2rem; margin-bottom: 0.75rem; }
.skeleton-text-medium   { height: 1.5rem; width: 70%; }
.skeleton-text-short    { width: 40%; }
.skeleton-avatar        { width: 52px; height: 52px; border-radius: 50%; }
.skeleton-button        { width: 150px; height: 48px; border-radius: var(--radius-sm); margin: 1rem auto; }

.skeleton-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }
h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-light); }
h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-light); }
p  { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

::-webkit-scrollbar       { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(20,20,20,0.4); border-radius: 6px; }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

@media (max-width: 1024px) {
    .header { flex-direction: column; gap: 1.25rem; padding: 1.25rem; }
    .user-menu { margin-left: 0; width: 100%; justify-content: space-between; }
    .hub-layout { grid-template-columns: 1fr; }
    .welcome-buttons { flex-direction: column; align-items: center; }
    .welcome-features { grid-template-columns: 1fr; }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    .personal-card, .post-card, .sidebar, .dashboard-card { padding: 1.75rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .welcome-icon { font-size: 4.5rem; }
    .message { max-width: 95%; }
    .chat-input-area { flex-direction: column; }
    .toast { min-width: 300px; max-width: 90vw; }
}

.step { display: none; }
.step.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stage-card {
    background: rgba(30,30,30,0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stage-card:hover    { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--glow); }
.stage-card.selected { border-color: var(--primary); background: rgba(212,175,55,0.15); box-shadow: var(--glow); }
.stage-icon          { font-size: 3rem; margin-bottom: 1rem; }
.stage-card h4       { color: var(--primary-light); margin-bottom: 0.75rem; font-size: 1.2rem; }
.stage-card p        { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 1024px) {
    .stage-grid { grid-template-columns: repeat(2, 1fr); }
    .stage-grid .stage-card:nth-child(4),
    .stage-grid .stage-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 640px) {
    .stage-grid { grid-template-columns: 1fr; }
}

.stage-subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }

.promises-list { list-style: none; margin: 1.5rem 0; }
.promises-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}
.promises-list li:before { content: "✓"; color: var(--primary); font-weight: bold; font-size: 1.2rem; }

.dashboard-chat    { margin-top: 2rem; }
.dashboard-actions { display: flex; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
