:root {
    --pink-50: #fff5f9;
    --pink-100: #ffe8f1;
    --pink-200: #ffd1e3;
    --pink-300: #f4a8c8;
    --pink-400: #e87aab;
    --pink-500: #d45d94;
    --gold-100: #fff8e6;
    --gold-200: #f5d98a;
    --gold-300: #d4af37;
    --gold-400: #b8922e;
    --text-primary: #4a2c3d;
    --text-muted: #8b6b7a;
    --card-bg: rgba(255, 255, 255, 0.82);
    --shadow-soft: 0 20px 60px rgba(212, 93, 148, 0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.18);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 15% 10%, rgba(244, 168, 200, 0.35), transparent 42%),
        radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.18), transparent 38%),
        linear-gradient(160deg, var(--pink-50) 0%, #fff 45%, var(--gold-100) 100%);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow--left {
    width: 320px;
    height: 320px;
    top: 120px;
    right: -80px;
    background: rgba(244, 168, 200, 0.35);
}

.bg-glow--right {
    width: 280px;
    height: 280px;
    bottom: 80px;
    left: -60px;
    background: rgba(212, 175, 55, 0.22);
}

.container {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    padding: 0;
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--pink-500);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(244, 168, 200, 0.45);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink-300), var(--gold-300));
    color: #fff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 1.5rem 0 3rem;
}

.site-main--dashboard {
    align-items: center;
}

.site-main--page {
    align-items: stretch;
    width: 100%;
}

.site-main--page > section,
.site-main--page > .container {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    box-shadow: 0 10px 28px rgba(212, 93, 148, 0.28);
}

.btn-secondary {
    color: var(--pink-500);
    background: #fff;
    border: 1px solid rgba(244, 168, 200, 0.55);
}

.btn-ghost {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(244, 168, 200, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.login-hint {
    width: 100%;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.chip--active {
    background: linear-gradient(135deg, var(--pink-100), var(--gold-100));
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--pink-500);
}

.dashboard {
    width: 100%;
}

.hero-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink-100), var(--gold-100));
    color: var(--pink-500);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.hero-title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.35;
}

.text-gold {
    background: linear-gradient(120deg, var(--gold-400), var(--gold-300), var(--gold-200));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin: 0 auto 2rem;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 400;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 232, 241, 0.9), rgba(255, 248, 230, 0.95));
    border: 1px solid rgba(244, 168, 200, 0.35);
}

.coming-soon-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.coming-soon-body h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pink-500);
}

.coming-soon-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 28rem;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.chip {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(244, 168, 200, 0.4);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(212, 93, 148, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 93, 148, 0.14);
}

.site-footer {
    padding: 1.5rem 0 2rem;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .hero-card {
        padding: 3rem 3rem;
    }

    .coming-soon {
        flex-direction: row;
        text-align: right;
        align-items: flex-start;
    }

    .coming-soon-icon {
        flex-shrink: 0;
    }
}
