@charset "UTF-8";

/* CSS Reset & Variables */
:root {
    --bg-color: #0c0e14;
    --bg-secondary: #13161f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #005fff;
    --accent-blue-hover: #004ecc;
    --gradient-start: #ff7e5f;
    --gradient-end: #feb47b;
    --border-color: #2a2d36;
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button,
.button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(12, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.logo__icon {
    width: 32px;
    height: 32px;
    background-color: #ff3b3b;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.user-avatar-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), #60a5fa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 95, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.user-avatar-small:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 95, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Upload Progress Overlay */
.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 14, 20, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-progress-container {
    width: 300px;
    background-color: #1e2129;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.upload-progress-container h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: #0c0e14;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
    transition: width 0.1s ease;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.header__user-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* Buttons */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.button--primary {
    background-color: var(--accent-blue);
    color: white;
}

.button--primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 95, 255, 0.4);
}

.button--secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.button--secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.button--icon {
    background-color: #1a1d26;
    color: var(--text-primary);
    gap: 0.5rem;
}

.button--icon:hover {
    background-color: #252936;
}

.button--dark {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button--dark:hover {
    background-color: #1e222e;
    border-color: rgba(255, 255, 255, 0.2);
}

.button--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.link-arrow {
    color: var(--accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__visual {
    width: 100%;
    max-width: 900px;
    height: 500px;
    perspective: 1000px;
}

.hero__background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 95, 255, 0.15) 0%, rgba(12, 14, 20, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Mockup UI */
.mockup-window {
    width: 100%;
    height: 100%;
    background-color: #1e2129;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transform: rotateX(5deg);
    /* Slight 3D effect */
}

.mockup-header {
    height: 40px;
    background-color: #2a2d36;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #27c93f;
}

.mockup-content {
    flex: 1;
    padding: 20px;
    background-color: #13161f;
}

.skeleton-ui {
    display: flex;
    gap: 20px;
    height: 100%;
}

.skeleton-sidebar {
    width: 200px;
    height: 100%;
    background-color: #1e2129;
    border-radius: 8px;
}

.skeleton-main {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-content: start;
}

.skeleton-card {
    height: 120px;
    background-color: #1e2129;
    border-radius: 8px;
}

/* Features Block */
.features {
    padding: 100px 0;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 150px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block--reverse {
    flex-direction: row-reverse;
}

.feature-block__content {
    flex: 1;
}

.feature-block__visual {
    flex: 1.2;
    height: 400px;
    background: radial-gradient(circle at center, rgba(40, 44, 55, 0.5) 0%, rgba(12, 14, 20, 0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Visuals for features */
.visual-card {
    width: 80%;
    height: 300px;
    position: relative;
    z-index: 2;
}

.comment-bubble {
    background-color: #1e2129;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: max-content;
    top: 20%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.comment-bubble.right {
    top: 60%;
    left: auto;
    right: 0;
    animation-delay: 2s;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.comment-text {
    color: white;
    font-size: 0.95rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.task-list {
    width: 300px;
    background-color: #1e2129;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.task-item.checked {
    color: var(--text-primary);
}

.task-item.checked i {
    color: #27c93f;
}

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

/* Integrations */
.integrations {
    padding: 100px 0;
    background-color: #0c0e14;
}

.integrations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-card {
    background-color: #151821;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    background-color: #1a1d26;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.sketch {
    color: #fdb300;
}

.chrome {
    color: #4285f4;
}

.photoshop {
    color: #31a8ff;
}

.integration-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.integration-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta__title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer__col h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer__col a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer__col a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #1a1d26;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
    margin-bottom: 0;
}

.social-links a:hover {
    background-color: var(--accent-blue);
}

.footer__bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .section-title,
    .cta__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .feature-block {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .feature-block--reverse {
        flex-direction: column;
    }

    .section-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* Simplified for MVP */
    .mobile-menu-btn {
        display: block;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero__buttons {
        flex-direction: column;
    }
}

/* Auth Page Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-header {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1rem 50px;
    background: radial-gradient(circle at center, rgba(40, 44, 55, 0.4) 0%, #0c0e14 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background-color: #151821;
    /* Slightly lighter than bg */
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.auth-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    background-color: #0c0e14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 95, 255, 0.2);
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
}

.toggle-password:hover {
    color: var(--text-primary);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.button--full {
    width: 100%;
}

.auth-terms {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.auth-terms a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.auth-terms a:hover {
    color: var(--text-primary);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--accent-blue);
    font-weight: 600;
}