/* ==========================================
   RESET & ROOT — BLACK/RED THEME
   ========================================== */
/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { 
    width: 8px; 
    transition: width 0.3s var(--ease);
}
::-webkit-scrollbar-track { 
    background: #050505; 
    border-left: 1px solid rgba(255, 255, 255, 0.03);
}
::-webkit-scrollbar-thumb { 
    background: rgba(255, 255, 255, 0.08); 
    border-radius: 10px; 
    border: 2px solid #050505; 
    transition: all 0.3s var(--ease);
}
::-webkit-scrollbar-thumb:hover { 
    background: var(--red); 
    box-shadow: 0 0 15px var(--red-glow);
}
::-webkit-scrollbar-thumb:active {
    background: var(--red);
}
* { 
    scrollbar-width: thin; 
    scrollbar-color: rgba(255, 255, 255, 0.1) #050505; 
}

:root {
    --red: #e8192c;
    --red-dim: rgba(232, 25, 44, 0.15);
    --red-glow: rgba(232, 25, 44, 0.35);
    --white: #ffffff;
    --off-white: #d0d0cc;
    --gray-400: #666660;
    --gray-600: #444440;
    --black: #050505;
    --surface: #0a0a0a;
    --card: #111111;
    --border: #1c1c1c;
    --border-dim: #161616;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, .5);
    --shadow-lift: 0 20px 60px rgba(0, 0, 0, .7);
    --shadow-red: 0 0 40px rgba(232, 25, 44, .2);

    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================
   COMMUNITY TICKER
   ========================================== */
.community-ticker {
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
    padding: 10px 0;
}

.ticker-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: ticker 40s linear infinite;
    align-items: center;
}

.ticker-track span {
    font-size: .65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.ticker-track .dot {
    color: var(--red);
    opacity: .6;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    padding-top: 110px;
    scrollbar-gutter: stable;
    /* Prevents shifting when scrollbar appears */
}

/* ==========================================
   PROMO BAR
   ========================================== */
.promo-bar {
    background: var(--red);
    color: var(--white);
    padding: 9px 20px;
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .3px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo-cta {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    text-decoration: none;
    padding: 3px 12px;
    border-radius: 40px;
    font-weight: 700;
    font-size: .7rem;
    transition: background .2s;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .2);
}

.promo-cta:hover {
    background: rgba(255, 255, 255, .25);
}

/* ==========================================
   NAVBAR — CONSISTENT ACROSS PAGES
   ========================================== */
.nav {
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    width: min(1100px, 92vw);
    background: rgba(14, 14, 14, .95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 12px 20px;
    transition: border-color .4s var(--ease);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.2px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 24px;
    flex: 1;
}

.nav-link {
    font-size: .82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .25s var(--ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
}

.nav-actions-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==========================================
   MISSION SECTION (Solo Dev)
   ========================================== */
.mission {
    background: var(--black);
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    margin-bottom: 40px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.m-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.m-item p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .25);
    line-height: 1.6;
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.solo-badge {
    background: linear-gradient(135deg, rgba(232, 25, 44, .15), transparent);
    border: 1px solid rgba(232, 25, 44, .3);
    padding: 32px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--white);
    font-size: 1.1rem;
}

.badge-text span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ==========================================
   HERO BUTTONS
   ========================================== */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost-light {
    padding: 15px 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    transition: all .3s var(--ease);
    display: inline-block;
    white-space: nowrap;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

/* ==========================================
   SECTION SUB COPY
   ========================================== */
.section-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    margin-top: -50px;
    margin-bottom: 64px;
    max-width: 560px;
}

/* ==========================================
   HOW IT WORKS — STEP ICONS
   ========================================== */
.step-icon {
    width: 52px;
    height: 52px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.inline-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

/* ==========================================
   MISSION — PROOF ITEMS
   ========================================== */
.mission-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.mp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mp-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 25, 44, .1);
    color: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.mp-item>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mp-item strong {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
}

.mp-item span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.4;
}

/* ==========================================
   MISSION — SOLO CARD
   ========================================== */
.solo-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
    position: sticky;
    top: 120px;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sc-avatar {
    width: 48px;
    height: 48px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-header>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.sc-header strong {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
}

.sc-header span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
}

.sc-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

.sc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.sc-stat {
    text-align: center;
}

.sc-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.sc-label {
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .3px;
    margin-top: 4px;
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
    background: linear-gradient(135deg, rgba(232, 25, 44, .12), rgba(232, 25, 44, .04));
    border-top: 1px solid rgba(232, 25, 44, .2);
    border-bottom: 1px solid rgba(232, 25, 44, .2);
    padding: 80px 40px;
}

.cta-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.cta-text p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 500px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-text p {
        max-width: 100%;
    }
}


/* ==========================================
   SUPPORT SECTION — NEW 3-COL
   ========================================== */
.support {
    background: var(--surface);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
    margin-bottom: 40px;
}

.s-opt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: all .4s var(--ease);
    position: relative;
}

.s-opt:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 25, 44, .2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.s-opt-featured {
    border-color: rgba(232, 25, 44, .3);
    background: linear-gradient(160deg, rgba(232, 25, 44, .1), rgba(232, 25, 44, .03));
}

.s-opt-featured:hover {
    border-color: rgba(232, 25, 44, .5);
}

.s-opt-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 40px;
    white-space: nowrap;
}

.s-opt-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 25, 44, .12);
    color: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-opt h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.3px;
}

.s-opt p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
    flex: 1;
}

.s-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
}

.support-alt {
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.support-alt-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.support-alt-inner svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.support-alt-inner p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
}

.support-alt-inner a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 25, 44, .5);
}

.support-alt-inner a:hover {
    color: var(--red);
}

@media (max-width: 768px) {
    .support-options {
        grid-template-columns: 1fr;
    }

    .mission-proof {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FOOTER — REBUILT
   ========================================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 40px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-tagline {
    font-size: .78rem;
    color: rgba(255, 255, 255, .2);
    max-width: 220px;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: .82rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-link-cta {
    color: var(--red);
    font-weight: 600;
}

.footer-link-cta:hover {
    color: #ff3344;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    font-size: .72rem;
    color: rgba(255, 255, 255, .15);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }
}


.nav-link-reg {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-reg:hover {
    color: var(--white);
}

/* NAV BUTTON — identical on both pages */
.nav-btn {
    padding: 9px 22px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1px;
    transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease), background .2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-red);
    background: #ff1f30;
}

/* Nav icons (mobile-only, hidden on desktop) */
.nav-icons {
    display: none;
    gap: 6px;
    flex: 1;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: all .2s;
    font-size: .75rem;
    cursor: pointer;
}

.nav-icon-btn:hover {
    color: var(--white);
    border-color: #333;
}

/* ==========================================
   DATABASE HEADER
   ========================================== */
.db-header {
    text-align: center;
    padding: 80px 40px 48px;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(232, 25, 44, .09) 0%, transparent 65%);
    position: relative;
    z-index: 1;
}

@keyframes dbHeaderIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.db-header .section-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .25);
}

.db-header h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    line-height: 1;
    color: var(--white);
}

.db-hero-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 64px;
}

.db-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.db-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

.db-cta-card {
    background: linear-gradient(160deg, rgba(232, 25, 44, .12), rgba(232, 25, 44, .04));
    border: 1px solid rgba(232, 25, 44, .25);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
    transition: all .35s var(--ease);
}

.db-cta-card:hover {
    border-color: rgba(232, 25, 44, .4);
    box-shadow: 0 20px 60px rgba(232, 25, 44, .1);
    transform: translateY(-5px);
}

.db-cta-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
}

.db-cta-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
}

.db-cta-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .2);
}

/* ==========================================
   SEARCH & FILTERS
   ========================================== */
.search-container {
    max-width: 1100px;
    margin: 80px auto 0;
    position: relative;
    z-index: 10;
}

.search-main {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    transition: all .4s var(--ease);
}

.search-main:focus-within {
    border-color: rgba(232, 25, 44, .4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 40px var(--red-dim), 0 30px 80px rgba(0, 0, 0, .6);
}

.search-icon {
    color: rgba(255, 255, 255, .18);
    margin-right: 14px;
    flex-shrink: 0;
}

.search-main input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: .95rem;
    outline: none;
    padding: 14px 0;
    font-family: inherit;
}

.search-main input::placeholder {
    color: rgba(255, 255, 255, .2);
}

.filter-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.filter-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-toggle svg {
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.filter-toggle.active svg {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: relative;
    margin-top: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
    overflow: hidden;
    padding: 0 36px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
    text-align: left;
}

.filter-dropdown.active {
    grid-template-rows: 1fr;
    padding: 36px;
    border-color: rgba(255, 255, 255, .15);
}

.filter-dropdown-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-label {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .25);
}

.filter-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 10px 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    border-color: rgba(255, 255, 255, .15);
}

.filter-chip.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 25px var(--red-glow);
}

.filter-chip-more {
    background: rgba(255, 255, 255, .01);
    border-style: dashed;
    color: var(--red);
    font-weight: 700;
}

.filter-chip-more:hover {
    background: var(--red-dim);
    border-style: solid;
}

.filter-bottom-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.price-group {
    border-top: none;
    padding-top: 0;
}

.quality-footer-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 900px) {
    .filter-bottom-row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
        padding-top: 32px;
    }
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.price-val {
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #222;
    outline: none;
    margin-top: 14px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    box-shadow: 0 0 16px var(--red-glow);
}

.hero-suggest-wrap {
    margin-top: 32px;
}

.hero-suggest-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.pill-icon {
    width: 28px;
    height: 28px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.hero-suggest-pill strong {
    color: var(--white);
    font-weight: 800;
    margin-left: 4px;
}

.pill-arrow {
    opacity: 0.3;
    margin-left: 4px;
    transition: all 0.3s var(--ease);
}

.hero-suggest-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.hero-suggest-pill:hover .pill-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 15px var(--red-glow);
}

.hero-suggest-pill:hover .pill-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--red);
}

@media (max-width: 768px) {
    .hero-suggest-pill {
        width: 100%;
        justify-content: center;
    }
}

.db-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding: 0 4px;

}

.live-label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 7px;
}

.live-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--red-glow);
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 5px transparent;
    }
}

.sync-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .2);
}

.countdown-timer {
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--white);
    letter-spacing: -.5px;
}

/* ==========================================
   PRODUCTS GRID
   ========================================== */
.products {
    background: var(--black);
}

#database-grid {
    padding-top: 0;
    padding-bottom: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    will-change: transform;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(232, 25, 44, .25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(232, 25, 44, 0.06);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #0d0d0d;
    overflow: hidden;
}

.img-fallback-content {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
}

.img-fallback-text {
    font-size: .78rem;
    color: rgba(255, 255, 255, .15);
    font-weight: 500;
    line-height: 1.5;
}

.img-fallback-site {
    font-size: .65rem;
    color: rgba(255, 255, 255, .07);
    margin-top: 6px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-img.error {
    opacity: 0;
    pointer-events: none;
}

.product-img.error+.img-fallback-content {
    opacity: 1;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
}

.product-brand {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 4px;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 14px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.price-secondary {
    font-size: .82rem;
    color: rgba(255, 255, 255, .3);
    font-weight: 400;
}

.product-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: .85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: inherit;
    text-decoration: none;
}

.product-btn:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 10px 30px var(--red-glow);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, .8);
    font-size: .6rem;
    font-weight: 800;
    border-radius: 8px;
    letter-spacing: .5px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.product-badge-batch {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .95);
    color: var(--black);
    font-size: .6rem;
    font-weight: 900;
    border-radius: 8px;
    letter-spacing: .5px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.product-badge.just-now {
    background: var(--red);
    color: var(--white);
    border: none;
}

/* Skeletons */
.product-skeleton {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #111 25%, #181818 50%, #111 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite linear;
    border-radius: var(--radius-lg);
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ==========================================
   WELCOME MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: min(520px, 100%);
    padding: 56px 44px;
    text-align: center;
    transform: translateY(32px);
    transition: transform .5s var(--ease-spring);
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .7), 0 0 60px rgba(232, 25, 44, .08);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--red);
    color: white;
    border-radius: 40px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    color: var(--white);
}

.modal-content p {
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
    margin-bottom: 32px;
    font-size: .9rem;
}

.modal-content strong {
    color: var(--white);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-close {
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
    margin-top: 16px;
    display: inline-block;
    cursor: pointer;
    transition: color .3s;
}

.modal-close:hover {
    color: rgba(255, 255, 255, .6);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-label {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 52px;
}

/* ==========================================
   HERO (index.html)
   ========================================== */
/* Reusable Fluent Background (Grid) */
.fluent-bg {
    position: relative;
    background: var(--black) !important;
}

/* Hero needs overflow visible for the scroll indicator */
.hero.fluent-bg {
    overflow: visible;
}

.fluent-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
    z-index: 0;
}

/* Red Glow Effect — Use with fluent-bg */
.fluent-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 25, 44, .1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero {
    min-height: 90vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 100px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    animation: heroFadeUp .9s var(--ease) .05s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 36px;
}

.hero-headline {
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    font-weight: 800;
    color: var(--red);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 52px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    padding: 15px 40px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .2px;
    transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease), background .2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-red);
    background: #ff1f30;
}

.btn-ghost {
    padding: 15px 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 400;
    font-size: .9rem;
    transition: all .3s var(--ease);
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    color: var(--white);
}

.btn-outline {
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid #2a2a2a;
    color: rgba(255, 255, 255, .7);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    display: inline-block;
    transition: transform .3s var(--ease-spring), border-color .25s, background .25s, color .25s;
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--white);
    transform: scale(1.04);
}

.btn-lg {
    padding: 18px 52px;
    font-size: 1rem;
    letter-spacing: .2px;
}

/* ==========================================
   HERO STATS
   ========================================== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.hstat {
    text-align: center;
}

.hstat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.hstat-label {
    font-size: .68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: 10;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-scroll {
        bottom: -40px;
        transform: translateX(-50%) scale(0.85);
    }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-wrap {
    background: var(--black);
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 28s linear infinite;
    padding: 18px 0;
}

.marquee-track span {
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .5px;
    padding: 0 22px;
    white-space: nowrap;
}

.marquee-track .dot {
    color: var(--red);
    opacity: .6;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */
.section {
    padding: 110px 40px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 80px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how {
    background: var(--surface);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.step-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all .6s var(--ease);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(232, 25, 44, .4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 25, 44, 0.06);
}

.step-n {
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -4px;
}

.step-body h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.step-body p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
}

.step-link {
    display: inline-block;
    margin-top: 20px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.step-link:hover {
    opacity: .7;
    transform: translateX(4px);
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    background: var(--black);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all .5s var(--ease);
}

.feat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 25, 44, .3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feat-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.feat-card p {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
}

.large-card {
    grid-column: span 2;
}

/* ==========================================
   DONATE
   ========================================== */
.donate {
    background: var(--surface);
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 44px;
}

.donate-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .45s var(--ease), border-color .3s;
    text-align: center;
}

.donate-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 25, 44, .2);
}

.donate-featured {
    background: var(--red);
    border-color: var(--red);
}

.donate-featured:hover {
    border-color: #ff1f30;
    background: #ff1f30;
}

.donate-featured h3,
.donate-featured p {
    color: var(--white);
}

.donate-featured p {
    color: rgba(255, 255, 255, .65);
}

.donate-icon {
    font-size: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
    transition: transform .3s var(--ease);
}

.donate-featured .donate-icon {
    color: white;
}

.donate-card:hover .donate-icon {
    transform: scale(1.1);
}

.donate-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.donate-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6;
}

.donate-subtext {
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .25);
    max-width: 600px;
    margin: 0 auto;
}

.donate-subtext a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.donate-subtext a:hover {
    text-decoration: underline;
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
    background: #080808;
    padding: 160px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(232, 25, 44, .15);
    border-bottom: 1px solid rgba(232, 25, 44, .15);
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-strip-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 25, 44, .1);
    border: 1px solid rgba(232, 25, 44, .3);
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.cta-strip h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: .95;
    margin-bottom: 20px;
}

.cta-strip p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-strip .btn-primary {
    padding: 20px 40px;
    font-size: 1rem;
    box-shadow: 0 20px 50px rgba(232, 25, 44, .2);
}

.cta-strip .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(232, 25, 44, .3);
}

.founder-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    max-width: 500px;
    margin: 0 auto;
}

.fn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
}

.founder-note span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
    font-weight: 500;
    font-style: italic;
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 28px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .75rem;
    color: rgba(255, 255, 255, .18);
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
}

.reveal.visible {
    animation: revealFadeUp .75s var(--ease) both;
}

@keyframes revealFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   KEYFRAMES
   ========================================== */
@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .large-card {
        grid-column: span 2;
    }

    .db-header {
        padding: 60px 24px 40px;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 160px;
        /* More space for the fixed headers */
    }

    .hero-headline {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        letter-spacing: -1.5px;
    }

    .hero-headline .no-wrap {
        white-space: normal;
    }

    .hero-stats {
        flex-direction: row !important;
        gap: 12px;
        justify-content: space-around;
        padding-top: 24px;
    }

    .hstat-num {
        font-size: 1.1rem;
    }

    .hstat-label {
        font-size: .55rem;
        letter-spacing: .5px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .promo-bar {
        position: relative;
        /* Let it push the rest down */
        padding: 12px 16px;
    }

    .nav {
        position: sticky;
        top: 0;
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 10px 16px;
    }

    body {
        padding-top: 0 !important;
    }

    .hero {
        padding-top: 60px;
        /* Reduced because headers aren't overlapping anymore */
    }

    .hero-sub {
        font-size: .95rem;
        padding: 0 10px;
    }

    .nav-links,
    .nav-actions-wrap .nav-link-reg {
        display: none;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .db-header {
        padding: 40px 20px;
    }

    .db-header h1 {
        font-size: 2.4rem;
    }

    .db-hero-row {
        gap: 32px;
    }

    .search-main {
        padding: 6px 6px 6px 16px;
        border-radius: 18px;
    }

    .search-icon {
        margin-right: 10px;
        width: 14px;
    }

    .search-main input {
        font-size: .82rem;
        min-width: 0;
    }

    .filter-toggle span {
        display: none;
    }

    .filter-toggle {
        padding: 10px;
        gap: 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

/* ==========================================
   DONATE — PICK YOUR PRICE LAYOUT
   ========================================== */
.donate-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 64px;
}

.donate-left {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donate-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 0 24px;
    transition: border-color .3s var(--ease);
}

.donate-input-wrap:focus-within {
    border-color: rgba(232, 25, 44, .4);
}

.donate-currency {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .3);
    margin-right: 10px;
}

.donate-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    padding: 20px 0;
    outline: none;
    font-family: inherit;
    letter-spacing: -2px;
    width: 100%;
}

.donate-input::-webkit-inner-spin-button,
.donate-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donate-presets {
    display: flex;
    gap: 10px;
}

.donate-preset {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .5);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: .85rem;
    transition: all .35s var(--ease);
}

.donate-preset:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}

.donate-preset.active {
    background: var(--red-dim);
    border-color: rgba(232, 25, 44, .4);
    color: var(--white);
}

.donate-go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.donate-note {
    font-size: .78rem;
    color: rgba(255, 255, 255, .2);
    text-align: center;
    line-height: 1.5;
}

.donate-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.donate-or {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.or-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.donate-or span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .2);
    font-weight: 500;
}

.agent-cta-card {
    background: linear-gradient(160deg, rgba(232, 25, 44, .12), rgba(232, 25, 44, .04));
    border: 1px solid rgba(232, 25, 44, .25);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.agent-cta-card:hover {
    border-color: rgba(232, 25, 44, .45);
    box-shadow: 0 20px 60px rgba(232, 25, 44, .1);
}

.agent-cta-label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
}

.agent-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.5px;
}

.agent-cta-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
}

.agent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.agent-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
    text-align: center;
}


/* ==========================================
   BUTTONS & UTILITIES
   ========================================== */
.btn-primary {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 25, 44, .4);
}

.btn-secondary {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ==========================================
   PREMIUM CTA STRIP
   ========================================== */
.cta-strip {
    background: #080808;
    padding: 160px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(232, 25, 44, .15);
    border-bottom: 1px solid rgba(232, 25, 44, .15);
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-strip-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 25, 44, .1);
    border: 1px solid rgba(232, 25, 44, .3);
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.cta-strip h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: .95;
    margin-bottom: 20px;
}

.cta-strip p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-strip .btn-primary {
    padding: 20px 40px;
    font-size: 1rem;
    box-shadow: 0 20px 50px rgba(232, 25, 44, .2);
}

.cta-strip .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(232, 25, 44, .3);
}

.founder-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    max-width: 500px;
    margin: 0 auto;
}

.fn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
}

.founder-note span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
    font-weight: 500;
    font-style: italic;
}


@media (max-width: 900px) {
    .donate-layout {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        padding: 100px 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   PRODUCT LINK POPUP
   ========================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 440px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transform: translateY(20px) scale(.96);
    transition: transform .35s var(--ease-spring), opacity .3s var(--ease);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}

.popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .25s var(--ease);
}

.popup-close:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.popup-product-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.popup-product-price {
    font-size: .82rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 4px;
}

.popup-register-nudge {
    background: rgba(232, 25, 44, .08);
    border: 1px solid rgba(232, 25, 44, .2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.popup-nudge-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

.popup-nudge-inner svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px;
}

.popup-nudge-inner a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.popup-nudge-inner a:hover {
    color: var(--red);
}

.popup-nudge-inner strong {
    color: var(--white);
}

.popup-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.popup-go {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.popup-cancel {
    padding: 14px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .4);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 500;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.popup-cancel:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

/* ==========================================
   DATABASE HERO SECTION
   ========================================== */
.db-header {
    padding: 60px 40px 40px;
    position: relative;
}

.db-hero-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.db-hero-text h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 20px 0 24px;
}

.db-hero-text h1 em {
    color: var(--red);
    font-style: normal;
}

.db-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
    max-width: 480px;
}

@media (max-width: 900px) {
    .db-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .db-hero-text {
        text-align: center;
    }

    .db-hero-sub {
        margin: 0 auto;
    }
}

/* ==========================================
   HOVER ANIMATIONS — SMOOTH, NOT INSTANT
   ========================================== */
.btn-primary {
    transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), background .2s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(232, 25, 44, .45);
}

.btn-primary:active {
    transform: translateY(0) scale(.98);
}

.btn-outline {
    transition: transform .35s var(--ease-spring), border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.btn-outline:hover {
    transform: translateY(-2px);
}

.nav-btn {
    transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), background .2s;
}

.product-card {
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    border-color: rgba(232, 25, 44, .25);
}

.step-card {
    transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 25, 44, .2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.feat-card {
    transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
}

.feat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 25, 44, .2);
}

.filter-chip {
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease-spring);
}

.filter-chip:hover:not(.active) {
    transform: translateY(-1px);
}

/* ==========================================
   NAV SUGGEST BUTTON
   ========================================== */
.nav-suggest-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, .55);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .35s var(--ease);
    white-space: nowrap;
    letter-spacing: .1px;
}

.nav-suggest-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   SUGGEST MODAL
   ========================================== */
.suggest-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    padding: 24px;
}

.suggest-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.suggest-card {
    background: #131313;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(24px) scale(.96);
    transition: transform .4s var(--ease-spring);
    box-shadow: 0 50px 120px rgba(0, 0, 0, .7);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.suggest-card::-webkit-scrollbar {
    display: none;
}

.suggest-overlay.active .suggest-card {
    transform: translateY(0) scale(1);
}

.suggest-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.suggest-close:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    transform: rotate(90deg);
}

.suggest-header {
    margin-bottom: 28px;
}

.suggest-badge {
    display: inline-block;
    background: rgba(232, 25, 44, .15);
    border: 1px solid rgba(232, 25, 44, .3);
    color: var(--red);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.suggest-header h2 {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.7px;
    margin-bottom: 10px;
}

.suggest-header p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
}

.suggest-header p strong {
    color: var(--white);
}

.suggest-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.suggest-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.suggest-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .4px;
    text-transform: uppercase;
}

.suggest-input {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: border-color .3s var(--ease), background .3s var(--ease);
    width: 100%;
    box-sizing: border-box;
}

.suggest-input::placeholder {
    color: rgba(255, 255, 255, .2);
}

.suggest-input:focus {
    border-color: rgba(232, 25, 44, .4);
    background: rgba(255, 255, 255, .05);
}

.suggest-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 160px;
}

/* Pinky Promise */
.suggest-pinky {
    background: rgba(232, 25, 44, .06);
    border: 1px solid rgba(232, 25, 44, .18);
    border-radius: var(--radius-sm);
    padding: 16px;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}

.pinky-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
    user-select: none;
}

.pinky-check {
    display: none;
}

.pinky-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.pinky-check:checked+.pinky-custom {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(232, 25, 44, .4);
}

.pinky-check:checked+.pinky-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.pinky-label a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.pinky-label a:hover {
    text-decoration: underline;
}

.pinky-emoji-wrap {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    color: rgba(255, 255, 255, .3);
    vertical-align: middle;
}

/* Payment */
.suggest-pay-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggest-pay-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.suggest-pay-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pay-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, .6);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .35s var(--ease);
}

.pay-opt:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
    color: var(--white);
    transform: translateY(-3px);
}

.pay-opt.selected {
    border-color: rgba(232, 25, 44, .4);
    background: rgba(232, 25, 44, .08);
    color: var(--white);
}

.pay-tag {
    font-size: .62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .3px;
}

.pay-opt.selected .pay-tag {
    color: rgba(232, 25, 44, .7);
}

.suggest-pay-note {
    font-size: .75rem;
    color: rgba(255, 255, 255, .2);
    line-height: 1.55;
}

.suggest-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: .95rem;
}

/* Success state */
.suggest-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px 0;
    color: #22c55e;
}

.suggest-success h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.suggest-success p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
}

.suggest-success-sub {
    font-size: .78rem !important;
    color: rgba(255, 255, 255, .2) !important;
    font-style: italic;
}

.suggest-form.hidden,
.suggest-header.hidden {
    display: none;
}

.suggest-success.shown {
    display: flex;
}

/* ── Step 1 Choice Cards ── */
.suggest-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.suggest-choice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all .35s var(--ease-spring);
    width: 100%;
}

.suggest-choice:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(232, 25, 44, .35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 25, 44, .1);
}

.choice-icon {
    width: 42px;
    height: 42px;
    background: rgba(232, 25, 44, .1);
    border: 1px solid rgba(232, 25, 44, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 4px;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}

.suggest-choice:hover .choice-icon {
    background: rgba(232, 25, 44, .18);
    border-color: rgba(232, 25, 44, .4);
}

.suggest-choice strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.suggest-choice span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.5;
    display: block;
}

/* ── Back Button ── */
.suggest-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .3);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    transition: color .25s var(--ease), transform .25s var(--ease);
    letter-spacing: .2px;
}

.suggest-back:hover {
    color: var(--white);
    transform: translateX(-3px);
}

/* ── Hidden utility ── */
.hidden {
    display: none !important;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
}

/* ── Overlay dismiss ── */
.loading-screen.vs-loader-exit {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Logo + bar wrapper ── */
.loader-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-content.vs-logo-exit {
    transform: scale(2.1);
    opacity: 0;
    filter: blur(28px);
}

/* ── Logo text ── */
.loader-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(14px);
    animation: vs-entrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}

.loader-logo span {
    color: var(--red);
}

@keyframes vs-entrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Progress bar track ── */
.loader-bar {
    width: 180px;
    height: 3px;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: vs-entrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.28s;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.loader-bar.vs-bar-hide {
    opacity: 0;
    transform: translateY(6px);
}

/* ── Fill element — sweep animation while loading ── */
.loader-progress {
    position: absolute;
    inset: 0;
    background: var(--red);
    border-radius: 99px;
    transform: translateX(-100%);
    animation: vs-sweep 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes vs-sweep {
    0% {
        transform: translateX(-100%) scaleX(0.4);
    }

    40% {
        transform: translateX(0%) scaleX(0.9);
    }

    60% {
        transform: translateX(0%) scaleX(0.9);
    }

    100% {
        transform: translateX(110%) scaleX(0.4);
    }
}

/* Snap to full — class override, zero inline style, zero flicker */
.loader-progress.vs-bar-full {
    animation: vs-fill 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vs-fill {
    from {
        transform: translateX(-100%) scaleX(1);
    }

    to {
        transform: translateX(0%) scaleX(1);
    }
}

/* ── Page scroll lock ── */
body.loading {
    overflow: hidden;
}


/* ==========================================
   HOW AGENTS WORK (index.html)
   ========================================== */
.how-agents {
    background: var(--black);
}

.how-agents-header {
    max-width: 680px;
    margin-bottom: 72px;
}

/* 2×2 grid — cards breathe properly */
.agent-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Step cards */
.af-step {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    will-change: transform;
}

.af-step:hover {
    border-color: rgba(232, 25, 44, 0.28);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(232, 25, 44, 0.06);
    transform: translateY(-5px);
}

/* Number + icon row */
.af-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.af-step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.1;
    line-height: 1;
    letter-spacing: -4px;
}

.af-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Highlighted VS card */
.af-step-vs {
    border-color: rgba(232, 25, 44, 0.3);
    background: linear-gradient(160deg, rgba(232, 25, 44, 0.07) 0%, transparent 60%);
    box-shadow: 0 0 30px rgba(232, 25, 44, 0.06), inset 0 1px 0 rgba(232, 25, 44, 0.12);
}

.af-step-vs:hover {
    border-color: rgba(232, 25, 44, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 50px rgba(232, 25, 44, 0.14);
}

.af-step-vs .af-step-num {
    opacity: 0.18;
}

.af-step-vs .af-icon {
    background: var(--red-dim);
    border-color: rgba(232, 25, 44, 0.2);
    color: var(--red);
}

/* "That's us" badge */
.af-vs-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-dim);
    border: 1px solid rgba(232, 25, 44, 0.2);
    border-radius: 99px;
    padding: 4px 12px;
    width: fit-content;
}

.af-step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.4px;
    line-height: 1.25;
}

.af-step p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    flex: 1;
}

.af-step p strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* CTA links inside cards */
.af-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s var(--ease), gap 0.25s var(--ease);
    width: fit-content;
}

.af-cta-link:hover {
    color: rgba(255, 255, 255, 0.75);
    gap: 10px;
}

.af-cta-primary {
    color: var(--red) !important;
}

.af-cta-primary:hover {
    color: #ff4d5e !important;
}

/* Mobile: single column */
@media (max-width: 768px) {
    .agent-flow {
        grid-template-columns: 1fr;
    }

    .af-step {
        padding: 40px 32px;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.no-wrap {
    white-space: nowrap;
    display: inline-block;
}

/* ==========================================
   FOUNDER CARD
   ========================================== */
.founder-card {
    max-width: 650px;
    margin: 80px auto 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
}

.founder-icon {
    width: 64px;
    height: 64px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.founder-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.founder-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    margin-bottom: 36px;
}

.founder-sig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sig-line {
    width: 40px;
    height: 1px;
    background: var(--red);
    opacity: .4;
}

.founder-sig span {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   PRODUCT POPUP
   ========================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: min(440px, 100%);
    position: relative;
    transform: translateY(20px);
    transition: transform .4s var(--ease-spring);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
}

.popup-overlay.active .popup-card {
    transform: translateY(0);
}

.popup-header {
    margin-bottom: 24px;
}

.popup-eyebrow {
    font-size: .65rem;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.5px;
}

.popup-product {
    background: rgba(255, 255, 255, .03);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.popup-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.popup-product-price {
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
}

.popup-register-nudge {
    background: rgba(232, 25, 44, .08);
    border: 1px solid rgba(232, 25, 44, .2);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 32px;
}

.popup-nudge-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popup-nudge-inner svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.popup-nudge-inner span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

.popup-nudge-inner a {
    color: var(--white);
    text-decoration: none;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-go {
    width: 100%;
    justify-content: center;
}

.popup-cancel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .45);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    transition: all .2s;
    width: 100%;
    text-align: center;
}

.popup-cancel:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    color: var(--white);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .3);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

/* ==========================================
   HERO SCROLL
   ========================================== */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: 10;
}

.hero-scroll span {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.mouse {
    width: 20px;
    height: 34px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-scroll {
        bottom: 20px;
        transform: translateX(-50%) scale(0.85);
    }
}

/* ==========================================
   CURRENCY TRIGGER BUTTON
   ========================================== */
.currency-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, .6);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s var(--ease);
    letter-spacing: .3px;
}

.currency-trigger:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .2);
    color: var(--white);
    transform: translateY(-1px);
}

.currency-trigger svg {
    color: var(--red);
    flex-shrink: 0;
}

/* ==========================================
   CURRENCY MODAL CARD
   ========================================== */
.currency-card {
    max-width: 560px !important;
    text-align: left !important;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.currency-opt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s var(--ease);
    font-family: inherit;
    text-align: left;
}

.currency-opt:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
}

.currency-opt.active {
    background: rgba(232, 25, 44, .15);
    border-color: rgba(232, 25, 44, .4);
    box-shadow: 0 0 20px rgba(232, 25, 44, .1);
}

.curr-code {
    font-size: .9rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.2px;
}

.currency-opt.active .curr-code {
    color: var(--red);
}

.curr-name {
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    font-weight: 400;
}

.more-coming {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .12);
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
}

/* ==========================================
   MOBILE NOTICE
   ========================================== */
.mobile-notice {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.mobile-notice.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .mobile-notice {
        display: flex;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.mn-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
}

@media (max-width: 600px) {
    .mn-card {
        padding: 32px 20px;
        border-radius: var(--radius-lg);
    }

    .mobile-notice {
        padding: 16px;
    }

    .section-title,
    .hero-headline,
    h1,
    h2,
    h3 {
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

.mn-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 24px;
}

.mn-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -.5px;
}

.mn-card p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
    margin-bottom: 32px;
}

.mn-footer {
    display: block;
    font-size: .7rem;
    color: rgba(255, 255, 255, .2);
    margin-top: 20px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .filter-dropdown.active {
        padding: 28px 20px;
    }

    .filter-dropdown-inner {
        gap: 24px;
    }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 14px 28px;
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.45s var(--ease);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 25, 44, 0.15);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
    animation: radiateRed 2.5s infinite;
}

@keyframes radiateRed {
    0% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 25, 44, 0.15), 0 0 0 0 rgba(232, 25, 44, 0.3);
    }

    70% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 25, 44, 0.15), 0 0 0 15px rgba(232, 25, 44, 0);
    }

    100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 25, 44, 0.15), 0 0 0 0 rgba(232, 25, 44, 0);
    }
}

.back-to-top:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 25px var(--red-glow), 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 24px;
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* ==========================================
   SUGGEST MODAL SUCCESS
   ========================================== */
.success-icon-wrap svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dashCheck 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes dashCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.suggest-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.suggest-success h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white);
    text-align: center;
}

.suggest-success p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

.suggest-success-sub {
    margin-top: 24px;
    font-style: italic;
    font-size: 0.8rem !important;
    opacity: 0.6;
}

/* ==========================================
   LOADING SCREEN REFINEMENTS
   ========================================== */
.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.loader-content {
    transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
/* ==========================================
   FEEDBACK WIDGET — PREMIUM REDESIGN
   ========================================== */
.feedback-widget {
    position: fixed;
    bottom: 80px;
    right: 32px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.feedback-pill {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feedback-pill:hover {
    border-color: rgba(232, 25, 44, 0.4);
    background: rgba(14, 14, 14, 0.9);
    transform: translateY(-3px);
}

.feedback-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.1px;
}

.feedback-btns {
    display: flex;
    gap: 10px;
}

.feedback-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.feedback-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(232, 25, 44, 0.3);
}

.feedback-btn.dislike:hover {
    background: #222;
    border-color: #444;
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feedback-form-card {
    width: 340px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    gap: 20px;
    transform-origin: bottom right;
    animation: pillReveal 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes pillReveal {
    from { opacity: 0; transform: scale(0.9) translateY(20px); filter: blur(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

.feedback-form-card.active {
    display: flex;
}

#feedback-form-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.feedback-form-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.feedback-form-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

.feedback-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    resize: none;
    min-height: 100px;
    transition: all 0.3s var(--ease);
    overflow: hidden; /* No scrollbar until needed */
}

.feedback-input:focus {
    outline: none;
    border-color: rgba(232, 25, 44, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(232, 25, 44, 0.1);
}

.feedback-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: white;
    border-radius: 16px;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(232, 25, 44, 0.2);
}

.feedback-submit:hover {
    background: #ff2d3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 25, 44, 0.4);
}

.feedback-submit:active {
    transform: translateY(0);
}

.feedback-success {
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.feedback-success.active {
    display: flex;
}

.feedback-success svg {
    color: #4ade80;
}

/* -- Feedback card close button -- */
.feedback-success {
    position: relative;
}

.feedback-close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    padding: 0;
}

.feedback-close-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* -- "Can't find a product?" button -- */
.feedback-extra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    text-decoration: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.feedback-extra-btn::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.feedback-extra-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
}
