/* Blue Ember - Main Stylesheet */

:root {
    --color-primary: #0A0E27;
    --color-primary-light: #1a1f3a;
    --color-accent-cyan: #2DE2E6;
    --color-accent-orange: #FF6A3D;
    --color-accent-orange-light: #FF8A5B;
    --color-light: #F8FAFC;
    --color-dark: #1E293B;
    --color-text-primary: #E8EAED;
    --color-text-secondary: #A0A3A8;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.toast-root {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    color: #F8FAFC;
    animation: toast-in 0.4s ease forwards;
}

.toast--success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(45, 212, 191, 0.75));
    border: 1px solid rgba(16, 185, 129, 0.6);
}

.toast--error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(249, 115, 22, 0.75));
    border: 1px solid rgba(239, 68, 68, 0.6);
}

.toast-icon {
    font-size: 1.25rem;
}

.toast-body {
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
}

.toast-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.toast.is-hiding {
    animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-12px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px) translateZ(0);
    }
}

/* Beta Ribbon */
.beta-ribbon {
    position: sticky;
    top: 0;
    z-index: 8000;
    background: linear-gradient(90deg, rgba(45, 226, 230, 0.2), rgba(255, 106, 61, 0.2));
    border-bottom: 1px solid rgba(45, 226, 230, 0.25);
    backdrop-filter: blur(12px);
    padding: 10px 0;
}

.beta-ribbon__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.beta-ribbon__label {
    background: rgba(45, 226, 230, 0.35);
    border: 1px solid rgba(45, 226, 230, 0.6);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0B132B;
}

.beta-ribbon__message {
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.9rem;
}

/* Public Launch Showcase */
.public-launch {
    background: radial-gradient(circle at top, rgba(14, 23, 42, 0.8), rgba(7, 11, 26, 0.95));
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(45, 226, 230, 0.12);
    box-shadow: 0 40px 80px rgba(5, 10, 24, 0.45);
    margin: 48px auto;
    max-width: 1000px;
}

.public-launch__hero {
    position: relative;
    padding: 48px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.public-launch__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 14, 27, 0.92), rgba(14, 23, 42, 0.6));
    backdrop-filter: blur(6px);
}

.public-launch__hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    color: #F8FAFC;
}

.public-launch__identity {
    display: flex;
    gap: 18px;
    align-items: center;
}

.public-launch__avatar {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 36px rgba(8, 15, 45, 0.45);
}

.public-launch__avatar.placeholder {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 32px;
    color: rgba(248, 250, 252, 0.9);
}

.public-launch__chips {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.launch-chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-chip--category {
    background: rgba(45, 226, 230, 0.2);
    color: #E0FBFC;
}

.launch-chip--status {
    background: rgba(59, 130, 246, 0.25);
    color: #DBEAFE;
}

.public-launch__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.public-launch__tagline {
    font-size: 18px;
    color: rgba(226, 232, 240, 0.8);
}

.public-launch__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.public-launch__content {
    padding: 40px 48px 48px;
    display: grid;
    gap: 32px;
    color: rgba(226, 232, 240, 0.92);
}

.public-launch__summary {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.summary-card {
    background: rgba(10, 14, 27, 0.7);
    border: 1px solid rgba(45, 226, 230, 0.12);
    border-radius: 18px;
    padding: 18px 20px;
    display: grid;
    gap: 12px;
}

.summary-card__label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.8);
}

.summary-card__bar {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.summary-card__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(45, 226, 230, 0.9), rgba(99, 102, 241, 0.85));
    box-shadow: 0 10px 24px rgba(45, 226, 230, 0.35);
}

.summary-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.75);
}

.summary-list {
    list-style: none;
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.public-launch__section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #F8FAFC;
}

.public-launch__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.85);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(45, 226, 230, 0.1);
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: rgba(45, 226, 230, 0.18);
    color: #E0FBFC;
    transform: translateY(-2px);
}

.launch-gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.launch-gallery__item {
    background: rgba(10, 14, 27, 0.65);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(8, 15, 45, 0.3);
}

.launch-gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.launch-gallery__item figcaption {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
}

.public-launch__cta {
    background: rgba(10, 14, 27, 0.65);
    border: 1px solid rgba(45, 226, 230, 0.12);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.public-launch__cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .public-launch {
        border-radius: 28px;
        margin: 24px 16px;
    }

    .public-launch__hero {
        padding: 32px;
    }

    .public-launch__content {
        padding: 32px;
    }

    .public-launch__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

body {
    font-family: var(--font-body);
    background: var(--color-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-accent-cyan);
    transition: color 0.2s ease, box-shadow 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-accent-orange-light);
    box-shadow: 0 2px 0 var(--color-accent-orange-light);
}

/* Search and Filters */
.showcase-filters {
    background: var(--color-primary-light);
    padding: 24px 0;
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.search-filter-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.search-section {
    display: flex;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--color-primary);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px 0 0 8px;
    color: var(--color-text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.1);
}

.search-btn {
    padding: 12px 16px;
    background: var(--color-accent-cyan);
    border: none;
    border-radius: 0 8px 8px 0;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #1BD5D9;
}

.filter-section {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    background: var(--color-primary);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.1);
}

.active-filters {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(45, 226, 230, 0.1);
    border: 1px solid rgba(45, 226, 230, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--color-accent-cyan);
}

.filter-remove {
    background: none;
    border: none;
    color: var(--color-accent-cyan);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.filter-remove:hover {
    background: rgba(45, 226, 230, 0.2);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.results-count {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.clear-filters {
    background: none;
    border: 1px solid rgba(45, 226, 230, 0.3);
    color: var(--color-accent-cyan);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    background: rgba(45, 226, 230, 0.1);
}

/* Showcase Stats */
.showcase-stats {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(45, 226, 230, 0.1);
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.stat-icon {
    font-size: 14px;
}

.stat-value {
    font-weight: 600;
    color: var(--color-text-primary);
}

.stat-label {
    color: var(--color-text-secondary);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
}

.share-btn {
    background: none;
    border: 1px solid rgba(45, 226, 230, 0.2);
    color: var(--color-text-secondary);
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
}

/* Project Detail */
.project-detail {
    padding: 48px 0;
}

.project-detail__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-detail__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 32px;
}

.project-hero {
    background: linear-gradient(140deg, rgba(12, 18, 36, 0.9), rgba(9, 13, 31, 0.75));
    border: 1px solid rgba(45, 226, 230, 0.16);
    border-radius: 28px;
    padding: 32px 36px;
    display: grid;
    gap: 24px;
    box-shadow: 0 28px 54px rgba(7, 11, 26, 0.4);
}

.project-hero__content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.project-hero__identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.project-hero__title {
    font-size: 32px;
    color: #F8FAFC;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-hero__tagline {
    color: rgba(226, 232, 240, 0.75);
    font-size: 1rem;
}

.project-hero__actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.project-hero__group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.project-hero__cta {
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.project-hero__cta--primary {
    background: linear-gradient(130deg, rgba(255, 106, 61, 0.92), rgba(255, 138, 91, 0.85));
    border: none;
    color: #FFF5F0;
    box-shadow: 0 18px 32px rgba(255, 106, 61, 0.35);
}

.project-hero__cta:hover,
.project-hero__cta:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.project-hero__cta--primary:hover,
.project-hero__cta--primary:focus-visible {
    background: linear-gradient(130deg, rgba(255, 138, 91, 0.98), rgba(255, 168, 122, 0.9));
}

.project-hero__danger {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #FCA5A5;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.project-hero__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-pill {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.55);
    border: 1px solid rgba(51, 65, 85, 0.4);
    display: grid;
    gap: 6px;
}

.meta-pill__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.8);
}

.meta-pill__value {
    font-size: 0.95rem;
    color: #E2E8F0;
    font-weight: 600;
}

.project-progress--hero {
    margin-top: 4px;
}

.project-hero + .project-guide-card {
    margin-top: 28px;
}

.project-guide-card {
    background: rgba(16, 24, 40, 0.75);
    border: 1px solid rgba(45, 226, 230, 0.12);
    border-radius: 22px;
    padding: 26px;
    display: grid;
    gap: 18px;
    box-shadow: 0 24px 48px rgba(8, 15, 45, 0.35);
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.project-actions__group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.project-detail__title-section {
    flex: 1;
}

.project-detail__title {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.project-detail__tagline {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.project-detail__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.project-detail__category,
.project-detail__status,
.project-detail__date {
    padding: 4px 12px;
    background: rgba(45, 226, 230, 0.1);
    border: 1px solid rgba(45, 226, 230, 0.3);
    border-radius: 16px;
    font-size: 12px;
    color: var(--color-accent-cyan);
}

/* Voting */
.project-detail__voting {
    text-align: center;
    min-width: 200px;
}

.vote-stats {
    margin-bottom: 16px;
}

.vote-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vote-rating {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent-orange);
}

.vote-stars {
    display: flex;
    gap: 2px;
}

.vote-star {
    font-size: 16px;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.vote-star--filled {
    color: var(--color-accent-orange);
}

.vote-count {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.vote-form {
    margin-top: 16px;
}

.vote-form p {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.vote-buttons {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.vote-btn {
    background: none;
    border: 1px solid rgba(255, 106, 61, 0.3);
    color: var(--color-text-secondary);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    border-color: var(--color-accent-orange);
    color: var(--color-accent-orange);
}

.vote-btn--active {
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: var(--color-primary);
}

/* Social Sharing */
.social-share {
    background: var(--color-primary-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.social-share h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(45, 226, 230, 0.3);
    border-radius: 6px;
    background: none;
    color: var(--color-text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(45, 226, 230, 0.1);
    border-color: var(--color-accent-cyan);
}

.social-icon {
    font-size: 16px;
}

/* Comments */
.comments-section {
    margin-top: 48px;
}

.comment-form {
    background: var(--color-primary-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.comment-form h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.guest-form {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
    padding: 12px 16px;
    background: var(--color-primary);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 14px;
}

.form-row input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.1);
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primary);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.1);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment {
    background: var(--color-primary-light);
    padding: 20px;
    border-radius: 12px;
}

.comment--reply {
    margin-left: 40px;
    background: var(--color-primary);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-author strong {
    color: var(--color-text-primary);
}

.comment-date {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.comment-content {
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 16px;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--color-accent-cyan);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.reply-btn:hover {
    color: var(--color-accent-orange);
}

.no-comments {
    text-align: center;
    padding: 48px;
    color: var(--color-text-secondary);
}

/* Project Content */
.project-detail__description {
    margin-bottom: 32px;
}

.project-detail__description h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.project-content {
    background: var(--color-primary-light);
    padding: 24px;
    border-radius: 12px;
    line-height: 1.8;
    color: var(--color-text-primary);
}

.project-progress {
    margin-top: 24px;
}

.project-progress h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-primary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-orange));
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* Product Page - Facebook Style */
.product-page {
    background: #F0F2F5;
    min-height: 100vh;
}

/* Header Section */
.product-header {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-header__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 40px 0 20px;
}

.product-header__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.product-header__avatar {
    margin-bottom: -60px;
    position: relative;
    z-index: 2;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    background: #FFFFFF;
    object-fit: cover;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
}

.avatar-placeholder--sm {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-width: 2px;
}

.avatar-placeholder--xs {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-width: 2px;
}

.product-header__info {
    flex: 1;
    padding-bottom: 12px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-category,
.meta-status {
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    font-size: 12px;
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.meta-website {
    padding: 6px 12px;
    background: rgba(45, 226, 230, 0.2);
    border-radius: 16px;
    font-size: 12px;
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.meta-website:hover {
    background: rgba(45, 226, 230, 0.3);
}

.product-header__actions {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    padding-bottom: 12px;
}

/* Main Content */
.product-content {
    background: #F0F2F5;
    padding: 20px 0 40px;
}

.product-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.product-main {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-section {
    padding: 24px;
    border-bottom: 1px solid #E4E6EB;
}

.product-section:last-child {
    border-bottom: none;
}

.product-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1C1E21;
    margin-bottom: 16px;
}

.product-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1C1E21;
    margin-bottom: 12px;
}

.product-description {
    line-height: 1.6;
    color: #4B4F56;
}

.text-muted {
    color: #8A8D91;
    font-style: italic;
}

/* Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Progress Section */
.progress-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #E4E6EB;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-orange));
    transition: width 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-percentage {
    font-weight: 600;
    color: #1C1E21;
}

.progress-status {
    font-size: 14px;
    color: #4B4F56;
}

.launch-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #F0F2F5;
    border-radius: 8px;
}

.launch-label {
    font-size: 14px;
    color: #4B4F56;
}

.launch-date {
    font-weight: 600;
    color: #1C1E21;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F0F2F5;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: #E4E6EB;
}

.contact-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: var(--color-accent-cyan);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Sidebar */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-widget {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1C1E21;
    margin-bottom: 16px;
}

/* Voting Widget */
.voting-widget {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vote-average {
    text-align: center;
}

.vote-rating {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent-orange);
    display: block;
    margin-bottom: 8px;
}

.vote-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.vote-star {
    font-size: 16px;
    color: #CCC;
}

.vote-star--filled {
    color: var(--color-accent-orange);
}

.vote-count {
    font-size: 12px;
    color: #8A8D91;
}

.vote-form {
    text-align: center;
}

.vote-form p {
    font-size: 12px;
    color: #8A8D91;
    margin-bottom: 8px;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.vote-btn {
    background: #F0F2F5;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    background: #E4E6EB;
}

.vote-btn--active {
    background: var(--color-accent-orange);
    color: #FFFFFF;
}

/* Stats Widget */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #F0F2F5;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: #4B4F56;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #F0F2F5;
    border: none;
    border-radius: 6px;
    color: #1C1E21;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.action-btn:hover {
    background: #E4E6EB;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn--twitter {
    background: #1DA1F2;
    color: #FFFFFF;
}

.share-btn--linkedin {
    background: #0077B5;
    color: #FFFFFF;
}

.share-btn--facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.share-btn--reddit {
    background: #FF4500;
    color: #FFFFFF;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Developer Info */
.developer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.developer-avatar img,
.developer-avatar .avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.developer-details {
    flex: 1;
}

.developer-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 4px;
}

.developer-bio {
    font-size: 12px;
    color: #8A8D91;
    margin-bottom: 8px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    padding: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

/* Button Styles */
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--color-accent-cyan);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: #1BD5D9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(45, 226, 230, 0.72);
    color: rgba(248, 252, 255, 0.9);
    text-shadow: 0 1px 2px rgba(5, 10, 24, 0.4);
}

.btn-secondary:hover {
    background: rgba(45, 226, 230, 0.16);
    color: #0B132B;
    box-shadow: 0 12px 28px rgba(45, 226, 230, 0.28);
}

.btn-outline {
    background: transparent;
    border: 1px solid #CCC;
    color: #1C1E21;
}

.btn-outline:hover {
    background: #F0F2F5;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Launch Center Styles */
.launch-center {
    background: #F8FAFC;
    min-height: 100vh;
    padding: 20px 0;
}

.launch-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 40px 0;
    margin-bottom: 32px;
}

.launch-header__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.launch-progress {
    display: flex;
    align-items: center;
    gap: 24px;
}

.progress-circle {
    width: 120px;
    height: 120px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #E4E6EB;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: 700;
}

.progress-info h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 8px;
}

.project-name {
    color: var(--color-accent-cyan);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.progress-status {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.launch-actions {
    display: flex;
    gap: 12px;
}

/* Launch Content */
.launch-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.launch-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    margin-bottom: 32px;
}

/* Launch Cards */
.launch-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.card-header {
    padding: 24px;
    border-bottom: 1px solid #E4E6EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1C1E21;
    margin: 0;
}

.card-actions {
    display: flex;
    gap: 8px;
}

/* Checklist Container */
.checklist-container {
    padding: 24px;
}

.checklist-overview {
    margin-bottom: 32px;
}

.overview-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-cyan);
}

.stat-label {
    font-size: 12px;
    color: #8A8D91;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E4E6EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-orange));
    transition: width 0.3s ease;
}

/* Task Groups */
.task-groups {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.task-group {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.group-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0;
}

.group-count {
    background: var(--color-accent-cyan);
    color: var(--color-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E4E6EB;
    transition: all 0.3s ease;
}

.task-item:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: 0 2px 4px rgba(45, 226, 230, 0.1);
}

.task-item.completed {
    opacity: 0.6;
    background: #F8FAFC;
}

.task-checkbox input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #CCC;
    cursor: pointer;
}

.task-content {
    flex: 1;
}

.task-title {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.task-item.completed .task-title {
    text-decoration: line-through;
    color: #8A8D91;
}

.task-description {
    font-size: 12px;
    color: #8A8D91;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.task-due {
    font-size: 11px;
    color: var(--color-accent-orange);
}

.task-actions {
    display: flex;
    gap: 4px;
}

.task-action-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.task-action-btn:hover {
    background: #F0F2F5;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #8A8D91;
}

.empty-state p {
    margin: 8px 0;
}

/* AI Container */
.ai-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4B4F56;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CCC;
}

.status-dot.active {
    background: #31A24C;
    animation: pulse 2s infinite;
}

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

/* AI Suggestions */
.ai-suggestions h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E4E6EB;
}

.suggestion-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.suggestion-content {
    flex: 1;
}

.suggestion-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.suggestion-content p {
    font-size: 12px;
    color: #8A8D91;
    margin: 0;
}

.suggestion-actions {
    display: flex;
    gap: 8px;
}

/* AI Chat */
.ai-chat h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #E4E6EB;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: #F8FAFC;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ai-message .message-avatar {
    background: var(--color-accent-cyan);
}

.user-message .message-avatar {
    background: var(--color-accent-orange);
}

.message-content {
    flex: 1;
    background: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.message-content p {
    margin: 0;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 16px;
}

.chat-input {
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #E4E6EB;
    border-radius: 8px;
    font-size: 14px;
}

/* Quick Actions */
.quick-actions h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: #F8FAFC;
    border: 1px solid #E4E6EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #FFFFFF;
    border-color: var(--color-accent-cyan);
    transform: translateY(-1px);
}

.action-icon {
    font-size: 24px;
}

.action-label {
    font-size: 12px;
    color: #4B4F56;
    text-align: center;
}

/* Timeline */
.timeline-container {
    padding: 24px;
}

.timeline-countdown {
    text-align: center;
    margin-bottom: 32px;
}

.timeline-countdown h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
}

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

.countdown-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-cyan);
}

.countdown-label {
    font-size: 12px;
    color: #8A8D91;
    text-transform: uppercase;
}

.no-launch-date {
    text-align: center;
    padding: 40px 20px;
}

.no-launch-date h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 8px;
}

.no-launch-date p {
    color: #8A8D91;
    margin-bottom: 16px;
}

/* Milestones */
.milestones h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.milestone-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 4px solid #E4E6EB;
    transition: all 0.3s ease;
}

.milestone.completed {
    border-left-color: var(--color-accent-cyan);
    background: rgba(45, 226, 230, 0.05);
}

.milestone-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #E4E6EB;
    flex-shrink: 0;
}

.milestone.completed .milestone-marker {
    background: var(--color-accent-cyan);
}

.milestone-content {
    flex: 1;
}

.milestone-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.milestone-content p {
    font-size: 12px;
    color: #8A8D91;
    margin: 0;
}

/* Analytics */
.analytics-container {
    padding: 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: #F8FAFC;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #8A8D91;
    margin-bottom: 8px;
}

.metric-change {
    font-size: 11px;
    font-weight: 600;
}

.metric-change.positive {
    color: #31A24C;
}

.metric-change.negative {
    color: #E42424;
}

.metric-change.neutral {
    color: #8A8D91;
}

.progress-chart, .task-distribution {
    margin-top: 24px;
}

.progress-chart h3, .task-distribution h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-bar {
    height: 8px;
    border-radius: 4px;
    min-width: 100px;
    transition: width 0.3s ease;
}

.chart-label {
    font-size: 12px;
    color: #4B4F56;
}

/* Automation Center */
.automation-center {
    background: #F8FAFC;
    min-height: 100vh;
    padding: 20px 0;
}

.automation-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 40px 0;
    margin-bottom: 32px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header-info h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 8px;
}

.header-description {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.automation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.automation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.automation-section {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.section-header {
    padding: 24px;
    border-bottom: 1px solid #E4E6EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1C1E21;
    margin: 0;
}

.section-stats {
    display: flex;
    gap: 16px;
}

.stat {
    font-size: 14px;
    color: #8A8D91;
}

/* Automations List */
.automations-list {
    padding: 24px;
}

.automation-card {
    border: 1px solid #E4E6EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.automation-card:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: 0 4px 8px rgba(45, 226, 230, 0.1);
}

.automation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.automation-info {
    display: flex;
    gap: 16px;
    flex: 1;
}

.automation-icon {
    font-size: 32px;
    width: 48px;
    text-align: center;
}

.automation-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.automation-description {
    font-size: 14px;
    color: #8A8D91;
    margin: 0;
}

.automation-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCC;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--color-accent-cyan);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.automation-config {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.config-label {
    font-size: 12px;
    color: #8A8D91;
    text-transform: uppercase;
}

.config-value {
    font-size: 14px;
    color: #1C1E21;
    font-weight: 500;
}

.automation-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #31A24C;
}

.status-indicator.inactive {
    background: #CCC;
}

.status-text {
    font-size: 12px;
    color: #8A8D91;
}

/* Templates */
.filter-tabs {
    display: flex;
    gap: 8px;
}

.tab-btn {
    padding: 8px 16px;
    background: none;
    border: 1px solid #E4E6EB;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--color-accent-cyan);
    border-color: var(--color-accent-cyan);
    color: var(--color-primary);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 24px;
}

.template-card {
    border: 1px solid #E4E6EB;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.template-card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 226, 230, 0.1);
}

.template-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.template-icon {
    font-size: 24px;
}

.template-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0;
}

.template-description {
    font-size: 14px;
    color: #8A8D91;
    margin-bottom: 16px;
    line-height: 1.4;
}

.template-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.feature {
    font-size: 12px;
    color: #31A24C;
}

/* History */
.history-list {
    padding: 24px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #E4E6EB;
}

.history-item:last-child {
    border-bottom: none;
}

.history-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
}

.history-details {
    flex: 1;
}

.history-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.history-message {
    font-size: 12px;
    color: #8A8D91;
    margin: 0 0 4px 0;
}

.history-time {
    font-size: 11px;
    color: #CCC;
}

.history-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.history-status.success {
    background: rgba(49, 162, 76, 0.1);
    color: #31A24C;
}

.history-status.failed {
    background: rgba(228, 36, 36, 0.1);
    color: #E42424;
}

.history-status.pending {
    background: rgba(45, 226, 230, 0.1);
    color: var(--color-accent-cyan);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1C1E21;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #8A8D91;
    padding: 4px;
}

/* Form Styles */
.automation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1E21;
    margin-bottom: 16px;
}

.automation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.type-option {
    cursor: pointer;
}

.type-option input[type="radio"] {
    display: none;
}

.type-card {
    border: 2px solid #E4E6EB;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.type-option input[type="radio"]:checked + .type-card {
    border-color: var(--color-accent-cyan);
    background: rgba(45, 226, 230, 0.05);
}

.type-card:hover {
    border-color: var(--color-accent-cyan);
}

.type-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.type-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1C1E21;
    margin: 0 0 4px 0;
}

.type-card p {
    font-size: 12px;
    color: #8A8D91;
    margin: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1C1E21;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E4E6EB;
    border-radius: 8px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.1);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .launch-header__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .launch-progress {
        width: 100%;
        justify-content: center;
    }
    
    .launch-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overview-stats {
        justify-content: space-around;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 16px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .automation-types {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Navigation */
.nav {
    background: var(--color-primary);
    border-bottom: 1px solid rgba(45, 226, 230, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    font-size: 56px;
}

.nav-logo-text {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    background: rgba(45, 226, 230, 0.1);
    color: var(--color-accent-cyan);
    border: 1px solid rgba(45, 226, 230, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(45, 226, 230, 0.2);
    border-color: var(--color-accent-cyan);
    transform: translateY(-1px);
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .nav-actions {
        gap: 16px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-auth {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .nav-auth-buttons {
        justify-content: center;
        gap: 8px;
    }
    
    .nav-auth-buttons .btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

.nav-link {
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    font-size: inherit;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dropdown-trigger:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-primary);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 100;
    margin-top: 8px;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(45, 226, 230, 0.1);
    color: var(--color-text-primary);
}

.nav-profile {
    position: relative;
}

.nav-profile__trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(26, 31, 58, 0.95);
    border: 1px solid rgba(45, 226, 230, 0.3);
    color: #F8FAFC;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.nav-profile__trigger:hover,
.nav-profile__trigger:focus-visible {
    border-color: rgba(45, 226, 230, 0.8);
    background: rgba(26, 31, 58, 1);
    box-shadow: 0 12px 24px rgba(45, 226, 230, 0.25);
    transform: translateY(-1px);
    outline: none;
}

.nav-profile__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #2DE2E6 0%, #FCEE21 50%, #FF6A3D 100%);
    box-shadow: 0 8px 16px rgba(45, 226, 230, 0.35);
}

.nav-profile__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.nav-profile__name {
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-profile__meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent-cyan);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-profile__chevron {
    margin-left: 4px;
    color: rgba(248, 250, 252, 0.7);
    transition: transform 0.2s ease;
}

.nav-profile[x-data] .nav-profile__trigger[aria-expanded="true"],
.nav-profile__trigger[aria-expanded="true"] {
    border-color: rgba(45, 226, 230, 0.8);
}

[x-data="{ open: false }"] .nav-profile__trigger[aria-expanded="true"],
.nav-profile__trigger[aria-expanded="true"] .nav-profile__chevron,
.nav-profile[x-data="{ open: false }"] .nav-profile__chevron[aria-expanded="true"] {
    transform: rotate(180deg);
}

.nav-profile__menu {
    position: absolute;
    top: 64px;
    right: 0;
    width: 240px;
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid rgba(45, 226, 230, 0.25);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(10, 14, 39, 0.45);
    backdrop-filter: blur(16px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 50;
}

.nav-profile__menu-header {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(45, 226, 230, 0.2);
    margin-bottom: 6px;
}

.nav-profile__menu-name {
    font-weight: 600;
    color: #fff;
}

.nav-profile__menu-email {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.6);
}

.nav-profile__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(248, 250, 252, 0.85);
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-profile__item:hover,
.nav-profile__item:focus-visible {
    background: rgba(45, 226, 230, 0.15);
    color: #FFFFFF;
    transform: translateX(2px);
    outline: none;
}

.nav-profile__item--danger {
    color: #FCA5A5;
}

.nav-profile__item--danger:hover,
.nav-profile__item--danger:focus-visible {
    background: rgba(248, 113, 113, 0.16);
    color: #FEE2E2;
}

.nav-profile__divider {
    height: 1px;
    background: rgba(45, 226, 230, 0.2);
    margin: 6px 0;
}
/* Buttons */
.btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5B 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 106, 61, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 106, 61, 0.5);
}

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 140px 40px 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 226, 230, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.page-hero h1 {
    font-size: 96px;
    margin-bottom: 32px;
    line-height: 1;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    font-weight: 800;
    letter-spacing: -2px;
}

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

.gradient-text {
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.page-hero p {
    font-size: 24px;
    color: #B8BBBE;
    max-width: 800px;
    margin: 0 auto 56px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(45, 226, 230, 0.1);
    border: 1px solid rgba(45, 226, 230, 0.3);
    color: var(--color-accent-cyan);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.social-proof {
    margin-top: 40px;
    color: var(--color-text-secondary);
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Problem Section */
.problem-section {
    background: #0D1117;
    padding: 100px 40px;
}

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

.problem-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 106, 61, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: var(--color-primary);
    padding: 100px 40px;
}

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

.solution-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.solution-card {
    background: rgba(45, 226, 230, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: rgba(45, 226, 230, 0.5);
    transform: translateY(-4px);
}

.solution-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.solution-card p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.cta-final {
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    padding: 100px 40px;
    text-align: center;
}

.cta-final h2 {
    font-size: 56px;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(180deg, rgba(7, 11, 26, 0.92), rgba(6, 9, 21, 0.98));
    color: var(--color-text-secondary);
    padding: 70px 40px 24px;
    border-top: 1px solid rgba(45, 226, 230, 0.18);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(45, 226, 230, 0.12), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    position: relative;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255, 138, 91, 0.95), rgba(45, 226, 230, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4::after {
    content: "🔥";
    margin-left: 6px;
    font-size: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo__img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(8, 15, 45, 0.35));
}


.footer-section a {
    display: block;
    color: rgba(226, 232, 240, 0.75);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-section a:hover {
    color: var(--color-accent-cyan);
    transform: translateX(2px);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    font-size: 24px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(45, 226, 230, 0.1);
    color: rgba(148, 163, 184, 0.6);
    font-size: 13px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Flash Messages */
.flash-message {
    max-width: 1200px;
    margin: 20px auto;
    padding: 16px 24px;
    border-radius: 8px;
}

.flash-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 40px 20px;
}

.auth-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(10px);
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-logo__emoji {
    font-size: 40px;
    line-height: 1;
}

.auth-logo__text {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
}

.auth-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-block {
    width: 100%;
}

.auth-link {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.auth-link a {
    color: var(--color-accent-cyan);
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: var(--color-accent-orange);
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Pricing Page */
.pricing-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 100px 40px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.pricing-hero p {
    font-size: 20px;
    color: var(--color-text-secondary);
}

.pricing-section {
    background: var(--color-primary);
    padding: 80px 40px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--color-accent-orange);
    box-shadow: 0 20px 40px rgba(255, 106, 61, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-cyan);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent-orange) 0%, var(--color-accent-orange-light) 100%);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.price {
    margin-bottom: 32px;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
}

.price .period {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.features {
    list-style: none;
    margin-bottom: 32px;
}

.features li {
    padding: 12px 0;
    color: var(--color-text-secondary);
    font-size: 15px;
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

/* Dashboard */
.dashboard-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.dashboard-hero__left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.dashboard-hero__left p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 16px;
    display: inline-block;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.dashboard-hero__right {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 16px;
    padding: 32px;
    max-width: 320px;
    text-align: center;
}

.hero-card__icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.hero-card__text {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 12px 0;
}

.stat-sub {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.dashboard-empty {
    padding: 60px 40px;
}

.empty-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.empty-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.empty-card p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.project-section {
    padding: 60px 40px;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.section-header p {
    color: var(--color-text-secondary);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.15);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 226, 230, 0.5);
    box-shadow: 0 20px 40px rgba(45, 226, 230, 0.12);
}

.project-card__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.project-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
}

.project-card__title:hover {
    color: var(--color-accent-cyan);
}

.project-card__tagline {
    color: var(--color-text-secondary);
    margin-top: 6px;
}

.project-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status--active {
    background: rgba(45, 226, 230, 0.15);
    color: var(--color-accent-cyan);
}

.project-status--draft,
.project-status--archived {
    background: rgba(100, 116, 139, 0.2);
    color: #CBD5F5;
}

.project-progress__top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.project-progress__bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.project-progress__fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5B 100%);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.meta-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(248, 250, 252, 0.6);
}

.meta-value {
    font-weight: 600;
    color: #FFFFFF;
}

.project-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-link {
    font-weight: 600;
    color: var(--color-accent-cyan);
    text-decoration: none;
}

.project-link:hover {
    color: var(--color-accent-orange);
}

.project-link--muted {
    color: var(--color-text-secondary);
}

.project-footer__actions {
    display: flex;
    gap: 12px;
}

.project-detail {
    padding: 60px 40px;
    display: grid;
    gap: 32px;
}

.project-detail__header {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    gap: 24px;
}

.project-header__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.project-header__title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
}

.project-header__tagline {
    color: var(--color-text-secondary);
    margin-top: 8px;
}

.project-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(45, 226, 230, 0.2);
    padding: 20px;
    border-radius: 16px;
}

.overview-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.6);
}

.overview-value {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.checklist-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.15);
    border-radius: 20px;
    padding: 32px;
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.checklist-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.checklist-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(45, 226, 230, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.checklist-items {
    display: grid;
    gap: 16px;
}

.checklist-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.checklist-item:hover {
    border-color: rgba(45, 226, 230, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.checklist-item.completed {
    opacity: 0.6;
}

.checklist-item__title {
    font-weight: 600;
    color: #FFFFFF;
}

.checklist-item__description {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.checklist-item__meta {
    font-size: 12px;
    color: rgba(248, 250, 252, 0.6);
    margin-top: 8px;
}

.checklist-empty {
    text-align: center;
    padding: 40px;
    color: var(--color-text-secondary);
    border: 1px dashed rgba(45, 226, 230, 0.2);
    border-radius: 16px;
}

.form-layout {
    padding: 60px 40px;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.15);
    border-radius: 20px;
    padding: 40px;
    max-width: 680px;
    margin: 0 auto;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
}

.form-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.form-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    text-align: center;
}

.form-actions .btn-outline {
    border: 1px solid rgba(45, 226, 230, 0.3);
    color: var(--color-text-secondary);
}

.btn-outline:hover {
    border-color: var(--color-accent-cyan);
    color: #FFFFFF;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.pagination__item {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    text-decoration: none;
}

.pagination__item:hover,
.pagination__item--active {
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5B 100%);
    color: #FFFFFF;
}

.showcase-hero {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.showcase-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.showcase-hero p {
    font-size: 20px;
    color: var(--color-text-secondary);
    max-width: 720px;
    margin: 0 auto 32px;
}

.showcase-grid {
    padding: 60px 40px;
    background: var(--color-primary);
}

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

.showcase-empty {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 20px;
    padding: 60px;
    color: var(--color-text-secondary);
}

.showcase-grid__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: linear-gradient(145deg, rgba(12, 17, 42, 0.95), rgba(17, 24, 56, 0.85));
    border: 1px solid rgba(45, 226, 230, 0.2);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    gap: 20px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 226, 230, 0.5);
    box-shadow: 0 22px 44px rgba(8, 15, 45, 0.35);
}

.showcase-card__hero {
    position: relative;
    border-radius: 18px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.showcase-card__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 12, 32, 0.85), rgba(10, 12, 32, 0.4));
    backdrop-filter: blur(4px);
}

.showcase-card__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.showcase-card__identity {
    display: flex;
    gap: 14px;
    align-items: center;
}

.showcase-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 24px rgba(8, 15, 45, 0.3);
}

.showcase-card__avatar.placeholder {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 24px;
    color: rgba(248, 250, 252, 0.9);
}

.showcase-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.showcase-card__tagline {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.showcase-card__description {
    color: rgba(248, 250, 252, 0.75);
    font-size: 15px;
    line-height: 1.6;
}

.showcase-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5B 100%);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.showcase-progress {
    display: grid;
    gap: 10px;
}

.showcase-progress__bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.showcase-progress__fill {
    height: 100%;
    background: linear-gradient(135deg, #2DE2E6 0%, #FF6A3D 100%);
    border-radius: 999px;
}

.showcase-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-card__footer a {
    text-decoration: none;
}

.showcase-pagination {
    margin-top: 40px;
}

/* 404 Error Page */
.error-404 {
  background: linear-gradient(135deg, #0A192F 0%, #1E293B 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
}

.error-404__container {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.error-404__content {
  text-align: left;
}

.error-404__code {
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #2DE2E6;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(45, 226, 230, 0.3);
}

.error-404__title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.error-404__description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-404__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.error-404__illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-404__emoji {
  font-size: 80px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.error-404__caption {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #64748B;
  font-style: italic;
}

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

/* Admin Dashboard */
.admin-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.admin-dashboard__header {
  text-align: center;
  margin-bottom: 60px;
}

.admin-dashboard__title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #2DE2E6 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-dashboard__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #94A3B8;
}

/* Admin Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.admin-stat {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border: 1px solid rgba(45, 226, 230, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.admin-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 226, 230, 0.3);
  box-shadow: 0 12px 40px rgba(45, 226, 230, 0.1);
}

.admin-stat__icon {
  font-size: 48px;
  line-height: 1;
}

.admin-stat__content {
  flex: 1;
}

.admin-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}

.admin-stat__value.status-online {
  color: #10B981;
}

/* Admin Menu */
.admin-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.admin-menu__item {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border: 1px solid rgba(45, 226, 230, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admin-menu__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2DE2E6 0%, #0EA5E9 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.admin-menu__item:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 226, 230, 0.3);
  box-shadow: 0 12px 40px rgba(45, 226, 230, 0.1);
}

.admin-menu__item:hover::before {
  transform: translateX(0);
}

.admin-menu__icon {
  font-size: 32px;
  line-height: 1;
}

.admin-menu__content {
  flex: 1;
}

.admin-menu__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.admin-menu__description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
}

.admin-menu__arrow {
  font-size: 20px;
  color: #2DE2E6;
  transition: transform 0.3s ease;
}

.admin-menu__item:hover .admin-menu__arrow {
  transform: translateX(4px);
}

/* Admin Activity */
.admin-activity {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border: 1px solid rgba(45, 226, 230, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.admin-activity__title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.admin-activity__placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  justify-content: center;
  color: #64748B;
  font-style: italic;
}

.admin-activity__icon {
  font-size: 32px;
}

/* Admin Responsive */
@media (max-width: 768px) {
  .admin-dashboard {
    padding: 20px;
  }
  
  .admin-dashboard__title {
    font-size: 32px;
  }
  
  .admin-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .admin-stat {
    padding: 24px;
  }
  
  .admin-stat__icon {
    font-size: 36px;
  }
  
  .admin-stat__value {
    font-size: 24px;
  }
  
  .admin-menu {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .admin-menu__item {
    padding: 24px;
  }
  
  .admin-menu__icon {
    font-size: 28px;
  }
  
  .admin-activity {
    padding: 24px;
  }
  
  .admin-activity__placeholder {
    padding: 24px;
    flex-direction: column;
  }
}

/* Enhanced Homepage Styles */
.page-hero--enhanced {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero--enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(45, 226, 230, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748B;
    position: relative;
    z-index: 1;
}

.social-proof__indicator {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #94A3B8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Problem Section */
.problem-section--enhanced {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

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

.problem-card {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EF4444 0%, #F97316 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 226, 230, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.problem-card:hover::before {
    transform: translateX(0);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.problem-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
}

/* Enhanced Solution Section */
.solution-section--enhanced {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

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

.solution-card {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2DE2E6 0%, #0EA5E9 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 226, 230, 0.3);
    box-shadow: 0 20px 60px rgba(45, 226, 230, 0.1);
}

.solution-card:hover::before {
    transform: translateX(0);
}

.solution-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2DE2E6;
    margin-bottom: 16px;
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.solution-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.solution-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
}

/* Enhanced CTA Section */
.cta-final--enhanced {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0A192F 0%, #1E293B 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final--enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(45, 226, 230, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-emoji {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

/* Homepage Responsive */
@media (max-width: 768px) {
    .page-hero--enhanced {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .problem-section--enhanced,
    .solution-section--enhanced {
        padding: 60px 20px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-final--enhanced {
        padding: 80px 20px;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-emoji {
        font-size: 60px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-hero--enhanced {
        padding: 100px 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 19px;
        max-width: 500px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .page-hero--enhanced {
        padding: 140px 40px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-description {
        font-size: 22px;
        max-width: 700px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .problem-grid,
    .solution-grid {
        gap: 40px;
    }
    
    .problem-card,
    .solution-card {
        padding: 40px;
    }
    
    .admin-dashboard {
        padding: 60px 40px;
    }
    
    .admin-stat {
        padding: 40px;
    }
    
    .admin-menu__item {
        padding: 40px;
    }
}

/* Ultra-wide Desktop */
@media (min-width: 1600px) {
    .page-hero--enhanced {
        padding: 160px 60px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-description {
        font-size: 24px;
        max-width: 800px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .problem-container,
    .solution-container {
        max-width: 1400px;
    }
    
    .admin-dashboard {
        max-width: 1400px;
        padding: 80px 60px;
    }
    
    .cta-container {
        max-width: 1000px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .page-hero--enhanced {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .problem-section--enhanced,
    .solution-section--enhanced {
        padding: 40px 20px;
    }
    
    .cta-final--enhanced {
        padding: 60px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-hero--enhanced {
        padding: 60px 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn--large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .problem-card,
    .solution-card {
        padding: 24px;
    }
    
    .problem-icon,
    .solution-icon {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-emoji {
        font-size: 48px;
    }
}

/* Brand Animations & Micro-interactions */

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 226, 230, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(45, 226, 230, 0.2);
}

/* Enhanced Card Animations */
.problem-card,
.solution-card,
.admin-stat,
.admin-menu__item {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover,
.solution-card:hover,
.admin-stat:hover,
.admin-menu__item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Form Input Animations */
.form-input {
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(45, 226, 230, 0.15);
}

/* Logo Animation */
.auth-logo:hover {
    animation: logoGlow 2s ease-in-out;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 0 rgba(45, 226, 230, 0));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(45, 226, 230, 0.5));
        transform: scale(1.05);
    }
}

/* Navigation Animations */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2DE2E6 0%, #0EA5E9 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 226, 230, 0.3), transparent);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Success Animation */
.success-animation {
    animation: success 0.6s ease;
}

@keyframes success {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Error Shake Animation */
.error-animation {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

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

/* Staggered Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Progress Bar Animation */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Hover Glow Effect */
.glow-hover:hover {
    box-shadow: 0 0 30px rgba(45, 226, 230, 0.3);
}

/* Text Gradient Animation */
.gradient-text-animated {
    background: linear-gradient(270deg, #2DE2E6, #0EA5E9, #2DE2E6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Pulse Glow Animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(45, 226, 230, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(45, 226, 230, 0.6);
        transform: scale(1.05);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Elements */
.interactive {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive:active {
    transform: scale(0.98);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    .btn,
    .problem-card,
    .solution-card,
    .admin-stat,
    .admin-menu__item,
    .form-input,
    .auth-logo,
    .nav-link,
    .fade-in,
    .bounce,
    .pulse-glow {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Accessibility Compliance (WCAG 2.1 AA) */

/* Focus Indicators */
.btn:focus,
.form-input:focus,
.nav-link:focus,
.admin-menu__item:focus {
    outline: 3px solid #2DE2E6;
    outline-offset: 2px;
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2DE2E6;
    color: #0A192F;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid #FFFFFF;
    }
    
    .form-input {
        border: 2px solid #FFFFFF;
    }
    
    .problem-card,
    .solution-card,
    .admin-stat,
    .admin-menu__item {
        border: 2px solid #2DE2E6;
    }
}

/* Text Contrast Improvements */
.text-primary {
    color: #FFFFFF; /* 21:1 contrast ratio */
}

.text-secondary {
    color: #E2E8F0; /* 14:1 contrast ratio */
}

.text-muted {
    color: #94A3B8; /* 7:1 contrast ratio */
}

/* Link Focus States */
a:focus {
    outline: 3px solid #2DE2E6;
    outline-offset: 2px;
    text-decoration: underline;
}

/* Button Accessibility */
.btn::before {
    z-index: -1; /* Ensure pseudo-element doesn't interfere with focus */
}

/* Form Accessibility */
.form-group {
    position: relative;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-input[required]::after {
    content: ' *';
    color: #EF4444;
}

/* Error States */
.form-input.error {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.form-input.error:focus {
    outline-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-message {
    color: #EF4444;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* Success States */
.form-input.success {
    border-color: #10B981;
    background-color: rgba(16, 185, 129, 0.1);
}

.form-input.success:focus {
    outline-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* ARIA Live Regions */
.aria-live {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.aria-live-polite {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Keyboard Navigation */
.keyboard-nav *:focus {
    outline: 3px solid #2DE2E6;
    outline-offset: 2px;
}

/* Touch Target Sizes */
.btn,
.nav-link,
.admin-menu__item {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Heading Hierarchy */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* List Accessibility */
ul, ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

/* Table Accessibility */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 24px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #475569;
}

th {
    background-color: #1E293B;
    font-weight: 600;
    color: #FFFFFF;
}

/* Image Accessibility */
img {
    max-width: 100%;
    height: auto;
}

/* Color Independence */
.color-independent {
    position: relative;
}

.color-independent::after {
    content: attr(data-text);
    position: absolute;
    left: -9999px;
}

/* Animation Controls */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .btn,
    .nav-link,
    .admin-menu__item {
        color: #000 !important;
        background: transparent !important;
        border: 1px solid #000 !important;
    }
    
    .hero-cta,
    .cta-actions {
        display: none;
    }
    
    .page-hero--enhanced {
        background: #FFFFFF !important;
        color: #000000 !important;
    }
    
    .gradient-text {
        background: none !important;
        color: #000000 !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 40px;
    }
    
    .features-section h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        height: auto;
    }
    
    .auth-box {
        padding: 32px 24px;
    }

    .dashboard-hero {
        padding: 60px 20px;
    }

    .dashboard-stats,
    .project-section,
    .project-detail,
    .pricing-section,
    .pricing-hero {
        padding: 40px 20px;
    }
}

/* Responsive 404 */
@media (max-width: 768px) {
  .error-404 {
    padding: 60px 20px;
    min-height: 60vh;
  }
  
  .error-404__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .error-404__content {
    text-align: center;
  }
  
  .error-404__code {
    font-size: 80px;
  }
  
  .error-404__title {
    font-size: 32px;
  }
  
  .error-404__description {
    font-size: 16px;
  }
  
  .error-404__actions {
    justify-content: center;
  }
  
  .error-404__emoji {
    font-size: 60px;
  }
}
