/* modern.css - Blainks - Created by Cursor on 15.01.2025 */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties - Color Palette inspired by app icon */
:root {
    /* Primary Colors from App Icon */
    --primary-purple: #8A2BE2;
    --purple-dark: #7B2CBF;
    --purple-light: #B19CD9;
    --purple-gradient: linear-gradient(135deg, #8A2BE2 0%, #7B2CBF 100%);

    /* Secondary Colors from App Icon */
    --accent-blue: #ADD8E6;
    --blue-dark: #4169E1;
    --blue-light: #B0E0E6;
    --blue-gradient: linear-gradient(135deg, #ADD8E6 0%, #4169E1 100%);

    /* Accent Colors from App Icon */
    --golden-orange: #FFD700;
    --orange-accent: #FFA500;
    --orange-dark: #FF8C00;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    /* Background Colors */
    --bg-primary: #F5F5DC;
    --bg-secondary: #FFF8DC;
    --bg-tertiary: #F0F8FF;
    --bg-gradient: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 50%, #F0F8FF 100%);

    /* Text Colors */
    --text-primary: #2C1810;
    --text-secondary: #6B5B73;
    --text-light: #8B7D8B;
    --text-white: #FFFFFF;

    /* Glassmorphism */
    --glass-bg: rgba(245, 245, 220, 0.9);
    --glass-border: rgba(139, 43, 226, 0.2);
    --glass-shadow: 0 8px 32px rgba(139, 43, 226, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(139, 43, 226, 0.1);
    --shadow-md: 0 4px 8px rgba(139, 43, 226, 0.15);
    --shadow-lg: 0 8px 16px rgba(139, 43, 226, 0.2);
    --shadow-xl: 0 16px 32px rgba(139, 43, 226, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Footer Colors (shared) */
    --footer-bg: #2C1810;
    --footer-text: #FFFFFF;
    --footer-text-muted: rgba(255, 255, 255, 0.7);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    /* Background Colors - Dark */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);

    /* Text Colors - Dark */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-light: #64748b;

    /* Glassmorphism - Dark */
    --glass-bg: rgba(30, 41, 59, 0.9);
    --glass-border: rgba(139, 43, 226, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Shadows - Dark */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.5);

    /* Footer Colors - Dark */
    --footer-bg: #020617;
    --footer-text: #f1f5f9;
    --footer-text-muted: rgba(241, 245, 249, 0.7);
}

/* Theme transition for smooth switching */
html {
    color-scheme: light dark;
}

html, body, .main-header, .main-footer, .modal-content,
.feature-card, .notification-card, .section, .card,
.form-input, .btn, .hero-badge {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--purple-gradient);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--blue-gradient);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gold-gradient);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--purple-gradient);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--blue-gradient);
    bottom: 10%;
    right: 20%;
    animation-delay: 8s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 8s;
    animation-duration: 24s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 19s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(139, 43, 226, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(245, 245, 220, 0.95);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .main-header.scrolled {
    background: rgba(30, 41, 59, 0.95);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-container {
    width: 48px;
    height: 48px;
    background: rgb(255, 247, 237);
    border: 2px solid rgba(138, 43, 226, 0.7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.logo-container:hover::before {
    left: 100%;
}

.logo-container:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.company-badge {
    background: var(--purple-gradient);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--purple-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gold-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

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

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: var(--space-3xl) var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-md);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease 0.2s both;
}

.notification-demo {
    position: relative;
    height: 400px;
}

.notification-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: float 6s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.notification-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.notification-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
    border-left: 4px solid var(--primary-purple);
}

.notification-2 {
    top: 120px;
    right: 20px;
    animation-delay: 2s;
    border-left: 4px solid var(--accent-blue);
}

.notification-3 {
    bottom: 20px;
    left: 50px;
    animation-delay: 4s;
    border-left: 4px solid var(--golden-orange);
}

.notification-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.notification-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    margin: var(--space-3xl) 0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.feature-card:nth-child(1) .feature-icon { background: var(--purple-gradient); }
.feature-card:nth-child(2) .feature-icon { background: var(--blue-gradient); }
.feature-card:nth-child(3) .feature-icon { background: var(--gold-gradient); }
.feature-card:nth-child(4) .feature-icon { background: var(--purple-gradient); }
.feature-card:nth-child(5) .feature-icon { background: var(--blue-gradient); }
.feature-card:nth-child(6) .feature-icon { background: var(--gold-gradient); }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.beta-tag {
    background: var(--gold-gradient);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-link {
    display: none;
}

.feature-link:hover {
    color: var(--purple-dark);
    transform: translateX(4px);
}

.feature-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal);
}

.feature-link:hover svg {
    transform: translateX(2px);
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    height: 48px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: rgb(255, 247, 237);
    border: 2px solid rgba(138, 43, 226, 0.7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.footer-logo img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
}

.footer-brand-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 48px;
}

.footer-brand-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
    margin-top: 25px;
    color: var(--text-white);
}

.footer-tagline {
    color: var(--footer-text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-white);
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: var(--space-sm);
}

.footer-link-list a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-link-list a:hover {
    color: var(--footer-text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-copyright {
    color: var(--footer-text-muted);
    font-size: 0.875rem;
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    width: 90%;
    animation: fadeInUp 0.3s ease;
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition-normal);
}

.modal-close:hover {
    color: var(--primary-purple);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.login-form {
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: var(--space-md);
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) 3rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(139, 43, 226, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.form-footer {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--space-md);
    }
    
    .hero-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .main-footer {
        padding: var(--space-2xl) var(--space-md) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
    font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
    
    .modal-content {
        width: 95%;
    }
    
    .login-form {
        padding: var(--space-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Coming Soon Page Styles */
.coming-soon-section {
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 10;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: var(--purple-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-icon svg {
    width: 48px;
    height: 48px;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.2;
}

.coming-soon-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-item .feature-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.feature-item .feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.coming-soon-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-description {
        font-size: 1.125rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Pricing Modal Styles */
.pricing-content {
    padding: var(--space-xl);
    text-align: center;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: var(--space-lg);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-feature svg {
    width: 16px;
    height: 16px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.pricing-actions {
    margin-top: var(--space-lg);
}

/* Privacy Policy, Terms of Use, and Contact Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl);
}

.main-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    margin-top: var(--space-lg);
}

.header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--glass-border);
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.logo {
    width: 60px;
    height: 60px;
    background: rgb(255, 247, 237);
    border: 2px solid rgba(138, 43, 226, 0.7);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.effective-date {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.section {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-purple);
}

.section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-lg) 0 var(--space-md) 0;
}

.section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.section ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.section li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.highlight {
    background: var(--gold-gradient);
    color: var(--text-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--golden-orange);
}

.highlight strong {
    font-weight: 700;
}

.contact-info {
    background: var(--purple-gradient);
    color: var(--text-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-white);
    border: none;
    padding: 0;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.contact-info strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Contact Form Styles */
.dark-form-container {
    background: var(--text-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-field .field-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    z-index: 1;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 3rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all var(--transition-normal);
    font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-light);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(139, 43, 226, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--purple-gradient);
    color: var(--text-white);
    border: none;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.message-status {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-weight: 600;
    text-align: center;
}

.message-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.message-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer Styles for Legal Pages */
.footer {
    background: var(--text-primary);
    color: var(--text-white);
    padding: var(--space-2xl) var(--space-xl);
    margin-top: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: rgb(255, 247, 237);
    border: 2px solid rgba(138, 43, 226, 0.7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.footer-logo img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--text-white);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright p {
    margin: var(--space-xs) 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .container {
        padding: var(--space-md);
    }
    
    .main-content {
        padding: var(--space-lg);
    }
    
    .header-title {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--space-lg);
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .dark-form-container {
        padding: var(--space-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.75rem;
    }
    
    .section h2 {
        font-size: 1.25rem;
    }
    
    .section h3 {
        font-size: 1.125rem;
    }
    
    .form-field input,
    .form-field textarea {
        padding: var(--space-md) var(--space-md) var(--space-md) 2.5rem;
    }
}

/* SDK Integration Showcase Styles */
.sdk-showcase {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.showcase-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.showcase-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    font-size: 1.125rem;
    line-height: 1.7;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.integration-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: inherit;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    transition: all var(--transition-bounce);
}

.integration-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.card-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.status-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.ready {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.coming-soon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-badge.planned {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.card-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.integration-card:hover .card-arrow {
    color: var(--primary-purple);
    transform: translateX(4px);
}

.card-arrow svg {
    width: 100%;
    height: 100%;
}

/* Platform-specific card colors */
.ios-card .card-icon {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.android-card .card-icon {
    background: linear-gradient(135deg, #3DDC84 0%, #2E7D32 100%);
}

.macos-card .card-icon {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.flutter-card .card-icon {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
}

.web-card .card-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.react-native-card .card-icon {
    background: linear-gradient(135deg, #61DAFB 0%, #21D4FD 100%);
}

/* Disabled state for non-ready cards */
.integration-card:not(.ios-card):not(.android-card) {
    opacity: 0.7;
    cursor: not-allowed;
}

.integration-card:not(.ios-card):not(.android-card):hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.integration-card:not(.ios-card):not(.android-card) .card-arrow {
    opacity: 0.5;
}

/* Responsive Design for SDK Showcase */
@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .integration-card {
        padding: var(--space-md);
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sdk-showcase {
        padding: var(--space-lg);
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .showcase-description {
        font-size: 1rem;
    }
    
    .integration-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .card-content {
        order: 2;
    }
    
    .card-arrow {
        order: 3;
    }
}

/* Print styles */
@media print {
    .animated-bg,
    .main-header,
    .main-footer,
    .login-modal,
    .theme-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .main-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .section {
        background: white;
        border: 1px solid #eee;
        break-inside: avoid;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: all var(--transition-normal);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* Dark mode specific shape adjustments */
[data-theme="dark"] .shape {
    opacity: 0.15;
}

[data-theme="dark"] .particle {
    opacity: 0.4;
}

/* System preference detection */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        --text-primary: #f1f5f9;
        --text-secondary: #94a3b8;
        --text-light: #64748b;
        --glass-bg: rgba(30, 41, 59, 0.9);
        --glass-border: rgba(139, 43, 226, 0.3);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
        --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.5);
        --footer-bg: #020617;
        --footer-text: #f1f5f9;
        --footer-text-muted: rgba(241, 245, 249, 0.7);
    }
}
