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

:root {
    --accent: #ff2e92;
    --accent-purple: #c026d3;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.luxury-black {
    background-color: #0a0a0a;
}

.section-dark {
    background-color: #0a0a0a;
}

.text-accent {
    color: #ff2e92;
}

.bg-accent {
    background-color: #ff2e92;
}

.border-accent {
    border-color: #ff2e92;
}

.neon-pink {
    box-shadow: 0 0 15px rgba(255, 46, 146, 0.4);
}

.premium-card {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.2s ease;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: #ff2e92;
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, #ff2e92, #c026d3);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.rotating-text {
    position: relative;
    height: 2.25rem;
    /* adjusted for smaller but visible text */
    overflow: hidden;
    display: block;
    /* block for left alignment with headline */
    min-width: 260px;
    /* wide enough for full "More Free Time" at this size */
    text-align: left;
    /* left aligned */
    width: fit-content;
    /* shrink to content width */
}

.rotating-text .phrase {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(42px);
    /* match new height */
    transition: none;
    white-space: nowrap;
    font-weight: 700;
    /* bold */
    font-size: 1.5rem;
    /* smaller than before, ~24px mobile */
    letter-spacing: 0.5px;
    color: #ff2e92;
    /* pink/magenta like Sakura */
}

/* Desktop: a bit larger but not huge */
@media (min-width: 768px) {
    .rotating-text {
        height: 2.75rem;
        min-width: 300px;
    }

    .rotating-text .phrase {
        font-size: 2rem;
        /* ~32px */
        font-weight: 700;
        transform: translateY(42px);
        letter-spacing: 0.75px;
    }
}

.hero-headline {
    font-size: clamp(2.75rem, 9vw, 5.25rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -3px;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.marquee {
    display: flex;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Ticker styling for premium look with icons (inside hero left column) */
#hero .marquee img,
.marquee img {
    height: 2rem;
    /* larger consistent size ~32px base */
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}

@media (min-width: 768px) {

    #hero .marquee img,
    .marquee img {
        height: 2.25rem;
        /* ~36px on desktop */
    }
}

.service-icon {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-card:hover .service-icon {
    transform: scale(1.08) rotate(2deg);
}

.faq-question {
    transition: color 0.2s ease;
}

.faq-question[open] .faq-question-text {
    color: #ff2e92;
}

.modal {
    animation: modalPop 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.accent-gradient {
    background: linear-gradient(135deg, #ff2e92, #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-border {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.feminine-glow {
    box-shadow: 0 0 40px -10px rgb(255 46 146 / 0.15);
}

.nav-scrolled {
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
}

.benefit-number {
    font-size: 13px;
    letter-spacing: 2px;
}

.mock-dashboard {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.growth-card:hover {
    border-color: rgba(255, 46, 146, 0.3);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.growth-card .progress-fill,
.growth-card .bar {
    /* GSAP handles animation; no css transition to avoid conflict */
}

/* PERFORMANCE card progress bar styling for better visibility */
.mock-dashboard .progress-fill {
    transition: none;
    /* ensure GSAP controls */
}

/* Subtle lift on growth cards for premium hover */
.growth-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ========================================
   CHAT CONVERSIONS - modern colorful bars
   Better mobile: bigger bars, readable labels, spacing
   ======================================== */
.chat-bars {
    min-height: 160px;
}

.chat-bars .bar {
    /* Initial state for GSAP grow animation + premium depth */
    will-change: height;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    position: relative;
}

.chat-bars .bar::after {
    /* subtle top highlight for modern glassy bar look */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    pointer-events: none;
}

/* Mobile-first improvements: larger, more breathing room */
@media (max-width: 639px) {
    .chat-bars {
        min-height: 175px;
    }

    .chat-bars .bar {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .chat-bars .bar::after {
        height: 4px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
}

/* Larger on sm+ for desktop readability */
@media (min-width: 640px) {
    .chat-bars {
        min-height: 170px;
    }
}

.form-input {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: #ff2e92;
    box-shadow: 0 0 0 3px rgba(255, 46, 146, 0.1);
    outline: none;
}

.play-overlay {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.creator-card {
    transition: transform 0.4s cubic-bezier(0.23, 1.0, 0.32, 1), box-shadow .3s ease;
}

.creator-card:hover {
    transform: translateY(-4px);
}

.nav-item {
    font-size: 0.95rem;
    letter-spacing: -.2px;
}

.subtle-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Compact hero bottom to reduce gap to stats section */
#hero {
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    #hero {
        padding-bottom: 1rem;
    }
}

/* ========================================
   NAVBAR LOGO - centered horizontally (main element), only icon (no text), MUCH LARGER
   Desktop 110-120px, mobile 70-75px. Taller navbar h-24/h-36 for balance.
   ======================================== */

.navbar-logo {
    height: 72px;
    /* mobile ~70-75px - much larger, balanced with taller navbar */
    width: auto;
    display: block;
    object-fit: contain;
    /* preserve aspect ratio, no distortion */
    flex-shrink: 0;
    /* Sharp premium rendering */
    image-rendering: crisp-edges;
    transition: transform 0.2s ease;
}

.navbar-logo-link:hover .navbar-logo {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .navbar-logo {
        height: 115px;
        /* desktop 110-120px - much larger, premium centered logo */
    }
}

/* Logo link wrapper - positioned absolutely for true horizontal centering in navbar */
.navbar-logo-link {
    align-items: center;
    z-index: 10;
}

/* Ensure the navbar logo is nicely centered vertically */
.navbar-logo-link img {
    vertical-align: middle;
}

.footer-logo {
    height: 105px;
    /* significantly larger (95-110px range), premium centered footer logo */
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0.75rem;
    /* extra breathing room below the large logo before the copyright text */
}

/* ========================================
   MOBILE MENU - fixed, smooth, premium layout
   ======================================== */

#mobile-menu {
    /* Starts below navbar (top-24 on mobile), doesn't overlap logo/nav */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

#mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Menu items */
.mobile-link {
    transition: all 0.2s ease;
}

.mobile-link:hover {
    color: white;
    transform: translateX(4px);
}

/* Close button (the navbar toggle when open) looks clean */
#mobile-menu-btn i.fa-times {
    color: #ff2e92;
}

/* Ensure menu content doesn't have weird overlaps */
#mobile-menu .flex-col {
    min-height: 100%;
}

/* Subtle pulsing/glowing effect for APPLY NOW button - elegant premium pulse */
.apply-pulse {
    animation: subtle-pulse 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Elegant subtle pulse for GET STARTED button in growth section */
.get-started-pulse {
    animation: subtle-pulse 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
        box-shadow: 0 10px 15px -3px rgb(255 46 146 / 0.3), 0 4px 6px -4px rgb(255 46 146 / 0.3);
    }

    50% {
        transform: scale(1.035);
        filter: brightness(1.12);
        box-shadow: 0 10px 15px -3px rgb(255 46 146 / 0.45), 0 4px 6px -4px rgb(255 46 146 / 0.35);
    }
}

/* Subtle elegant pulse for LIVE badge in Payout Cleared card */
.live-badge {
    animation: live-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
}

@keyframes live-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
        filter: brightness(1.15);
    }
}

/* Expert's Pick section - split lines like Sakura, centered, premium */
.expert-pick {
    text-align: center;
    margin-bottom: 0.75rem;
    /* space to ticker */
}

@media (min-width: 768px) {
    .expert-pick {
        margin-bottom: 1.25rem;
    }
}

.expert-pick-top {
    font-size: 10px;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

@media (min-width: 768px) {
    .expert-pick-top {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

.expert-pick-bottom {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .expert-pick-bottom {
        font-size: 14px;
        letter-spacing: 1px;
        margin-top: 4px;
    }
}

/* ========================================
   BRAND PLATFORMS - "WE BUILD YOUR BRAND ACROSS"
   Perfectly centered title + logos, clean balanced premium spacing
   Responsive: good on mobile (tighter) + desktop (breathing room)
   ======================================== */
.brand-platforms {
    text-align: center;
}

.platforms-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    letter-spacing: 2.5px;
}

.platforms-logos {
    justify-content: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    /* Base gap improved via HTML classes + this for consistency */
}

.platforms-logos>div {
    /* Each platform pill: premium subtle hover lift + color pop */
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 2px 6px;
    border-radius: 6px;
}

.platforms-logos>div:hover {
    color: #ff2e92;
    transform: translateY(-1px);
    background: rgba(255, 46, 146, 0.06);
}

.platforms-logos i {
    opacity: 0.85;
    vertical-align: middle;
}

/* Mobile: compact yet readable, centered items don't feel cramped */
@media (max-width: 639px) {
    .platforms-logos {
        max-width: 100%;
    }

    .platforms-logos>div {
        padding: 1px 4px;
    }
}

/* Desktop / large: the max-width + justify-center keeps the cluster balanced and centered */
@media (min-width: 768px) {
    .platforms-logos {
        /* spacing primarily driven by responsive Tailwind classes on element for flexibility */
    }
}