/* =========================================
   LEAGUEHAX.XYZ â€” Premium Dark Design System
   ========================================= */

:root {
    --bg: #09090b;
    --bg-2: #0f0f12;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(192, 22, 43, 0.4);
    --primary: #b91c3a;
    --primary-light: #f9a8b0;
    --primary-glow: rgba(185, 28, 58, 0.25);
    --text: #fafafa;
    --text-2: #a1a1aa;
    --text-3: #52525b;
    --font: 'Inter', sans-serif;
    --mono: 'Geist Mono', monospace;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: crosshair;
}

a, button, .faq-question {
    cursor: pointer;
}

/* Canvas */
canvas#backgroundCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ====== NAVBAR ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text);
}

.logo-dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--mono);
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite;
    box-shadow: 0 0 8px #4ade80;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: var(--primary);
    text-decoration: none;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(192, 22, 43, 0.25);
}

.nav-cta:hover {
    background: #a01025;
    box-shadow: 0 0 30px rgba(192, 22, 43, 0.4);
    transform: translateY(-1px);
}

/* ====== HERO ====== */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    min-height: 88vh;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    font-family: var(--mono);
    letter-spacing: 0.5px;
    animation: trackingInExpand 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.75rem;
    animation: textFocusIn 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.gradient-text {
    background: linear-gradient(to right, #c0162b 20%, #ff4d6d 40%, #ff4d6d 60%, #c0162b 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 3s linear infinite;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 3rem;
    animation: textFocusIn 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeUp 0.9s 0.3s ease-out both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 0 30px rgba(192, 22, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    background: #a01025;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(192, 22, 43, 0.5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text-2);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: fadeUp 1s 0.4s ease-out both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    font-family: var(--mono);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ====== BIG MARQUEE ====== */
.marquee-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(225,29,72,0.04) 0%, rgba(225,29,72,0.08) 50%, rgba(225,29,72,0.04) 100%);
    border-top: 1px solid rgba(192, 22, 43, 0.15);
    border-bottom: 1px solid rgba(192, 22, 43, 0.15);
    padding: 22px 0;
    margin: 0 0 6rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
    min-width: 200%;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 2.5rem;
    font-family: var(--mono);
}

.marquee-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.marquee-sep {
    color: var(--primary);
    font-size: 0.7rem;
    opacity: 0.6;
    padding: 0 0.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
.section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 8rem;
}

.section-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 4rem;
}

/* ====== BENTO GRID ====== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(192, 22, 43, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bento-card:hover::before { opacity: 1; }

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: var(--surface-hover);
}

.bento-card > * { position: relative; z-index: 1; }

.bento-wide {
    grid-column: span 2;
}

.bento-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(192, 22, 43, 0.1);
    border: 1px solid rgba(192, 22, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bento-card:hover .bento-icon {
    background: rgba(192, 22, 43, 0.08);
    border-color: rgba(192, 22, 43, 0.2);
    color: var(--primary);
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

.bento-tag {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(192, 22, 43, 0.12);
    color: var(--primary);
    border: 1px solid rgba(192, 22, 43, 0.25);
    padding: 4px 12px;
    border-radius: 100px;
    font-family: var(--mono);
}

.bento-badge-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bento-stat-badge {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--mono);
    color: var(--text);
    letter-spacing: -2px;
}

.bento-stat-label {
    font-size: 0.85rem;
    color: var(--text-2);
}

.uptime-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.uptime-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 100px;
    position: relative;
}

.uptime-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulseRed 2s infinite;
}

.uptime-label {
    font-size: 0.85rem;
    color: var(--text-2);
}

/* ====== PRICING ====== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.price-popular {
    border-color: rgba(192, 22, 43, 0.4);
    background: rgba(192, 22, 43, 0.04);
    box-shadow: 0 0 40px rgba(192, 22, 43, 0.1);
}

.popular-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(192, 22, 43, 0.12);
    border: 1px solid rgba(192, 22, 43, 0.25);
    padding: 4px 12px;
    border-radius: 100px;
    font-family: var(--mono);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.price-tier {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin-bottom: 0.75rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--mono);
    letter-spacing: -2px;
    margin-bottom: 2rem;
    line-height: 1;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-2);
    font-weight: 400;
    letter-spacing: 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-2);
}

.check {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-2);
    transition: all 0.2s;
}

.price-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
    background: var(--surface-hover);
}

.price-btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 0 25px rgba(192, 22, 43, 0.25);
}

.price-btn-primary:hover {
    background: #a01025;
    color: #fff;
    box-shadow: 0 0 35px rgba(192, 22, 43, 0.4);
}

/* 2PC Rent */
.rent-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.3s;
}

.rent-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

.rent-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rent-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.rent-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rent-card p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 560px;
}

/* ====== REVIEWS ====== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: var(--surface-hover);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    flex-grow: 1;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #a01025);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(192, 22, 43, 0.25);
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    font-family: var(--mono);
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 2px;
}

/* ====== FAQ ====== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 760px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    padding: 1.4rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    background: transparent;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--surface-hover);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.75rem;
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.7;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.75rem 1.4rem;
}

/* ====== FOOTER ====== */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: rgba(9, 9, 11, 0.8);
    padding: 2.5rem 5%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-3);
    font-family: var(--mono);
}

.footer-discord {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-discord:hover {
    color: var(--primary);
}

/* ====== DISCORD MASCOT (Left) ====== */
.discord-mascot {
    position: fixed;
    bottom: -10px;
    left: -260px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.3));
    cursor: pointer;
}

.discord-mascot.dm-visible {
    left: 10px;
}

.dm-img {
    height: 340px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    display: block;
}

.dm-bubble {
    background: rgba(15, 15, 18, 0.97);
    border: 1px solid rgba(88, 101, 242, 0.5);
    border-radius: 14px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.2);
    max-width: 220px;
    opacity: 0;
    transform: scale(0.85) translateY(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.4) 0.3s;
    pointer-events: none;
    margin-bottom: 8px;
}

.discord-mascot.dm-visible .dm-bubble {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.dm-bubble-text {
    display: block;
}

.dm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: background 0.2s, box-shadow 0.2s, opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
    pointer-events: none;
}

.discord-mascot.dm-visible .dm-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.dm-btn:hover {
    background: #4752c4;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .discord-mascot { display: none; }
}

/* ====== MASCOT ====== */
.mascot-container {
    position: fixed;
    bottom: -10px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 15px rgba(192, 22, 43, 0.2));
}

.mascot-container:hover {
    transform: translateY(-20px) scale(1.05);
    filter: drop-shadow(0 0 25px rgba(192, 22, 43, 0.4));
}

.mascot-img {
    height: 420px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    display: block;
}

.speech-bubble {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(10px);
    background: rgba(15, 15, 18, 0.97);
    border: 1px solid rgba(192, 22, 43, 0.45);
    border-radius: 14px;
    padding: 12px 20px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    box-shadow: 0 8px 32px rgba(192, 22, 43, 0.2), 0 0 0 1px rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: 10;
    max-width: 280px;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: rgba(15, 15, 18, 0.97);
    border-right: 1px solid rgba(192, 22, 43, 0.45);
    border-bottom: 1px solid rgba(192, 22, 43, 0.45);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    transform: translateX(-50%) rotate(-45deg);
}

.mascot-container.show-speech .speech-bubble {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* ====== CTA SECTION ====== */
.cta-section {
    padding-bottom: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(192, 22, 43, 0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(192, 22, 43, 0.25);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225,29,72,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: var(--text-2);
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ====== PARTNERS ====== */
.partners-section {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-title {
    font-size: 1.1rem;
    color: var(--text-3);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-link {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(100%);
}

.partner-link:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.trust-bar-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 15, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-family: var(--mono);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.trust-text {
    color: var(--text-2);
}

.trust-divider {
    color: rgba(255, 255, 255, 0.1);
}

.trust-status {
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .partners-container { gap: 2rem; }
    .partner-logo { max-height: 35px; }
    
    .trust-bar {
        flex-direction: column;
        gap: 6px;
        padding: 12px 24px;
        border-radius: 16px;
        text-align: center;
    }
    .trust-divider {
        display: none;
    }
}

/* ====== FOOTER NAV ====== */
.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.8rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--text-2);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes textFocusIn {
    0% { filter: blur(12px); opacity: 0; transform: translateY(20px); }
    100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}

@keyframes trackingInExpand {
    0% { letter-spacing: -0.5em; opacity: 0; transform: translateY(-10px); }
    40% { opacity: 0.6; }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes shineText {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== GLITCH ====== */
.glitch {
    font-family: var(--font);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--text);
    position: relative;
}

/* ====== EASTER EGG ====== */
.easter-egg-modal {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.easter-egg-modal.show {
    display: flex;
    opacity: 1;
}

.easter-egg-content {
    background: rgba(15, 15, 18, 0.98);
    border: 1px solid rgba(192, 22, 43, 0.5);
    box-shadow: 0 0 60px rgba(192, 22, 43, 0.2);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.easter-egg-modal.show .easter-egg-content {
    transform: scale(1);
}

.easter-egg-content p {
    color: var(--text-2);
    font-size: 1rem;
    margin-top: 1rem;
}

.secret-code {
    background: rgba(192, 22, 43, 0.1);
    border: 1px solid rgba(192, 22, 43, 0.3);
    color: var(--primary-light);
    padding: 15px 24px;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--mono);
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(192, 22, 43, 0.4); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { letter-spacing: -1px; }
    .hero-stats { gap: 1.25rem; }
    .stat-num { font-size: 1.3rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .rent-card { flex-direction: column; }
    .rent-left { flex-direction: column; text-align: center; }
    .mascot-container { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
}



