:root {
    /* Playful Light Color System — synced with JS colorMap */
    --color-primary: #0066FF;
    /* Electric Blue */
    --color-chill: #B8A9E8;
    /* Soft Lavender */
    --color-adventurous: #FF6B35;
    /* Sunset Orange */
    --color-social: #FF2D87;
    /* Hot Pink */
    --color-restless: #FFE14D;
    /* Electric Yellow */
    --color-curious: #00D4AA;
    /* Teal Green */
    --color-bold: #FF3366;
    /* Fiery Pink/Red */
    --color-chaotic: #9D4EDD;
    /* Electric Purple */
    --color-cozy: #E8985E;
    /* Warm Amber */
    --color-main-character: #FFB400;
    /* Golden Yellow */
    --color-nostalgic: #7B9EA8;
    /* Dusty Blue */
    --color-bg: #F8F9FA;
    /* Playful Off-White */
    --color-text: #212529;
    /* Dark Charcoal */

    /* Dynamic Mood Color (defaults to primary) */
    --mood-color: var(--color-primary);
    --mood-color-rgb: 0, 102, 255;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

/* Background Morph */
.living-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08) 0%, var(--color-bg) 80%);
    transition: background 1.5s ease-in-out;
}

/* Decorative Background Elements */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -3;
    /* Behind grid and living background */
    opacity: 0.4;
    animation: floatingBlobs 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
    pointer-events: none;
    transition: background 1s ease;
}

.shape-1 {
    width: 45vw;
    height: 45vw;
    background: var(--color-primary);
    top: -10vw;
    left: -10vw;
}

.shape-2 {
    width: 35vw;
    height: 35vw;
    background: var(--mood-color);
    bottom: -10vw;
    right: -10vw;
    animation-delay: -10s;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
}

/* Typography styles */
.typewriter-headline {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 1000;
    /* Extra bold */
    line-height: 1.05;
    letter-spacing: -0.05em;
    transform: rotate(-3deg);
    margin-bottom: var(--space-xl);

    /* Playful gradient spotlight sweep */
    background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 40%, var(--color-primary) 50%, var(--color-social) 60%, #1a1a1a 70%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 8s linear infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

@keyframes shineText {
    0% {
        background-position: -50% center;
    }

    30% {
        background-position: 150% center;
    }

    100% {
        background-position: 150% center;
    }
}

/* Reusable Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Section Resets */
.fullscreen-section {
    min-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 8rem var(--space-md);
    margin: 0;
}

#hero,
#waitlist {
    min-height: 100vh;
}

.center-content {
    align-items: center;
    text-align: center;
}

/* Nav & Logo */
.nav-container {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) 0;
    animation: fadeInDown 1s ease-out forwards;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-primary);
    animation: floatLogo 4s ease-in-out infinite;
    transition: color 0.5s ease;
    line-height: 1;
    letter-spacing: -0.03em;
}

.logo-container img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-container:hover img {
    transform: rotate(360deg) scale(1.1);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-xl);
}

.cta-pulse {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.cta-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.cta-pulse .arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-pulse:hover .arrow {
    transform: translateX(6px);
}

.cta-pulse:hover {
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(var(--mood-color-rgb), 0.3);
    transform: translateY(-4px) scale(1.02);
}

/* Mood Pills */
.mood-pills-container {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-lg);
}

.mood-pill {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatOrbit 6s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.mood-pill:nth-child(even) {
    animation-direction: alternate-reverse;
    animation-duration: 7s;
}

.mood-pill:hover {
    transform: scale(1.1) translateY(-5px);
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.5;
}

.arrow-down {
    animation: bounce 2s infinite;
}

/* Why Ssup — Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.value-prop-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.value-prop-item:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.vp-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.vp-content {
    flex: 1;
}

.vp-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.vp-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.55);
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatOrbit {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    100% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes breath {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px var(--mood-color);
    }

    100% {
        transform: scale(1.02);
        text-shadow: 0 0 50px var(--mood-color);
    }
}

@keyframes floatingBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, 3vw) scale(1.05);
    }

    66% {
        transform: translate(-3vw, 5vw) scale(0.95);
    }

    100% {
        transform: translate(2vw, -2vw) scale(1.02);
    }
}

/* Typography & Layout Utility Added */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: var(--space-lg);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-header .subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: var(--space-md);
}

/* How It Works Section */
.cards-container {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.step-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

/* Scroll reveal classes added by JS */
.step-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
}

.chill-glow:hover {
    box-shadow: 0 0 30px rgba(184, 169, 232, 0.3);
    background: rgba(184, 169, 232, 0.08);
}

.curious-glow:hover {
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
    background: rgba(0, 212, 170, 0.08);
}

.adventurous-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.08);
}

.step-emoji {
    font-size: 3.5rem;
}

.step-card h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.step-card.chill-glow h3 {
    color: var(--color-chill);
}

.step-card.curious-glow h3 {
    color: var(--color-curious);
}

.step-card.adventurous-glow h3 {
    color: var(--color-adventurous);
}

.step-card p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
}

/* Interactive Demo */
.demo-mood-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.demo-mood-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.demo-mood-card .emoji {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.demo-mood-card .label {
    font-family: var(--font-mono);
    font-size: 1rem;
}

.demo-mood-card:hover,
.demo-mood-card.active {
    background: #FFFFFF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.demo-mood-card:hover .emoji,
.demo-mood-card.active .emoji {
    transform: scale(1.2);
}

.demo-result-container {
    width: 100%;
    max-width: 600px;
    margin: var(--space-xl) auto 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: translateY(0);
}

#demo-result {
    overflow: hidden;
    max-height: 500px;
}

#demo-result.hide-result {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(40px);
}

.result-card {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.result-headline {
    color: var(--mood-color);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.result-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.result-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
}

.result-list li:last-child {
    border-bottom: none;
}

.result-list li span {
    font-size: 1.5rem;
}

.result-cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Anti-Features Section */
.anti-feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.anti-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.anti-feature-item:last-child {
    border-bottom: none;
}

.anti-feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cross-out-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.cross {
    color: #FF3366;
    font-size: 2rem;
    font-weight: bold;
}

.strike-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-text);
}

.strike-line {
    position: absolute;
    top: 50%;
    left: 3rem;
    /* past the cross */
    right: 0;
    height: 3px;
    background-color: #FF3366;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1);
    transition-delay: 0.3s;
}

.anti-feature-item.is-visible .strike-line {
    transform: scaleX(1);
}

.anti-feature-item p {
    font-size: 1.2rem;
    color: var(--mood-color);
    font-family: var(--font-mono);
    transition: color 0.5s;
}

/* Social Proof Section */
.live-mood-bar-container {
    display: flex;
    height: 80px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--space-lg);
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateZ(0);
}

.mood-bar-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--seg-color);
    width: var(--seg-width);
    flex-shrink: 1;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    gap: var(--space-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mood-bar-segment:last-child {
    border-right: none;
}

/* Gel Top Highlight */
.mood-bar-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    pointer-events: none;
}

/* Smooth Interactive Hover Effects */
.live-mood-bar-container:hover .mood-bar-segment {
    width: calc(var(--seg-width) - 2%);
    opacity: 0.8;
}

.live-mood-bar-container .mood-bar-segment:hover {
    width: calc(var(--seg-width) + 12%);
    opacity: 1;
    color: #000;
    filter: brightness(1.05);
}

.testimonials-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: var(--space-md) 0;
}

.marquee-content {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    animation: marquee 40s linear infinite;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: var(--space-lg);
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8);
    width: 400px;
    border-left: 6px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.chill-border {
    border-left-color: var(--color-chill);
}

.curious-border {
    border-left-color: var(--color-curious);
}

.adventurous-border {
    border-left-color: var(--color-adventurous);
}

.social-border {
    border-left-color: var(--color-social);
}

.restless-border {
    border-left-color: var(--color-restless);
}

/* Testimonial Card Inner Layout */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chill-avatar {
    background: rgba(184, 169, 232, 0.15);
}

.curious-avatar {
    background: rgba(0, 212, 170, 0.15);
}

.adventurous-avatar {
    background: rgba(255, 107, 53, 0.15);
}

.social-avatar {
    background: rgba(255, 45, 135, 0.15);
}

.restless-avatar {
    background: rgba(255, 225, 77, 0.15);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-handle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-mood-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 1px 8px;
    border-radius: 20px;
    width: fit-content;
}

.chill-tag {
    background: rgba(184, 169, 232, 0.15);
    color: #8B7FC7;
}

.curious-tag {
    background: rgba(0, 212, 170, 0.15);
    color: #00A882;
}

.adventurous-tag {
    background: rgba(255, 107, 53, 0.15);
    color: #E05A2B;
}

.social-tag {
    background: rgba(255, 45, 135, 0.15);
    color: #D4246F;
}

.restless-tag {
    background: rgba(255, 225, 77, 0.15);
    color: #B89F00;
}

.testimonial-time {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.testimonial-body {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.75);
}

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

    100% {
        transform: translateX(calc(-50% - (var(--space-lg) / 2)));
    }
}

/* Waitlist CTA Section */
.waitlist-section {
    justify-content: center;
    gap: var(--space-lg);
}

.waitlist-logo {
    margin-bottom: var(--space-md);
    animation: bounce 4s infinite;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.input-wrapper {
    width: 100%;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--color-text);
    font-family: var(--font-body);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.email-input:focus {
    outline: none;
    border-color: var(--mood-color);
    box-shadow: 0 0 20px rgba(var(--mood-color-rgb), 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    background: #FFFFFF;
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.waitlist-btn {
    width: 100%;
    justify-content: center;
}

.app-store-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.or-text {
    font-family: var(--font-mono);
    color: rgba(0, 0, 0, 0.4);
}

.store-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.store-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--mood-color);
    line-height: 1.2;
    transition: color 0.5s ease;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.45);
    text-transform: lowercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
}

.trust-dot {
    color: rgba(0, 0, 0, 0.2);
}

.trust-item {
    white-space: nowrap;
}

/* Launch Badge */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--mood-color);
    margin-top: var(--space-md);
    transition: color 0.5s ease;
}

/* Footer Section */
.app-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    width: 100%;
    max-width: 900px;
    align-items: flex-start;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mood-color);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: var(--space-sm);
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: var(--space-xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mood-color);
    margin-bottom: var(--space-sm);
    transition: color 0.5s ease;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--mood-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.easter-egg-text {
    opacity: 0.3;
    transition: opacity 0.3s;
    font-size: 0.8rem;
}

.easter-egg-text:hover {
    opacity: 1;
}

/* FOMO Join Toast */
.join-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.join-toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-emoji {
    font-size: 1.2rem;
}

.toast-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text);
}

/* Hero Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content .cta-pulse {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.mood-pills-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.scroll-indicator {
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

/* Hero Floating Stickers */
.hero-sticker {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    font-size: 2rem;
    opacity: 0;
    animation: stickerPop var(--sticker-duration, 4s) ease-out forwards;
    animation-delay: var(--sticker-delay, 0s);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

@keyframes stickerPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(var(--sticker-rotate-start, -20deg));
    }

    15% {
        opacity: 0.85;
        transform: scale(1.2) rotate(var(--sticker-rotate-mid, 10deg));
    }

    25% {
        transform: scale(0.95) rotate(var(--sticker-rotate-end, -5deg));
    }

    35% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) rotate(var(--sticker-rotate-end, 15deg)) translateY(var(--sticker-drift, -30px));
    }
}

/* Confetti */
@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* =========================================
   Responsive Design
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .fullscreen-section {
        padding: 6rem var(--space-lg);
    }

    .cards-container {
        gap: var(--space-md);
    }

    .step-card {
        min-width: 200px;
    }

    .testimonial-card {
        width: 320px;
    }

    .cursor-glow {
        display: none;
    }

    .demo-mood-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fullscreen-section {
        padding: 4rem var(--space-md);
    }

    .typewriter-headline {
        transform: rotate(-1.5deg);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .mood-pills-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
        max-width: 320px;
    }

    .mood-pill {
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        animation: none;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .demo-mood-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .strike-text {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .live-mood-bar-container {
        height: 60px;
        border-radius: 30px;
    }

    .mood-bar-segment {
        font-size: 0.7rem;
    }

    .seg-label {
        display: none;
    }

    .testimonial-card {
        width: 280px;
        font-size: 1rem;
        padding: var(--space-md);
    }

    .hook-line {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .section-header .subtitle {
        font-size: 1.3rem;
    }

    .waitlist-form {
        padding: 0 var(--space-md);
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .value-prop-item {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .vp-icon {
        font-size: 1.8rem;
    }

    .vp-title {
        font-size: 1.1rem;
    }

    .vp-desc {
        font-size: 0.9rem;
    }

    .testimonial-mood-tag {
        display: none;
    }

    .testimonial-body {
        font-size: 0.95rem;
    }

    .join-toast {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .stats-row {
        gap: 1.2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-nav {
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .app-footer {
        padding: var(--space-lg) var(--space-md);
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .typewriter-headline {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .cta-pulse {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .demo-mood-card {
        padding: var(--space-md);
    }

    .demo-mood-card .emoji {
        font-size: 2rem;
    }
}