/* ============================================
   OLIMPIA LANDING PAGE
   Design inspired by poke-valley.com
   Dark brown/black + orange/coral accents
   ============================================ */

/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: 'tibia';
    src: url('../fonts/Tibia.ttf') format('truetype');
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary — Orange/Coral */
    --primary: #e8663c;
    --primary-light: #f07850;
    --primary-dark: #c4502a;
    --primary-pale: #fde8d8;

    /* Accent */
    --accent: #e8663c;
    --accent-glow: rgba(232, 102, 60, 0.4);

    /* Card accent colors */
    --card-1: #8B0000;
    --card-2: #47991f;
    --card-3: #8868BF;
    --card-4: #d4af37;

    /* Backgrounds */
    --bg-body: #0c0806;
    --bg-card: rgba(20, 14, 10, 0.8);
    --bg-card-solid: #160e0a;
    --bg-card-hover: rgba(30, 20, 14, 0.9);

    /* Text */
    --text-white: #ffffff;
    --text-light: #f0ece8;
    --text-muted: #8a7e74;
    --text-dim: #5a504a;

    /* Borders */
    --border-subtle: rgba(232, 102, 60, 0.15);
    --border-hover: rgba(232, 102, 60, 0.4);

    /* Footer */
    --footer-bg: linear-gradient(180deg, #120a06 0%, #0c0806 100%);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(232, 102, 60, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--text-light);
    background: transparent;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Image Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background: url('/plugins/olimpia/themes/olimpia/images/background.avif') no-repeat center center;
    background-size: cover;
    animation: bgZoom 25s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: rgba(15, 15, 20, 0.85); /* Overlay escuro similar ao Poke Valley para garantir boa leitura */
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Page sections (SPA) */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 8, 6, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(12, 8, 6, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(232, 102, 60, 0.2));
    transition: filter 0.3s ease;
}

.nav-logo:hover img {
    filter: drop-shadow(0 2px 12px rgba(232, 102, 60, 0.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-white);
    background: rgba(232, 102, 60, 0.08);
}

.nav-link.active {
    color: var(--text-white);
    background: rgba(232, 102, 60, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-selector {
    display: flex;
    gap: 4px;
    margin-right: 8px;
}

.flag-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.4;
}

.flag-btn.active {
    opacity: 1;
}

.flag-btn:hover {
    opacity: 1;
}

.flag-btn img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    display: block;
}

.nav-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-btn-login {
    color: var(--text-muted);
}

.nav-btn-login:hover {
    color: var(--text-white);
}

.nav-btn-register {
    background: var(--primary);
    color: var(--text-white);
}

.nav-btn-register:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 102, 60, 0.3);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-large img {
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0px 4px 20px rgba(232, 102, 60, 0.2));
    animation: floatLogo 3.5s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.hero-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(232, 102, 60, 0.3);
}

.hero-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 102, 60, 0.4);
}

.hero-btn-secondary {
    background: rgba(232, 102, 60, 0.1);
    color: var(--primary);
    border: 1px solid rgba(232, 102, 60, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(232, 102, 60, 0.2);
    border-color: rgba(232, 102, 60, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon-orange {
    background: rgba(232, 102, 60, 0.15);
    color: var(--primary);
}

.stat-icon-yellow {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.stat-icon-green {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.stat-event {
    color: #ffc107;
    font-size: 1.85rem;
    letter-spacing: 0;
    line-height: 1.15;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-live-dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Changa One', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-title-page {
    font-family: 'Changa One', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary) !important;
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap-section {
    padding: 60px 0 50px;
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    margin-top: 30px;
}

.roadmap-line {
    height: 3px;
    background: rgba(232, 102, 60, 0.15);
    border-radius: 3px;
    position: relative;
    margin-bottom: 24px;
}

.roadmap-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    position: relative;
    transition: width 1s ease;
}

.roadmap-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(232, 102, 60, 0.5);
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.roadmap-item {
    text-align: center;
    position: relative;
}

.roadmap-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(232, 102, 60, 0.15);
    border: 2px solid rgba(232, 102, 60, 0.3);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.roadmap-item.completed .roadmap-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.roadmap-item.active .roadmap-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(232, 102, 60, 0.5);
}

.roadmap-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.roadmap-item.completed .roadmap-date,
.roadmap-item.active .roadmap-date {
    color: var(--primary);
}

.roadmap-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.roadmap-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   FOUNDER HOME SECTION (Preview on Home)
   ============================================ */
.founder-home-section {
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
}

.founder-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Founder Items Preview */
.founder-items-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.founder-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 10px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.founder-item-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.founder-item-card.highlight {
    border-color: rgba(232, 102, 60, 0.4);
    background: rgba(232, 102, 60, 0.08);
}

.founder-item-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.founder-item-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Founder CTA */
.founder-home-cta {
    padding: 10px 0;
}

.founder-title {
    font-family: 'Changa One', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.founder-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.founder-desc strong {
    color: var(--text-white);
}

.founder-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 102, 60, 0.3);
}

.founder-cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 102, 60, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 30px 0 60px;
    position: relative;
    z-index: 1;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.open {
    border-color: rgba(232, 102, 60, 0.5);
    box-shadow: 0 4px 15px rgba(232, 102, 60, 0.06);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 300;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* FAQ Side Title */
.faq-side {
    text-align: left;
    padding-top: 20px;
    position: sticky;
    top: 100px;
}

.faq-side-sub {
    font-family: 'Changa One', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.faq-side-title {
    font-family: 'Changa One', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.faq-side-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.3));
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.download-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.download-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.download-size {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 102, 60, 0.3);
}

/* Download Locked (before countdown ends) */
.download-locked-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(232, 102, 60, 0.2);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-locked-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.download-locked-title {
    font-family: 'Changa One', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.download-locked-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.download-locked-desc strong {
    color: var(--primary);
}

/* Requirements */
.download-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.req-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
}

.req-block h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.req-block ul {
    list-style: none;
    padding: 0;
}

.req-block ul li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(232, 102, 60, 0.06);
}

.req-block ul li:last-child {
    border-bottom: none;
}

/* Steps */
.download-steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: rgba(232, 102, 60, 0.15);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   RANKING SECTION
   ============================================ */
.ranking-section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.ranking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.ranking-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.ranking-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.ranking-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ranking Table */
.ranking-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(232, 102, 60, 0.05);
}

.ranking-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(232, 102, 60, 0.05);
}

.ranking-table tbody tr:hover {
    background: rgba(232, 102, 60, 0.04);
}

.ranking-table tbody tr:last-child td {
    border-bottom: none;
}

.ranking-loading {
    text-align: center !important;
    color: var(--text-muted) !important;
    padding: 40px 20px !important;
    font-style: italic;
}

/* ============================================
   FOUNDER SECTION (Full Page)
   ============================================ */
.founder-section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.founder-hero {
    text-align: center;
    margin-bottom: 60px;
}

.founder-hero-title {
    font-family: 'Changa One', sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.founder-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Badges */
.founder-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.founder-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.founder-badge:hover {
    border-color: var(--border-hover);
}

.badge-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.badge-desc {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* Founder Items Detail */
.founder-items-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.founder-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
}

.founder-detail-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.founder-detail-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.founder-detail-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-detail-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.founder-detail-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.founder-detail-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefits */
.founder-benefits {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--border-hover);
}

.benefit-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Founder FAQ */
.founder-faq {
    margin-bottom: 60px;
}

/* Final CTA */
.founder-final-cta {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--border-subtle);
}

.founder-final-cta .founder-title {
    margin-top: 10px;
}

.founder-final-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--footer-bg);
    padding: 50px 0 35px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-subtle);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    margin-bottom: 16px;
}

.footer-made {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-title {
    font-family: 'Changa One', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-pale);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* ============================================
   BETA III COUNTDOWN TIMER
   ============================================ */
.countdown-section {
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}

.countdown-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 32px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.countdown-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 102, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-header {
    margin-bottom: 32px;
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 8px;
}

.countdown-title {
    font-family: 'Changa One', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(232, 102, 60, 0.3);
}

.countdown-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-value {
    font-family: 'Changa One', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1;
    min-width: 100px;
    padding: 16px 8px;
    background: rgba(232, 102, 60, 0.06);
    border: 1px solid rgba(232, 102, 60, 0.15);
    border-radius: 14px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(232, 102, 60, 0.2);
}

.countdown-separator {
    font-family: 'Changa One', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    padding-bottom: 28px;
    animation: pulse 1.5s ease-in-out infinite;
}

.countdown-unit-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-footer {
    margin-top: 8px;
}

.countdown-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(232, 102, 60, 0.06);
    border: 1px solid rgba(232, 102, 60, 0.12);
    border-radius: 20px;
    padding: 8px 18px;
}

.countdown-date-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Countdown finished state */
.countdown-finished {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.countdown-finished-icon {
    font-size: 3rem;
    animation: floatLogo 2s ease-in-out infinite;
}

.countdown-finished-title {
    font-family: 'Changa One', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(232, 102, 60, 0.4);
}

.countdown-finished-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 400px;
}

.countdown-done .countdown-card {
    border-color: rgba(232, 102, 60, 0.4);
    box-shadow: 0 0 40px rgba(232, 102, 60, 0.15);
}

/* Beta III reward / Hades Cerberus mount */
.countdown-reward {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-reward-divider {
    width: min(280px, 70%);
    height: 1px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, transparent, rgba(232, 102, 60, 0.45), transparent);
}

.countdown-reward-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 0 12px rgba(232, 102, 60, 0.35);
}

.countdown-reward-title {
    font-family: 'Changa One', sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
    max-width: 420px;
    text-shadow: 0 0 24px rgba(232, 102, 60, 0.35);
}

.countdown-reward-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 0 8px;
    line-height: 1.5;
}

.countdown-reward-desc strong {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(232, 102, 60, 0.3);
}

.countdown-mount-stage {
    position: relative;
    width: 270px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 2px;
}

.countdown-mount-aura {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 102, 60, 0.28) 0%, rgba(232, 102, 60, 0.08) 45%, transparent 72%);
    animation: countdownMountPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

.countdown-mount-ring {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid rgba(232, 102, 60, 0.35);
    box-shadow:
        0 0 24px rgba(232, 102, 60, 0.15),
        inset 0 0 18px rgba(232, 102, 60, 0.08);
    animation: countdownMountSpin 12s linear infinite;
    pointer-events: none;
}

.countdown-mount-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.countdown-mount-gif {
    position: relative;
    z-index: 1;
    width: 192px;
    height: auto;
    image-rendering: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 14px rgba(232, 102, 60, 0.35));
    animation: floatLogo 2.6s ease-in-out infinite;
}

.countdown-mount-name {
    font-family: 'Changa One', sans-serif;
    font-size: 1.15rem;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(232, 102, 60, 0.3);
}

.countdown-mount-tag {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(232, 102, 60, 0.08);
    border: 1px solid rgba(232, 102, 60, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
}

@keyframes countdownMountPulse {
    0%, 100% { transform: scale(0.92); opacity: 0.75; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes countdownMountSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(12, 8, 6, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-right .nav-btn {
        display: none;
    }

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

    .founder-items-detail {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ranking-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 50px 0 30px;
    }

    .logo-large img {
        max-width: 220px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btn {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .stat-icon {
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .roadmap-items {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* Countdown responsive */
    .countdown-title {
        font-size: 2.6rem;
    }

    .countdown-value {
        font-size: 2.8rem;
        min-width: 76px;
        padding: 12px 6px;
    }

    .countdown-separator {
        font-size: 2rem;
        padding-bottom: 22px;
    }

    .countdown-card {
        padding: 28px 20px 24px;
    }

    .countdown-finished-title {
        font-size: 1.8rem;
    }

    .countdown-reward-title {
        font-size: 1.3rem;
    }

    .countdown-mount-stage {
        width: 230px;
        height: 230px;
    }

    .countdown-mount-gif {
        width: 168px;
    }

    .roadmap-line {
        position: absolute;
        top: 16px;
        left: 20px;
        width: 3px;
        height: calc(100% - 50px);
        margin-bottom: 0;
    }

    .roadmap-progress {
        width: 3px !important;
        height: 80%;
    }

    .roadmap-progress::after {
        right: auto;
        left: 50%;
        bottom: -6px;
        top: auto;
        transform: translateX(-50%);
    }

    .roadmap-timeline {
        position: relative;
        padding-left: 50px;
    }

    .roadmap-items {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .roadmap-item {
        text-align: left;
        position: relative;
    }

    .roadmap-dot {
        position: absolute;
        left: -41px;
        top: 4px;
        margin: 0;
    }

    .founder-home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-items-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-title {
        font-size: 2.2rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-requirements {
        grid-template-columns: 1fr;
    }

    .download-steps {
        flex-direction: column;
        align-items: center;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-side {
        order: -1;
        text-align: center;
        position: static;
    }

    .faq-side-title {
        font-size: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo img {
        height: 44px;
    }

    .founder-hero-title {
        font-size: 2rem;
    }

    .founder-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-title-page {
        font-size: 1.8rem;
    }

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

    .logo-large img {
        max-width: 180px;
    }



    .founder-items-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .faq-side-title {
        font-size: 2.5rem;
    }

    .countdown-title {
        font-size: 2rem;
    }

    .countdown-value {
        font-size: 2.2rem;
        min-width: 64px;
        padding: 10px 4px;
    }

    .countdown-separator {
        font-size: 1.6rem;
        padding-bottom: 18px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-finished-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .countdown-reward {
        margin-top: 22px;
        gap: 8px;
    }

    .countdown-reward-title {
        font-size: 1.15rem;
    }

    .countdown-reward-desc {
        font-size: 13px;
    }

    .countdown-mount-stage {
        width: 200px;
        height: 200px;
    }

    .countdown-mount-gif {
        width: 144px;
    }
}

/* ============================================
   SEO / ACCESSIBILITY HELPERS
   ============================================ */

/* Screen-reader-only text. Used for the page <h1>, which is represented
   visually by the Olimpia logo. */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer sitemap: keeps the crawlable link list compact instead of one very
   long single column. */
.footer-nav .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
}

@media (max-width: 480px) {
    .footer-nav .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================

/* ============================================
   RETA FINAL — PRE-LANCAMENTO (pos Beta III)
   ============================================ */
.finale-section {
    padding: 30px 0 10px;
    position: relative;
    z-index: 1;
}

.finale-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 44px 32px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.finale-glow {
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(232, 102, 60, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.finale-card > *:not(.finale-glow) {
    position: relative;
    z-index: 1;
}

.finale-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(232, 102, 60, 0.10);
    border: 1px solid rgba(232, 102, 60, 0.28);
    color: var(--primary-light);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}

.finale-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--accent-glow);
    animation: finalePulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes finalePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.8); }
}

.finale-title {
    font-family: 'Changa One', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.finale-desc {
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
}

.finale-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: left;
}

.finale-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.finale-step-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.finale-step-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-muted);
}

.finale-step-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

.finale-step.done .finale-step-icon {
    background: rgba(71, 153, 31, 0.16);
    color: #6fbf3f;
}

.finale-step.done .finale-step-text strong {
    color: #8fd166;
}

.finale-step.active {
    background: rgba(232, 102, 60, 0.07);
    border-color: rgba(232, 102, 60, 0.28);
    box-shadow: 0 0 24px rgba(232, 102, 60, 0.10);
}

.finale-step.active .finale-step-icon {
    background: rgba(232, 102, 60, 0.18);
    color: var(--primary-light);
}

.finale-step.active .finale-step-text strong {
    color: var(--primary-light);
}

.finale-step.next .finale-step-icon {
    background: rgba(212, 175, 55, 0.14);
    color: var(--card-4);
}

.finale-step.next .finale-step-text strong {
    color: var(--card-4);
}

.finale-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.finale-hint {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* Stats reduzidos (apenas contas criadas) */
.stats-grid-solo {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
}

/* Nota dos beta testers (doacoes + montaria) */
.legacy-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 20px auto 0;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.16);
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-muted);
    text-align: left;
}

.legacy-note strong {
    color: var(--card-4);
    font-weight: 700;
}

.legacy-note-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--card-4);
    opacity: 0.75;
}

/* Roadmap: etapa atual (lancamento) */
.roadmap-item.current .roadmap-dot {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--card-4);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
    animation: finalePulse 2.4s ease-in-out infinite;
}

.roadmap-item.current .roadmap-date {
    color: var(--card-4);
}

@media (max-width: 900px) {
    .finale-steps {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

@media (max-width: 768px) {
    .finale-card {
        padding: 32px 20px 28px;
    }

    .finale-title {
        font-size: 2.1rem;
    }

    .finale-desc {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .finale-badge {
        font-size: 10.5px;
        letter-spacing: 1.2px;
        padding: 6px 13px;
    }

    .finale-actions .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .legacy-note {
        font-size: 12px;
        padding: 13px 15px;
    }
}

@media (max-width: 480px) {
    .finale-title {
        font-size: 1.75rem;
    }
}
