/* ==========================================================================
   ONLY GIRLS — Premium Application Ecosystem
   Upgraded: Glassmorphism 2.0, Cinematic Depth, Editorial Motion
   ========================================================================== */

/* -----------------------------------------
   1. CSS Variables & Theming
----------------------------------------- */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --bg-base: #FCFAFA;
    --accent-primary: #C92A5D;
    --accent-secondary: #E8B4B8;
    --accent-glow: #F06292;
    --accent-deep: #9E1244;

    --text-main: #1D1114;
    --text-muted: #826F75;
    --text-light: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.62);
    --glass-border: rgba(255, 255, 255, 0.95);
    --glass-border-outer: rgba(201, 42, 93, 0.12);
    --glass-shadow: 0 8px 32px rgba(201, 42, 93, 0.07), 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
    --glass-blur: blur(24px) saturate(200%);

    --container-width: 1280px;
    --section-pad: clamp(5rem, 10vw, 10rem);

    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

.dark-glass-theme {
    background-color: #12080D;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.55);
    --glass-bg: rgba(35, 15, 25, 0.5);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* -----------------------------------------
   2. Reset & Base
----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: initial; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 10% 40%, rgba(201, 42, 93, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(232, 180, 184, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(201, 42, 93, 0.03) 0%, transparent 50%);
}

::selection { background: var(--accent-primary); color: #fff; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.relative-z { position: relative; z-index: 2; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent-primary);
    outline-offset: 4px;
}

.serif-text { font-family: var(--font-heading) !important; font-weight: 400; }

/* -----------------------------------------
   3. Typography
----------------------------------------- */
.premium-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.premium-heading em {
    font-style: italic;
    color: var(--accent-primary);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 42, 93, 0.07);
    border-radius: 100px;
    border: 1px solid rgba(201, 42, 93, 0.15);
}

.section-eyebrow.light {
    background: rgba(255,255,255,0.1);
    color: var(--accent-secondary);
    border-color: rgba(232,180,184,0.2);
}

.section-header { margin-bottom: 5rem; }
.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.text-light { color: var(--text-light); }
.text-light-muted { color: rgba(255,255,255,0.65); }
.centered-aligned { text-align: center; }
.gradient-text {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------------------
   4. Page Loader
----------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-base);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-brand {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    animation: loaderPulse 1.5s ease infinite alternate;
}

@keyframes loaderPulse {
    from { opacity: 0.5; transform: scale(0.97); }
    to   { opacity: 1;   transform: scale(1); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(201, 42, 93, 0.15);
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow));
    border-radius: 100px;
    animation: loaderFill 1.8s var(--ease-smooth) forwards;
}

@keyframes loaderFill {
    from { width: 0%; }
    to   { width: 100%; }
}

.loader-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* -----------------------------------------
   5. Custom Cursor
----------------------------------------- */
@media (pointer: fine) {
    body { cursor: none; }

    .cursor-dot, .cursor-ring {
        position: fixed;
        top: 0; left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
    }

    .cursor-dot {
        width: 20px; height: 20px;
        background-color: var(--accent-primary);
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
        mask-size: contain; -webkit-mask-size: contain;
        mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
        mask-position: center; -webkit-mask-position: center;
        transition: transform 0.3s var(--ease-expo), background-color 0.3s;
    }

    .cursor-ring {
        width: 44px; height: 44px;
        border: 1.5px solid rgba(201, 42, 93, 0.35);
        border-radius: 50%;
        transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.4s;
    }

    body.hovering .cursor-dot {
        transform: translate(-50%, -50%) scale(1.5);
        background-color: var(--accent-glow);
        filter: drop-shadow(0 0 10px rgba(240, 98, 146, 0.8));
        animation: heartPulse 0.9s infinite alternate var(--ease-smooth);
    }

    body.hovering .cursor-ring {
        width: 65px; height: 65px;
        border-color: rgba(240, 98, 146, 0.5);
        background: rgba(240, 98, 146, 0.04);
        animation: ringPulse 0.9s infinite alternate var(--ease-smooth);
    }

    @keyframes heartPulse {
        from { filter: drop-shadow(0 0 6px rgba(240, 98, 146, 0.5)); }
        to   { filter: drop-shadow(0 0 18px rgba(240, 98, 146, 1)); }
    }

    @keyframes ringPulse {
        from { transform: translate(-50%, -50%) scale(0.92); }
        to   { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 20px rgba(240, 98, 146, 0.25); }
    }
}

/* -----------------------------------------
   6. Navigation
----------------------------------------- */
.premium-nav {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: var(--container-width);
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    border-radius: 100px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    outline: 1px solid var(--glass-border-outer);
    box-shadow: var(--glass-shadow);
    z-index: 100;
    transition: all 0.5s var(--ease-expo);
}

.premium-nav.scrolled {
    background: rgba(252, 250, 250, 0.92);
    box-shadow: 0 8px 30px rgba(201, 42, 93, 0.1);
    height: 65px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.brand-heart {
    width: 28px; height: 28px;
    background: #fff;
    border: 1px solid rgba(201, 42, 93, 0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: transform 0.4s var(--ease-back);
}

.brand-heart svg { width: 14px; height: 14px; }
.brand-heart img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.brand-heart.small { width: 22px; height: 22px; }
.brand-heart.small svg { width: 11px; height: 11px; }
.brand-heart.small img { border-radius: 5px; }
.nav-brand:hover .brand-heart { transform: scale(1.15) rotate(-10deg); }

.trust-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, #fff 0%, #fcf6f8 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.trust-card {
    padding: 1.4rem;
}

.trust-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.trust-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.launch-line,
.launch-countdown,
.priority-count,
.waitlist-status {
    margin: 0.4rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.launch-countdown {
    color: #fff;
    font-weight: 700;
}

.waitlist-status {
    min-height: 1.3rem;
    font-weight: 600;
}

.nav-brand .brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent-primary);
    transition: width 0.3s var(--ease-expo);
    border-radius: 100px;
}

.nav-link:hover { color: var(--accent-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link--active { color: var(--accent-primary) !important; }
.nav-link--active::after { width: 100% !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-main);
    border-radius: 100px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(252, 250, 250, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover { color: var(--accent-primary); }

.mobile-nav-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-primary);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* -----------------------------------------
   7. Buttons & Badges
----------------------------------------- */
.btn-solid-premium, .btn-primary-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-expo);
    cursor: none;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-arrow { width: 16px; height: 16px; transition: transform 0.3s var(--ease-back); }
.btn-solid-premium:hover .btn-arrow,
.btn-primary-glass:hover .btn-arrow { transform: translateX(4px); }

.btn-sm { padding: 0.75rem 1.5rem !important; font-size: 0.8rem !important; }

.btn-solid-premium {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-deep));
    color: white;
    box-shadow: 0 6px 20px rgba(201, 42, 93, 0.28);
}

.btn-solid-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-solid-premium:hover::before { opacity: 1; }
.btn-solid-premium:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(201, 42, 93, 0.38); }
.btn-solid-premium .btn-text { position: relative; z-index: 1; }
.btn-solid-premium .btn-arrow { position: relative; z-index: 1; }

.btn-primary-glass {
    background: rgba(201, 42, 93, 0.06);
    border: 1px solid rgba(201, 42, 93, 0.25);
    color: var(--accent-primary);
}
.btn-primary-glass:hover { background: rgba(201, 42, 93, 0.12); border-color: var(--accent-primary); }

/* App Store Buttons */
.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #111;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: all 0.4s var(--ease-expo);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-app-store::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,42,93,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-app-store:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(201, 42, 93, 0.3); }
.btn-app-store:hover::before { opacity: 1; }
.store-icon { width: 24px; height: 24px; position: relative; z-index: 1; }
.store-text-group { display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 1; }
.store-sub { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; line-height: 1; margin-bottom: 0.15rem; }
.store-main { font-size: 1.05rem; font-weight: 700; line-height: 1; letter-spacing: -0.2px; }

/* Hero Pill Badge */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    outline: 1px solid rgba(201, 42, 93, 0.1);
    box-shadow: 0 4px 15px rgba(201, 42, 93, 0.06);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.pulse-dot {
    width: 7px; height: 7px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
    flex-shrink: 0;
}

@keyframes badgePulse {
    0%   { box-shadow: 0 0 0 0 rgba(201, 42, 93, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(201, 42, 93, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 42, 93, 0); }
}

/* -----------------------------------------
   8. Hero Section — FIXED CENTERING
----------------------------------------- */
.hero-app-showcase {
    position: relative;
    min-height: 100vh;
    padding-top: 170px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.hero-ambient-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw; height: 60vw;
    max-width: 1100px;
    background: radial-gradient(ellipse at center, rgba(232, 180, 184, 0.22) 0%, rgba(201, 42, 93, 0.07) 40%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    border-radius: 50%;
    animation: glowDrift 8s ease-in-out infinite alternate;
}

@keyframes glowDrift {
    from { transform: translateX(-50%) scale(1); }
    to   { transform: translateX(-50%) scale(1.08) translateY(-20px); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,42,93,0.06) 0%, transparent 70%);
    top: -100px; right: -200px;
    filter: blur(40px);
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,180,184,0.1) 0%, transparent 70%);
    bottom: 20%; left: -100px;
    filter: blur(30px);
    animation: orbFloat 9s ease-in-out infinite reverse;
}

.orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(240,98,146,0.08) 0%, transparent 70%);
    top: 30%; left: 10%;
    filter: blur(20px);
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-30px) rotate(180deg); }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7.5vw, 7rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.title-static { color: var(--text-main); }

.title-typewriter {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    font-style: italic;
    font-weight: 400;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--accent-primary);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    font-weight: 300;
    font-style: normal;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-body-wrapper { max-width: 600px; margin: 0 auto 2.5rem; }
.hero-body { font-size: 1.15rem; color: var(--text-muted); font-weight: 400; line-height: 1.7; }

.centered-aligned-flex {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Social proof */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.proof-avatars { display: flex; }

.proof-avatars img {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
}

.proof-avatars img:first-child { margin-left: 0; }

.proof-text { display: flex; flex-direction: column; line-height: 1.3; }
.proof-stars { color: #F5A623; font-size: 0.75rem; letter-spacing: 1px; }
.proof-text p { font-size: 0.82rem; color: var(--text-muted); }
.proof-text strong { color: var(--text-main); }

/* ------------------------------------------------
   Hero App Mockup — CENTERED FIX
   Uses width: 100% + negative margin trick so the
   element stays in normal flow and is genuinely
   centered relative to the viewport, not offset by
   any scrollbar gap or parent padding.
------------------------------------------------ */
.hero-mockup-wrapper {
    /* Full-bleed wrapper that stays in flow */
    width: 100vw;
    margin-left: calc(-50vw + 50%);   /* pulls to true viewport edge */
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 3vw;                    /* breathing room on small screens */
}

.hero-app-mockup {
    /* ← removed position:relative + left/transform centering trick
       The wrapper above handles centering via flex */
    width: 100%;
    max-width: 1750px;
    aspect-ratio: 21 / 9;
}

.glass-phone-frame {
    width: 100%; height: 100%;
    border-radius: 40px;
    background: rgba(255,255,255,0.3);
    border: 6px solid rgba(255,255,255,0.85);
    box-shadow:
        0 60px 120px rgba(201, 42, 93, 0.18),
        0 20px 50px rgba(0,0,0,0.08),
        inset 0 0 40px rgba(255,255,255,0.6);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(252, 250, 250, 0.15) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.mockup-media {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 33px;
}

/* -----------------------------------------
   9. Glass Magazine Overlays
----------------------------------------- */
.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    outline: 1px solid var(--glass-border-outer);
    box-shadow: var(--glass-shadow);
    padding: 1.6rem 2rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    z-index: 5;
    max-width: 360px;
    transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
}

.glass-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(201, 42, 93, 0.12), inset 0 1px 0 rgba(255,255,255,1);
}

.magazine-quote { bottom: 7%; left: 4%; max-width: 430px; }

.quote-accent-line {
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow));
    border-radius: 100px;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: clamp(1.15rem, 1.8vw, 1.8rem);
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.quote-author {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.magazine-phase { top: 7%; right: 4%; max-width: 310px; }

.phase-intel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-dot {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.day-dot::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-glow);
}

.phase-badge { color: var(--accent-glow); font-weight: 700; }

.magazine-phase h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.phase-tip { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; margin-bottom: 1rem; }

.phase-energy-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.energy-label { color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.energy-track {
    flex: 1; height: 5px;
    background: rgba(201, 42, 93, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.energy-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow));
    border-radius: 100px;
    width: 0%;
    transition: width 1.5s var(--ease-expo);
}

.energy-fill.animated { width: 94%; }
.energy-val { color: var(--accent-primary); font-weight: 700; }

.magazine-notif { bottom: 7%; right: 4%; max-width: 280px; padding: 1.2rem 1.5rem; border-radius: 22px; }

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.notif-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(201, 42, 93, 0.2);
    object-fit: cover;
}

.notif-badge {
    background: rgba(201, 42, 93, 0.1);
    color: var(--accent-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-content { color: var(--text-main); font-size: 0.88rem; margin-bottom: 0.8rem; line-height: 1.4; }

.read-more {
    font-size: 0.95rem;
    color: var(--accent-primary);
    display: inline-block;
    transition: transform 0.3s var(--ease-back);
}

.read-more:hover { transform: translateX(5px); }

.floating-stat {
    position: absolute;
    bottom: 30%;
    left: 4%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    background: rgba(29, 17, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-icon { font-size: 1.2rem; }
.stat-text { display: flex; flex-direction: column; line-height: 1.2; }
.stat-text strong { color: white; font-size: 0.95rem; font-weight: 700; }
.stat-text span { color: rgba(255,255,255,0.55); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; }

.data-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 42, 93, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: fadeInHint 1s ease 2.5s both;
}

@keyframes fadeInHint {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 0.7; transform: translateY(0); }
}

.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(201, 42, 93, 0.3);
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px; height: 7px;
    background: var(--accent-primary);
    border-radius: 100px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* -----------------------------------------
   10. Marquee Strip
----------------------------------------- */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: var(--accent-primary);
    padding: 0.9rem 0;
    position: relative;
    z-index: 3;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
}

.marquee-dot { color: rgba(255,255,255,0.4) !important; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* -----------------------------------------
   11. Bento Grid (Ecosystem) — ASYMMETRIC PREMIUM LAYOUT
----------------------------------------- */
.about-bento-section { padding: var(--section-pad) 0; }

.bento-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.bento-grid.bento-asymmetric {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    outline: 1px solid var(--glass-border-outer);
    box-shadow: var(--glass-shadow);
    border-radius: 36px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.6s var(--ease-expo);
    animation-delay: var(--bento-delay, 0s);
    opacity: 1; /* Ensure visibility for GSAP animations */
}

.glass-panel:hover {
    transform: translateY(-8px) scale(1.008);
    box-shadow: 0 32px 80px rgba(201, 42, 93, 0.12), 0 12px 28px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.95);
}

/* FEATURED CARD: Premium Anchor Card (Full Width) */
.bento-featured {
    grid-column: 1 / -1;
    min-height: 620px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.72) 0%, 
        rgba(232, 180, 184, 0.04) 100%
    );
    border-color: rgba(201, 42, 93, 0.2);
    opacity: 1 !important; /* Override GSAP animations for visibility */
}

.bento-featured::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 42, 93, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bento-featured::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bento-featured .bento-content,
.bento-featured .bento-visual {
    position: relative;
    z-index: 1;
}

/* SUPPORT CARDS: Surrounding Feature Cards */
.bento-support {
    grid-column: span 1;
    min-height: 420px;
    backdrop-filter: var(--glass-blur);
    opacity: 1 !important; /* Override GSAP animations for visibility */
}

.bento-grid.bento-asymmetric {
    grid-template-columns: repeat(2, 1fr);
}

.bento-grid.bento-asymmetric > .bento-featured {
    grid-column: 1 / -1;
}

.bento-grid.bento-asymmetric > .bento-support {
    grid-column: span 1;
}

/* STATS ROW: Elegant Metrics Bar */
.bento-stats-row {
    grid-column: 1 / -1;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    min-height: 160px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.58) 0%,
        rgba(232, 180, 184, 0.03) 50%,
        rgba(255, 255, 255, 0.58) 100%
    );
    border: 1px solid rgba(201, 42, 93, 0.15);
    opacity: 1 !important; /* Override GSAP animations for visibility */
}

.stats-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

/* Legacy classes for backward compatibility */
.bento-large  { grid-column: span 1; min-height: 560px; }
.bento-medium { grid-column: span 1; min-height: 380px; }
.bento-stats  {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 2.5rem 3rem;
    min-height: auto;
}

.bento-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    background: rgba(201, 42, 93, 0.08);
    border: 1px solid rgba(201, 42, 93, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.15;
}

.bento-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.bento-visual {
    flex-grow: 1;
    margin-top: 2rem;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats row */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-secondary);
    display: inline;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(201, 42, 93, 0.12);
}

/* Community bento visual */
.community-visual { flex-direction: column; background: rgba(232, 180, 184, 0.06); border-radius: 22px; padding: 1.5rem; gap: 1rem; }

.community-bubbles { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    flex: 1;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease-back);
}

.bubble:hover { transform: translateY(-4px); }

.bubble img { width: 100%; height: 70px; object-fit: cover; border-radius: 12px; }
.bubble-icon { font-size: 1.8rem; }
.bubble-label { font-size: 0.72rem; font-weight: 700; text-align: center; color: var(--text-muted); letter-spacing: 0.5px; }

.online-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Habits visual */
.habits-visual { flex-direction: column; justify-content: flex-start; padding: 0; }
.habit-list { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }

.habit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.habit-item.done { color: var(--text-main); background: rgba(201, 42, 93, 0.04); border-color: rgba(201, 42, 93, 0.12); }

.habit-check {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.habit-check-empty {
    width: 22px; height: 22px;
    border: 2px solid rgba(201, 42, 93, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.habit-item span:nth-child(2) { flex: 1; }
.habit-streak { font-size: 0.8rem; margin-left: auto; }

/* -----------------------------------------
   12. AI Dashboard (Bento Large)
----------------------------------------- */
.ai-calendar-container {
    background: rgba(232, 180, 184, 0.08);
    border: 1px solid rgba(255,255,255,0.6);
}

.ai-glow-bg {
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201, 42, 93, 0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    animation: slowSpin 12s linear infinite;
}

@keyframes slowSpin {
    0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50%  { transform: translate(-50%, -50%) rotate(180deg) scale(1.15); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.calendar-ui-mockup {
    width: 78%;
    max-width: 440px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.07);
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cal-month {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.ai-status-badge {
    background: rgba(240, 98, 146, 0.1);
    border: 1px solid rgba(240, 98, 146, 0.25);
    color: var(--accent-glow);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex; align-items: center; gap: 0.4rem;
}

.ai-status-badge .ai-dot { background: var(--accent-glow); }

.cal-ring-wrapper {
    position: relative;
    width: 200px; height: 200px;
    margin: 0 auto 2rem;
}

.cycle-ring { width: 100%; height: 100%; transform: rotate(-90deg); }

.ring-bg, .ring-progress, .ring-indicator { fill: none; stroke-width: 5.5; }
.ring-bg { stroke: rgba(232, 180, 184, 0.3); }

.ring-progress {
    stroke: url(#ringGrad);
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    filter: drop-shadow(0 0 4px rgba(201, 42, 93, 0.4));
}

.ring-indicator { stroke: var(--accent-primary); stroke-width: 7; fill: #fff; filter: drop-shadow(0 0 4px rgba(201, 42, 93, 0.5)); }

.ring-center-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex; flex-direction: column; gap: 0.1rem;
}

.day-number {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
}

.day-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.phase-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

.ai-insight-box {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 8px 25px rgba(201, 42, 93, 0.08);
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    transform: translateY(20px);
    opacity: 0;
    margin-bottom: 1rem;
}

.insight-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    color: white;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 42, 93, 0.3);
}

.insight-icon svg { width: 16px; height: 16px; }
.insight-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-primary); margin-bottom: 0.25rem; }
.insight-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; }

.mini-phase-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.mini-phase {
    width: 36px; height: 28px;
    border-radius: 100px;
    background: rgba(232, 180, 184, 0.15);
    border: 1px solid rgba(232, 180, 184, 0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mini-phase.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(201, 42, 93, 0.3);
}

.mini-phase.active {
    background: rgba(201, 42, 93, 0.1);
    border-color: rgba(201, 42, 93, 0.3);
    color: var(--accent-primary);
}

/* Bento responsive — asymmetric layout adaptations */
@media (max-width: 1024px) {
    .bento-grid.bento-asymmetric {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bento-featured {
        grid-column: 1 / -1;
        min-height: 560px;
    }
    .bento-support {
        grid-column: 1 / -1;
        min-height: 380px;
    }
    .bento-stats-row {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        gap: 1.5rem;
    }
    .bento-grid.bento-asymmetric {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bento-featured {
        grid-column: 1 / -1;
        min-height: 480px;
        padding: 2.5rem;
        border-radius: 28px;
    }
    .bento-support {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 2.5rem;
        border-radius: 28px;
    }
    .bento-stats-row {
        grid-column: 1 / -1;
        flex-direction: column !important;
        padding: 2.5rem;
        min-height: auto;
        gap: 1.5rem;
    }
    .stats-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-item {
        width: 100%;
    }
    .stat-divider {
        display: none;
    }
    .calendar-ui-mockup {
        width: 92%;
        padding: 1.5rem;
    }
    .glass-panel {
        padding: 2rem;
        border-radius: 24px;
    }
}

/* Legacy responsive rules */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large  { grid-column: span 2; }
    .bento-medium { grid-column: span 1; }
    .bento-stats  { grid-column: span 2; }
}

/* -----------------------------------------
   13. Safety Net Section
----------------------------------------- */
.safety-net-section { padding: var(--section-pad) 0; position: relative; }

.safety-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 42, 93, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(232, 180, 184, 0.05) 0%, transparent 35%);
    pointer-events: none;
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.shield-icon-wrapper {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(201, 42, 93, 0.15);
    border: 1px solid rgba(201, 42, 93, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    position: relative;
}

.shield-pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(201, 42, 93, 0.3);
    animation: shieldPulse 3s ease-out infinite;
}

@keyframes shieldPulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.shield-icon-wrapper svg { width: 30px; height: 30px; position: relative; z-index: 1; }

.premium-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.premium-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.premium-list li{
    display:flex;
    align-items:center;
    gap:10px;
}

.list-icon{
    width: 28px;
    min-width: 28px;
    margin-right: 10px;
}
.list-body strong { display: block; font-size: 1rem; color: rgba(255,255,255,0.95); margin-bottom: 0.3rem; }
.list-body p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-top: 1rem; }
.text-light-muted.section-desc { color: rgba(255,255,255,0.55); }

.security-mockup {
    background: rgba(20, 8, 14, 0.7);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 30px;
    backdrop-filter: blur(30px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dot-glow {
    width: 10px; height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 12px #4CAF50;
    flex-shrink: 0;
}

.mockup-live-badge {
    margin-left: auto;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.encrypt-animation {
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.encrypt-line {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.12);
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
    animation: encrypt 2s ease forwards;
    animation-delay: calc(var(--i) * 0.4s);
    width: 0;
}

@keyframes encrypt {
    to { width: 100%; color: rgba(232, 180, 184, 0.25); }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.9rem 1.5rem;
    background: rgba(232, 180, 184, 0.08);
    color: var(--accent-secondary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(232, 180, 184, 0.18);
}

.verified-badge svg { width: 16px; height: 16px; }

.safety-metrics { display: flex; flex-direction: column; gap: 0.7rem; }

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
}

.metric-val { font-weight: 600; }
.metric-val.safe { color: #4CAF50; }

@media (max-width: 900px) { .layout-split { grid-template-columns: 1fr; gap: 3rem; } }

/* -----------------------------------------
   14. Growth Library
----------------------------------------- */
.library-section { padding: var(--section-pad) 0; }

.book-carousel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.library-card { border-radius: 28px; overflow: hidden; cursor: none; }

.book-cover {
    width: 100%;
    height: 400px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.09);
    position: relative;
}

.book-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-expo);
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(29, 17, 20, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.book-cta {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    background: rgba(201, 42, 93, 0.8);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.library-card:hover .book-cover img { transform: scale(1.06); }
.library-card:hover .book-overlay { opacity: 1; }

.book-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.book-info h4 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--text-main); }
.book-info p { color: var(--text-muted); font-size: 0.9rem; }

/* -----------------------------------------
   15. Testimonials
----------------------------------------- */
.testimonials-section { padding: var(--section-pad) 0; background: rgba(232, 180, 184, 0.04); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation-delay: var(--bento-delay, 0s);
}

.testimonial-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1.1rem; line-height: 1.6; color: var(--text-main); flex: 1; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 42, 93, 0.08);
}

.testimonial-author img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 42, 93, 0.15);
}

.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-main); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* -----------------------------------------
   16. CTA Section
----------------------------------------- */
.cta-download-section { padding: var(--section-pad) 0; }

.cta-glass-box {
    background: var(--text-main);
    border-radius: 50px;
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(29, 17, 20, 0.25);
}

.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }

.cta-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 42, 93, 0.25) 0%, transparent 70%);
    top: -200px; left: -100px;
    filter: blur(60px);
    animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.15) 0%, transparent 70%);
    bottom: -150px; right: -50px;
    filter: blur(60px);
    animation: orbFloat 14s ease-in-out infinite reverse;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta-content { position: relative; z-index: 1; }
.cta-content .premium-heading { color: white; margin-bottom: 1.2rem; }
.cta-content .premium-heading em { color: var(--accent-secondary); }

.elegant-form { max-width: 540px; margin: 3rem auto 0; }

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 100px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    backdrop-filter: blur(15px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(232, 180, 184, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 42, 93, 0.1);
}

.input-icon { color: rgba(255,255,255,0.3); margin-right: 0.5rem; flex-shrink: 0; }
.input-icon svg { width: 18px; height: 18px; }

.input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    padding: 0.7rem 0.5rem;
}

.input-group input::placeholder { color: rgba(255,255,255,0.35); font-weight: 300; }

.form-footnote { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 1.2rem; }

@media (max-width: 600px) {
    .hud-wrapper {
        height: auto;
        overflow: hidden;
        padding: 2rem 0;
    }

    .hud-container {
        transform: scale(0.45);
        transform-origin: top center;
    }

    .quantum-core {
        width: 90px;
        height: 90px;
    }

    .quantum-core h2 {
        font-size: 1.2rem;
    }

    .hud-panel {
        padding: 0.8rem;
    }

    .panel-value {
        font-size: 1rem;
    }

    .panel-text {
        font-size: 0.65rem;
    }
}

/* -----------------------------------------
   17. Footer
----------------------------------------- */
.app-footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(201, 42, 93, 0.08);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-primary);
    font-weight: 700;
}

.footer-brand p { color: var(--text-muted); max-width: 260px; font-size: 1rem; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(201, 42, 93, 0.07);
    border: 1px solid rgba(201, 42, 93, 0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-back);
}

.social-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 42, 93, 0.3);
}

.social-btn svg { width: 16px; height: 16px; }

.footer-links h4 { font-size: 0.9rem; margin-bottom: 1.5rem; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 1.5px; }

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover { color: var(--accent-primary); transform: translateX(4px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 42, 93, 0.07);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(201, 42, 93, 0.06);
    border: 1px solid rgba(201, 42, 93, 0.12);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
}

@media (max-width: 900px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 1.2rem; text-align: center; }
}

@media (max-width: 560px) {
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

@media (max-width: 900px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------
   18. JS Reveal Utilities
----------------------------------------- */
.js-reveal-up, .js-reveal-scale, .js-reveal-notif {
    opacity: 1;
    will-change: transform, opacity;
}

/* -----------------------------------------
   19. Mobile Responsive Overrides
----------------------------------------- */
@media (max-width: 768px) {
    .hero-app-mockup { aspect-ratio: 4/3; }
    .hero-mockup-wrapper { padding: 0 2vw; }
    .glass-card { display: none; }
    .floating-stat { display: none; }
    .premium-heading { font-size: clamp(2.2rem, 7vw, 3.5rem); }
    .hero-title { font-size: clamp(2.8rem, 8vw, 5rem); }
    .social-proof { flex-direction: column; gap: 0.75rem; padding: 1rem; }
    .hero-buttons { gap: 0.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .premium-nav { width: calc(100% - 2rem); padding: 0 1.25rem; }
    .glass-panel { padding: 2rem; border-radius: 24px; }
    .cta-glass-box { padding: 4rem 1.5rem; border-radius: 32px; }
    .about-bento-section, .library-section, .safety-net-section, .cta-download-section { padding: 4rem 0; }
}

@media (max-width: 640px) {
    .hero-mockup-wrapper { padding: 0 3vw; }
    .hero-app-mockup { max-width: 100%; }
    .hero-body { font-size: 1rem; }
    .hero-title { text-align: center; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
    .mobile-menu { padding: 2rem 1.5rem; }
    .mobile-nav-link { font-size: 1.8rem; line-height: 1.2; }
    .mobile-nav-cta { padding: 1rem 1.8rem; }
    .footer-top-grid { gap: 2rem; }
    .testimonials-grid, .bento-grid, .library-card, .trust-grid { width: 100%; }
}

@media (max-width: 768px) {

    .hero-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-content {
        padding: 0 1rem;
        align-items: center;
    }

    .hero-title {
        text-align: center !important;
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-body-wrapper {
        text-align: center !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {

    .bento-grid,
    .feat-community-grid,
    .feat-growth-showcase,
    .feat-privacy-grid,
    .feat-community-preview,
    .testimonials-grid,
    .footer-top-grid,
    .feat-split {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {

    .orbital,
    .ring-inner,
    .ring-middle,
    .ring-outer {
        animation: none !important;
    }

    .hud-panel,
    .glass-panel,
    .feat-chat-mockup {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}