:root {
    --bg-dark: #1D3557;
    --bg-light: #F8FAFC;
    --text-main: #ffffff;
    --text-dark: #1E293B;
    --text-muted: #8b95a1;
    --text-muted-light: #64748b;
    --tinder-flame: #FF7F6A; 
    --tinder-orange: #FF7F6A; 
    --matcha-green: #6FAF73; 
    --tinder-nope: #FF7F6A;
    --tinder-like: #6FAF73;
    
    /* Active Theme Variables (Default Light) */
    --bg-primary: var(--bg-light);
    --bg-navbar: rgba(248, 250, 252, 0.6);
    --bg-card: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.04);
    --bg-secondary: #f1f5f9;
    --bg-footer: #e2e8f0;
    --text-color: var(--text-dark);
    --text-muted-active: var(--text-muted-light);
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Soft Gradients for Light Mode to reduce eye strain */
    --gradient-hero: linear-gradient(135deg, #edf7ed 0%, #e3f2fd 100%);
    --gradient-cta: linear-gradient(135deg, #e3f2fd 0%, #edf7ed 100%);
    --gradient-flow: linear-gradient(180deg, var(--bg-primary), #eef2f6);
}

:root[data-theme="dark"] {
    --bg-primary: var(--bg-dark);
    --bg-navbar: rgba(29, 53, 87, 0.55);
    --bg-card: #1E293B;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-secondary: #15253e;
    --bg-footer: #112037;
    --text-color: var(--text-main);
    --text-muted-active: var(--text-muted);
    --border-color: rgba(255, 255, 255, 0.08);

    /* Deep Gradients for Dark Mode */
    --gradient-hero: linear-gradient(135deg, #0B1929 0%, #1D3557 100%);
    --gradient-cta: linear-gradient(135deg, #0D1F35 0%, #1D3557 100%);
    --gradient-flow: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-color);
    overflow-x: clip;
    line-height: 1.5;
    cursor: none; /* Hide default cursor */
}

a, button {
    cursor: none; /* Custom cursor everywhere */
}

/* Custom Cursor: The Merging Nodes */
#connection-cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 0; height: 0;
}
.node {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.node-matcha {
    background-color: var(--matcha-green);
    top: -6px; left: -6px;
}
.node-tinder {
    background-color: var(--tinder-orange);
    top: 6px; left: 6px;
}

/* Cursor Hover State (The Merge) */
body.cursor-hover .node {
    width: 40px; height: 40px;
    top: 0; left: 0;
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}
body.cursor-hover .node-matcha {
    border-color: var(--matcha-green);
    transform: translate(-50%, -50%) scale(1.1);
}
body.cursor-hover .node-tinder {
    border-color: var(--tinder-orange);
    transform: translate(-50%, -50%) scale(0.9);
}

/* Animated Background Blobs */
.blob-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.6;
}
.blob {
    position: absolute;
    border-radius: 50%;
    animation: blob-float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-matcha {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--matcha-green), transparent 70%);
    top: -10%; left: -10%;
}
.blob-tinder {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--tinder-orange), transparent 70%);
    bottom: -10%; right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}
.blob-blue {
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, var(--bg-card), transparent 70%); /* Lighter Navy accent */
    top: 40%; left: 40%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20%, 20%) scale(1.2); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-navbar);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-color);
}
.logo span {
    font-weight: 400;
    color: var(--text-muted-active);
}
.brand-wrapper {
    display: inline-block;
    letter-spacing: 0.3px; /* Giãn nhẹ chữ cho dễ đọc khi in đậm */
    margin: 0 3px; /* Cách các từ khác ra một chút xíu */
}
/* Hủy margin khi nằm trong logo để không bị lệch */
.logo .brand-wrapper {
    margin: 0;
}
.brand-matcha {
    color: var(--matcha-green) !important;
    font-weight: 800 !important;
}
.brand-bud {
    color: var(--tinder-orange) !important;
    font-weight: 800 !important;
}
.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(111, 175, 115, 0.35);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    color: var(--text-muted-active);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-link:hover {
    color: var(--text-color);
}
.nav-cta {
    padding: 10px 22px;
    border-radius: 30px;
    background: var(--tinder-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(255, 127, 106, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: none;
    padding: 6px;
    border-radius: 50%;
    color: var(--text-color);
    transition: background 0.2s;
}
.theme-toggle:hover {
    background: rgba(111, 175, 115, 0.1);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 127, 106, 0.5);
}

/* Hamburger (chèn bằng JS, chỉ hiện trên mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 8px;
}

@media (max-width: 640px) {
    .nav-toggle { display: block; }
    .nav-actions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px 5% 24px;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .nav-actions.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-link {
        display: block;
        padding: 6px 2px;
        font-size: 1.05rem;
    }
    .nav-cta {
        text-align: center;
        padding: 12px 22px;
    }
    .theme-toggle { align-self: flex-start; }
}

/* Thiết bị cảm ứng: tắt con trỏ tuỳ biến + hiệu ứng blur động nặng gây treo
   trình duyệt khi long-press; cho phép tap mượt. */
@media (hover: none), (max-width: 640px) {
    html, body, a, button, .theme-toggle, .nav-cta { cursor: auto; }
    #connection-cursor { display: none !important; }
    .blob { animation: none !important; }
    .blob-container { filter: blur(70px); opacity: 0.5; }
    a, button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
    }
    .cta-button, .nav-cta, .nav-link { -webkit-touch-callout: none; }
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 40px 5%;
    gap: 72px;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 520px;
    max-width: 580px;
}

.main-headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--matcha-green), var(--tinder-orange), var(--matcha-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 4px 12px rgba(111, 175, 115, 0.4));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle, .sub-headline {
    font-size: 1.2rem;
    color: var(--text-muted-active);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 520px;
    line-height: 1.6;
}
.subtitle b, .sub-headline b {
    color: var(--text-color);
}

.cta-container {
    margin-bottom: 60px;
}

.cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--tinder-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(253, 80, 104, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    5% { transform: scale(1.05); }
    10% { transform: scale(1); }
    15% { transform: scale(1.05); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(253, 80, 104, 0.6);
    animation: none;
}

.micro-copy {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted-active);
}
.micro-copy b {
    color: var(--text-color);
}

.feature-grid {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 16px 8px 8px;
    border-radius: 40px;
    background: rgba(111, 175, 115, 0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
}
.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 175, 115, 0.5);
}

.feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(111, 175, 115, 0.12);
    color: var(--matcha-green);
}

/* Phone Mockup & Tinder UI */
.hero-interactive {
    position: relative;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mascot pair (dùng ở waitlist.html) - đứng cạnh nhau, feet aligned */
.hero-mascot {
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}
.mascot-bud-hero {
    position: relative;
    z-index: 2;
    height: 300px;
    width: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.45));
    animation: mascot-bob 3.4s ease-in-out infinite;
}
.mascot-hana-badge {
    position: relative;
    z-index: 1;
    height: 291px;
    width: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.45));
    animation: mascot-bob 3.4s ease-in-out infinite reverse;
}
@keyframes mascot-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Hero peek mascots - ló ra ôm 2 góc dưới điện thoại */
.phone-frame {
    position: relative;
    flex: 0 0 auto;
    width: 340px;
}
.hero-peek {
    position: absolute;
    bottom: -12px;
    width: auto;
    z-index: 3;
    cursor: pointer;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.4));
    transition: scale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-peek:hover {
    scale: 1.1;
    animation-play-state: paused;
}
.hero-peek-bud {
    left: -80px;
    height: 158px;
    animation: mascot-bob 3.6s ease-in-out infinite;
}
.hero-peek-hana {
    right: -80px;
    height: 152px;
    animation: mascot-bob 3.6s ease-in-out infinite reverse;
}
@media (max-width: 600px) {
    .hero-peek { display: none; }
}

.phone-mockup {
    width: 340px;
    height: 680px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #222;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px #333;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 100;
}

.tinder-app {
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
}

.tinder-header {
    padding: 35px 20px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--matcha-green);
}
.tinder-header-logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: cover;
}

.tinder-cards {
    flex: 1;
    position: relative;
    margin: 10px;
    perspective: 1000px;
}

.tinder-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform-origin: 50% 100%;
    cursor: grab;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    -webkit-user-select: none;
}
.tinder-card:active {
    cursor: grabbing;
}

/* Default state for stacked cards */
.tinder-card:nth-last-child(1) { z-index: 3; transform: scale(1) translateY(0); }
.tinder-card:nth-last-child(2) { z-index: 2; transform: scale(0.95) translateY(10px); opacity: 0.8;}
.tinder-card:nth-last-child(3) { z-index: 1; transform: scale(0.9) translateY(20px); opacity: 0.5;}

/* Removing transition during drag */
.tinder-card.moving {
    transition: none;
}

.card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.card-info h3 span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.card-info p {
    font-size: 1rem;
    margin-top: 5px;
    color: #e2e8f0;
}

/* Stamps (NOPE/LIKE) */
.stamp {
    position: absolute;
    top: 40px;
    padding: 5px 10px;
    border: 4px solid;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    transform: rotate(-15deg);
}

.stamp-nope {
    right: 30px;
    color: var(--tinder-nope);
    border-color: var(--tinder-nope);
    transform: rotate(15deg);
}

.stamp-like {
    left: 30px;
    color: var(--tinder-like);
    border-color: var(--tinder-like);
}

.tinder-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.tinder-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, background 0.2s;
}
.tinder-btn:hover {
    transform: scale(1.1);
    background: #333;
}
.btn-nope { color: var(--tinder-nope); }
.btn-like { color: var(--tinder-like); }


.interaction-hint {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tinder-flame);
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* --- FEATURE SHOWCASE SECTION --- */
.showcase-section {
    padding: 100px 8%;
    background: var(--bg-secondary); /* Slightly darker than Deep Navy for contrast */
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(to right, var(--text-color), var(--matcha-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-mate { color: var(--tinder-flame); }
.highlight-match { color: var(--matcha-green); }
.highlight-meet { color: #3b82f6; }

.showcase-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.showcase-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Common Mockup Style */
.mock-chat, .mock-event, .mock-profile {
    width: 350px;
    background: var(--bg-card); /* Navy Slate */
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s;
}

.showcase-visual:hover > div {
    transform: rotateY(0) rotateX(0);
}

/* Mate Mockup (Chat) */
.chat-header {
    padding: 15px 20px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: #3f3f46;
}

.chat-name { font-weight: 600; font-size: 1.1rem; }

.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 15px; }

.msg {
    padding: 12px 16px;
    border-radius: 20px;
    max-width: 80%;
    font-size: 0.95rem;
}
.msg.left { background: var(--bg-secondary); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.right { background: linear-gradient(135deg, var(--tinder-orange), var(--tinder-flame)); align-self: flex-end; border-bottom-right-radius: 4px; color: #fff; }

.contract-bubble {
    background: rgba(111, 175, 115, 0.1) !important;
    border: 1px solid rgba(111, 175, 115, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}
.contract-icon { font-size: 1.5rem; }
.contract-details strong { display: block; color: var(--matcha-green); }
.contract-details span { font-size: 0.8rem; color: var(--text-muted); }

.accept-btn {
    width: 100%; padding: 14px; border-radius: 12px; border: none;
    background: var(--matcha-green); color: #fff; font-weight: 700; margin-top: 10px;
}

/* Match Mockup (Event) */
.event-header { padding: 25px 20px 15px; border-bottom: 1px solid var(--border-color); }
.event-header h4 { font-size: 1.2rem; margin-bottom: 8px; }
.event-tag { background: rgba(16, 185, 129, 0.2); color: #10b981; padding: 4px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.event-progress { padding: 20px; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 10px; color: var(--text-muted); }
.progress-bar-bg { width: 100%; height: 8px; background: var(--bg-secondary); border-radius: 4px; }
.progress-bar-fill { height: 100%; background: var(--matcha-green); border-radius: 4px; box-shadow: 0 0 10px rgba(111, 175, 115, 0.5); }
.event-avatars { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 20px; }
.avatar-sm { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-card); }
.bg-1{background:#ef4444} .bg-2{background:#f59e0b} .bg-3{background:#10b981} .bg-4{background:#3b82f6} .bg-5{background:#8b5cf6} .bg-6{background:#ec4899} .bg-7{background:#f97316} .bg-8{background:#14b8a6}
.stake-join-btn { width: calc(100% - 40px); margin: 0 20px 20px; padding: 14px; background: var(--matcha-green); border: none; border-radius: 12px; color: #fff; font-weight: 700; }

/* Meet Mockup (Profile) */
.profile-header-bg { height: 100px; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card)); }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: #000; border: 4px solid var(--bg-card); margin: -40px auto 10px; }
.profile-info { text-align: center; padding: 0 20px; }
.profile-info h4 { font-size: 1.3rem; display: flex; align-items: center; justify-content: center; gap: 5px; }
.verified-badge { color: #3b82f6; font-size: 1rem; }
.profile-info p { font-size: 0.9rem; color: var(--text-muted); margin-top: 5px; }
.profile-action { padding: 30px 20px; text-align: center; }
.pay-msg-btn { width: 100%; padding: 14px; background: #3b82f6; border: none; border-radius: 12px; color: #fff; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; }
.refund-text { font-size: 0.8rem; color: var(--text-muted); }

/* QR Showcase */
.qr-showcase { text-align: center; margin-top: 150px; }
.qr-text h2 { font-size: 3rem; margin-bottom: 20px; }
.qr-text p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 60px; }
.qr-graphic { display: flex; justify-content: center; align-items: center; gap: 40px; }
.qr-phone { width: 200px; height: 400px; border: 6px solid #333; border-radius: 30px; background: #111; display: flex; align-items: center; justify-content: center; }
.left-phone { transform: rotate(-10deg); }
.right-phone { transform: rotate(10deg); }
.qr-code-box { width: 120px; height: 120px; background: repeating-linear-gradient(45deg, #fff 0px, #fff 10px, #000 10px, #000 20px); border: 10px solid #fff; }
.camera-view { width: 100%; height: 100%; background: rgba(163, 230, 53, 0.05); display: flex; align-items: center; justify-content: center; }
.focus-square { width: 140px; height: 140px; border: 2px dashed var(--matcha-green); animation: focus 1s infinite alternate; }
.scan-beam { animation: scan 2s infinite ease-in-out alternate; }

@keyframes focus { 0% { transform: scale(0.95); } 100% { transform: scale(1.05); } }
@keyframes scan { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } }

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   THE LOOP — How It Works redesign (Meet-to-Earn cycle)
   ========================================================================== */
.loop-section { padding-top: 120px; }
.highlight-danger { color: #ef4444; }

/* --- Intro + loop ring --- */
.loop-intro { text-align: center; max-width: 860px; margin: 0 auto 120px; }
.loop-eyebrow {
    display: inline-block;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 3px;
    color: var(--matcha-green);
    padding: 6px 16px; margin-bottom: 20px;
    border: 1px solid rgba(111,175,115,0.4); border-radius: 40px;
    background: rgba(111,175,115,0.08);
}
.loop-section .section-title { margin-bottom: 24px; line-height: 1.2; }
.loop-lede { font-size: 1.15rem; color: var(--text-muted-active); max-width: 680px; margin: 0 auto 48px; }
.loop-ring {
    display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px 14px;
    padding: 18px 26px; border-radius: 60px;
    background: var(--bg-card); border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.loop-node {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.95rem; color: var(--text-color);
    text-decoration: none; padding: 8px 16px; border-radius: 40px;
    transition: background 0.2s, transform 0.2s;
}
.loop-node:hover { transform: translateY(-2px); background: var(--bg-glass); }
.loop-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    font-size: 0.8rem; font-weight: 800; color: #fff;
}
.loop-node-1 .loop-num { background: var(--matcha-green); }
.loop-node-2 .loop-num { background: var(--tinder-orange); }
.loop-node-3 .loop-num { background: #10b981; }
.loop-node-4 .loop-num { background: #3b82f6; }
.loop-arrow { color: var(--text-muted); font-size: 1.2rem; font-weight: 700; }
.loop-arrow-back { color: var(--matcha-green); font-size: 1.4rem; }

/* --- Scene kickers + shared bits --- */
.scene-kicker {
    display: inline-flex; align-items: center;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 16px; padding: 5px 12px; border-radius: 8px;
}
.scene-kicker-match { color: var(--matcha-green); background: rgba(111,175,115,0.12); }
.scene-kicker-mate { color: var(--tinder-orange); background: rgba(255,127,106,0.12); }
.scene-kicker-meet { color: #3b82f6; background: rgba(59,130,246,0.12); }
.scene-kicker-danger { color: #ef4444; background: rgba(239,68,68,0.12); }
.scene-list { list-style: none; padding: 0; margin: 24px 0 0; }
.scene-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--text-muted-active); }
.tick { font-weight: 800; }
.tick-match { color: var(--matcha-green); }
.scene-payoff {
    margin-top: 20px !important; font-weight: 700; color: var(--text-color) !important;
    padding: 14px 18px; border-left: 3px solid var(--matcha-green);
    background: rgba(111,175,115,0.08); border-radius: 0 12px 12px 0;
}

/* --- Scene 1: gift card --- */
.gift-card {
    position: relative; width: 340px; padding: 48px 32px 36px; text-align: center;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25); overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.3s;
}
.showcase-visual:hover .gift-card { transform: rotateY(0) rotateX(0); }
.gift-mascot { width: 120px; height: auto; margin-bottom: 12px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.gift-shine {
    position: absolute; top: -60%; left: -30%; width: 60%; height: 220%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: rotate(25deg); animation: gift-sweep 3.5s ease-in-out infinite;
}
@keyframes gift-sweep { 0%,100% { left: -40%; } 50% { left: 120%; } }
.gift-label { font-size: 0.85rem; color: var(--text-muted); }
.gift-amount { font-size: 3.2rem; font-weight: 900; color: var(--matcha-green); line-height: 1.1; margin: 4px 0; }
.gift-unit { font-size: 1.4rem; }
.gift-sub { font-size: 0.9rem; color: var(--text-muted); }

/* --- Scene 2: commit tabs --- */
.scene-commit { margin-bottom: 120px; }
.scene-commit-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.scene-commit-head h3 { font-size: 2.2rem; margin-bottom: 16px; }
.scene-commit-lede { font-size: 1.1rem; color: var(--text-muted-active); }
.commit-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.commit-tab {
    font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--text-muted-active);
    padding: 12px 22px; border-radius: 40px; border: 1px solid var(--border-color);
    background: var(--bg-glass); transition: all 0.2s;
}
.commit-tab:hover { border-color: var(--matcha-green); color: var(--text-color); }
.commit-tab.active { background: var(--matcha-green); color: #fff; border-color: var(--matcha-green); box-shadow: 0 8px 20px rgba(111,175,115,0.35); }
.commit-panels { position: relative; }
.commit-panel { display: none; }
.commit-panel.active { display: flex; gap: 60px; align-items: center; justify-content: center; animation: panel-in 0.4s ease-out; }
@keyframes panel-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.commit-mock {
    width: 350px; flex-shrink: 0; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.commit-mock .chat-body { gap: 12px; }
.commit-mock .accept-btn { width: 100%; padding: 14px; border-radius: 12px; border: none; background: var(--matcha-green); color: #fff; font-weight: 700; margin-top: 6px; }
.commit-copy { max-width: 340px; text-align: left; }
.commit-mascot { width: 96px; height: auto; margin-bottom: 12px; }
.commit-copy h4 { font-size: 1.5rem; margin-bottom: 12px; }
.commit-copy p { color: var(--text-muted-active); font-size: 1.05rem; }

/* --- Scene 3: penalty card --- */
.penalty-card {
    width: 340px; padding: 40px 32px; text-align: center;
    background: var(--bg-card); border: 1px solid rgba(239,68,68,0.4); border-radius: 24px;
    box-shadow: 0 20px 40px rgba(239,68,68,0.15);
}
.penalty-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
    color: #ef4444; padding: 6px 14px; border-radius: 8px;
    background: rgba(239,68,68,0.12); margin-bottom: 20px;
}
.penalty-amount { font-size: 3.4rem; font-weight: 900; color: #ef4444; line-height: 1; }
.penalty-amount span { font-size: 1.4rem; }
.penalty-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }
.rep-row { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.rep-label { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }
.rep-bar { flex: 1; height: 8px; border-radius: 4px; background: var(--bg-secondary); overflow: hidden; }
.rep-fill { height: 100%; width: 60%; background: linear-gradient(90deg, #ef4444, #f59e0b); border-radius: 4px; }
.rep-drop { font-size: 0.85rem; font-weight: 700; color: #ef4444; white-space: nowrap; }

/* --- Scene 4: reward flows --- */
.reward-flows {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1000px; margin: 70px auto 0;
}
.reward-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 28px 24px; text-align: left; transition: transform 0.2s, border-color 0.2s;
}
.reward-card:hover { transform: translateY(-4px); border-color: rgba(111,175,115,0.5); }
.reward-highlight { border-color: rgba(111,175,115,0.5); background: linear-gradient(180deg, rgba(111,175,115,0.08), var(--bg-card)); }
.reward-icon { font-size: 2.4rem; margin-bottom: 14px; }
.reward-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.reward-card p { color: var(--text-muted-active); font-size: 0.98rem; }
.reward-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.reward-brands span {
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
    padding: 4px 10px; border-radius: 20px; background: var(--bg-glass); border: 1px solid var(--border-color);
}
.reward-mascots { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }
.reward-mascot { width: 100px; height: auto; animation: bob 2.5s ease-in-out infinite; transform-origin: bottom; }
.reward-mascot:nth-child(2) { animation-delay: 0.4s; }
@keyframes bob { 0%,100% { transform: scaleX(var(--flip, 1)) scale(var(--scale, 1)) translateY(0); } 50% { transform: scaleX(var(--flip, 1)) scale(var(--scale, 1)) translateY(-12px); } }

/* --- Scene 5: token power --- */
.scene-power { margin-top: 120px; }
.scene-power-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.scene-power-head h3 { font-size: 2.2rem; margin-bottom: 14px; }
.scene-power-head p { color: var(--text-muted-active); font-size: 1.1rem; }
.power-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.power-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 32px 26px; transition: transform 0.2s, border-color 0.2s;
}
.power-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.5); }
.power-icon { font-size: 2.6rem; margin-bottom: 16px; }
.power-card h4 { font-size: 1.3rem; margin-bottom: 12px; }
.power-card p { color: var(--text-muted-active); font-size: 1rem; }
.power-b2b { background: linear-gradient(180deg, rgba(59,130,246,0.08), var(--bg-card)); border-color: rgba(59,130,246,0.35); }
.power-link { display: inline-block; margin-top: 16px; font-weight: 700; color: #3b82f6; text-decoration: none; }
.power-link:hover { text-decoration: underline; }

/* --- Scene 6: loop close --- */
.loop-close { text-align: center; max-width: 720px; margin: 120px auto 0; }
.loop-close-ring {
    font-size: 3rem; color: var(--matcha-green); width: 80px; height: 80px; line-height: 80px;
    margin: 0 auto 24px; border-radius: 50%; border: 2px dashed var(--matcha-green);
    animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(-360deg); } }
.loop-close h3 { font-size: 2.2rem; margin-bottom: 16px; }
.loop-close p { color: var(--text-muted-active); font-size: 1.15rem; margin-bottom: 32px; }
.loop-close-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Loop responsive --- */
@media (max-width: 968px) {
    .commit-panel.active { flex-direction: column; gap: 32px; }
    .commit-copy { text-align: center; }
    .commit-mascot { margin: 0 auto 12px; }
    .reward-flows, .power-grid { grid-template-columns: 1fr; }
    .loop-section .section-title { font-size: 2.1rem; }
    .scene-commit-head h3, .scene-power-head h3, .loop-close h3 { font-size: 1.8rem; }
}
@media (max-width: 640px) {
    .loop-intro { margin-bottom: 80px; }
    .loop-ring { padding: 14px 16px; }
    .loop-arrow { display: none; }
    .commit-tab { font-size: 0.9rem; padding: 10px 16px; }
    .commit-mock, .gift-card, .penalty-card { width: 100%; max-width: 340px; }
}

/* Footer */
.site-footer {
    display: flex;
    flex-direction: column;
    padding: 56px 8% 36px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}
.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
}
.footer-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding: 40px 5%;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        flex: 0 1 auto;
        width: 100%;
        max-width: 480px;
    }
    .sub-headline, .subtitle {
        max-width: 100%;
    }
    .cta-group {
        justify-content: center;
    }
    .feature-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-interactive {
        width: auto;
        max-width: 100%;
    }
    .site-footer {
        padding: 40px 6%;
    }
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .qr-graphic { flex-direction: row; gap: 10px; }
    .qr-phone { width: 45%; height: auto; border-width: 4px; border-radius: 20px; aspect-ratio: 1/2; }
    .left-phone { transform: rotate(-5deg); }
    .right-phone { transform: rotate(5deg); }
    .qr-code-box { width: 80px; height: 80px; }
    .focus-square { width: 90px; height: 90px; }
    .scan-beam { transform: rotate(90deg); margin: 20px 0; display: none; }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand a {
        justify-content: center;
    }
    .footer-community {
        text-align: center;
    }
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-page-links {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .main-headline { font-size: 3rem; }
    .showcase-row, .showcase-row.reverse { flex-direction: column; text-align: center; gap: 40px; }
}

/* --- PARTNER LOGOS BANNER --- */
.partners-banner {
    background: var(--bg-footer); /* Even darker Navy */
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.partners-banner p {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.partners-logos {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.logos-track {
    display: flex;
    gap: 60px;
    padding: 0 30px;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}
.logos-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}
.logos-track span:hover {
    color: var(--text-main);
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- VENUE (B2B) PAGE --- */
/* Premium Icons */
.icon-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.venue-benefit-card:hover .icon-premium {
    transform: scale(1.1) translateY(-4px);
}
.icon-heart { color: var(--tinder-flame); box-shadow: 0 0 20px rgba(253, 80, 104, 0.1); border-color: rgba(253, 80, 104, 0.2); }
.icon-check { color: var(--matcha-green); box-shadow: 0 0 20px rgba(111, 175, 115, 0.1); border-color: rgba(111, 175, 115, 0.2); }
.icon-data { color: #3b82f6; box-shadow: 0 0 20px rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }

.venue-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.venue-benefit-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.venue-benefit-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.5s;
}
.venue-benefit-card:hover::before { left: 100%; }
.venue-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(111, 175, 115, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.venue-benefit-card h3 {
    margin: 18px 0 12px;
    font-size: 1.25rem;
}
.venue-benefit-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Venue Flow */
.venue-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.flow-step {
    flex: 1;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.flow-step:hover {
    transform: translateY(-5px);
}
.flow-icon-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(111, 175, 115, 0.15), rgba(253, 80, 104, 0.15));
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.flow-step h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.flow-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.flow-connector {
    flex: 0 0 60px;
    height: 2px;
    position: relative;
    z-index: 1;
    margin: 0 -10px;
}
.flow-line {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, var(--matcha-green) 0, var(--matcha-green) 5px, transparent 5px, transparent 10px);
    opacity: 0.5;
    animation: flowMove 20s linear infinite;
}
@keyframes flowMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.premium-glow {
    border-color: transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--matcha-green), var(--tinder-orange)) border-box;
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(111, 175, 115, 0.15);
    animation: pulseGlow 3s infinite alternate;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 10px 40px rgba(111, 175, 115, 0.15); }
    100% { box-shadow: 0 15px 50px rgba(253, 80, 104, 0.25); }
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--matcha-green), var(--tinder-orange));
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 12px; font-weight: 800; }
.pricing-desc { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.pricing-list { list-style: none; padding: 0; flex-grow: 1; margin-bottom: 30px; }
.pricing-list li { margin-bottom: 16px; color: var(--text-color); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.check-icon { color: var(--matcha-green); flex-shrink: 0; margin-top: 2px; }

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}
.pricing-btn:hover {
    background: rgba(255,255,255,0.1);
}
.pricing-btn-primary {
    background: var(--matcha-green);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(111, 175, 115, 0.3);
}
.pricing-btn-primary:hover {
    background: #5a9e5e;
    box-shadow: 0 8px 20px rgba(111, 175, 115, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .venue-benefits-grid, .pricing-grid { grid-template-columns: 1fr; }
    .premium-glow { transform: none; }
    .flow-connector { width: 2px; height: 40px; margin: 10px auto; flex: none; }
    .flow-line { background: repeating-linear-gradient(180deg, var(--matcha-green) 0, var(--matcha-green) 5px, transparent 5px, transparent 10px); }
    @keyframes flowMove { 0% { background-position: 0 0; } 100% { background-position: 0 1000px; } }
}

/* --- FAQ / SAFETY PAGE --- */
.faq-hero {
    text-align: center;
    padding: 80px 8% 40px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-hero-mascot {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}
.faq-section .section-title { margin-bottom: 40px; }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 22px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--matcha-green);
    margin-left: 16px;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* --- WAITLIST PAGE --- */
.waitlist-hero {
    display: grid;
    grid-template-rows: 1fr 3fr 6fr; /* 10 / 30 / 60 */
    min-height: calc(100vh - 80px);
    text-align: center;
    padding: 20px 8% 60px;
    max-width: 720px;
    margin: 0 auto;
}
.wl-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.wl-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--matcha-green);
    background: rgba(111, 175, 115, 0.12);
    border: 1px solid rgba(111, 175, 115, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
}
.waitlist-mascot {
    position: relative;
    left: auto;
    bottom: auto;
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
}
.waitlist-mascot .mascot-bud-hero { height: 240px; width: auto; }
.waitlist-mascot .mascot-hana-badge { height: 240px; width: auto; margin-left: 0; }
.wl-zone-content { justify-content: flex-start; }

@media (max-width: 640px) {
    .waitlist-hero {
        grid-template-rows: none;
        min-height: auto;
        gap: 24px;
        padding-top: 30px;
    }
    .waitlist-mascot .mascot-bud-hero { height: 175px; }
    .waitlist-mascot .mascot-hana-badge { height: 175px; }
}

.waitlist-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
}
.waitlist-input {
    flex: 1;
    min-width: 220px;
    padding: 16px 22px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus {
    outline: none;
    border-color: var(--matcha-green);
}
.waitlist-submit {
    animation: none;
    padding: 16px 28px;
    white-space: nowrap;
}
.waitlist-success {
    display: none;
    margin-top: 20px;
    color: var(--matcha-green);
    font-weight: 700;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .waitlist-form { flex-direction: column; }
}

/* --- FLOATING MASCOT (idle animation) --- */
.mascot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 110px;
    height: 110px;
    z-index: 400;
    background-image: url('assets/mascot_1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: mascotCycle 2.4s steps(1) infinite;
}
.mascot-container:hover {
    transform: scale(1.15) translateY(-6px);
}
@keyframes mascotCycle {
    0%   { background-image: url('assets/mascot_1.png'); }
    33%  { background-image: url('assets/mascot_2.png'); }
    66%  { background-image: url('assets/mascot_3.png'); }
    100% { background-image: url('assets/mascot_1.png'); }
}
@media (max-width: 640px) {
    .mascot-container { width: 80px; height: 80px; bottom: 16px; right: 16px; }
}

/* --- TOKENOMICS PIE CHART (CSS ONLY) --- */
.tokenomics-teaser { background: var(--bg-primary); }
.token-chart-container {
    display: flex; justify-content: center; align-items: center;
}
.pie-chart-3d {
    position: relative;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        var(--matcha-green) 0% 25%,
        var(--tinder-orange) 25% 50%,
        #3b82f6 50% 70%,
        #f59e0b 70% 90%,
        #8b5cf6 90% 100%
    );
    box-shadow: 0 20px 30px rgba(0,0,0,0.5), inset 0 5px 15px rgba(255,255,255,0.2);
    transform: rotateX(60deg) rotateZ(-30deg);
    transform-style: preserve-3d;
    transition: transform 0.5s;
}
.pie-chart-3d:hover {
    transform: rotateX(40deg) rotateZ(0deg) scale(1.1);
}
.chart-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    background: var(--bg-card);
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 900;
    color: var(--text-main);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--border-color);
}

/* --- FOOTER UPDATES --- */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.footer-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    margin-top: 16px;
}
.footer-community {
    text-align: right;
}
.footer-community p {
    font-weight: 700;
    margin-bottom: 10px;
}
.social-links {
    display: flex;
    gap: 20px;
}
.social-links a {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--matcha-green);
}

@media (max-width: 968px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer-brand a.logo {
        justify-content: center;
    }
    .footer-brand p {
        text-align: center;
    }
    .footer-page-links {
        justify-content: center;
    }
    .footer-community {
        text-align: center;
        width: 100%;
    }
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- VENUES B2B EXTREME UPGRADE --- */

.venue-hero-v2 {
    background: var(--gradient-hero);
    padding: 80px 8% 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.venue-hero-v2 .main-headline { font-size: 4rem; color: var(--text-color); }
.animated-gradient {
    background: linear-gradient(90deg, var(--matcha-green), var(--tinder-orange), #3b82f6, var(--matcha-green));
    background-size: 300% 100%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.primary-cta-btn {
    background: linear-gradient(90deg, var(--matcha-green), var(--tinder-orange));
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(111, 175, 115, 0.4);
    font-size: 1.1rem;
    padding: 18px 36px;
    border-radius: 40px;
}
.primary-cta-btn:hover {
    box-shadow: 0 12px 30px rgba(253, 80, 104, 0.5);
    transform: translateY(-3px);
}

.venue-stat-bar {
    display: flex; gap: 20px; margin-top: 40px;
}
.stat-chip {
    display: flex; flex-direction: column;
    padding: 16px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text-color); margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted-active); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.floating-mascot { animation: bobFloat 4s ease-in-out infinite; }
@keyframes bobFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

.trust-bar-section {
    padding: 30px 8%; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.venue-type-bar {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1000px; margin: 0 auto;
}
.partner-chip {
    padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 30px;
    color: var(--text-muted-active); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.glow-chip { color: var(--matcha-green); border-color: rgba(111,175,115,0.3); background: rgba(111,175,115,0.1); box-shadow: 0 0 15px rgba(111,175,115,0.2); }

.benefit-card-v2 {
    background: var(--bg-navbar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(16px);
}
.benefit-card-v2:hover {
    transform: translateY(-8px);
    border-color: var(--tinder-orange);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.card-badge {
    position: absolute; top: 20px; right: 20px; font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.badge-roi { color: #fff; background: var(--tinder-orange); }
.badge-fraud { color: #08130a; background: var(--matcha-green); }
.badge-data { color: #fff; background: #3b82f6; }
.icon-premium-v2 {
    display: inline-flex; align-items: center; justify-content: center;
    width: 72px; height: 72px; border-radius: 20px; margin-bottom: 24px;
    background: var(--bg-glass); border: 1px solid var(--border-color); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.benefit-card-v2 h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--text-color); }
.benefit-card-v2 p { color: var(--text-muted-active); line-height: 1.7; font-size: 1rem; }
.mascot-benefit-end { text-align: right; max-width: 1100px; margin: 20px auto 0; }
.mascot-coffee { width: 150px; height: auto; filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4)); }

.flow-section-bg { background: var(--gradient-flow); }
.step-grid {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px; max-width: 1200px; margin: 0 auto; align-items: start;
}
.step-node {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 30px 20px; text-align: center; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.step-num { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--matcha-green), var(--tinder-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.5; margin-bottom: 10px; }
.step-icon-v2 {
    display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(111,175,115,0.2), rgba(253,80,104,0.2)); color: var(--text-color); margin-bottom: 20px; border: 1px solid var(--border-color);
}
.step-arrow { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--matcha-green); padding-top: 50px; }

.pricing-price { font-size: 2rem; font-weight: 900; color: var(--text-color); margin-bottom: 8px; }
.check-circle { width: 22px; height: 22px; border-radius: 50%; background: rgba(111,175,115,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-icon-v2 { color: var(--matcha-green); }
.w-full { width: 100%; box-sizing: border-box; }
.animated-border-card {
    background: var(--bg-glass);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.animated-border-card::after {
    content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--matcha-green), var(--tinder-orange), #3b82f6, var(--matcha-green));
    background-size: 300% 300%;
    z-index: -1; border-radius: 22px;
    animation: borderGlow 4s ease infinite;
}
@keyframes borderGlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.final-cta-banner {
    background: var(--gradient-cta);
    border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
    padding: 60px 8%; display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 60px auto; border-radius: 30px; overflow: hidden;
}
.final-cta-content h2 { font-size: 2.5rem; color: var(--text-color); margin-bottom: 16px; }
.final-cta-content p { color: var(--text-muted-active); font-size: 1.1rem; margin-bottom: 30px; max-width: 500px; }
.final-cta-mascot img { height: 200px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }

@media (max-width: 968px) {
    .venue-hero-v2 { flex-direction: column; text-align: center; padding-top: 40px; }
    .venue-stat-bar { justify-content: center; flex-wrap: wrap; }
    .step-grid { grid-template-columns: 1fr; gap: 0; }
    .step-arrow { padding-top: 10px; padding-bottom: 10px; transform: rotate(90deg); }
    .final-cta-banner { flex-direction: column; text-align: center; gap: 30px; }
}



.reward-mascot, .hero-peek, .commit-mascot, .gift-mascot { object-fit: contain; }
.feature-item span { line-height: 1.2; display: inline-block; }

.hero-peek-hana, 
.reward-mascots img:nth-child(2) {
    --scale: 0.95;
    transform: scale(0.95);
    transform-origin: bottom;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--matcha-green), var(--tinder-orange)) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255,127,106,0.4) !important;
}

.btn-coral-neon {
    background: linear-gradient(#FF7F6A, #FF7F6A) padding-box,
                linear-gradient(135deg, var(--matcha-green), var(--tinder-orange)) border-box !important;
    border: 2px solid transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255,127,106,0.4) !important;
}

.btn-blue {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}
.btn-blue:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: #3b82f6 !important;
}

@media (max-width: 640px) {
    .feature-grid {
        gap: 8px;
    }
    .feature-item {
        padding: 6px 12px 6px 6px;
        gap: 6px;
    }
    .feature-item span {
        font-size: 0.8rem;
    }
    .feat-icon {
        width: 32px;
        height: 32px;
    }
    .feat-icon svg {
        width: 16px;
        height: 16px;
    }
}
