body {
    background-image: url('../images/bg1.webp');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    color: #f0f0f0; /* Off-white text */
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    line-height: 1.6;
}

/* Base overlay: Back to Deep Dark Tint to make content pop */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 20, 0.7); /* Dark deep purple/black */
    z-index: 0;
    backdrop-filter: blur(4px);
}

/* --- Layout Wrapper --- */
.hero, .main-content, .footer {
    position: relative;
    z-index: 1;
}

/* --- Typography Helpers --- */
h1, h2, h3 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-weight: 700;
}

p {
    margin: 0 0 15px 0;
    color: #e0e0e0;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: 3em;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #f8bbd0); /* White to Soft Pink */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #fce4ec; /* Very pale pink */
    font-weight: 400;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ec407a 0%, #d81b60 100%); /* Softer Rose/Pink */
    color: white;
    padding: 16px 36px;
    font-size: 1.15em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
    color: white;
    background: linear-gradient(135deg, #f06292 0%, #e91e63 100%);
}

.cta-button.large {
    font-size: 1.3em;
    padding: 18px 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

/* --- Main Content Container --- */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Glass Containers --- */
.glass-panel {
    background-color: rgba(60, 20, 40, 0.4); /* Muted Plum Glass - darker but not black */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    color: white;
}

.section {
    padding: 50px;
    margin-bottom: 40px;
}

.section.use-cases, .section.features, .section.community, .section.cta-section {
    background-color: rgba(60, 20, 40, 0.4); /* Muted Plum Glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
}

.section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Grid Layouts --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background-color: rgba(255, 255, 255, 0.05); /* Slight white tint */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(248, 187, 208, 0.4); /* Pale pink border */
}

.card h2 {
    font-size: 1.4em;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff80ab; /* Light Pink Accent */
    text-transform: none;
    letter-spacing: 0;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card li {
    margin-bottom: 15px;
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.5;
}

.card li strong {
    color: #fff;
    font-weight: 600;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item h3 {
    color: #f48fb1; /* Soft pink accent */
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* --- Community Section --- */
.community-content {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}
.community-content p {
    margin-bottom: 20px;
}
.community-content strong {
    color: #ff80ab;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(88, 24, 69, 0.6) 0%, rgba(136, 14, 79, 0.5) 100%); /* Deep Violet/Pink */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-section h2 {
    margin-top: 0;
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 40px;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .cta-section h2 {
        font-size: 1.8em; /* Smaller on mobile */
    }
    .grid-container, .features-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 30px 20px;
    }
    .cta-button.large {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}