/* ============================================
   GAIA LEGENDS - PREMIUM LANDING PAGE
   Color Palette: Deep Teal + Cyan + Gold
   ============================================ */

/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0a1a22;
    --bg-dark: #0f2330;
    --bg-panel: #132d3d;
    --bg-card: #16344a;
    --border: rgba(103, 190, 217, 0.15);
    --border-glow: rgba(103, 190, 217, 0.35);
    --cyan: #67BED9;
    --cyan-bright: #5dd9ff;
    --cyan-glow: rgba(93, 217, 255, 0.25);
    --gold: #F4D03F;
    --gold-dark: #D4AC0D;
    --gold-glow: rgba(244, 208, 63, 0.25);
    --green: #41b95b;
    --green-glow: rgba(65, 185, 91, 0.25);
    --purple: #9B59B6;
    --text: rgba(200, 230, 245, 0.88);
    --text-dim: rgba(176, 210, 235, 0.55);
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #F4D03F 0%, #41b95b 40%, #67BED9 100%);
    --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(10, 26, 34, 0.4) 40%, var(--bg-deep) 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== PARTICLE CANVAS ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav--scrolled {
    background: rgba(10, 26, 34, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.nav__link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.nav__link i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.nav__link:hover {
    color: var(--white);
    background: rgba(103, 190, 217, 0.12);
}

.nav__link--discord {
    background: linear-gradient(135deg, #5865F2 0%, #7B68EE 100%);
    color: var(--white) !important;
    padding: 10px 22px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
}

.nav__link--discord:hover {
    background: linear-gradient(135deg, #6d77ff 0%, #8d7fff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

/* Store CTA Button */
.nav__link--store {
    background: var(--gradient-main);
    color: #0a1a22 !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(103, 190, 217, 0.3),
        0 2px 10px rgba(244, 208, 63, 0.2);
    animation: storePulse 2.5s ease-in-out infinite;
}

.nav__link--store:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 35px rgba(103, 190, 217, 0.45),
        0 4px 15px rgba(244, 208, 63, 0.35);
    color: #0a1a22 !important;
    background: var(--gradient-main);
}

.store-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    animation: storeShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes storeShine {

    0%,
    100% {
        transform: translateX(-100%) rotate(25deg);
    }

    50% {
        transform: translateX(100%) rotate(25deg);
    }
}

@keyframes storePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(103, 190, 217, 0.3),
            0 2px 10px rgba(244, 208, 63, 0.2);
    }

    50% {
        box-shadow: 0 6px 30px rgba(103, 190, 217, 0.5),
            0 4px 20px rgba(244, 208, 63, 0.35),
            0 0 40px rgba(65, 185, 91, 0.15);
    }
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(103, 190, 217, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(244, 208, 63, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(65, 185, 91, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 700px;
}

/* Logo */
.hero__logo {
    width: 280px;
    max-width: 70vw;
    height: auto;
    margin-bottom: 24px;
    animation: heroFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(103, 190, 217, 0.35)) drop-shadow(0 0 60px rgba(65, 185, 91, 0.15));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero__tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 36px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* CTA Button */
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: #0a1a22;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(103, 190, 217, 0.3),
        0 2px 10px rgba(244, 208, 63, 0.2);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.hero__cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 45px rgba(103, 190, 217, 0.45),
        0 4px 15px rgba(244, 208, 63, 0.3);
}

.hero__cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {

    0%,
    100% {
        transform: translateX(-100%) rotate(25deg);
    }

    50% {
        transform: translateX(100%) rotate(25deg);
    }
}

/* ===== PLATFORM TOGGLE ===== */
.platform-toggle {
    background: rgba(19, 45, 61, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 6px;
    max-width: 480px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platform-toggle__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.platform-toggle__tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.platform-toggle__tab.active {
    background: rgba(103, 190, 217, 0.15);
    color: var(--cyan-bright);
    box-shadow: inset 0 0 0 1px rgba(93, 217, 255, 0.25);
}

.platform-toggle__tab:hover:not(.active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.platform-toggle__content {
    padding: 4px;
}

.platform-info {
    display: none;
}

.platform-info.active {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* IP Display */
.ip-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 26, 34, 0.6);
    border: 1px solid rgba(103, 190, 217, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
}

.ip-display:hover {
    border-color: var(--cyan);
    background: rgba(103, 190, 217, 0.08);
    box-shadow: 0 0 20px rgba(103, 190, 217, 0.1);
}

.ip-display__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 70px;
    text-align: left;
}

.ip-display__value {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cyan-bright);
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.ip-display__copy {
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: var(--transition);
    white-space: nowrap;
}

.ip-display:hover .ip-display__copy {
    color: var(--cyan);
}

.ip-display--port .ip-display__value {
    color: var(--gold);
}

/* Hero Scroll */
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   FEATURE ROWS (Alternating)
   ============================================ */
.features {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row--reversed {
    flex-direction: row-reverse;
}

.feature-row__image {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-row__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    transition: transform 0.6s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-row:hover .feature-row__image img {
    transform: scale(1.03);
}

.feature-row__image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--cyan-glow), transparent, var(--green-glow));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-row__image-glow--alt {
    background: linear-gradient(135deg, var(--gold-glow), transparent, var(--cyan-glow));
}

.feature-row:hover .feature-row__image-glow {
    opacity: 1;
}

.feature-row__text {
    flex: 1;
}

.feature-row__badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan-bright);
    background: rgba(93, 217, 255, 0.1);
    border: 1px solid rgba(93, 217, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.badge--gold {
    color: var(--gold);
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.2);
}

.feature-row__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-row__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.feature-row__desc strong {
    color: var(--cyan-bright);
    font-weight: 600;
}

.feature-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cyan);
    background: rgba(103, 190, 217, 0.08);
    border: 1px solid rgba(103, 190, 217, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
}

.tag--gold {
    color: var(--gold);
    background: rgba(244, 208, 63, 0.08);
    border-color: rgba(244, 208, 63, 0.15);
}

/* ============================================
   HIGHLIGHT CARDS
   ============================================ */
.highlights {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-title__decoration {
    color: var(--cyan);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(19, 45, 61, 0.7) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.7s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(103, 190, 217, 0.08);
}

.highlight-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.highlight-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.highlight-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* ============================================
   VOTE BANNER
   ============================================ */
.vote-banner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.vote-banner__content {
    background: linear-gradient(145deg, rgba(65, 185, 91, 0.1) 0%, var(--bg-panel) 50%, rgba(103, 190, 217, 0.08) 100%);
    border: 1px solid rgba(65, 185, 91, 0.25);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vote-banner__content::before {
    content: '🗳️';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 5rem;
    opacity: 0.06;
    transform: rotate(12deg);
}

.vote-banner__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
}

.vote-banner__desc {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vote-banner__desc strong {
    color: var(--gold);
}

.vote-banner__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.vote-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(65, 185, 91, 0.12);
    border: 1px solid rgba(65, 185, 91, 0.25);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.vote-btn:hover {
    background: rgba(65, 185, 91, 0.25);
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(65, 185, 91, 0.2);
    color: var(--white);
    text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer__top {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer__brand {
    flex: 1.5;
}

.footer__logo {
    height: 60px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px var(--cyan-glow));
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 280px;
}

.footer__links-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__links-group a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__links-group a:hover {
    color: var(--cyan-bright);
    transform: translateX(4px);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer__disclaimer {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(176, 210, 235, 0.3);
    margin-bottom: 8px;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(65, 185, 91, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   FOUNDER RANK PROMO BOX
   ============================================ */
.founder-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

.founder-box {
    position: relative;
    padding: 0;
    background: linear-gradient(145deg, rgba(244, 208, 63, 0.06) 0%, rgba(19, 45, 61, 0.9) 30%, rgba(103, 190, 217, 0.06) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 208, 63, 0.25);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(244, 208, 63, 0.08),
        inset 0 1px 0 rgba(244, 208, 63, 0.15);
}

.founder-box__inner {
    position: relative;
    z-index: 2;
    padding: 48px 48px 44px;
}

/* Backlight — radial glow behind the box that breathes */
.founder-box__backlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(244, 208, 63, 0.15) 0%,
            rgba(244, 208, 63, 0.08) 30%,
            rgba(103, 190, 217, 0.05) 50%,
            transparent 70%);
    z-index: -1;
    animation: backlightBreath 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backlightBreath {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.founder-box__glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.3), transparent 40%, transparent 60%, rgba(103, 190, 217, 0.3));
    z-index: 0;
    animation: founderGlow 4s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes founderGlow {

    0%,
    100% {
        opacity: 0.4;
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.3), transparent 40%, transparent 60%, rgba(103, 190, 217, 0.3));
    }

    50% {
        opacity: 0.8;
        background: linear-gradient(135deg, rgba(103, 190, 217, 0.3), transparent 40%, transparent 60%, rgba(244, 208, 63, 0.3));
    }
}

.founder-box__shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 42%, rgba(244, 208, 63, 0.06) 48%, rgba(255, 255, 255, 0.08) 50%, rgba(244, 208, 63, 0.06) 52%, transparent 58%);
    animation: founderShimmer 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes founderShimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.founder-box__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2), rgba(212, 172, 13, 0.15));
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(244, 208, 63, 0.3);
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(244, 208, 63, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(244, 208, 63, 0.3);
    }
}

.founder-box__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.founder-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-box__lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.founder-count {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.founder-rank {
    display: inline-block;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #F4D03F, #ffea9e, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: goldShift 3s ease-in-out infinite;
    text-shadow: none;
}

@keyframes goldShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Perk Cards — sleek glassmorphic left-aligned rows */
.founder-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.founder-perk {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(10, 26, 34, 0.5);
    border: 1px solid rgba(244, 208, 63, 0.1);
    border-radius: 14px;
    transition: var(--transition);
}

.founder-perk:last-child {
    grid-column: 1 / -1;
}

.founder-perk:hover {
    border-color: rgba(244, 208, 63, 0.35);
    background: rgba(244, 208, 63, 0.06);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(244, 208, 63, 0.08);
}

.founder-perk__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.15), rgba(244, 208, 63, 0.05));
    border: 1px solid rgba(244, 208, 63, 0.2);
    flex-shrink: 0;
}

.founder-perk__icon i {
    color: var(--gold);
    font-size: 1.3rem;
}

.founder-perk span {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
}

.founder-perk strong {
    color: var(--cyan-bright);
}

.founder-box__urgency {
    font-size: 1.1rem;
    color: #ff7b7b;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.founder-box__urgency i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.founder-box__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #F4D03F 0%, #D4AC0D 50%, #F4D03F 100%);
    background-size: 200% 100%;
    color: #0a1a22;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px 52px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(244, 208, 63, 0.3),
        0 2px 10px rgba(244, 208, 63, 0.2);
    letter-spacing: 0.5px;
    animation: founderCtaPulse 2.5s ease-in-out infinite, goldShift 3s ease-in-out infinite;
}

.founder-box__cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 50px rgba(244, 208, 63, 0.5),
        0 4px 20px rgba(244, 208, 63, 0.35);
}

.founder-cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
    animation: storeShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes founderCtaPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(244, 208, 63, 0.3),
            0 2px 10px rgba(244, 208, 63, 0.2);
    }

    50% {
        box-shadow: 0 8px 40px rgba(244, 208, 63, 0.5),
            0 4px 20px rgba(244, 208, 63, 0.35),
            0 0 60px rgba(244, 208, 63, 0.15);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 900px) {

    .feature-row,
    .feature-row--reversed {
        flex-direction: column;
        gap: 32px;
    }

    .highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .feature-row__title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .founder-perks {
        grid-template-columns: 1fr;
    }

    .founder-perk:last-child {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 26, 34, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 6px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }

    .nav__links.active {
        right: 0;
    }

    .nav__link {
        padding: 14px 20px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        width: 100%;
    }

    .nav__burger {
        display: flex;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .highlights__grid {
        grid-template-columns: 1fr;
    }

    .hero__logo {
        width: 200px;
    }

    .hero__tagline {
        font-size: 1rem;
    }

    .hero__cta {
        font-size: 1rem;
        padding: 14px 36px;
    }

    .feature-row__title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .vote-banner__content {
        padding: 32px 20px;
    }

    .vote-banner__title {
        font-size: 1.5rem;
    }

    .vote-banner__links {
        flex-direction: column;
        align-items: center;
    }

    .platform-toggle {
        max-width: 100%;
    }

    .ip-display {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .ip-display__label {
        text-align: center;
    }

    .founder-section {
        padding: 40px 16px 24px;
    }

    .founder-box__inner {
        padding: 32px 20px 28px;
    }

    .founder-box__title {
        font-size: 1.6rem;
    }

    .founder-box__lead {
        font-size: 1rem;
    }

    .founder-box__cta {
        font-size: 1rem;
        padding: 16px 36px;
    }

    .founder-perk {
        padding: 12px 14px;
        gap: 12px;
    }

    .founder-perk__icon {
        width: 38px;
        height: 38px;
    }

    .founder-perk__icon i {
        font-size: 1.1rem;
    }

    .founder-perk span {
        font-size: 0.92rem;
    }

    .founder-box__urgency {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
}

/* ============================================
   MOBILE PERFORMANCE: FOUNDER BOX
   Disables heavy GPU effects on phones only.
   Desktop is completely unaffected.
   ============================================ */
@media (max-width: 768px) {

    /* 1. Replace expensive backdrop-filter with solid background */
    .founder-box {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: linear-gradient(145deg, rgba(244, 208, 63, 0.04) 0%, rgba(19, 45, 61, 0.95) 30%, rgba(103, 190, 217, 0.04) 100%);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(244, 208, 63, 0.1);
    }

    /* 2. Kill the backlight orb entirely */
    .founder-box__backlight {
        display: none;
    }

    /* 3. Kill the shimmer sweep */
    .founder-box__shimmer {
        display: none;
    }

    /* 4. Static glow border — no animation */
    .founder-box__glow {
        animation: none;
        opacity: 0.3;
    }

    /* 5. Static badge — no pulse animation */
    .founder-box__badge {
        animation: none;
        box-shadow: 0 0 8px rgba(244, 208, 63, 0.15);
    }

    /* 6. Static FOUNDER text — no goldShift animation */
    .founder-rank {
        animation: none;
        background-position: 50% 50%;
    }

    /* 7. Simplify perk hover (no transform on mobile) */
    .founder-perk:hover {
        transform: none;
        box-shadow: none;
    }

    /* 8. Static urgency text — no pulse */
    .founder-box__urgency {
        animation: none;
        opacity: 1;
    }

    /* 9. Static urgency icon — no spin */
    .founder-box__urgency i {
        animation: none;
    }

    /* 10. Static CTA button — no pulse/shimmer */
    .founder-box__cta {
        animation: none;
        box-shadow: 0 4px 16px rgba(244, 208, 63, 0.25);
    }

    .founder-cta-glow {
        display: none;
    }
}