﻿:root {
  --ff-pink: #FF2F86;
  --ff-pink2: #E91E73;
  --ff-purple: #FF2F86;
  --ff-bg: #03040A;
  --ff-card: #0D111A;
  --ff-card2: #111622;
  --ff-border: rgba(255,255,255,0.07);
  --ff-border2: rgba(255,255,255,0.10);
  --ff-text: #F8FAFC;
  --ff-muted: #C7CEDD;
  --ff-dim: #7F889A;
  --ff-green: #56D93F;
  --ff-gold: #F5B83D;
}

/* Generals */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #03040A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-landing {
    --ff-purple: #FF2F86;
    --ff-purple-light: #FF7AB8;
    --ff-fire: #FF3B30;
    --ff-fire-soft: #FF6B6B;
    --ff-bg: #0f0a1a;
    --ff-white: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ff-white);
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}

.ff-landing *, .ff-landing *::before, .ff-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ff-landing a {
    color: inherit;
    text-decoration: none;
}

/* ── Full-page: banner-hq.png stationary behind hero AND all sections below ── */
/* Gradient layer: no tint over hero (hero has its own ::before overlays),       */
/*                 heavy dark-purple tint from 100vh down over post-hero content */
/* Image layer:    fixed — pinned, never scrolls                                 */
.ff-landing {
    background-image:
        linear-gradient(to bottom, transparent 100vh, rgba(8, 0, 18, 0.82) 100vh),
        url('/assets/images/banner-hq.png');
    background-attachment: scroll, fixed;
    background-size: auto, cover;
    background-position: top center, center center;
    background-repeat: no-repeat, no-repeat;
}

/* ── Hero background video ── */
/* ── Right: video column ── */
.ff-hero-video-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

/* Colour-tinted blend overlay — no hardcoded colours, all semi-transparent */
.ff-hero-video-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20vw;
    width: calc(100% + 20vw);
    height: 100%;
    background:
        /* subtle purple tint over the video area only */
        linear-gradient(to right, transparent 0%, rgba(60,0,80,0.15) 35%, rgba(60,0,80,0.08) 70%, transparent 100%),
        /* top/bottom vignette on the video column */
        linear-gradient(180deg, rgba(8,0,6,0.50) 0%, transparent 35%, rgba(8,0,6,0.50) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Video bleeds 20vw leftward */
.ff-hero-video {
    position: absolute;
    top: 0;
    left: -20vw;
    width: calc(100% + 20vw);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, black 55%);
    filter: brightness(1.45) contrast(1.10) saturate(0.90);
}

/* ── Hero ── */
.ff-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1rem 3rem;
    position: relative;
    color: #fff;
    overflow: clip; /* clip without creating scroll — allows -20vw bleed to show */
}

/* content wrapper: transparent passthrough, keeps z-index above video */
.ff-hero-content {
    display: contents;
}

/* every direct hero child sits above the ::before blend overlay */
.ff-hero-content > * {
    position: relative;
    z-index: 2;
}

.ff-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1; /* sits OVER the video, blending it into the bg */
    background:
        /* strong left-edge vignette — fades hard to transparent by ~25% so no colour mismatch */
        linear-gradient(to right, rgba(8,0,6,0.92) 0%, rgba(8,0,6,0.70) 12%, rgba(8,0,6,0.20) 28%, transparent 45%),
        /* matching right-edge vignette — mirrors the left */
        linear-gradient(to left, rgba(8,0,6,0.85) 0%, rgba(8,0,6,0.55) 10%, rgba(8,0,6,0.15) 25%, transparent 45%),
        /* rich purple bloom fills centre and left */
        radial-gradient(ellipse 110% 85% at 38% 50%, rgba(100,0,160,0.60) 0%, transparent 68%),
        /* warm dark-red on right to tie with video silhouette */
        radial-gradient(ellipse 65% 75% at 88% 50%, rgba(130,10,45,0.45) 0%, transparent 65%),
        /* top/bottom vignette */
        linear-gradient(180deg, rgba(8,0,6,0.75) 0%, rgba(8,0,6,0.10) 50%, rgba(8,0,6,0.75) 100%);
    pointer-events: none;
}

.ff-logo-wrap {
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
    text-align: center;
}

.ff-logo-wrap img {
    height: clamp(40px, 8vw, 62px);
    width: auto;
    display: inline-block;
}

/* ── Countdown ── */
.ff-countdown {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 0.5rem;
}

.ff-countdown .ff-label {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ff-countdown .ff-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.ff-countdown .ff-timer .ff-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5ch;
}

.ff-countdown .ff-timer .ff-unit .ff-value {
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,107,107,0.6), 0 0 25px rgba(255,59,48,0.4), 0 0 40px rgba(255,20,147,0.25);
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,107,107,0.5));
    animation: ff-ticker-pulse 1s ease-in-out infinite;
}

.ff-countdown .ff-timer .ff-unit .ff-unitlabel {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
}

.ff-countdown .ff-timer .ff-sep {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    line-height: 1;
    margin-top: -0.5rem;
}

@keyframes ff-ticker-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.92; transform: scale(1.02); }
}

/* ── Hero heading ── */
.ff-hero h1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    
    /* Neon border wrapping the h1 sign */
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    border: 4px solid #f9efff;
    box-shadow: 
        0 0 10px #9d00ff,
        0 0 20px #9d00ff,
        0 0 40px #9d00ff,
        0 0 60px #5e0099,
        inset 0 0 15px #9d00ff,
        inset 0 0 30px #9d00ff;
        
    /* Make it behave exactly like ff-neon-alt */
    animation: ff-neon-alt-alive 8s infinite;
}

/* ── Neon glow text ── */
.ff-neon {
    position: relative;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 4px;
    color: #1a0010;
    -webkit-text-stroke: 5px #ffffff;
    paint-order: stroke fill;
    text-shadow: 0 0 3px #ffffff, 0 0 8px rgba(255,102,196,0.5), 0 0 16px rgba(255,20,147,0.3), 0 0 30px rgba(255,20,147,0.15);
}

.ff-hero h1 .ff-neon {
    font-size: inherit;
}

.ff-neon::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #ff1493;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 40px rgba(255,20,147,0.5);
    filter: blur(6px);
    opacity: 0.45;
    pointer-events: none;
}

.ff-neon-flicker {
    animation: ff-neon-main-flicker 10s infinite;
}

@keyframes ff-neon-main-flicker {
    0%, 100% { opacity: 1; filter: brightness(1); }
    
    /* The sign stays beautifully lit 95% of the time, with a very subtle breath */
    10%, 30%, 50%, 70%, 90% { opacity: 0.95; filter: brightness(0.95); }
    
    /* Flicker 1: Rapid stutter at 22% (Zzt-zzt) */
    22%     { opacity: 1; filter: brightness(1); }
    22.1%   { opacity: 0.1; filter: brightness(0.1); }
    22.15%  { opacity: 0.8; filter: brightness(0.8); }
    22.2%   { opacity: 0.2; filter: brightness(0.2); }
    22.25%  { opacity: 1; filter: brightness(1); }
    
    /* Flicker 2: A sudden micro-blip at 58% (Pop) */
    58%     { opacity: 1; filter: brightness(1); }
    58.05%  { opacity: 0.1; filter: brightness(0.1); }
    58.1%   { opacity: 1; filter: brightness(1); }
    
    /* Flicker 3: A harsh erratic buzz at 85% */
    85%     { opacity: 1; filter: brightness(1); }
    85.1%   { opacity: 0.3; filter: brightness(0.3); }
    85.2%   { opacity: 0.9; filter: brightness(0.9); }
    85.3%   { opacity: 0.2; filter: brightness(0.2); }
    85.4%   { opacity: 0.7; filter: brightness(0.7); }
    85.5%   { opacity: 1; filter: brightness(1); }
}

.ff-neon-alt {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Varela Round', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    
    /* === ACTIVE: Pink Neon Style === */
    /*color: #fff0fa;*/ /* Soft bright pinkish-white core for proper neon look */
    
    /* === PREVIOUS: Yellow/Orange Neon Style (Uncomment to use) ===*/ 
    color: #fff2ed; 
    /**/

    margin: 1.5rem auto 2rem;
    padding: 1.2rem 2.5rem;
    line-height: 1.2;
    letter-spacing: 3px;
    border-radius: 16px;
    transform: perspective(600px) rotateY(-5deg) rotateX(2deg);
    
    /* The bright purple box outline glow */
    border: 4px solid #f9efff;
    box-shadow: 
        0 0 10px #9d00ff,
        0 0 20px #9d00ff,
        0 0 40px #9d00ff,
        0 0 60px #5e0099,
        inset 0 0 15px #9d00ff,
        inset 0 0 30px #9d00ff;
        
    /* === ACTIVE: The pink text neon glow matching GET FOUND. EVERYWHERE === */
    /*text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ff66c4,
        0 0 20px #ff1493,
        0 0 35px #ff1493,
        0 0 50px #ff1493,
        0 0 70px #ae005c;*/

    /* === PREVIOUS: The pink/orange (yellowish) text neon glow (Uncomment to use) ===*/ 
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #ff8966,
        0 0 20px #ff511a,
        0 0 40px #e62e00,
        0 0 60px #cc0000;
    /**/
    
    animation: ff-neon-alt-alive 8s infinite;
}

@keyframes ff-neon-alt-alive {
    0%, 20%, 40%, 60%, 80%, 100% { opacity: 1; filter: brightness(1); }
    
    /* Baseline stronger gentle pulsing */
    10%, 30%, 50%, 70%, 90% { opacity: 0.92; filter: brightness(0.9); }
    
    /* Extended Flicker 1: Sputtering and buzzing (spread over larger percentage so eyes can see the stutters) */
    12%   { opacity: 1; filter: brightness(1); }
    12.4% { opacity: 0.4; filter: brightness(0.4); }
    12.8% { opacity: 1; filter: brightness(1); }
    13.2% { opacity: 0.2; filter: brightness(0.3); }
    13.6% { opacity: 0.8; filter: brightness(0.8); }
    14.0% { opacity: 0.3; filter: brightness(0.4); }
    14.5% { opacity: 1; filter: brightness(1); }
    
    /* Quick multi-flicker 2: The "bad connection" pop */
    42%   { opacity: 1; filter: brightness(1); }
    42.3% { opacity: 0.1; filter: brightness(0.2); } /* dark pop */
    42.7% { opacity: 1; filter: brightness(1); }
    43.1% { opacity: 0.5; filter: brightness(0.6); }
    43.4% { opacity: 1; filter: brightness(1); }
    
    /* Longer erratic buzz 3: Struggling to stay lit */
    74%   { opacity: 1; filter: brightness(1); }
    74.5% { opacity: 0.4; filter: brightness(0.5); }
    75.0% { opacity: 0.8; filter: brightness(0.9); }
    75.5% { opacity: 0.2; filter: brightness(0.3); }
    76.0% { opacity: 0.9; filter: brightness(0.9); }
    76.5% { opacity: 0.3; filter: brightness(0.4); }
    77.0% { opacity: 1; filter: brightness(1); }
}

.ff-hero .ff-subhead {
    position: relative;
    z-index: 1;
    font-size: clamp(0.82rem, 2vw, 0.93rem);
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    margin-bottom: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
}

/* ── Platform compatibility strip ── */
.ff-platforms {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.ff-platforms__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.ff-platforms__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}

/* ── Full logo wrapper ── */
.ff-platform-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: transform 0.25s ease;
}

.ff-platform-logo-wrap:hover {
    transform: scale(1.06);
}

.ff-platform-fulllogo {
    display: block;
    height: clamp(24px, 4.5vw, 32px);
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ff-platform-wordmark {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* ── OnlyFans glow ── */
.ff-platform-onlyfans .ff-platform-wordmark {
    color: #00AFF0;
}

.ff-platform-onlyfans {
    animation: ffLogoGlow-of 4s linear infinite;
}

.ff-platform-onlyfans:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 0 10px rgba(0,175,240,0.95)) drop-shadow(0 0 24px rgba(0,175,240,0.7));
}

@keyframes ffLogoGlow-of {
    0%   { filter: drop-shadow(0 0 2px rgba(0,175,240,0.35)) drop-shadow(0 0 6px rgba(0,175,240,0.15)); }
    10%  { filter: drop-shadow(0 0 3px rgba(0,175,240,0.44)) drop-shadow(0 0 8px rgba(0,175,240,0.22)); }
    20%  { filter: drop-shadow(0 0 4px rgba(0,175,240,0.54)) drop-shadow(0 0 11px rgba(0,175,240,0.30)); }
    30%  { filter: drop-shadow(0 0 5px rgba(0,175,240,0.63)) drop-shadow(0 0 14px rgba(0,175,240,0.38)); }
    40%  { filter: drop-shadow(0 0 6px rgba(0,175,240,0.72)) drop-shadow(0 0 17px rgba(0,175,240,0.44)); }
    50%  { filter: drop-shadow(0 0 8px rgba(0,175,240,0.90)) drop-shadow(0 0 22px rgba(0,175,240,0.55)); }
    60%  { filter: drop-shadow(0 0 6px rgba(0,175,240,0.72)) drop-shadow(0 0 17px rgba(0,175,240,0.44)); }
    70%  { filter: drop-shadow(0 0 5px rgba(0,175,240,0.63)) drop-shadow(0 0 14px rgba(0,175,240,0.38)); }
    80%  { filter: drop-shadow(0 0 4px rgba(0,175,240,0.54)) drop-shadow(0 0 11px rgba(0,175,240,0.30)); }
    90%  { filter: drop-shadow(0 0 3px rgba(0,175,240,0.44)) drop-shadow(0 0 8px rgba(0,175,240,0.22)); }
    100% { filter: drop-shadow(0 0 2px rgba(0,175,240,0.35)) drop-shadow(0 0 6px rgba(0,175,240,0.15)); }
}

/* ── Fansly glow ── */
.ff-platform-fansly .ff-platform-wordmark {
    color: #2699f7;
}

.ff-platform-fansly {
    animation: ffLogoGlow-fy 4s linear infinite;
}

.ff-platform-fansly:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 0 10px rgba(38,153,247,0.95)) drop-shadow(0 0 24px rgba(38,153,247,0.7));
}

@keyframes ffLogoGlow-fy {
    0%   { filter: drop-shadow(0 0 2px rgba(38,153,247,0.35)) drop-shadow(0 0 6px rgba(38,153,247,0.15)); }
    10%  { filter: drop-shadow(0 0 3px rgba(38,153,247,0.44)) drop-shadow(0 0 8px rgba(38,153,247,0.22)); }
    20%  { filter: drop-shadow(0 0 4px rgba(38,153,247,0.54)) drop-shadow(0 0 11px rgba(38,153,247,0.30)); }
    30%  { filter: drop-shadow(0 0 5px rgba(38,153,247,0.63)) drop-shadow(0 0 14px rgba(38,153,247,0.38)); }
    40%  { filter: drop-shadow(0 0 6px rgba(38,153,247,0.72)) drop-shadow(0 0 17px rgba(38,153,247,0.44)); }
    50%  { filter: drop-shadow(0 0 8px rgba(38,153,247,0.90)) drop-shadow(0 0 22px rgba(38,153,247,0.55)); }
    60%  { filter: drop-shadow(0 0 6px rgba(38,153,247,0.72)) drop-shadow(0 0 17px rgba(38,153,247,0.44)); }
    70%  { filter: drop-shadow(0 0 5px rgba(38,153,247,0.63)) drop-shadow(0 0 14px rgba(38,153,247,0.38)); }
    80%  { filter: drop-shadow(0 0 4px rgba(38,153,247,0.54)) drop-shadow(0 0 11px rgba(38,153,247,0.30)); }
    90%  { filter: drop-shadow(0 0 3px rgba(38,153,247,0.44)) drop-shadow(0 0 8px rgba(38,153,247,0.22)); }
    100% { filter: drop-shadow(0 0 2px rgba(38,153,247,0.35)) drop-shadow(0 0 6px rgba(38,153,247,0.15)); }
}

/* ── "+ any platform you use" glow ── */
.ff-platforms__more {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ff79c6;
    text-shadow:
        0 0 6px rgba(255,121,198,0.8),
        0 0 14px rgba(255,20,147,0.55),
        0 0 28px rgba(255,20,147,0.3);
    animation: ffMoreGlow 3s ease-in-out infinite;
}

@keyframes ffMoreGlow {
    0%, 100% {
        text-shadow:
            0 0 4px rgba(255,121,198,0.6),
            0 0 10px rgba(255,20,147,0.4),
            0 0 20px rgba(255,20,147,0.2);
        opacity: 0.9;
    }
    50% {
        text-shadow:
            0 0 8px rgba(255,121,198,1),
            0 0 20px rgba(255,20,147,0.75),
            0 0 40px rgba(255,20,147,0.45);
        opacity: 1;
    }
}

/* ── Form ── */
.ff-form-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 1rem;
}

.ff-form-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ff-form-inner input {
    width: 100%;
    padding: 1rem 1.25rem;
    min-height: 48px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: var(--ff-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ff-form-inner input::placeholder {
    color: rgba(255,255,255,0.5);
}

.ff-form-inner input:focus {
    border-color: var(--ff-purple-light);
    box-shadow: 0 0 0 4px rgba(255,47,134,0.25);
}

.ff-form-inner button {
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: 48px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ff-fire) 0%, var(--ff-fire-soft) 100%);
    color: var(--ff-white);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    box-shadow: 0 4px 14px rgba(255,59,48,0.3);
}

.ff-form-inner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,59,48,0.5);
    filter: brightness(1.08);
}

.ff-form-inner button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255,59,48,0.3);
}

@keyframes ff-pulse-glow {
    0%   { box-shadow: 0 0 0 0 rgba(255,47,134,0.0), 0 2px 18px rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.18); }
    30%  { box-shadow: 0 0 0 6px rgba(255,47,134,0.35), 0 2px 24px rgba(255,47,134,0.25); border-color: rgba(255,47,134,0.9); }
    70%  { box-shadow: 0 0 0 4px rgba(255,47,134,0.2), 0 2px 20px rgba(255,47,134,0.15); border-color: rgba(255,47,134,0.7); }
    100% { box-shadow: 0 0 0 0 rgba(255,47,134,0.0), 0 2px 18px rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.18); }
}
.ff-input-pulse {
    animation: ff-pulse-glow 1.4s ease forwards !important;
    outline: none !important;
}

.ff-input-claimed {
    width: 100%;
    padding: 1rem 1.25rem;
    min-height: 48px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    border: 1px solid #2ecc71;
    border-radius: 12px;
    background: rgba(46,204,113,0.08);
    color: #2ecc71;
    text-align: center;
    box-shadow: 0 0 12px rgba(46,204,113,0.2);
    cursor: default;
    user-select: none;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.ff-trust {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    font-size: clamp(0.78rem, 2vw, 0.85rem);
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0.15rem auto 0.4rem;
    line-height: 1.6;
    text-align: center;
}

.ff-trust-item {
    color: rgba(255, 255, 255, 0.58);
}

.ff-trust-sep {
    color: rgba(255, 255, 255, 0.28);
    user-select: none;
}

/* ── Bullets ── */
.ff-bullets {
    position: relative;
    z-index: 1;
    list-style: none;
    text-align: left;
    max-width: 460px;
    margin: 1.25rem auto 0;
    font-size: clamp(0.88rem, 2.4vw, 0.95rem);
    color: rgba(255,255,255,0.88);
}

.ff-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ff-bullets li::before {
    content: '🔥';
    flex-shrink: 0;
}

/* ── Sections ── */
section.ff-block {
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

section.ff-block h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* ── Cards ── */
.ff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .ff-cards {
        grid-template-columns: repeat(5, 1fr);
    }
}

.ff-card {
    background: linear-gradient(180deg, rgba(255,47,134,0.25) 0%, rgba(74,28,46,0.6) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.ff-card .ff-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #3d2a5c 0%, #5c2a3d 50%, #4a2a1f 100%);
    filter: blur(4px);
}

.ff-card .ff-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0,0,0,0.7);
    color: var(--ff-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.ff-card .ff-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 0.8rem;
}

.ff-card .ff-info .ff-name {
    font-weight: 700;
}

.ff-card .ff-info .ff-meta {
    color: rgba(255,255,255,0.7);
    margin-top: 0.2rem;
}

/* ── Sneak peek ── */
.ff-sneak {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.ff-sneak .ff-card {
    aspect-ratio: 3/4;
}

.ff-sneak .ff-card .ff-thumb {
    filter: blur(12px);
}

.ff-sneak .ff-card .ff-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.ff-sneak .ff-card .ff-city {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ── Toast ── */
.ff-toast-zone {
    position: fixed;
    bottom: 1.5rem;
    left: 1rem;
    z-index: 1000;
    max-width: 320px;
}

.ff-toast {
    padding: 0.75rem 1rem;
    background: rgba(15,10,26,0.95);
    border: 1px solid #eedbff; /* Thinner bright inner core */
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--ff-white);
    cursor: pointer;
    /* Subtle Purple neon glow */
    box-shadow: 
        0 0 4px var(--ff-purple-light),
        0 0 10px var(--ff-purple),
        inset 0 0 4px var(--ff-purple-light);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.ff-toast.ff-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Footer bar ── */
.ff-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(15,10,26,0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 100;
    transition: transform 0.3s, opacity 0.3s;
}

.ff-footer.ff-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.ff-footer .ff-tagline {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.25rem;
}

.ff-footer .ff-form-inner {
    max-width: 480px;
    margin: 0 auto;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
}

.ff-footer .ff-form-inner input {
    flex: 1;
    min-width: 0;
    width: auto;
}

.ff-footer .ff-form-inner button {
    width: auto;
    flex-shrink: 0;
}

.ff-footer .ff-form-inner input {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    min-height: 44px;
}

.ff-footer .ff-form-inner button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
}

/* ── Scroll indicator ── */
.ff-scroll-hint {
    position: absolute;
    bottom: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ff-scroll-hint.ff-faded {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
}

.ff-scroll-hint .ff-scroll-label {
    font-size: clamp(0.6rem, 1.6vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.ff-scroll-hint .ff-scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: ff-scroll-bounce 2s ease-in-out infinite;
}

.ff-scroll-hint .ff-scroll-chevrons svg {
    width: clamp(14px, 2.8vw, 20px);
    height: clamp(8px, 1.6vw, 11px);
    fill: none;
    stroke: var(--ff-purple-light);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(255,47,134,0.5));
}

.ff-scroll-hint .ff-scroll-chevrons svg:last-child {
    opacity: 0.45;
    margin-top: -4px;
}

@keyframes ff-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ── NeonBlock font heading ── */
@font-face {
    font-family: 'NeonBlock';
    src: url('../NeonBlock.ttf') format('truetype');
}

.neon-block-heading {
    font-family: 'NeonBlock', sans-serif;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff3366,
        0 0 40px #ff3366,
        0 0 80px #ff3366;
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 5px #fff, 0 0 10px #fff,
            0 0 20px #ff3366, 0 0 40px #ff3366, 0 0 80px #ff3366;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* ── Roadmap section ── */
@keyframes ff-bop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

@keyframes ff-pulse-glow-1 {
    0%, 100% { box-shadow: 0 0 12px #ff3366, 0 0 5px #ff3366 inset; }
    50% { box-shadow: 0 0 25px #ff3366, 0 0 10px #ff3366 inset; }
}

@keyframes ff-pulse-glow-2 {
    0%, 100% { box-shadow: 0 0 12px #ff8833, 0 0 5px #ff8833 inset; }
    50% { box-shadow: 0 0 25px #ff8833, 0 0 10px #ff8833 inset; }
}

@keyframes ff-pulse-glow-3 {
    0%, 100% { box-shadow: 0 0 12px #b833ff, 0 0 5px #b833ff inset; }
    50% { box-shadow: 0 0 25px #b833ff, 0 0 10px #b833ff inset; }
}

.ff-section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #ffffff;
    text-align: center;
    display: block;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ff-roadmap-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.ff-roadmap-line {
    position: absolute;
    top: 14px;
    left: 15%;
    right: 15%;
    height: 6px;
    background: linear-gradient(to right, #ff3366, #ff8833, #b833ff);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255,51,102,0.6);
    z-index: 0;
}

.ff-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ff-roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.ff-roadmap-node {
    width: 32px;
    height: 32px;
    background: #0d0f16;
    border-radius: 50%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.step-1 .ff-roadmap-node { border: 5px solid #ff3366; animation: ff-pulse-glow-1 2s infinite ease-in-out; }
.step-2 .ff-roadmap-node { border: 5px solid #ff8833; animation: ff-pulse-glow-2 2.5s infinite ease-in-out 0.5s; }
.step-3 .ff-roadmap-node { border: 5px solid #b833ff; animation: ff-pulse-glow-3 2.2s infinite ease-in-out 1s; }

.ff-roadmap-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
    animation: ff-bop 4s ease-in-out infinite;
    width: 100%;
    box-sizing: border-box;
}

.ff-roadmap-step.step-1 .ff-roadmap-card { animation-delay: 0s; border-color: rgba(255, 51, 102, 0.5); }
.ff-roadmap-step.step-2 .ff-roadmap-card { animation-delay: 0.5s; border-color: rgba(255, 136, 51, 0.5); }
.ff-roadmap-step.step-3 .ff-roadmap-card { animation-delay: 1s; border-color: rgba(184, 51, 255, 0.5); }

.ff-roadmap-step.step-1 .ff-roadmap-card:hover { transform: scale(1.05) translateY(-5px); border-color: rgba(255, 51, 102, 0.9); box-shadow: 0 15px 50px rgba(255,51,102,0.25); animation-play-state: paused; }
.ff-roadmap-step.step-2 .ff-roadmap-card:hover { transform: scale(1.05) translateY(-5px); border-color: rgba(255, 136, 51, 0.9); box-shadow: 0 15px 50px rgba(255,136,51,0.25); animation-play-state: paused; }
.ff-roadmap-step.step-3 .ff-roadmap-card:hover { transform: scale(1.05) translateY(-5px); border-color: rgba(184, 51, 255, 0.9); box-shadow: 0 15px 50px rgba(184,51,255,0.25); animation-play-state: paused; }

.ff-roadmap-phase {
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 30px;
}

.step-1 .ff-roadmap-phase { color: #ff3366; border: 1px solid rgba(255,51,102,0.3); box-shadow: 0 0 10px rgba(255,51,102,0.2); }
.step-2 .ff-roadmap-phase { color: #ff8833; border: 1px solid rgba(255,136,51,0.3); box-shadow: 0 0 10px rgba(255,136,51,0.2); }
.step-3 .ff-roadmap-phase { color: #b833ff; border: 1px solid rgba(184,51,255,0.3); box-shadow: 0 0 10px rgba(184,51,255,0.2); }

.ff-roadmap-title {
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-1 .ff-roadmap-title { color: #fff; text-shadow: 0 2px 10px rgba(255,51,102,0.3); }
.step-2 .ff-roadmap-title { color: #fff; text-shadow: 0 2px 10px rgba(255,136,51,0.3); }
.step-3 .ff-roadmap-title { color: #fff; text-shadow: 0 2px 10px rgba(184,51,255,0.3); }

.ff-roadmap-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .ff-roadmap-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ff-roadmap-line {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATION ENHANCEMENTS — hero entrance, type-on, shimmer,
   directional reveals, stagger, countdown flip
═══════════════════════════════════════════════════════════════ */

/* ── 1. Staggered hero content entrance ────────────────────── */
.ff-hero-enter {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ff-hero-enter.ff-hero-entered {
    opacity: 1;
    transform: translateY(0);
}

/* ── 2. Type-on cursor ─────────────────────────────────────── */
.ff-typeon-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: #f472b6;
    border-radius: 2px;
    margin-left: 3px;
    vertical-align: middle;
    animation: ff-cursor-blink 0.75s step-end infinite;
    box-shadow: 0 0 8px rgba(244,114,182,0.8);
}
@keyframes ff-cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
/* Keep line2 gradient visible during type-on */
.ff-hero-line2 {
    min-height: 1.1em;
}

/* ── 3. Progress bar shimmer ───────────────────────────────── */
.ff-progress-bar-fill {
    position: relative;
    overflow: hidden;
}
.ff-progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
    );
    border-radius: inherit;
    animation: ff-bar-shimmer 2.8s ease-in-out infinite;
}
@keyframes ff-bar-shimmer {
    0%   { left: -60%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { left: 115%; opacity: 0; }
}

/* ── 4a. Directional reveal variants ──────────────────────── */
.ff-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ff-reveal-left.ff-visible {
    opacity: 1;
    transform: translateX(0);
}
.ff-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ff-reveal-right.ff-visible {
    opacity: 1;
    transform: translateX(0);
}
.ff-reveal-scale {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.ff-reveal-scale.ff-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── 4b. Stagger delay helpers ─────────────────────────────── */
.ff-stagger-1 { transition-delay: 0.08s !important; }
.ff-stagger-2 { transition-delay: 0.18s !important; }
.ff-stagger-3 { transition-delay: 0.28s !important; }
.ff-stagger-4 { transition-delay: 0.38s !important; }

/* ── 5. Countdown digit flip ───────────────────────────────── */
@keyframes ff-digit-flip {
    0%   { transform: scaleY(1);   opacity: 1; }
    25%  { transform: scaleY(0.3); opacity: 0.4; }
    55%  { transform: scaleY(1.08); opacity: 1; }
    75%  { transform: scaleY(0.97); }
    100% { transform: scaleY(1);   opacity: 1; }
}
.ff-digit-flipping {
    animation: ff-digit-flip 0.32s cubic-bezier(0.4,0,0.2,1) forwards;
    transform-origin: center;
    display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .ff-hero {
        padding: 1.25rem 1rem 2rem;
    }

    .ff-neon {
        -webkit-text-stroke: 4px #ffffff;
        letter-spacing: 3px;
    }

    .ff-bullets {
        padding: 0 0.5rem;
    }

    .ff-footer .ff-form-inner {
        width: 100%;
        padding: 0 0.25rem;
    }

    .ff-toast-zone {
        bottom: 4.5rem;
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }

    body:has(#ff-footer.ff-hidden) .ff-toast-zone {
        bottom: 1.5rem;
    }

    .ff-platform-badge {
        font-size: 0.78rem;
        padding: 0.36rem 0.9rem 0.36rem 0.7rem;
        gap: 0.38rem;
    }

    .ff-platform-icon svg {
        width: 14px;
        height: 14px;
    }

    .ff-platforms__logos {
        gap: 0.5rem;
    }
}

@media (max-width: 380px) {
    .ff-hero {
        padding: 1rem 0.75rem 1.75rem;
    }

    .ff-logo-wrap {
        margin-bottom: 1rem;
    }

    .ff-countdown {
        margin-bottom: 0.75rem;
    }

    .ff-countdown .ff-timer .ff-unit .ff-value {
        font-size: 1.5rem;
    }

    .ff-countdown .ff-timer .ff-sep {
        font-size: 1.25rem;
    }

    .ff-neon {
        -webkit-text-stroke: 3px #ffffff;
        letter-spacing: 2px;
    }

    .ff-platform-badge {
        font-size: 0.72rem;
        padding: 0.32rem 0.75rem 0.32rem 0.6rem;
    }
}

/* ── Launch Badge Pill ── */
.ff-launch-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 1.1rem;
    border: 1px solid rgba(255, 47, 134, 0.5);
    border-radius: 999px;
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    background: rgba(255,47,134,0.1);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.ff-launch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 6px rgba(255,59,48,0.9);
    flex-shrink: 0;
    animation: ff-dot-pulse 2s ease-in-out infinite;
}

@keyframes ff-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.4); }
}

/* ── New Hero Heading ── */
.ff-hero h1.ff-hero-h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: none;
    transform: none;
    -webkit-text-stroke: 0;
    color: #fff;
    margin-bottom: 1.25rem;
}

.ff-hero-line1 {
    display: block;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.ff-hero-line2 {
    display: block;
    background: linear-gradient(90deg, #ff3b30 0%, #e8408a 42%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Progress bar ── */
.ff-progress-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0.25rem auto 0;
    text-align: center;
}

.ff-progress-label {
    font-size: clamp(0.78rem, 2vw, 0.85rem);
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.ff-progress-label strong {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
}

.ff-progress-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
}

.ff-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff3b30 0%, #a855f7 100%);
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(255,59,48,0.5);
}

/* ── Subhead line spans ── */
.ff-subhead-line {
    display: block;
}

/* ── Inline pill form (hero) ── */
.ff-form-pill {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 0 0 0 18px;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ff-form-pill:focus-within {
    border-color: rgba(255, 47, 134, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 47, 134, 0.12);
}

.ff-form-pill input[type="email"] {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.72rem 0.5rem 0.72rem 0;
    font-size: 0.97rem;
    font-family: inherit;
    color: #fff;
}

.ff-form-pill input[type="email"]::placeholder {
    color: rgba(255,255,255,0.36);
}

.ff-form-pill button[type="submit"] {
    flex-shrink: 0;
    align-self: stretch;
    padding: 0 1.5rem;
    font-size: 0.87rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 0;
    background: linear-gradient(90deg, #ff3b30, #e8408a, #a855f7, #e8408a, #ff3b30);
    background-size: 300% 100%;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.15s ease, transform 0.12s ease;
    box-shadow: 0 2px 18px rgba(255,59,48,0.35), 0 2px 18px rgba(168,85,247,0.2);
    animation: ff-btn-shift 7s ease-in-out infinite;
}

@keyframes ff-btn-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ff-form-pill button[type="submit"]:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.ff-form-pill button[type="submit"]:active {
    transform: scale(0.99);
    filter: brightness(0.97);
}

.ff-form-pill .ff-input-claimed {
    flex: 1;
    background: transparent;
    border: none;
    min-height: unset;
    box-shadow: none;
    text-align: left;
    width: auto;
    padding: 0.5rem 0.5rem 0.5rem 0;
    justify-content: flex-start;
    font-size: 0.92rem;
}

/* Button state after spot is claimed */
.ff-form-pill .ff-btn-claimed {
    flex-shrink: 0;
    align-self: stretch;
    padding: 0 1.5rem;
    font-size: 0.87rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 0;
    background: linear-gradient(90deg, #a855f7, #e8408a, #a855f7);
    background-size: 200% 100%;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.15s ease, transform 0.12s ease;
    box-shadow: 0 2px 18px rgba(168,85,247,0.35);
    animation: ff-btn-shift 5s ease-in-out infinite;
}

.ff-form-pill .ff-btn-claimed:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* ── Cards Marquee ── */
.ff-block.ff-block-cards {
    max-width: none;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

.ff-block.ff-block-cards .ff-section-title {
    padding: 0 1.5rem;
}

.ff-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.ff-marquee-row {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.ff-marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.ff-marquee-track:hover {
    animation-play-state: paused;
}

.ff-marquee-ltr {
    animation: ff-marquee-ltr 90s linear infinite;
}

.ff-marquee-rtl {
    animation: ff-marquee-rtl 105s linear infinite;
}

@keyframes ff-marquee-ltr {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@keyframes ff-marquee-rtl {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ff-marquee-track .ff-card {
    width: 220px;
    height: 295px;
    flex-shrink: 0;
    aspect-ratio: unset;
}

/* Colour variety across cards */
.ff-marquee-track .ff-card:nth-child(2n)  .ff-thumb { background: linear-gradient(145deg, #5c2a3d 0%, #3d2a5c 50%, #2a3d4a 100%); }
.ff-marquee-track .ff-card:nth-child(3n)  .ff-thumb { background: linear-gradient(145deg, #2a3d5c 0%, #3d5c2a 50%, #4a2a1f 100%); }
.ff-marquee-track .ff-card:nth-child(4n)  .ff-thumb { background: linear-gradient(145deg, #5c3d2a 0%, #2a4a5c 50%, #3d2a5c 100%); }
.ff-marquee-track .ff-card:nth-child(5n)  .ff-thumb { background: linear-gradient(145deg, #3d5c2a 0%, #5c2a5c 50%, #2a1f4a 100%); }
.ff-marquee-track .ff-card:nth-child(7n)  .ff-thumb { background: linear-gradient(145deg, #4a1f3d 0%, #2a4a3d 50%, #5c3d1f 100%); }
.ff-marquee-track .ff-card:nth-child(11n) .ff-thumb { background: linear-gradient(145deg, #1f3d5c 0%, #5c1f3d 50%, #3d4a1f 100%); }

@media (prefers-reduced-motion: reduce) {
    .ff-marquee-ltr,
    .ff-marquee-rtl,
    .ff-browser-creators-track {
        animation: none;
    }
}

/* ══════════════════════════════════════════
   Real Creator Showcase — ff-showcase-section
══════════════════════════════════════════ */
.ff-showcase-section {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.ff-showcase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.ff-showcase-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
}

.ff-showcase-verified-badge svg {
    stroke: #4ade80;
    flex-shrink: 0;
}

.ff-showcase-sub {
    font-size: clamp(0.82rem, 2vw, 0.92rem);
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    line-height: 1.7;
}

/* ── Browser chrome ── */
.ff-browser-mock {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,47,134,0.3);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(255,47,134,0.07), 0 32px 80px rgba(0,0,0,0.55);
    max-width: 960px;
    margin: 0 auto;
}

.ff-browser-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ff-browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ff-browser-dot:nth-child(1) { background: #ff5f57; }
.ff-browser-dot:nth-child(2) { background: #febc2e; }
.ff-browser-dot:nth-child(3) { background: #28c840; }

.ff-browser-url {
    flex: 1;
    height: 28px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.02em;
    gap: 0.4rem;
    max-width: 360px;
}

.ff-browser-lock {
    font-size: 0.65rem;
}

.ff-browser-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

/* ── In-browser search bar ── */
.ff-browser-searchbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,47,134,0.4);
    border-radius: 50px;
    padding: 0.65rem 1rem 0.65rem 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.85);
    font-size: clamp(0.82rem, 2vw, 0.9rem);
    font-weight: 500;
    box-shadow: 0 0 18px rgba(255,47,134,0.1);
}

.ff-browser-searchbar svg {
    stroke: rgba(255,47,134,0.8);
    flex-shrink: 0;
}

.ff-browser-searchbar span:nth-child(2) {
    flex: 1;
}

.ff-browser-searchbar-btn {
    flex: 0 0 auto !important;
    background: linear-gradient(135deg, #FF2F86 0%, #E0187C 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    cursor: default;
    letter-spacing: 0.02em;
}

/* ── Results strip ── */
.ff-browser-results-strip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.1rem;
    padding: 0 0.25rem;
}

.ff-browser-results-strip strong {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}

/* ── Creator cards scroll carousel ── */
.ff-browser-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ff-browser-creators-scroll {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
    /* fade left edge only — right side flows into the CTA panel */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%);
}

.ff-browser-creators-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    animation: ffCreatorScroll 160s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.ff-browser-creators-track:hover {
    animation-play-state: paused;
}

@keyframes ffCreatorScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Each card in the track — fixed width showing 4 at a time on desktop */
.ff-browser-creators-scroll .ff-browser-creator-card {
    flex: 0 0 calc(25% - 0.57rem);
    min-width: 160px;
    max-width: 220px;
}

@media (max-width: 519px) {
    .ff-browser-creators-scroll .ff-browser-creator-card {
        flex: 0 0 calc(50% - 0.375rem);
    }
    .ff-browser-results-layout {
        flex-direction: column;
    }
}

/* Results layout: scroll on the left, stationary CTA panel pinned on the right */
.ff-browser-results-layout {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

/* Stationary CTA panel — matches creator card width */
.ff-browser-cta-panel {
    flex: 0 0 calc(25% - 0.57rem);
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px dashed rgba(255,47,134,0.5);
    background: rgba(255,47,134,0.07);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-align: center;
    overflow: hidden;
}

.ff-browser-cta-panel:hover {
    border-color: rgba(255,47,134,0.75);
    background: rgba(255,47,134,0.14);
    transform: translateY(-2px);
}

/* Portrait thumb area matching creator card 3:4 */
.ff-browser-cta-panel-thumb {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0.75rem;
    background: linear-gradient(145deg, rgba(255,47,134,0.38) 0%, rgba(255,47,134,0.2) 50%, rgba(255,47,134,0.1) 100%);
    position: relative;
    overflow: hidden;
}

.ff-browser-cta-panel-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,47,134,0.28) 0%, transparent 65%);
    pointer-events: none;
}

/* Pulsing ring around avatar */
.ff-browser-cta-panel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,47,134,0.6), rgba(255,47,134,0.4));
    border: 1.5px solid rgba(255,47,134,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: rgba(255,47,134,0.95);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 0 rgba(255,47,134,0.55);
    animation: ffCtaPulse 2.4s ease-out infinite;
}

@keyframes ffCtaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,47,134,0.55); }
    60%  { box-shadow: 0 0 0 10px rgba(255,47,134,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,47,134,0); }
}

/* "Tap to claim" label inside thumb */
.ff-browser-cta-panel-tap {
    font-size: 0.62rem;
    font-weight: 800;
    color: rgba(255,47,134,0.85);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    text-align: center;
}

.ff-browser-cta-panel-spots {
    display: none;
}

/* Info bar below the thumb — matches creator card info */
.ff-browser-cta-panel-info {
    padding: 0.55rem 0.65rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.ff-browser-cta-panel-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ff-browser-cta-panel-sub {
    font-size: 0.6rem;
    color: rgba(248,113,113,0.85);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ff-browser-cta-panel-btn {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #E0187C, #FF7AB8);
    padding: 0.32rem 0.5rem;
    border-radius: 8px;
    letter-spacing: 0.04em;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255,47,134,0.4);
    transition: box-shadow 0.2s, filter 0.2s;
}

.ff-browser-cta-panel:hover .ff-browser-cta-panel-btn {
    box-shadow: 0 4px 18px rgba(255,47,134,0.6);
    filter: brightness(1.1);
}

.ff-browser-cta-panel-note {
    display: none;
}

@media (max-width: 519px) {
    .ff-browser-cta-panel {
        flex: unset;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
    }
    .ff-browser-cta-panel-thumb {
        aspect-ratio: unset;
        width: 80px;
        flex-shrink: 0;
        padding: 0.75rem 0.5rem;
    }
    .ff-browser-cta-panel-info {
        justify-content: center;
    }
}

.ff-browser-creator-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.ff-browser-creator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,47,134,0.22);
    border-color: rgba(255,47,134,0.35);
}

.ff-browser-creator-thumb {
    aspect-ratio: 3/4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ff-bct-1 { background: linear-gradient(145deg, #3d1e6b, #6b2059); }
.ff-bct-2 { background: linear-gradient(145deg, #1e3a6b, #1e5a4a); }
.ff-bct-3 { background: linear-gradient(145deg, #6b3d1e, #8b2030); }
.ff-bct-4 { background: linear-gradient(145deg, #2a4a1e, #3d306b); }
.ff-bct-5 { background: linear-gradient(145deg, #6b1e3d, #3a2060); }
.ff-bct-you {
    background: rgba(255,47,134,0.12);
    border-bottom: 1px dashed rgba(255,47,134,0.3);
}

.ff-browser-creator-avatar {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.ff-browser-creator-badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 5px;
    letter-spacing: 0.06em;
    z-index: 1;
}

.ff-browser-creator-badge--top {
    background: rgba(255,47,134,0.9);
    color: #fff;
    box-shadow: 0 0 8px rgba(255,47,134,0.5);
}

.ff-browser-creator-badge--new {
    background: rgba(74,222,128,0.85);
    color: #0a1a0a;
}

.ff-browser-creator-info {
    padding: 0.55rem 0.6rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    flex: 1;
}

.ff-browser-creator-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ff-browser-creator-loc {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ff-browser-creator-locked {
    font-size: 0.6rem;
    color: #4ade80;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ── CTA card ── */
.ff-browser-creator-card--cta {
    border: 1px dashed rgba(255,47,134,0.35);
    background: rgba(255,47,134,0.07);
}

.ff-browser-creator-card--cta:hover {
    border-color: rgba(255,47,134,0.6);
    box-shadow: 0 8px 28px rgba(255,47,134,0.18);
}

.ff-browser-claim-btn {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: #FF2F86;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.ff-browser-claim-btn:hover {
    color: #fff;
}

/* ── Footer line ── */
.ff-showcase-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.42);
    margin-top: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   SHARED SECTION HELPERS
═══════════════════════════════════════════════ */
.ff-section-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,47,134,0.95);
    margin-bottom: 0.9rem;
    display: inline-block;
    border: 1px solid rgba(255,47,134,0.4);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    background: rgba(255,47,134,0.1);
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.ff-section-sub {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.ff-grad {
    background: linear-gradient(90deg, #FF2F86, #FF7AB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ff-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.ff-reveal.ff-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   PLATFORM FLOW SECTION
═══════════════════════════════════════════════ */
.ff-platform-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.ff-platform-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}
.ff-pf-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,47,134,0.7);
    margin-bottom: 0.9rem;
    text-align: center;
}
.ff-pf-bubble {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
}
.ff-pf-bubble-icon { font-size: 1.3rem; }
.ff-pf-bubble-query { display: block; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.ff-pf-bubble-sub { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; }
.ff-pf-arrow-down {
    display: flex;
    justify-content: center;
    margin: 0.3rem 0;
}
.ff-pf-arrow-down svg { width: 20px; height: 34px; }
.ff-pf-result-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,47,134,0.12);
    border: 1px solid rgba(255,47,134,0.3);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
}
.ff-pf-result-avatar { font-size: 1.4rem; }
.ff-pf-result-name { display: block; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.ff-pf-result-sub { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.ff-pf-result-badge {
    margin-left: auto;
    background: linear-gradient(135deg,#FF7AB8,#f472b6);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}
.ff-pf-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.ff-pf-centre-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(255,47,134,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,47,134,0.1);
    box-shadow: 0 0 32px rgba(255,47,134,0.3);
}
.ff-pf-centre-logo img { width: 68px; height: auto; object-fit: contain; }
.ff-pf-centre-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    max-width: 110px;
    line-height: 1.4;
}
.ff-pf-links { display: flex; flex-direction: column; gap: 0.5rem; }
.ff-pf-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
}
.ff-pf-link-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ff-pf-link-name { flex: 1; font-weight: 600; color: rgba(255,255,255,0.85); }
.ff-pf-link-arrow { color: rgba(255,47,134,0.6); }
.ff-pf-link-stat { font-size: 0.72rem; color: #4ade80; font-weight: 600; }
.ff-pf-link-action { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; white-space: nowrap; }
.ff-pf-link--any .ff-pf-link-name { color: rgba(255,47,134,0.8); }
.ff-pf-links-foot {
    margin-top: 0.65rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    letter-spacing: 0.04em;
}

.ff-pf-searches-foot {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    line-height: 1.4;
}

/* ── Platform reality check ── */
.ff-reality {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}
.ff-reality-eyebrow {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 1rem;
}
.ff-reality-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.ff-reality-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}
.ff-reality-row:last-child { border-bottom: none; }
.ff-reality-row:hover { background: rgba(255,255,255,0.02); }
.ff-reality-row--solution {
    background: rgba(74,222,128,0.04);
    border-top: 1px solid rgba(74,222,128,0.12);
}
.ff-reality-row--solution:hover { background: rgba(74,222,128,0.07); }
.ff-reality-platform {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    min-width: 90px;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}
.ff-reality-platform--ff {
    background: linear-gradient(135deg, #FF7AB8, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.ff-reality-block {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.45;
    flex: 1;
}
.ff-reality-block svg { flex-shrink: 0; margin-top: 2px; }
.ff-reality-block--good { color: rgba(255,255,255,0.75); }

/* ── Before / After layout ── */
.ff-ba-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 2.5rem;
}
.ff-ba-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid transparent;
}
.ff-ba-card--before {
    background: rgba(248,65,65,0.05);
    border-color: rgba(248,65,65,0.18);
}
.ff-ba-card--after {
    background: rgba(255,47,134,0.07);
    border-color: rgba(255,47,134,0.28);
    box-shadow: 0 0 40px rgba(255,47,134,0.1);
}
.ff-ba-card-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ff-ba-card--before .ff-ba-card-label { color: rgba(248,113,113,0.85); }
.ff-ba-card--after  .ff-ba-card-label { color: rgba(255,47,134,0.9); }
.ff-ba-label-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}
.ff-ba-label-icon--bad  { background: rgba(248,65,65,0.18); color: #f87171; }
.ff-ba-label-icon--good { background: rgba(74,222,128,0.18); color: #4ade80; }
.ff-ba-scene { padding: 0.9rem 1rem 1rem; }
.ff-ba-search-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}
.ff-ba-search-row--active {
    border-color: rgba(255,47,134,0.35);
    background: rgba(255,47,134,0.08);
}
.ff-ba-search-text { flex: 1; color: rgba(255,255,255,0.6); font-style: italic; }
.ff-ba-search-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg,#FF7AB8,#f472b6);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 5px;
    letter-spacing: 0.03em;
}
.ff-ba-dead-results { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.75rem; }
.ff-ba-dead-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
}
.ff-ba-dead-icon { font-size: 1rem; opacity: 0.5; flex-shrink: 0; }
.ff-ba-dead-title { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.ff-ba-dead-url   { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.22); }
.ff-ba-outcome {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
}
.ff-ba-outcome--bad  { background: rgba(248,65,65,0.07); color: rgba(248,113,113,0.8); }
.ff-ba-outcome--good { background: rgba(74,222,128,0.07); color: rgba(74,222,128,0.85); }
.ff-ba-outcome svg { flex-shrink: 0; margin-top: 1px; }
/* After card scene */
.ff-ba-profile-result {
    background: rgba(255,47,134,0.1);
    border: 1px solid rgba(255,47,134,0.25);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.75rem;
}
.ff-ba-pr-top {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}
.ff-ba-pr-avatar {
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,47,134,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}
.ff-ba-pr-info { flex: 1; }
.ff-ba-pr-name { display: block; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.ff-ba-pr-sub  { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.ff-ba-pr-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ff-ba-pr-link {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 7px;
    border: 1px solid;
    background: rgba(255,255,255,0.04);
}
.ff-ba-pr-link--more {
    color: rgba(255,47,134,0.75);
    border-color: rgba(255,47,134,0.25);
}
/* VS divider */
.ff-ba-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
@media (max-width: 680px) {
    .ff-ba-wrap { grid-template-columns: 1fr; }
    .ff-ba-vs { width: 32px; height: 32px; margin: 0 auto; }
}

/* Profile card (right column) */
.ff-pf-profile-card {
    background: rgba(255,47,134,0.07);
    border: 1px solid rgba(255,47,134,0.25);
    border-radius: 16px;
    padding: 1rem 1rem 0.85rem;
}
.ff-pf-pc-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}
.ff-pf-pc-avatar {
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,47,134,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}
.ff-pf-pc-info { flex: 1; min-width: 0; }
.ff-pf-pc-name { display: block; font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.ff-pf-pc-sub {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.1rem;
}
.ff-pf-pc-platforms { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.75rem; }
.ff-pf-pc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.8rem;
    border-radius: 9px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
}
.ff-pf-pc-btn:hover { opacity: 0.8; }
.ff-pf-pc-btn--any {
    background: rgba(255,47,134,0.1);
    border-color: rgba(255,47,134,0.3);
    color: rgba(255,47,134,0.85);
    font-weight: 500;
}
.ff-pf-pc-btn-arrow { opacity: 0.6; }
.ff-pf-pc-foot {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin: 0;
    letter-spacing: 0.03em;
}

.ff-platform-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,47,134,0.08);
    border: 1px solid rgba(255,47,134,0.2);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.ff-platform-callout-icon { font-size: 1.4rem; flex-shrink: 0; }
.ff-platform-callout p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }
.ff-platform-callout strong { color: rgba(255,255,255,0.9); }
.ff-platform-callout em { color: rgba(255,47,134,0.9); font-style: normal; font-weight: 600; }

@media (max-width: 680px) {
    .ff-platform-flow { grid-template-columns: 1fr; }
    .ff-pf-centre { flex-direction: row; justify-content: center; }
    .ff-pf-centre-label { max-width: 160px; }
}

/* ═══════════════════════════════════════════════
   RANKING VS SECTION
═══════════════════════════════════════════════ */
.ff-ranking-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.ff-ranking-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 820px;
    margin: 0 auto;
}
.ff-ranking-col {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}
.ff-ranking-col--late { border-color: rgba(255,255,255,0.06); opacity: 0.7; }
.ff-ranking-col-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1rem;
    text-align: center;
}
.ff-ranking-col-label--early {
    background: linear-gradient(135deg, rgba(255,47,134,0.55) 0%, rgba(255,47,134,0.35) 60%, rgba(255,47,134,0.2) 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,47,134,0.3);
    padding: 0.85rem 1rem 0.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-transform: none;
    letter-spacing: 0;
}
.ff-ranking-col-label--early::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% -10%, rgba(255,47,134,0.28) 0%, transparent 65%);
    pointer-events: none;
}
.ff-ranking-col-label--early::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: ffEarlyShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
.ff-ranking-col-label--early .ff-rcl-icon {
    font-size: 1.35rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(255,47,134,0.7));
}
.ff-ranking-col-label--early .ff-rcl-main {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 14px rgba(255,47,134,0.6);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}
.ff-ranking-col-label--early .ff-rcl-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,47,134,0.75);
    position: relative;
    z-index: 1;
}
@keyframes ffEarlyShimmer {
    0%   { left: -120%; }
    60%  { left: 180%; }
    100% { left: 180%; }
}
.ff-ranking-col-label--late { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); }
.ff-ranking-list { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ff-ranking-list--late { opacity: 0.6; }
.ff-rank-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.07);
}
.ff-rank-row--you { background: rgba(255,47,134,0.15); border-color: rgba(255,47,134,0.4); }
.ff-rank-row--late { border-color: rgba(255,255,255,0.04); }
.ff-rank-pos { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.35); min-width: 30px; }
.ff-rank-row--you .ff-rank-pos { color: rgba(255,47,134,0.8); }
.ff-rank-avatar { font-size: 1.1rem; }
.ff-rank-avatar--grey { filter: grayscale(1) opacity(0.35); }
.ff-rank-info { flex: 1; min-width: 0; }
.ff-rank-name { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ff-rank-sub { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.ff-rank-badge { font-size: 0.62rem; font-weight: 700; padding: 0.18rem 0.45rem; border-radius: 6px; white-space: nowrap; }
.ff-rank-badge--locked { background: rgba(255,47,134,0.2); color: rgba(255,47,134,0.9); border: 1px solid rgba(255,47,134,0.35); }
.ff-rank-badge--none { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.08); }
.ff-rank-ellipsis { text-align: center; font-size: 1rem; color: rgba(255,255,255,0.2); letter-spacing: 0.15em; padding: 0.3rem 0; }
.ff-rank-ellipsis--late { color: rgba(255,255,255,0.1); }
.ff-ranking-foot {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ff-ranking-foot--good { color: #4ade80; }
.ff-ranking-foot--bad { color: rgba(248,113,113,0.8); }
.ff-ranking-vs {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
    align-self: center;
    padding-top: 2rem;
}

@media (max-width: 620px) {
    .ff-ranking-wrap { grid-template-columns: 1fr; }
    .ff-ranking-vs { text-align: center; padding: 0.5rem 0; }
    .ff-ranking-col--late { display: none; }
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS STEPS
═══════════════════════════════════════════════ */
.ff-steps-section { padding-top: 2.5rem; padding-bottom: 1.5rem; }

.ff-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto 1rem;
}
.ff-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}
.ff-step:hover { background: rgba(255,47,134,0.07); border-color: rgba(255,47,134,0.3); }
.ff-step-num { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.ff-step-title { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; display: block; }
.ff-step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

.ff-steps-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg,#FF7AB8,#f472b6);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.ff-steps-cta:hover { opacity: 0.9; transform: translateY(-1px); }

@media (max-width: 620px) {
    .ff-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════ */
.ff-compare-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.ff-compare-wrap {
    max-width: 680px;
    margin: 0 auto;
    overflow-x: auto;
}
.ff-compare-table {
    width: 100%;
    border-collapse: collapse;
}
.ff-compare-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ff-compare-table th, .ff-compare-table td { padding: 0.85rem 1rem; }
.ff-compare-feature { text-align: left; color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 500; }
.ff-compare-ff {
    text-align: center;
    background: rgba(255,47,134,0.08);
    border-left: 1px solid rgba(255,47,134,0.2);
    border-right: 1px solid rgba(255,47,134,0.2);
    min-width: 120px;
}
.ff-compare-other { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.82rem; font-weight: 600; min-width: 120px; }
.ff-compare-logo { height: 34px; object-fit: contain; vertical-align: middle; }
.ff-compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
.ff-compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.ff-tick { color: #4ade80; font-weight: 700; font-size: 1.1rem; }
.ff-cross { color: rgba(248,113,113,0.7); font-weight: 700; font-size: 1.1rem; margin-right: 0.3rem; }
.ff-compare-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); display: block; }

/* ═══════════════════════════════════════════════
   PERKS GRID
═══════════════════════════════════════════════ */
.ff-perks-section { padding-top: 4rem; padding-bottom: 4rem; }

.ff-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}
.ff-perk-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.ff-perk-card:hover {
    background: rgba(255,47,134,0.09);
    border-color: rgba(255,47,134,0.35);
    transform: translateY(-3px);
}
.ff-perk-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.ff-perk-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    line-height: 1.3;
}
.ff-perk-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 720px) {
    .ff-perks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .ff-perks-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════ */
/* ── Section divider ── */
.ff-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    max-width: 900px;
    margin: 0 auto;
}

/* ── Final CTA section ── */
.ff-final-cta-section {
    padding: 5rem 1.5rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ff-final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,47,134,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ff-final-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 auto 1rem;
    max-width: 640px;
}
.ff-final-cta-sub {
    position: relative;
    z-index: 1;
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.ff-final-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E0187C 0%, #FF7AB8 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255,47,134,0.42);
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
}
.ff-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,47,134,0.6);
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}
.ff-final-cta-trust {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.ff-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
}
.ff-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 2.5rem;
    gap: 0.15rem;
}
.ff-stat-num {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(90deg, #FF2F86, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.ff-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.ff-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .ff-stat-item { padding: 0.4rem 1.2rem; }
    .ff-stat-divider { display: none; }
}

/* ═══════════════════════════════════════════════
   FOMO TOAST
═══════════════════════════════════════════════ */
.ff-fomo-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(12, 5, 20, 0.92);
    border: 1px solid rgba(255,47,134,0.35);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    z-index: 9000;
    max-width: 260px;
    transform: translateX(-300px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
    pointer-events: none;
}
.ff-fomo-toast.ff-fomo-visible {
    transform: translateX(0);
    opacity: 1;
}
.ff-fomo-avatar {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}
.ff-fomo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.ff-fomo-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ff-fomo-action {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
}
.ff-fomo-time {
    font-size: 0.62rem;
    color: rgba(255,47,134,0.8);
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ─────────────────────────────────────────────
   DEMO PREVIEW STRIP
───────────────────────────────────────────── */
.ff-demo-strip {
    background: rgba(255,47,134,0.05);
    border-top: 1px solid rgba(255,47,134,0.12);
    border-bottom: 1px solid rgba(255,47,134,0.12);
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.ff-demo-strip-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}
.ff-demo-strip-eyebrow strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}
.ff-demo-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,47,134,0.15);
    border: 1px solid rgba(255,47,134,0.4);
    border-radius: 50px;
    color: rgba(255,47,134,0.95);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.38rem 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.ff-demo-strip-btn:hover {
    background: rgba(255,47,134,0.28);
    border-color: rgba(255,47,134,0.7);
    color: #fff;
    text-decoration: none;
}

/* ─────────────────────────────────────────────
   PAIN SECTION
───────────────────────────────────────────── */
.ff-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto 0;
    max-width: 860px;
}
.ff-pain-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1.3rem 1.1rem;
    position: relative;
    overflow: hidden;
}
.ff-pain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239,68,68,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.ff-pain-platform {
    display: inline-block;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.65rem;
}
.ff-pain-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
}
.ff-pain-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.4rem;
}
.ff-pain-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.55;
    margin: 0;
}
.ff-pain-solution-wrap {
    margin: 2.2rem auto 0;
    max-width: 560px;
    text-align: center;
}
.ff-pain-solution-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(74,222,128,0.07);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 50px;
    color: rgba(74,222,128,0.88);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.38rem 0.95rem;
    margin-bottom: 0.9rem;
    letter-spacing: 0.04em;
}
.ff-pain-solution-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
}
.ff-pain-solution-text span {
    color: #FF2F86;
}
@media (max-width: 640px) {
    .ff-pain-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ─────────────────────────────────────────────
   EARNINGS ESTIMATOR
───────────────────────────────────────────── */
.ff-estimator-card {
    background: linear-gradient(135deg, rgba(255,47,134,0.1) 0%, rgba(9,3,15,0) 100%);
    border: 1px solid rgba(255,47,134,0.22);
    border-radius: 20px;
    padding: 2rem 2rem 2.2rem;
    max-width: 620px;
    margin: 2rem auto 0;
    text-align: center;
}
.ff-estimator-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,47,134,0.7);
    margin-bottom: 0.35rem;
}
.ff-estimator-question {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.4rem;
    min-height: 1.6em;
}
.ff-estimator-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(to right, #E0187C var(--pct, 2%), rgba(255,255,255,0.1) var(--pct, 2%));
    outline: none;
    cursor: pointer;
    display: block;
}
.ff-estimator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0187C, #FF2F86);
    box-shadow: 0 0 10px rgba(255,47,134,0.7);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.25);
}
.ff-estimator-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0187C, #FF2F86);
    box-shadow: 0 0 10px rgba(255,47,134,0.7);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.25);
}
.ff-estimator-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.63rem;
    color: rgba(255,255,255,0.28);
    margin-top: 0.4rem;
    padding: 0 2px;
}
.ff-estimator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.6rem;
}
.ff-estimator-result-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1rem 0.5rem;
}
.ff-estimator-result-num {
    display: block;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FF2F86, #FF7AB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.ff-estimator-result-label {
    display: block;
    font-size: 0.63rem;
    color: rgba(255,255,255,0.42);
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
}
.ff-estimator-caveat {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.28);
    margin-top: 1.3rem;
    font-style: italic;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.ff-faq-list {
    max-width: 680px;
    margin: 2rem auto 0;
}
.ff-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.1rem 0;
}
.ff-faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ff-faq-q {
    font-size: 0.93rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    line-height: 1.4;
}
.ff-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,47,134,0.65);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s ease;
    line-height: 1;
}
.ff-faq-item.ff-faq-open .ff-faq-q {
    color: rgba(255,255,255,0.95);
}
.ff-faq-item.ff-faq-open .ff-faq-q::after {
    transform: rotate(45deg);
    color: rgba(255,47,134,0.9);
}
.ff-faq-a {
    font-size: 0.865rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.2s ease;
}
.ff-faq-item.ff-faq-open .ff-faq-a {
    max-height: 250px;
    margin-top: 0.65rem;
}

/* ── Hero feature pills ── */
.ff-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.5rem;
    margin: 1.4rem 0 1.6rem;
}
.ff-hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}
.ff-hero-feature-item svg { flex-shrink: 0; }

/* ── Launch Timeline (replaces How It Works) ── */
.ff-tl {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 2.5rem auto 0;
}
.ff-tl-item {
    display: flex;
    gap: 1.25rem;
}
.ff-tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.ff-tl-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}
.ff-tl-dot--done {
    background: linear-gradient(135deg, #15803d, #4ade80);
    border-color: rgba(74,222,128,0.5);
    box-shadow: 0 0 18px rgba(74,222,128,0.3);
    color: #fff;
}
.ff-tl-dot--launch {
    background: linear-gradient(135deg, #E0187C, #FF2F86);
    border-color: rgba(255,47,134,0.6);
    box-shadow: 0 0 22px rgba(255,47,134,0.45);
    font-size: 1rem;
    color: #fff;
}
.ff-tl-line {
    flex: 1;
    width: 2px;
    min-height: 1.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    margin: 4px 0;
}
.ff-tl-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.1rem 1.25rem 1.25rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
}
.ff-tl-card--done {
    border-color: rgba(74,222,128,0.2);
    background: rgba(74,222,128,0.04);
}
.ff-tl-card--launch {
    border-color: rgba(255,47,134,0.35);
    background: rgba(255,47,134,0.08);
    box-shadow: 0 0 40px rgba(255,47,134,0.1);
}
.ff-tl-step-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.4rem;
}
.ff-tl-card--done .ff-tl-step-label { color: rgba(74,222,128,0.7); }
.ff-tl-card--launch .ff-tl-step-label { color: rgba(255,47,134,0.8); }
.ff-tl-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.ff-tl-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}
.ff-tl-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
}
.ff-tl-pill--done {
    background: rgba(74,222,128,0.1);
    border-color: rgba(74,222,128,0.25);
    color: rgba(74,222,128,0.85);
}
.ff-tl-pill--launch {
    background: rgba(255,47,134,0.2);
    border-color: rgba(255,47,134,0.4);
    color: rgba(255,47,134,0.9);
    box-shadow: 0 0 16px rgba(255,47,134,0.2);
    animation: ffTlPillGlow 2.5s ease-in-out infinite;
}
@keyframes ffTlPillGlow {
    0%,100% { box-shadow: 0 0 16px rgba(255,47,134,0.2); }
    50%      { box-shadow: 0 0 28px rgba(255,47,134,0.4); }
}

/* ── Hero background video ── */
.ff-hero {
    position: relative;
    overflow: hidden;
}

/*
   Z-INDEX STACK (lowest → highest):
   -1  canvas (universe.js) — background image + bubbles (position: fixed)
    0  .ff-hero-video-col   — video sits above canvas, below the ::before overlay
   auto .ff-hero::before    — pink/purple radial gradients paint OVER the video
    2  all other hero content
*/
.ff-hero-video-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.ff-hero-video {
    position: absolute;
    top: 0;
    left: -12vw;
    width: calc(100% + 12vw);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, black 55%);
    /* Full greyscale — strips all colour (green/teal); ::before overlay repaints with pink/purple */
    filter: brightness(0.55) contrast(1.05) saturate(0);
}

/* All existing hero content above everything */
.ff-hero > *:not(.ff-hero-video-col) {
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════
   SECOND ANIMATION PASS — scroll-through liveliness
═══════════════════════════════════════════════ */

/* ── Section label neon-switch-on pulse ── */
@keyframes ffLabelSwitchOn {
    0%   { box-shadow: none; border-color: rgba(255,47,134,0.12); color: rgba(255,47,134,0.5); }
    30%  { box-shadow: 0 0 0 4px rgba(255,47,134,0.18), 0 0 18px rgba(255,47,134,0.45); border-color: rgba(255,47,134,0.75); color: rgba(255,255,255,0.95); }
    65%  { box-shadow: 0 0 0 2px rgba(255,47,134,0.1), 0 0 10px rgba(255,47,134,0.25); border-color: rgba(255,47,134,0.5); }
    100% { box-shadow: none; border-color: rgba(255,47,134,0.22); color: rgba(255,47,134,0.7); }
}
.ff-section-label.ff-label-lit {
    animation: ffLabelSwitchOn 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ── Hero mouse parallax — smooth reposition via JS-set CSS vars ── */
.ff-hero-video-col {
    transition: transform 0.12s linear;
    will-change: transform;
}
.ff-hero-content {
    transition: transform 0.18s linear;
    will-change: transform;
}

/* ── Comparison table row reveal ── */
.ff-compare-row {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.ff-compare-row.ff-compare-row-in {
    opacity: 1;
    transform: translateX(0);
}

/* ── FAQ item reveal ── */
.ff-faq-item {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s;
}
.ff-faq-item.ff-faq-in {
    opacity: 1;
    transform: translateY(0);
}

/* ── Stats count-up — subtle pulse on the number when it starts ── */
@keyframes ffStatPop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.ff-stat-num.ff-stat-counting {
    display: inline-block;
    animation: ffStatPop 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ═══════════════════════════════════════════════════════
   FF NEW SECTIONS
   ═══════════════════════════════════════════════════════ */

/* Scroll reveal */
.ff-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.ff-reveal.ff-in { opacity: 1; transform: none; }
.ff-d1 { transition-delay: 0.09s; }
.ff-d2 { transition-delay: 0.18s; }
.ff-d3 { transition-delay: 0.27s; }

/* Shared typography */
.ff-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.11em;
  color: #FF2F86; text-transform: uppercase; margin-bottom: 18px; text-align: center;
}
.ff-sh1 {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 16px; text-align: center; color: #F8FAFC;
}
.ff-sh1 em { font-style: normal; color: #FF2F86; }
.ff-ssub {
  font-size: 16px; color: #C7CEDD; max-width: 520px;
  margin: 0 auto; line-height: 1.7; text-align: center;
}

/* ── SEARCH DEMO ── */
.ff-srch-sec { padding: 64px 24px; background: linear-gradient(180deg, rgba(255,47,134,0.02), rgba(255,47,134,0.03), rgba(255,47,134,0.01)); }
.ff-srch-in { max-width: 900px; margin: 0 auto; text-align: center; }
.ff-srch-bar {
  display: flex; align-items: center; gap: 14px;
  background: #111622; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px; padding: 16px 22px; margin: 40px auto 24px;
  transition: box-shadow 0.3s; cursor: text;
}
.ff-srch-bar.ff-glow {
  box-shadow: 0 0 0 3px rgba(255,47,134,0.20), 0 8px 32px rgba(255,47,134,0.12);
}
.ff-srch-icon { font-size: 18px; color: #7F889A; flex-shrink: 0; }
.ff-srch-typed-row {
  display: flex; align-items: center; flex: 1; min-width: 0;
  overflow: hidden;
}
.ff-srch-typed {
  flex: 0 1 auto; text-align: left; font-size: 17px;
  color: #F8FAFC; font-weight: 600; min-height: 24px;
  white-space: nowrap;
}
.ff-srch-cur {
  display: inline-block; width: 2px; height: 20px;
  background: #FF2F86; flex-shrink: 0; margin-left: 2px;
  animation: ff-blink 0.9s step-end infinite;
}
@keyframes ff-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ff-srch-count {
  background: rgba(255,47,134,0.12); border: 1px solid rgba(255,47,134,0.25);
  border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 700;
  color: #FF2F86; flex-shrink: 0; white-space: nowrap; transition: opacity 0.3s;
}
.ff-srch-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; min-height: 280px;
  transition: opacity 0.28s ease;
}
.ff-srch-grid.ff-out { opacity: 0; }

/* Creator cards */
.ff-cc {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); background: #0D111A;
  animation: ff-ccin 0.4s ease both; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.ff-cc:hover { border-color: rgba(255,47,134,0.3); transform: translateY(-3px); }
@keyframes ff-ccin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ff-cc-img { position: relative; height: 200px; overflow: hidden; }
.ff-cc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ff-cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
}
.ff-cc-inits {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 52px; font-weight: 900;
  color: rgba(255,255,255,0.09); letter-spacing: 0.02em;
}
.ff-cc-photo { position: absolute; inset: 0; overflow: hidden; }
.ff-cc-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  filter: blur(4px) brightness(0.78) saturate(1.15);
  transform: scale(1.1);
}
.ff-cc-online {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.65); border-radius: 999px; padding: 4px 10px;
  font-size: 10px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 5px; backdrop-filter: blur(8px);
}
.ff-cc-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #56D93F; }
.ff-cc-badge-new {
  position: absolute; top: 10px; left: 10px;
  background: rgba(13,17,26,0.75); border-radius: 999px; padding: 4px 10px;
  font-size: 10px; font-weight: 600; color: #C7CEDD; backdrop-filter: blur(8px);
}
.ff-cc-badge-top {
  position: absolute; top: 10px; left: 10px;
  background: rgba(13,17,26,0.75); border-radius: 999px; padding: 4px 10px;
  font-size: 10px; font-weight: 600; color: #F5B83D; backdrop-filter: blur(8px);
}
.ff-cc-heart {
  position: absolute; top: 10px; right: 10px; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
}
.ff-cc-verified {
  position: absolute; bottom: 10px; left: 10px;
  background: linear-gradient(135deg,#FF2F86,#E91E73); border-radius: 999px;
  padding: 3px 10px; font-size: 9.5px; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}
.ff-cc-info { padding: 14px; }
.ff-cc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.ff-cc-name { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: #F8FAFC; }
.ff-cc-rating { font-size: 13px; font-weight: 700; color: #F5B83D; }
.ff-cc-meta { font-size: 12px; color: #7F889A; margin-bottom: 8px; }
.ff-cc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ff-cc-tag {
  font-size: 10.5px; padding: 3px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: #C7CEDD;
  border: 1px solid rgba(255,255,255,0.07);
}

/* ── WORLD MAP ── */
.ff-map-sec {
  padding: 64px 24px; text-align: center;
  background: linear-gradient(180deg, rgba(255,47,134,0.02), rgba(255,47,134,0.04), rgba(255,47,134,0.01));
}
/* ── GLOBE / CREATOR ORIGINS SECTION ── */
.ff-origins {
  width: 100%; padding: 64px 24px;
  background: linear-gradient(180deg, rgba(255,47,134,0.02), rgba(255,47,134,0.035), rgba(255,47,134,0.01));
}
.ff-origins__shell {
  position: relative; overflow: hidden; width: min(100%, 980px); margin: auto;
  border: 1px solid rgba(255,126,202,.18); border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012)), rgba(5,7,11,.9);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.07);
}
.ff-origins__grid {
  position: relative; display: grid;
  grid-template-columns: minmax(280px,.9fr) minmax(330px,1fr);
  gap: clamp(12px,2.5vw,34px); align-items: center; min-height: 430px;
  padding: clamp(24px,4vw,46px); padding-bottom: 86px;
}
.ff-origins__copy { position: relative; z-index: 4; max-width: 500px; }
.ff-origins__eyebrow {
  display: inline-flex; gap: 9px; align-items: center; margin: 0 0 15px;
  color: #ff8ac7; font-size: .68rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
}
.ff-origins__eyebrow::before {
  content: '◌'; display: grid; place-items: center; width: 19px; height: 19px;
  border: 1px solid rgba(255,138,199,.46); border-radius: 50%; box-shadow: 0 0 15px rgba(255,93,173,.18);
}
.ff-origins__title {
  margin: 0; font-size: clamp(2.45rem,4.8vw,4.4rem);
  line-height: .98; letter-spacing: -.065em; font-weight: 860; color: #fff;
}
.ff-origins__title span {
  display: block; margin-top: .1em;
  background: linear-gradient(90deg, #ffa2d0, #FF2F86 46%, #a477ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ff-origins__lead {
  max-width: 440px; margin: 20px 0 0; color: rgba(251,248,255,.68);
  font-size: clamp(.94rem,1.35vw,1.08rem); line-height: 1.55; letter-spacing: -.015em;
}
.ff-origins__cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 14px; min-width: min(100%,300px); margin-top: 28px; padding: 15px 19px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 16px;
  background: linear-gradient(135deg,rgba(255,255,255,.18),transparent 42%), linear-gradient(90deg,#b81d70,#FF2F86 58%,#b261ff);
  color: #fff; text-decoration: none; font-weight: 800; font-size: .98rem;
  box-shadow: 0 16px 34px rgba(255,47,147,.18), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .2s ease, filter .2s ease;
}
.ff-origins__cta:hover { transform: translateY(-2px); filter: saturate(1.06); color: #fff; }
/* Globe stage */
.ff-origins__stage {
  position: relative; z-index: 2; display: grid; place-items: center;
  min-height: 350px; overflow: visible;
}
.ff-origins__globe-wrap {
  position: relative; width: clamp(300px,34vw,470px); aspect-ratio: 1;
  display: grid; place-items: center; overflow: visible;
}
.ff-origins__halo {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,93,173,.06), rgba(157,108,255,.08) 38%, transparent 70%);
  filter: blur(14px); transform: scale(1.15); pointer-events: none;
}
.ff-origins__canvas {
  position: relative; z-index: 2; width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 0 24px rgba(255,93,173,.18)) drop-shadow(0 0 44px rgba(157,108,255,.14));
}
.ff-origins__fallback {
  display: none; position: absolute; inset: 7%; border-radius: 50%;
  background: radial-gradient(circle at 38% 26%,rgba(255,255,255,.12),transparent 9%),
              radial-gradient(circle at 54% 48%,rgba(255,93,173,.18),transparent 30%), #080b19;
  box-shadow: inset -30px -26px 54px rgba(0,0,0,.64), 0 0 54px rgba(157,108,255,.18);
}
.ff-origins--fallback .ff-origins__canvas { display: none; }
.ff-origins--fallback .ff-origins__fallback { display: block; }
/* Activity cards */
.ff-card {
  position: absolute; z-index: 5; width: 126px; padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 11px;
  background: linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),rgba(9,13,24,.76);
  box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: opacity .22s ease, transform .22s ease;
}
.ff-card strong {
  display: flex; gap: 5px; align-items: center;
  font-size: .64rem; color: rgba(255,255,255,.95); line-height: 1.2;
}
.ff-card strong::after {
  content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: #FF2F86; box-shadow: 0 0 8px rgba(255,93,173,.8);
}
.ff-card span  { display: block; margin-top: 2px; font-size: .66rem; color: rgba(255,255,255,.91); }
.ff-card small { display: block; margin-top: 1px; font-size: .58rem; color: rgba(255,255,255,.52); }
.ff-card--london { left: -6%; top: 16%; }
.ff-card--berlin { right: -4%; top: 13%; }
.ff-card--cape   { left: 6%;  bottom: 10%; }
.ff-card--sydney { right: -2%; bottom: 14%; }
/* Ticker */
.ff-origins__ticker {
  position: absolute; left: clamp(14px,3vw,36px); right: clamp(14px,3vw,36px); bottom: 22px; z-index: 6;
  min-height: 46px; display: flex; align-items: center; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09); border-radius: 15px;
  background: rgba(3,5,11,.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.ff-origins__ticker::before, .ff-origins__ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ff-origins__ticker::before { left: 0;  background: linear-gradient(90deg, rgba(3,5,11,.96), transparent); }
.ff-origins__ticker::after  { right: 0; background: linear-gradient(270deg,rgba(3,5,11,.96), transparent); }
.ff-origins__track { display: flex; width: max-content; animation: ffTicker 34s linear infinite; }
.ff-origins__group { display: flex; gap: 26px; padding-right: 26px; white-space: nowrap; align-items: center; }
.ff-origins__item {
  display: inline-flex; align-items: center; gap: 26px;
  color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.ff-origins__item::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #FF2F86; box-shadow: 0 0 12px rgba(255,93,173,.72);
}
@keyframes ffTicker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ff-origins__track { animation: none; }
  .ff-origins__cta   { transition: none; }
}
/* Globe responsive */
@media (max-width: 900px) {
  .ff-origins__grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 78px; }
  .ff-origins__copy { max-width: 650px; }
  .ff-origins__stage { min-height: 350px; }
  .ff-origins__globe-wrap { width: clamp(280px,70vw,410px); }
}
@media (max-width: 560px) {
  .ff-origins { padding: 44px 16px; }
  .ff-origins__shell { border-radius: 20px; }
  .ff-origins__grid { padding: 24px 16px 72px; gap: 16px; }
  .ff-origins__title { font-size: clamp(2.1rem,11vw,3.3rem); }
  .ff-origins__lead { font-size: .92rem; }
  .ff-origins__cta { width: 100%; justify-content: center; }
  .ff-origins__stage { min-height: 280px; }
  .ff-origins__globe-wrap { width: clamp(230px,72vw,310px); }
  .ff-card { width: 108px; padding: 6px 8px; }
  .ff-card strong { font-size: .6rem; }
  .ff-card span   { font-size: .62rem; }
  .ff-card small  { font-size: .54rem; }
  .ff-card--berlin, .ff-card--sydney { display: none; }
  .ff-card--london { left: 0; top: 8%; }
  .ff-card--cape   { right: 0; left: auto; bottom: 5%; }
  .ff-origins__ticker { min-height: 42px; bottom: 16px; }
  .ff-origins__item { font-size: .64rem; letter-spacing: .12em; }
}

/* ── RANK POSITION DEMO ── */
.ff-rank-sec { padding: 64px 24px; background: linear-gradient(180deg, rgba(255,47,134,0.02), rgba(255,47,134,0.035), rgba(255,47,134,0.01)); }
.ff-rank-in { max-width: 980px; margin: 0 auto; }
.ff-rank-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; align-items: start; }
.ff-rl { text-align: left; }
.ff-rl-qlbl { font-size: 10px; font-weight: 700; color: #7F889A; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.ff-rl-qbox {
  background: #111622; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.ff-rl-qi { font-size: 16px; color: #7F889A; }
.ff-rl-qt { font-size: 15px; color: #F8FAFC; font-weight: 500; min-height: 22px; }
.ff-rl-qcur {
  display: inline-block; width: 2px; height: 16px; background: #FF2F86;
  vertical-align: middle; animation: ff-blink 0.9s step-end infinite;
}
.ff-rl-body { font-size: 14px; color: #C7CEDD; line-height: 1.75; }
.ff-rl-body strong { color: #FF2F86; }
.ff-rl-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  background: rgba(255,47,134,0.08); border: 1px solid rgba(255,47,134,0.25);
  border-radius: 999px; padding: 9px 20px; font-size: 12px; font-weight: 700; color: #FF2F86;
}
.ff-rr-lbl { font-size: 10px; font-weight: 700; color: #7F889A; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.ff-rr {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 12px; margin-bottom: 8px; background: #0D111A;
  border: 1px solid rgba(255,255,255,0.07); transition: all 0.55s cubic-bezier(0.22,1,0.36,1);
}
.ff-rr.ff-pin { border-color: rgba(255,47,134,0.45); background: rgba(255,47,134,0.06); box-shadow: 0 4px 28px rgba(255,47,134,0.12); }
.ff-rr-pos { font-size: 15px; font-weight: 800; color: #7F889A; width: 26px; text-align: center; flex-shrink: 0; }
.ff-rr.ff-pin .ff-rr-pos { color: #FF2F86; }
.ff-rr-av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.3); }
.ff-rr-inf { flex: 1; }
.ff-rr-name { font-size: 13px; font-weight: 700; color: #F8FAFC; display: flex; align-items: center; gap: 6px; }
.ff-rr.ff-pin .ff-rr-name { color: #FF2F86; }
.ff-rr-loc { font-size: 11px; color: #7F889A; margin-top: 1px; }
.ff-rr-score { font-size: 13px; font-weight: 700; color: #C7CEDD; }
.ff-rr.ff-pin .ff-rr-score { color: #FF2F86; }
.ff-ea-badge { font-size: 8.5px; font-weight: 700; background: linear-gradient(135deg,#FF2F86,#E91E73); color: #fff; padding: 2px 8px; border-radius: 999px; letter-spacing: 0.03em; flex-shrink: 0; }
.ff-up-arr { font-size: 11px; color: #FF2F86; opacity: 0; transition: opacity 0.3s; margin-left: 3px; }
.ff-up-arr.ff-show { opacity: 1; }
@keyframes ff-rflash { 0%{background:rgba(255,47,134,0.12)} 100%{background:#0D111A} }
.ff-rr.ff-flashr { animation: ff-rflash 0.6s ease; }

/* ── PLATFORM LINK-IN-BIO MOCKUP ── */
.ff-plat-sec {
  padding: 64px 24px; text-align: center;
  background: radial-gradient(ellipse at center, rgba(255,47,134,0.07) 0%, transparent 60%);
}
/* Outer wrapper: phone + stats side by side */
.ff-lh-outer {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; max-width: 680px; margin: 44px auto 0; flex-wrap: wrap;
}
/* Phone frame */
.ff-lh-phone {
  width: 284px; flex-shrink: 0;
  background: linear-gradient(170deg, rgba(14,9,24,0.98), rgba(10,6,18,0.99));
  border: 1.5px solid rgba(255,47,134,0.30); border-radius: 36px;
  padding: 20px 18px 18px;
  box-shadow: 0 0 0 1px rgba(255,47,134,0.08), 0 32px 80px rgba(0,0,0,0.7),
              0 0 60px rgba(255,47,134,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
}
.ff-lh-notch {
  width: 50px; height: 5px; border-radius: 3px;
  background: rgba(255,47,134,0.25); margin: 0 auto 18px;
}
/* Profile */
.ff-lh-profile { text-align: center; margin-bottom: 16px; }
.ff-lh-av {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 10px;
  border: 2px solid rgba(255,47,134,0.45); overflow: hidden; background: rgba(255,47,134,0.15);
}
.ff-lh-av img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: blur(3.5px) brightness(0.72) saturate(1.1); transform: scale(1.1);
}
.ff-lh-name { font-size: 15px; font-weight: 800; color: rgba(255,255,255,0.9); }
.ff-lh-handle { font-size: 11px; color: rgba(255,47,134,0.65); margin-top: 3px; font-weight: 600; }
.ff-lh-slug { color: #FF2F86; }
/* Link buttons */
.ff-lhb {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 11px; padding: 11px 13px; margin-bottom: 7px; cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
  position: relative; overflow: hidden;
}
.ff-lhb:last-child { margin-bottom: 0; }
.ff-lhb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; opacity: 0.7; transition: opacity 0.22s; }
.ff-lhb-lbl { flex: 1; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.82); text-align: left; }
.ff-lhb-arr { font-size: 18px; color: rgba(255,255,255,0.3); line-height: 1; transition: color 0.22s, transform 0.22s; }
/* Active tap state — per platform color */
.ff-lhb[data-p="of"].ff-lhb-tap { border-color: rgba(0,175,240,0.55);  background: rgba(0,175,240,0.08);  }
.ff-lhb[data-p="fy"].ff-lhb-tap { border-color: rgba(34,197,94,0.55);  background: rgba(34,197,94,0.08);  }
.ff-lhb[data-p="ig"].ff-lhb-tap { border-color: rgba(225,48,108,0.55); background: rgba(225,48,108,0.08); }
.ff-lhb[data-p="tt"].ff-lhb-tap { border-color: rgba(105,201,208,0.55);background: rgba(105,201,208,0.08);}
.ff-lhb[data-p="x"].ff-lhb-tap  { border-color: rgba(200,200,200,0.45);background: rgba(200,200,200,0.06);}
.ff-lhb[data-p="sc"].ff-lhb-tap { border-color: rgba(255,252,0,0.45);  background: rgba(255,252,0,0.06);  }
.ff-lhb.ff-lhb-tap { transform: scale(0.98); }
.ff-lhb.ff-lhb-tap .ff-lhb-dot  { opacity: 1; }
.ff-lhb.ff-lhb-tap .ff-lhb-arr  { color: rgba(255,255,255,0.7); transform: translateX(2px); }
/* Footer */
.ff-lh-footer {
  text-align: center; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.2);
  margin-top: 14px; letter-spacing: 0.04em;
}
/* Stats column */
.ff-lh-stats {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.ff-lhs {
  background: rgba(13,17,26,0.90); border: 1px solid rgba(255,47,134,0.25);
  border-radius: 14px; padding: 14px 20px; text-align: center; min-width: 110px;
  backdrop-filter: blur(12px);
}
.ff-lhs strong { display: block; font-size: 24px; font-weight: 900; color: #FF2F86; letter-spacing: -0.02em; line-height: 1.1; }
.ff-lhs em { display: block; font-size: 10px; font-style: normal; color: rgba(255,255,255,0.42); margin-top: 3px; font-weight: 600; letter-spacing: 0.02em; }

/* ── RESPONSIVE — NEW SECTIONS ── */

/* Tablet */
@media (max-width: 960px) {
  .ff-srch-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

/* Large mobile */
@media (max-width: 768px) {
  .ff-srch-sec, .ff-rank-sec, .ff-plat-sec { padding: 52px 20px; }
  .ff-sh1 { font-size: clamp(24px, 6vw, 38px); }
  .ff-ssub { font-size: 15px; }

  /* Search demo */
  .ff-srch-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ff-cc-img { height: 170px; }

  /* Platform */
  .ff-lh-outer { gap: 20px; }
  .ff-lh-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; }

  /* Rank demo */
  .ff-rank-demo { grid-template-columns: 1fr; gap: 24px; }

  /* Link hub phone — scale on larger mobile */
  .ff-lh-phone { width: 260px; }
}

/* Mobile */
@media (max-width: 560px) {
  .ff-srch-sec, .ff-rank-sec, .ff-plat-sec { padding: 44px 16px; }
  .ff-sh1 { font-size: clamp(22px, 7vw, 30px); }
  .ff-ssub { font-size: 14px; }

  /* Search */
  .ff-srch-bar { padding: 12px 14px; gap: 8px; border-radius: 12px; }
  .ff-srch-typed { font-size: 14px; }
  .ff-srch-count { font-size: 10px; padding: 4px 10px; }
  .ff-srch-grid { grid-template-columns: repeat(2,1fr); gap: 8px; min-height: auto; }
  .ff-cc-img { height: 150px; }
  .ff-cc-info { padding: 10px; }
  .ff-cc-name { font-size: 13px; }
  .ff-cc-meta { font-size: 10px; }
  .ff-cc-tag { font-size: 9.5px; padding: 2px 8px; }

  /* Platform mobile */
  .ff-lh-outer { flex-direction: column; gap: 16px; }
  .ff-lh-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .ff-lhs { min-width: 90px; padding: 12px 16px; }

  /* Platform link hub */
  .ff-lh-phone { width: 248px; border-radius: 28px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .ff-srch-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .ff-cc-img { height: 130px; }
}

/* ── Logged-in locked state ─────────────────────────────────────────────── */
.ff-locked-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 47, 134, 0.07);
  border: 1px solid rgba(255, 47, 134, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ff-locked-wrap--cta {
  padding: 1.2rem 1.6rem;
}

.ff-locked-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.ff-locked-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.ff-locked-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ff-locked-btn {
  display: inline-block;
  padding: 0.58rem 1.3rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.ff-locked-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.ff-locked-btn--primary {
  background: linear-gradient(135deg, #FF2F86 0%, #c0255e 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(255, 47, 134, 0.35);
}

.ff-locked-btn--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ff-locked-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Footer logged-in variant */
.ff-footer-loggedin {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Showcase CTA panel locked variant */
.ff-browser-cta-panel--locked {
  border-color: rgba(255, 47, 134, 0.3);
  background: linear-gradient(180deg, rgba(255, 47, 134, 0.08) 0%, rgba(12, 6, 22, 0.9) 100%);
}

@media (max-width: 480px) {
  .ff-locked-wrap { padding: 0.9rem 1rem; }
  .ff-locked-btn { font-size: 0.82rem; padding: 0.52rem 1.1rem; }
}

/* ── Login icon — floats top-right over the hero ── */
.ff-login-icon {
  position: fixed;
  top: 1.1rem;
  right: 1.4rem;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.ff-login-icon:hover {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
}
