/* --- Intera Landing Page Styles (Restored Aesthetic) --- */

.landing-body {
    background-color: var(--dark-bg);
    color: var(--body-text);
    overflow-x: hidden;
}

/* --- Animated Background --- */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-gradient);
    filter: blur(150px);
    opacity: 0.3;
    animation: rotate 20s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Header --- */
.landing-header {
    padding: 20px 0;
    top: 0;
    z-index: 100;
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--light-text); /* Fallback for non-gradient browsers */
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --- Hero Section --- */
#hero {
    padding: 80px 20px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--body-text);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- General Section Styling --- */
.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 40px;
    color: var(--light-text);
}

#open-source, #preview {
    padding: 80px 20px;
}

/* --- Dashboard Preview Section --- */
.dashboard-preview-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    background-color: rgba(0,0,0,0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    padding: 15px;
    line-height: 0;
}

.dashboard-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius) - 4px);
}

/* --- Open Source Section --- */
#open-source {
    background-color: rgba(255, 255, 255, 0.02);
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}


