:root {
    /* Premium Purple-Pink Gradient Palette */
    --color-pink: #F29AAE;
    --color-lavender: #C47BE4;
    --color-purple: #7132CA;
    --color-deep-purple: #301CA0;

    /* Enhanced Background - Rich gradient base */
    --color-bg: linear-gradient(135deg, #0a0514 0%, #1a0b2e 50%, #16041a 100%);
    --color-bg-solid: #0f0820;

    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #b8b3c9;
    --text-dim: #8a83a0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-pink), var(--color-lavender));
    --gradient-secondary: linear-gradient(135deg, var(--color-lavender), var(--color-purple));
    --gradient-accent: linear-gradient(135deg, var(--color-purple), var(--color-deep-purple));
    --gradient-full: linear-gradient(135deg, var(--color-pink) 0%, var(--color-lavender) 33%, var(--color-purple) 66%, var(--color-deep-purple) 100%);

    /* Shadows & Glows */
    --glow-pink: 0 0 20px rgba(242, 154, 174, 0.4);
    --glow-purple: 0 0 30px rgba(113, 50, 202, 0.5);
    --glow-lavender: 0 0 25px rgba(196, 123, 228, 0.45);

    --font-main: 'Outfit', sans-serif;
}

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

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: -2;
}

/* Background Animation - Enhanced Aurora Orbs */
.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.7;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.8;
    animation: float 15s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-deep-purple) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-duration: 20s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-30px, 60px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Enhanced Buttons with Animations */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.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, height 0.6s;
}

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

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 20px rgba(113, 50, 202, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(113, 50, 202, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-nav,
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: relative;
}

.glass-card {
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Navigation - Premium Design */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 18px 35px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-pink);
}

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

/* Hero Section - Eye-catching Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 10% 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

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

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(242, 154, 174, 0.15);
    border: 1px solid rgba(242, 154, 174, 0.3);
    border-radius: 50px;
    color: var(--color-pink);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow-pink);
}

.hero h1 {
    margin-bottom: 25px;
    text-shadow: 0 0 40px rgba(242, 154, 174, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Chat Mockup - Premium Interface */
.chat-interface-mockup {
    width: 380px;
    height: 550px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.chat-interface-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-full);
    opacity: 0.05;
    pointer-events: none;
}

.dummy-chat-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: var(--glow-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-info .name {
    font-weight: 600;
    font-size: 1.05rem;
}

.chat-info .status {
    font-size: 0.85rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-body {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.message {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    max-width: 85%;
    line-height: 1.5;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.message.bot {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.user {
    background: var(--gradient-secondary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(113, 50, 202, 0.3);
}

.chat-input-area {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.input-placeholder {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-pink);
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(242, 154, 174, 0.6);
}

/* Features Section */
.features {
    padding: 120px 10%;
    text-align: center;
}

.features h2 {
    margin-bottom: 70px;
}

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

.feature-card {
    padding: 45px 35px;
    text-align: left;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-full);
    opacity: 0;
    border-radius: 24px;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.08;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(242, 154, 174, 0.15);
    border: 1px solid rgba(242, 154, 174, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-pink);
}

.icon-box i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .icon-box i {
    -webkit-text-fill-color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Integration Section */
.integration {
    padding: 120px 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.4;
    min-width: 80px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 12px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.step-content code {
    background: rgba(242, 154, 174, 0.15);
    color: var(--color-pink);
    padding: 3px 10px;
    border-radius: 6px;
    font-family: 'Consolas', monospace;
    font-size: 0.9em;
}

/* Code Blocks - VS Code Style */
.code-block {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.code-block pre {
    overflow-x: auto;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.code-block code {
    background: none;
    color: inherit;
    padding: 0;
}

.copy-btn {
    background: rgba(242, 154, 174, 0.1);
    border: 1px solid rgba(242, 154, 174, 0.2);
    color: var(--color-pink);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(242, 154, 174, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--glow-pink);
}

/* Configuration Section */
.configuration {
    padding: 120px 10%;
    text-align: center;
}

.configuration h2 {
    margin-bottom: 15px;
}

.configuration>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.config-showcase {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.code-header {
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.file-name {
    color: var(--color-lavender);
    font-weight: 600;
    font-size: 1rem;
}

.config-showcase pre {
    padding: 30px;
    overflow-x: auto;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Consolas', monospace;
}

/* Footer */
footer {
    padding: 60px 10% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--glow-pink);
}

.copyright {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--glow-pink);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero {
        gap: 40px;
        padding: 100px 8% 60px;
    }

    .features,
    .integration,
    .configuration {
        padding: 100px 8%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .glass-nav {
        width: 95%;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .chat-interface-mockup {
        width: 100%;
        max-width: 380px;
    }

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

    .step {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        font-size: 3rem;
    }

    .code-block {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .features,
    .integration,
    .configuration {
        padding: 80px 5%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}