/* ===================================
   LANDING PAGE STYLES - Dockra
   =================================== */

/* CSS Variables */
:root {
    --bg: #ffffff;
    --text: #0a0a0a;
    --accent: #00f2ff;
    /* Neon Cyan */
    --accent-soft: rgba(0, 242, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.8);
    --border: rgba(0, 0, 0, 0.05);
    --gray: #6b7280;
    --glass: rgba(255, 255, 255, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #050505;
    --text: #f9fafb;
    --accent: #00f2ff;
    --accent-soft: rgba(0, 242, 255, 0.15);
    --card-bg: rgba(15, 15, 15, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --gray: #9ca3af;
    --glass: rgba(0, 0, 0, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(var(--bg-rgb), 0.7);
    backdrop-filter: blur(10px);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-visual {
    flex: 1.2;
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

/* Global Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-visual {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 140px;
    background: var(--bg);
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mock-input {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--gray);
    background: var(--accent-soft);
}

.mock-timeline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #000;
}

.m-clip {
    height: 12px;
    border-radius: 4px;
}

.m-clip.blue {
    width: 60%;
    background: #3b82f6;
}

.m-clip.green {
    width: 80%;
    background: #10b981;
}

.m-clip.yellow {
    width: 40%;
    background: #f59e0b;
}

/* Studio Showcase */
.studio-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.studio-showcase img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.highlight {
    position: absolute;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.hl-1 {
    top: 20%;
    left: -5%;
}

.hl-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

.hl-3 {
    top: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Comparison Table */
.compare-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: var(--gray);
}

/* Privacy Section */
.privacy-card {
    background: #000;
    color: #fff;
    border-radius: 48px;
    padding: 100px 60px;
    text-align: center;
}

.shield-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.privacy-card h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 3rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.p-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.p-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 120px 0;
}

.cta h2 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -3px;
}

.btn-xl {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    margin-top: 3rem;
    border-radius: 20px;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Utility Classes */
.grid {
    display: grid;
}

.gap-8 {
    gap: 2rem;
}

.mt-20 {
    margin-top: 5rem;
}

.max-w-4xl {
    max-width: 800px;
}

.max-w-5xl {
    max-width: 1000px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.p-12 {
    padding: 3rem;
}

.lg\:p-20 {
    padding: 5rem;
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
}

.p-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.p-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.text-accent {
    color: var(--accent);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .highlight {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-text .flex {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .privacy-card {
        padding: 60px 24px;
        border-radius: 32px;
    }

    .privacy-card h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .btn-xl {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
    }

    .compare-table {
        min-width: 600px;
    }
}

@media (max-width: 640px) {
    .flex-col-mobile {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 40px 0;
    }

    .logo {
        font-size: 1.2rem;
    }
}