/* ─── Mistify v2 — Vibrant Light Mode ─── */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ─── Base ─── */
html {
    scroll-behavior: smooth;
    font-family: 'Space Grotesk', sans-serif;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
    background-color: #1A1A1A; /* Dark underneath so footer background matches */
    color: #1A1A1A;
}

/* ─── Floating Background Orbs (Flavor Glows) ─── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Lemon Mint — top left */
.bg-orb--1 {
    width: 65vw;
    height: 65vw;
    top: -20%;
    left: -22%;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.35) 0%, rgba(0, 191, 165, 0.2) 55%, transparent 80%);
    filter: blur(120px);
    animation: orb-drift-1 25s ease-in-out infinite alternate;
}

/* Watermelon Raspberry — bottom right */
.bg-orb--2 {
    width: 55vw;
    height: 55vw;
    bottom: -22%;
    right: -18%;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.3) 0%, rgba(194, 24, 91, 0.18) 55%, transparent 80%);
    filter: blur(140px);
    animation: orb-drift-2 30s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8vw, 12vh) scale(1.15); }
}

@keyframes orb-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10vw, -8vh) scale(1.1); }
}

/* ─── Light Glassmorphism Card ─── */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 50px rgba(255, 64, 129, 0.12),
                0 6px 30px rgba(255, 235, 59, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* ─── Science Step Number ─── */
.science-step-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(0, 191, 165, 0.55) 0%, rgba(255, 235, 59, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

/* ─── Flavor Card Hover Variants ─── */
.glass-card--lemon:hover {
    border-color: rgba(0, 191, 165, 0.35);
    box-shadow: 0 12px 50px rgba(255, 235, 59, 0.15),
                0 4px 30px rgba(0, 191, 165, 0.1);
}

.glass-card--watermelon:hover {
    border-color: rgba(255, 64, 129, 0.35);
    box-shadow: 0 12px 50px rgba(255, 64, 129, 0.15),
                0 4px 30px rgba(194, 24, 91, 0.08);
}

/* ─── Flavor Bottle Images ─── */
.flavor-bottle {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15))
            drop-shadow(0 8px 12px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
    will-change: transform;
}

.group:hover .flavor-bottle {
    transform: translateY(-12px) scale(1.05);
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.18))
            drop-shadow(0 12px 18px rgba(0, 0, 0, 0.1));
}

/* ═══════════════════════════════════════════════════ */
/* USE-CASE BENTO GRID                                 */
/* ═══════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 2.5rem;
    padding: 2.5rem 2.75rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease;
}

.bento-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 50px rgba(0, 191, 165, 0.12),
                0 8px 30px rgba(255, 235, 59, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Bento step number */
.bento-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom right, #34d399, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    margin-bottom: 0.75rem;
}

/* Mobile: stack to single column */
@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════ */
/* HERO EYEBROW                                        */
/* ═══════════════════════════════════════════════════ */
.hero-eyebrow {
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(0, 191, 165, 0.2);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ═══════════════════════════════════════════════════ */
/* HERO WATERMARK TEXT                                 */
/* ═══════════════════════════════════════════════════ */
.hero-watermark-text {
    font-size: 12vw;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.04);
    user-select: none;
    pointer-events: none;
}

@media (max-width: 767px) {
    .hero-watermark-text {
        font-size: 16vw;
    }
}

/* ═══════════════════════════════════════════════════ */
/* HERO FLOATING BOTTLE                                */
/* ═══════════════════════════════════════════════════ */
.hero-float-bottle {
    height: 65vh;
    max-height: 700px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2))
            drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: hero-bottle-float 6s ease-in-out infinite;
    will-change: transform;
}

@media (max-width: 767px) {
    .hero-float-bottle {
        height: 45vh;
    }
}

@keyframes hero-bottle-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

/* ═══════════════════════════════════════════════════ */
/* SOCIAL PROOF BANNER                                 */
/* ═══════════════════════════════════════════════════ */
.social-proof-banner {
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.social-proof-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-proof-stat {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, #FF6D00, #FF4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(255, 109, 0, 0.25));
}

@media (min-width: 768px) {
    .social-proof-stat {
        font-size: 5rem;
    }
}

/* ─── Lead Capture Input (Dark Footer) ─── */
.lead-input:focus {
    border-color: rgba(0, 191, 165, 0.5);
    box-shadow: 0 0 20px rgba(0, 191, 165, 0.15),
                0 0 40px rgba(255, 235, 59, 0.08);
}
/* ═══════════════════════════════════════════════════ */
/* FAQ ACCORDION                                       */
/* ═══════════════════════════════════════════════════ */
.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 191, 165, 0.25);
    box-shadow: 0 8px 40px rgba(0, 191, 165, 0.08);
}

.faq-item[open] {
    border-color: rgba(0, 191, 165, 0.3);
    box-shadow: 0 8px 40px rgba(0, 191, 165, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Hide native marker */
.faq-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    user-select: none;
}

.faq-summary::-webkit-details-marker,
.faq-summary::marker {
    display: none;
    content: '';
}

/* Custom + / × icon */
.faq-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #00BFA5;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-icon::before {
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Rotate to × when open */
.faq-item[open] .faq-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Answer area */
.faq-answer {
    padding: 0 1.75rem 1.5rem;
}

/* ═══════════════════════════════════════════════════ */
/* INFINITE TICKER TAPE                                */
/* ═══════════════════════════════════════════════════ */
.ticker-wrap {
    background: linear-gradient(90deg, #00BFA5, #FFEB3B, #FF4081, #C2185B, #00BFA5);
    background-size: 200% 100%;
    animation: ticker-bg-shift 8s linear infinite;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1A1A1A;
    padding: 0 12px;
}

.ticker-dot {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(26, 26, 26, 0.5);
    padding: 0 8px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ticker-bg-shift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}



/* ═══════════════════════════════════════════════════ */
/* PENDULUM — SWEEP + ALTERNATING CROSSFADE            */
/*           + SPOTLIGHT TEXT                           */
/* ═══════════════════════════════════════════════════ */

/* Spotlight gradient on background text — synced to bottle sweep */
.spotlight-text {
    background: linear-gradient(90deg, #d1d5db 0%, #d1d5db 40%, #111827 50%, #d1d5db 60%, #d1d5db 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: text-sweep 5s ease-in-out infinite alternate;
}

@keyframes text-sweep {
    0%   { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}
/* ═══════════════════════════════════════════════════ */

/* Container — sweeps left-to-right and back */
.pendulum-track {
    animation: sweep 5s ease-in-out infinite alternate;
    will-change: left;
}

@keyframes sweep {
    0%   { left: 15%; }
    100% { left: 85%; }
}

/* Lemon — visible on left, fades out on right */
.fade-lemon {
    animation: morph-lemon 5s ease-in-out infinite alternate;
    will-change: opacity;
}

@keyframes morph-lemon {
    0%, 20%   { opacity: 1; }
    80%, 100% { opacity: 0; }
}

/* Watermelon — hidden on left, fades in on right */
.fade-watermelon {
    animation: morph-watermelon 5s ease-in-out infinite alternate;
    will-change: opacity;
}

@keyframes morph-watermelon {
    0%, 20%   { opacity: 0; }
    80%, 100% { opacity: 1; }
}

/* ─── Custom Scrollbar (Light Aesthetic) ─── */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
    background: #D0D0D0;
    border-radius: 5px;
    border: 2px solid #FAFAFA;
}

::-webkit-scrollbar-thumb:hover {
    background: #00BFA5;
}

/* ─── Autofill Styles ─── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #222 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ─── Footer Logo Invert (dark bg) ─── */
.footer-logo-invert {
    filter: invert(1) brightness(2);
}

/* ─── Main content shadow for curtain effect ─── */
#main-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}


