/* Creator Suite Premium Landing Page Styles */

:root {
    --bg-dark: #07070a;
    --bg-glass: rgba(20, 20, 30, 0.6);
    --bg-glass-hover: rgba(30, 30, 45, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-1: #a78bfa;
    --accent-2: #ec4899;
    --accent-3: #3b82f6;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Background Gradients & Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: 40%;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -300px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 5%) scale(1.1);
    }

    100% {
        transform: translate(-5%, 10%) scale(0.9);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(var(--border-glass) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base UI Elements */
a {
    text-decoration: none;
    color: inherit;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
}

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

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

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

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

/* Section Common */
.section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.badge-wrapper {
    display: inline-block;
    margin-bottom: 24px;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 24px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* Hero Visual / Mockup */
.hero-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    height: 32px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--border-glass);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #4b5563;
}

.window-controls i:nth-child(1) {
    background: #ef4444;
}

.window-controls i:nth-child(2) {
    background: #f59e0b;
}

.window-controls i:nth-child(3) {
    background: #10b981;
}

.mockup-url {
    margin: 0 auto;
    font-size: 11px;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 60px;
    border-radius: 6px;
}

.mockup-body {
    display: flex;
    flex: 1;
    background: rgba(15, 15, 20, 0.8);
}

.mockup-sidebar {
    width: 60px;
    border-right: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.2);
}

.mockup-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-card {
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.skeleton {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.skeleton.title {
    width: 30%;
    height: 12px;
}

.skeleton.text {
    width: 50%;
    height: 10px;
    opacity: 0.5;
}

.ai-badge {
    margin-left: auto;
    font-size: 10px;
    background: rgba(167, 139, 250, 0.2);
    color: var(--accent-1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Mockup Animations */
.animated-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: sweep 3s infinite;
}

.animated-card.delay-1::after {
    animation-delay: 1s;
}

.animated-card.delay-2::after {
    animation-delay: 2s;
}

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

    100% {
        left: 200%;
    }
}

.float-element {
    position: absolute;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    animation: float 4s ease-in-out infinite alternate;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.thumb-icon {
    top: 15%;
    right: -40px;
    animation-delay: 0s;
}

.spark-icon {
    bottom: 35%;
    left: -50px;
    animation-delay: 1s;
}

.time-icon {
    bottom: -30px;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Features Grid */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 16px;
}

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

.feature-card {
    padding: 32px 24px;
    text-align: left;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-glass-hover);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.gradient-1 {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.gradient-2 {
    background: linear-gradient(135deg, #ec4899, #d946ef);
}

.gradient-3 {
    background: linear-gradient(135deg, #3b82f6, #2dd4bf);
}

.gradient-4 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Highlight SVG Section */
.highlight-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.highlight-content {
    flex: 1;
}

.highlight-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
}

.check-list svg {
    width: 20px;
    height: 20px;
}

.highlight-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.spin-slow {
    transform-origin: 200px 200px;
    animation: spin 20s linear infinite;
}

.spin-fast {
    transform-origin: 200px 200px;
    animation: spin 10s linear infinite;
}

.reverse {
    animation-direction: reverse;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 80px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 24px 24px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 8px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 600px;
    }

    .highlight-container {
        flex-direction: column;
        padding: 40px 24px;
    }

    .highlight-content {
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .float-element {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
    }
}