/* =========================================
   $RARE — STYLE SYSTEM
   ========================================= */

:root {
    /* Colors */
    --bg: #05020e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text-primary: #f0eef5;
    --text-secondary: rgba(240, 238, 245, 0.55);
    --text-muted: rgba(240, 238, 245, 0.35);

    /* Accent Palette (holographic) */
    --accent-1: #7df9ff;
    /* cyan */
    --accent-2: #c084fc;
    /* lavender */
    --accent-3: #f472b6;
    /* pink */
    --accent-4: #facc15;
    /* gold */
    --accent-5: #34d399;
    /* emerald */

    /* Fire */
    --fire-1: #ff4500;
    --fire-2: #ff8c00;
    --fire-3: #ffd700;

    /* Sizing */
    --max-w: 1200px;
    --section-py: 120px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    /* Transition */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- Canvas & Noise ---- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Utility ---- */
.center {
    text-align: center;
}

.muted {
    color: var(--text-secondary);
}

.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 16px;
    background: rgba(125, 249, 255, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(125, 249, 255, 0.15);
}

.section-tag.center {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.text-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.text-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.accent-text {
    color: var(--accent-1) !important;
    font-weight: 600;
}

.fire-text {
    color: var(--fire-2);
    font-weight: 700;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-out);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.glass-card-subtle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(125, 249, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(125, 249, 255, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ---- Navbar ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    background: rgba(5, 2, 14, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #000;
    border-radius: 8px;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- Hero ---- */
#hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-5);
    box-shadow: 0 0 10px var(--accent-5);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero-title .line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-title .line:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s var(--ease-out) both, shineText 4s linear infinite;
    animation-delay: 0.2s, 0s;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.ca-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
}

.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(125, 249, 255, 0.15);
    border: 1px solid rgba(125, 249, 255, 0.3);
    color: var(--accent-1);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
    z-index: 999;
    backdrop-filter: blur(20px);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hero Coin */
.hero-coin-container {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.coin-glow {
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4), var(--accent-5), var(--accent-1));
    filter: blur(80px);
    opacity: 0.4;
    animation: spinSlow 20s linear infinite;
}

.coin-body {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #b2f5ea, #fed7aa, #fbcfe8, #e9d5ff, #81e6d9, #b2f5ea);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.9), 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.7);
    animation: float 8s ease-in-out infinite;
    overflow: hidden;
}

.coin-shine {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.8) 50%, transparent 60%);
    animation: glint 3s linear infinite;
}

@keyframes glint {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(50%) translateY(50%);
    }
}

.coin-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.coin-ring {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: spinSlow 30s linear infinite reverse;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ---- Marquee ---- */
.marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(125, 249, 255, 0.02);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 0 20px;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- Sections ---- */
.section {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-py) 24px;
}

.section-grid {
    display: grid;
    gap: 60px;
}

.two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* ---- Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---- About ---- */
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* Diamond Visual */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-cage {
    position: relative;
    width: 300px;
    height: 300px;
}

.diamond-shape {
    position: absolute;
    inset: 0;
    animation: spinSlow 15s linear infinite;
}

.diamond-facet {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.diamond-facet.f1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: linear-gradient(135deg, rgba(125, 249, 255, 0.15), rgba(192, 132, 252, 0.1));
    width: 160px;
    height: 160px;
    box-shadow: 0 0 60px rgba(125, 249, 255, 0.2);
}

.diamond-facet.f2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(250, 204, 21, 0.08));
    width: 140px;
    height: 140px;
}

.diamond-facet.f3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(125, 249, 255, 0.08));
    width: 100px;
    height: 100px;
}

.diamond-facet.f4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.12), rgba(244, 114, 182, 0.06));
    width: 180px;
    height: 180px;
    border-color: rgba(255, 255, 255, 0.08);
}

/* ---- Live Data ---- */
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.live-card {
    padding: 28px 24px;
    text-align: center;
}

.live-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(125, 249, 255, 0.06), rgba(192, 132, 252, 0.04));
    border-color: rgba(125, 249, 255, 0.15);
}

.live-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.live-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.live-card.featured .live-card-value {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.change-positive {
    color: var(--accent-5) !important;
}

.change-negative {
    color: var(--fire-1) !important;
}

.loading-shimmer {
    color: var(--text-muted);
    font-size: 1rem;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.data-update-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ---- Tokenomics ---- */
.tok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.tok-card {
    padding: 36px 24px;
    text-align: center;
}

.tok-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.tok-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.tok-big-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.tok-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Burn Bar */
.burn-bar-section {
    padding: 36px;
    margin-bottom: 24px;
}

.burn-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.burn-bar-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.burn-bar-track {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.burn-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--fire-1), var(--fire-2), var(--fire-3));
    background-size: 200% auto;
    animation: shineText 3s linear infinite;
    transition: width 2.5s var(--ease-out);
    position: relative;
}

.burn-bar-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.4), rgba(255, 215, 0, 0.3));
    filter: blur(8px);
    transition: width 2.5s var(--ease-out);
}

.burn-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CA Block */
.ca-block {
    padding: 28px 32px;
    text-align: center;
}

.ca-block-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.ca-block-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ca-block-row code {
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    word-break: break-all;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.copy-btn:hover {
    background: rgba(125, 249, 255, 0.1);
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* ---- How to Buy ---- */
.htb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.htb-card {
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
}

.htb-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    position: absolute;
    top: -12px;
    right: 16px;
    opacity: 0.04;
    line-height: 1;
}

.htb-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.htb-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Footer ---- */
#footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-links-grid {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 2, 14, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        letter-spacing: -1.5px;
    }

    .hero-coin-container {
        display: none;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .live-grid,
    .tok-grid,
    .htb-grid {
        grid-template-columns: 1fr;
    }

    .live-card.featured {
        grid-column: auto;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        gap: 40px;
    }
}

@media (max-width: 500px) {
    :root {
        --section-py: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .ca-block-row {
        flex-direction: column;
    }

    .ca-block-row code {
        font-size: 0.75rem;
    }
}