/* ----------------------------------------------------------- */
/* HERO SECTION (3D Layout) */
/* ----------------------------------------------------------- */
.product-hero {
    width: 100%;
    max-width: var(--mw-content);
    margin: 0 auto;
    padding: clamp(6rem, 10vw, 10rem) 2rem 0 2rem;
    margin-bottom: clamp(4rem, 7vw, 8rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 50rem;
}

.product-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.product-subheading {
    font-size: 1.1rem;
    color: var(--text-subtle);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: clamp(20rem, 80%, 90%);
    text-align: center;
    margin-inline: auto;
}

/* ----------------------------------------------------------- */
/* VALUE PROP */
/* ----------------------------------------------------------- */
.value-prop-section { padding: 0 2rem; display: flex; justify-content: center; }

.glass-monolith {
    max-width: 60rem; background: var(--surface-color);
    backdrop-filter: blur(1.875rem); /* 30px */
    -webkit-backdrop-filter: blur(1.875rem);
    border: 1px solid var(--border-color); border-radius: 1.5rem; /* 24px */
    padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 3vw, 3rem); text-align: center; box-shadow: var(--card-shadow);
    position: relative; overflow: hidden;
}

.glass-monolith::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--aurora-1), transparent 70%);
    opacity: 0.1; pointer-events: none;
}

.glass-monolith h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; color: var(--text-color); margin-bottom: 1.5rem; }
.glass-monolith p { font-size: 1.15rem; color: var(--text-subtle); line-height: 1.8; }

/* ----------------------------------------------------------- */
/* FEATURES GRID */
/* ----------------------------------------------------------- */
.features-section { padding: 0 2rem; }
.section-headline { text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: clamp(3rem, 5vw, 5rem); }

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.5vw, 2rem);
    max-width: var(--mw-content); margin: 0 auto;
}

.feature-tile {
    background: var(--bg-color);
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 1.25rem; /* 20px */
    border: 1px solid var(--border-color);
    display: flex; flex-direction: column; align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-tile:hover {
    background: var(--surface-color);
    transform: translateY(-0.5rem); /* -8px */
    box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,0.05); /* 20px 40px */
    border-color: var(--text-color);
}

.tile-icon {
    font-size: 2rem; color: var(--text-color); margin-bottom: 1.5rem;
    width: 3.5rem; height: 3.5rem; display: flex; justify-content: center; align-items: center;
    border-radius: 0.75rem; /* 12px */
    background: var(--surface-color); border: 1px solid var(--border-color);
    transition: background 0.3s;
}

.feature-tile:hover .tile-icon {
    background: var(--text-color); color: var(--bg-color);
    box-shadow: 0 0 1.25rem var(--aurora-1); /* 20px */
    transform: rotate(5deg);
}

.feature-tile h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--text-color); }
.feature-tile p { font-size: 0.95rem; color: var(--text-subtle); line-height: 1.6; }

.feature-tile.special-tile { background: linear-gradient(135deg, var(--aurora-1), transparent); border: 1px solid rgba(255,255,255,0.2); }

.bottom-cta { text-align: center; margin-bottom: 5rem; }

/* Standardize Desktop Spacing */
.value-prop-section,
.features-section {
    margin-bottom: clamp(4rem, 7vw, 8rem); /* Matches Home section gaps */
}

.footer {
    margin-top: 8rem; /* Consistent footer push */
}

/* Laptop & Tablet (Max 64rem / 1024px) */
@media (max-width: 64rem) {
    
    /* 1. HEADER & HERO SPACING */
    .product-hero {
        padding-inline: 1.5rem;
    }

    .product-headline {
        margin-bottom: 1rem;
    }

    /* 2. SECTION GAPS & MONOLITH */
    .value-prop-section,
    .features-section {
        padding: 0 1.5rem;
    }

    .glass-monolith {
        padding: 3rem 2rem;
        width: 100%;
    }

    /* 3. FEATURES GRID (ORIGINAL STYLE PRESERVED) */
    .features-grid {
        grid-template-columns: 1fr; /* Standard 1-column stack as originally coded */
        gap: 2rem;
    }

    .feature-tile {
        align-items: center; /* Centers original vertical layout */
        text-align: center;
        padding: 3rem 2rem;
    }

    .tile-icon {
        margin: 0 auto 1.5rem auto;
    }

    /* 4. FOOTER ALIGNMENT */
    .footer {margin:  0rem; padding: 2rem 0rem;}
}

/* Mobile (Max 48rem / 768px) */
@media (max-width: 48rem) {
    .product-hero {
        padding-top: 3rem;
    }

}