:root {
    /* New Palette 'Doce Espera' Inspired */
    --bg-light: #FAF9F6;
    /* Light Beige / Off-White */
    --bg-warm: #F2EFE9;
    /* Slightly darker beige for sections */

    --text-primary: #5D4037;
    /* Dark Beige/Brown/Coffee */
    --text-secondary: #8D6E63;
    /* Lighter Brown */

    /* Accents */
    --primary-accent: #D7CCC8;
    /* Soft Rose/Beige */
    --button-gradient-start: #D3AFA8;
    /* Rose/Beige Gold */
    --button-gradient-end: #A1887F;

    /* Legacy/Compat */
    --bg-dark: var(--bg-light);
    /* Mapping old var to new light bg */
    --bg-darker: var(--bg-warm);
    --text-light: var(--text-primary);
    /* Inverting text logic: 'light' var now holds dark text for light bg */
    --text-dim: var(--text-secondary);

    --primary-gold: #8D6E63;
    /* Mapping gold to brown accent */

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --nav-height: 80px;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Update section backgrounds */
.benefits-section,
.modules-section,
.authority-section,
.faq-section {
    background: var(--bg-warm);
    color: var(--text-primary);
}

/* ... */
/* Benefits Section */
.benefits-section {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
    /* Matching bg-darker with opacity */
    backdrop-filter: blur(10px);
}

/* ... */
/* Authority Section */
.authority-section {
    padding: 6rem 5%;
}

/* ... */
/* Modules Section */
.modules-section {
    padding: 6rem 5%;
}

/* ... */
/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
}

/* Background Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

/* Navigation Removed - Logo moved to hero */
.logo-hero {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-light);
    margin-bottom: 2rem;
    display: inline-block;
}

.cta-button-small {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dim));
    color: #0f172a;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: transform 0.2s;
    text-decoration: none;
}

.cta-button-small:hover {
    transform: scale(1.05);
}

/* About Section (Second Fold) */
.about-section {
    padding: 6rem 5%;
    background: #fff;
    /* White background as visual break or light beige */
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    /* Standardize max-width */
    margin: 0 auto;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-3d-img {
    width: 100%;
    max-width: 400px;
    /* Slightly smaller to look like an icon */
    height: auto;
    z-index: 2;
    /* Removed drop-shadow to hide the square box, relying on image's own contrast */
    border-radius: 0;
    transition: transform 0.1s ease-out;
    /* Smooth movement for script */
    mix-blend-mode: multiply;
    /* Helps remove white background if any remains */
}

/* Optional backing shape */
.about-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--bg-warm) 0%, transparent 70%);
    z-index: 1;
}

.about-content {
    color: var(--text-primary);
}

.section-tag {
    display: inline-block;
    background: var(--bg-warm);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-dim);
    /* Actually want lighter grey for "O que é o" and highlight for name */
    color: #9DB0BC;
    /* Slate dim */
    color: var(--text-secondary);
}

.about-content h2 .highlight-text {
    color: var(--button-gradient-end);
    /* Rose/Brown */
    font-style: italic;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quote {
    display: block;
    margin-top: 2rem;
    font-family: var(--font-serif);
    color: var(--button-gradient-start);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}

/* Hero Section Updates */
/* Hero Section Updates */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 4rem;
    /* Increased gap for better spacing */
    overflow: visible;
    /* Changed from hidden to visible for marquee */
    background: transparent;
    /* Centralize Content */
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    /* Ensure relative positioning context */
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero-content h1 {
    color: var(--text-primary);
    /* Revert to Brown */
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: none;
    /* Remove old gradient text */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}

.hero-content h1 span {
    color: var(--text-secondary);
    /* Revert highlight */
}

.hero-content p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    /* Revert to Light Brown */
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button-main {
    background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(161, 136, 127, 0.4);
}

.cta-button-main:hover {
    box-shadow: 0 15px 35px rgba(161, 136, 127, 0.5);
    background: linear-gradient(135deg, var(--button-gradient-end), var(--button-gradient-start));
}

.trust-badges {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Image Right with Blending */
.hero-visual-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100vh;
    position: relative;
    /* Optional: Move image slightly right to stick to edge */
    margin-right: 0;
}

.hero-img-full {
    max-height: 95vh;
    width: auto;
    object-fit: contain;
    /* Blend Effect: Fade edges to merge with background */
    mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 70%);
    /* Fallback/Enhancement */
    opacity: 0.9;
    mix-blend-mode: multiply;
    /* Helps grey background blend into beige */
    filter: contrast(1.1) sepia(0.2);
    /* Warm up the image to match beige */
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        /* Image on top or bottom? User said image right. Usually mobile image on top or between text. Let's keep column (text top) or column-reverse. Reference has text top. */
        justify-content: flex-start;
        padding-top: 4rem;
        height: auto;
    }

    .hero-content {
        text-align: center;
        padding-bottom: 2rem;
    }

    .hero-visual-image {
        height: 50vh;
        width: 100%;
        justify-content: center;
    }

    .hero-img-full {
        max-height: 100%;
    }
}

/* Dark Benefits Section (3rd Fold) */
.dark-mode-section {
    background-color: #3E2723;
    /* Deep Dark Brown */
    color: #F5F5F5;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
    /* Subtle silhouette effect */
}

.container-centered {
    position: relative;
    /* Above canvas */
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title-light {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-top: 1rem;
}

.highlight-gold {
    color: #FFD54F;
    /* Brighter gold for dark bg */
}

/* 4-Column Grid */
.method-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.method-card {
    background: #FFFCF9;
    /* Off-white card */
    color: #3E2723;
    /* Dark text */
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* .method-card:hover {
    transform: translateY(-10px);
} Removed to allow JS Parallax */

.icon-circle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: #F2EFE9;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8D6E63;
    /* Light Brown Accent */
}

/* Mid Text */
.mid-headline {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mid-headline h3 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: #E0E0E0;
}

/* Bottom Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* 2 columns mostly */
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    color: #3E2723;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.check-icon {
    color: #4CAF50;
    /* Success Green */
    font-weight: bold;
    font-size: 1.2rem;
    background: #E8F5E9;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .section-title-light {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Authority Section */
.authority-section {
    background: linear-gradient(to right, var(--bg-darker), var(--bg-dark));
}

.authority-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    /* Image on right */
    align-items: center;
    gap: 4rem;
}

.authority-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.authority-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: -20px 20px 0 rgba(251, 191, 36, 0.1);
    z-index: 2;
    position: relative;
}

.img-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.authority-content {
    flex: 1;
}

.authority-content .subtitle {
    display: inline-block;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.authority-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.authority-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.authority-content p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.authority-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.a-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-gold);
}

.a-stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Modules Section */
.modules-section {
    padding: 6rem 5%;
    background: var(--bg-darker);
    /* Light Warm Background */
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.module-item {
    background: #3E2723;
    /* Dark Card Background */
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.module-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.module-img-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Ensure square aspect ratio if desired, or auto */
}

.module-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.module-item:hover .module-img {
    transform: scale(1.05);
    /* Zoom effect */
}

.module-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--button-gradient-start);
    /* Rose Title matching Pricing */
    font-family: var(--font-serif);
}

.module-info p {
    font-size: 0.95rem;
    color: #E0E0E0;
    /* Light text */
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: #3E2723;
    /* Dark Brown inverted background */
    color: #F5F5F5;
    /* Light text */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    /* Light glass effect for dark bg */
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    /* Ensure title is white */
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--button-gradient-start);
    /* Rose color for contrast */
    /* Brighter gold for contrast */
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #E0E0E0;
    /* Light grey text */
    line-height: 1.6;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .glass-nav {
        padding: 0 1rem;
        /* Kept for legacy if needed, but nav removed */
    }

    /* Hero Section Mobile Override */
    .hero-section {
        display: block;
        min-height: 100vh;
        padding: 0;
        position: relative;
        overflow: hidden;
        background: var(--bg-light);
    }

    /* Image Positioned at TOP to show Face */
    .hero-visual-image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 80vh;
        /* Cover most of screen */
        z-index: 0;
        margin: 0;
        justify-content: center;
        align-items: flex-start;
        /* Align top */
        display: flex;
    }

    .hero-img-full {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: top center;
        /* Focus on Face */
        /* Fade out the bottom to blend with content */
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        opacity: 1;
        /* Keep clear */
    }

    /* Gradient Overlay: Clear at top for face, White/Beige at bottom for Text */
    .hero-visual-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(250, 249, 246, 0) 0%,
                rgba(250, 249, 246, 0.4) 40%,
                var(--bg-light) 90%);
        z-index: 1;
    }

    /* Content Pushed Down */
    .hero-content {
        position: relative;
        z-index: 10;
        padding: 42vh 1.5rem 9rem;
        /* Start text below the face area */
        text-align: center;
        max-width: 100%;
    }

    .logo-hero {
        position: absolute;
        top: 2rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        font-size: 1.5rem;
        z-index: 20;
        /* Logo stays at top */
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .hero-content p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        font-weight: 500;
        text-shadow: none;
        /* Clean text */
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .cta-button-main {
        width: 100%;
        padding: 1.2rem;
    }

    .trust-badges {
        justify-content: center;
        margin-top: 2rem;
    }

    /* Authority Responsive */
    .authority-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .authority-stats {
        justify-content: center;
    }

    .authority-img {
        max-width: 100%;
        box-shadow: none;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 5%;
    /* display: flex;  removed to avoid centering issues if not needed, section is usually block */
    position: relative;
    z-index: 2;
}

.pricing-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: #EFEBE9;
    /* Light grey/beige */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.check-circle {
    min-width: 24px;
    height: 24px;
    background: var(--button-gradient-start);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Right Side - Dark Card */
.pricing-right {
    flex: 1;
    background: #3E2723;
    /* Dark Brown matching palette */
    color: #fff;
    padding: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Card Styling */
.pricing-card {
    width: 100%;
    max-width: 400px;
}

.card-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.card-brand strong {
    font-style: italic;
    font-weight: 400;
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--button-gradient-start);
    /* Rose Gold */
    font-weight: 600;
}

.price-from {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-large {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--button-gradient-start);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.btn-buy-now {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 850px) {
    .pricing-container {
        flex-direction: column;
    }

    .pricing-right {
        padding: 3rem 1.5rem;
    }

    .pricing-left {
        padding: 3rem 1.5rem;
    }
}

/* Hero Marquee CSS */
.hero-marquee {
    position: absolute;
    bottom: 2rem;
    /* Position at bottom of hero */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    /* Full viewport width */
    overflow: hidden;
    padding: 1rem 0;
    z-index: 5;
    /* Ensure above background but below content if needed, strictly it's z-index 5 so nice */
    pointer-events: none;
    /* Let clicks pass through if it covers anything important */
}

/* Ensure marquee items remain interactive if they were links (they are not currently) */
.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    /* Slower for elegance */
    pointer-events: auto;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--button-gradient-start);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .hero-marquee {
        bottom: 2rem;
        /* Adjust for mobile layout key elements */
    }
}

/* Centering Utility and Footer Update */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Hero Watermark Detail */
.hero-bg-watermark {
    position: absolute;
    top: 40%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 80vh;
    height: 80vh;
    opacity: 0.08;
    /* Very subtle */
    z-index: 0;
    pointer-events: none;
    animation: floatWatermark 20s ease-in-out infinite alternate;
}

.hero-bg-watermark svg {
    width: 100%;
    height: 100%;
    filter: blur(1px);
    /* Soften edges */
}

@keyframes floatWatermark {
    0% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
    }

    100% {
        transform: translate(-50%, -55%) rotate(-10deg) scale(1.05);
    }
}

/* Mobile Scroll Animation Classes */
.mobile-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mobile-visible {
    opacity: 1;
    transform: translateY(0);
}