/* ===== TokenKickstarter PHP SEO Website - CSS ===== */
/* Design system matching Next.js site: #fafaf9 bg, #7ed957 green accent */

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

:root {
    --bg: #fafaf9;
    --fg: #111111;
    --fg-muted: #666666;
    --fg-light: #888888;
    --primary: #7ed957;
    --primary-dark: #6bc348;
    --primary-light: #a8e88a;
    --primary-bg: rgba(126, 217, 87, 0.1);
    --primary-bg-hover: rgba(126, 217, 87, 0.2);
    --border: #e5e5e3;
    --border-light: #f0f0ee;
    --card-bg: #ffffff;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --muted-bg: rgba(245, 245, 243, 0.5);
    --radius: 1rem;
    --radius-sm: 0.75rem;
    --radius-lg: 1.25rem;
    --transition: 0.25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--fg-muted);
}

strong {
    color: var(--fg);
    font-weight: 600;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(126, 217, 87, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    color: var(--fg);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.02em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 0;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

/* Nav dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fg-muted);
    border-radius: 9999px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font);
}

.nav-link:hover {
    background: var(--primary-bg);
    color: var(--fg);
}

.chevron {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown.open .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow-hover);
    padding: 0.5rem;
    z-index: 100;
}

.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--fg-muted);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: var(--primary-bg);
    color: var(--fg);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-inner {
    padding: 1.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-muted);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
    color: var(--primary-dark);
}

.mobile-cta {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-muted {
    background: var(--muted-bg);
}

/* Section headers */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(126, 217, 87, 0.3);
    background: var(--primary-bg);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CARDS ===== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(126, 217, 87, 0.4);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary-bg), rgba(126, 217, 87, 0.05));
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    color: var(--primary-dark);
}

.card-icon .icon {
    width: 28px;
    height: 28px;
}

/* SVG Icon base styles */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.badge-icon {
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

.stat-icon {
    color: var(--primary-dark);
}

.stat-icon .icon {
    width: 24px;
    height: 24px;
}

.info-box .icon {
    width: 20px;
    height: 20px;
}

.card:hover .card-icon {
    background: var(--primary-bg-hover);
    transform: scale(1.1);
}

.card-highlight {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* ===== GRIDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== HERO ===== */
.hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero .subtitle {
    font-size: 1.125rem;
    color: var(--fg-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 640px;
    margin: 3rem auto 0;
}

.badge-live {
    background: rgba(126, 217, 87, 0.12) !important;
    color: #4ade80 !important;
    border-color: rgba(126, 217, 87, 0.3) !important;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-bg);
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hero-stat:hover .stat-icon {
    background: var(--primary-bg-hover);
    transform: scale(1.1);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fg);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--fg-light);
}

/* ===== PAGE HERO (for subpages) ===== */
.page-hero {
    padding: 8rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
    max-width: 700px;
    margin: 0 auto 1rem;
}

.page-hero .subtitle {
    font-size: 1.125rem;
    color: var(--fg-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    margin-bottom: 0.5rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 0.875rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--fg-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.breadcrumbs .sep {
    margin: 0 0.5rem;
    color: var(--fg-light);
}

.breadcrumbs span[aria-current] {
    color: var(--fg);
    font-weight: 500;
}

/* ===== STEPS ===== */
.steps {
    counter-reset: step-counter;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    counter-increment: step-counter;
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0.75rem;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-bg);
    color: var(--primary-dark);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--fg);
    font-family: var(--font);
    transition: color 0.2s;
}

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

.faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary-dark);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #000;
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    color: var(--fg-muted);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.content-block h2 {
    margin-top: 2.5rem;
}

.content-block h3 {
    margin-top: 2rem;
}

.content-block ul,
.content-block ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--fg-muted);
}

.content-block li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.compare-table th {
    background: var(--fg);
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
}

.compare-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
    color: var(--fg-muted);
}

.compare-table tr:nth-child(even) {
    background: var(--muted-bg);
}

.compare-table .check {
    color: var(--primary-dark);
    font-weight: 600;
}

.compare-table .cross {
    color: #dc3545;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.08), rgba(126, 217, 87, 0.02));
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
}

.cta-banner h2 {
    margin-bottom: 1rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.0625rem;
}

/* ===== INTERNAL LINK SECTION ===== */
.related-pages {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}

.related-pages h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--fg);
    font-weight: 500;
    transition: all 0.2s ease;
}

.related-link:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
    color: var(--fg);
}

.related-link .arrow {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(250, 250, 249, 0.5);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--fg-muted);
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--muted-bg);
    color: var(--fg);
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--primary-bg-hover);
    color: var(--fg);
    transform: scale(1.1);
}

.footer-col h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--fg-muted);
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--fg-light);
    margin: 0;
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--primary-bg);
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-bg-hover);
    transform: scale(1.05);
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== GLASS CARD (for info panels) ===== */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.glass-card h3 {
    margin-bottom: 1.5rem;
}

.benefit-row {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--muted-bg);
    margin-bottom: 0.75rem;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.benefit-row:hover {
    background: var(--primary-bg);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--primary-bg);
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.benefit-row:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-text h4 {
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== KEYWORD-INFO BOX ===== */
.info-box {
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.06), rgba(126, 217, 87, 0.02));
    border: 1px solid rgba(126, 217, 87, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ===== RESPONSIVE UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Hide on mobile, show on desktop */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ===== FAQ JS ===== */
/* FAQ toggle handled inline via JS */

/* ===== PRINT ===== */
/* ===== HERO 2-COL LAYOUT (for buybox) ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
        align-items: center;
    }

    .hero-grid .hero-text {
        text-align: left;
    }

    .hero-grid .hero-text h1 {
        margin-left: 0;
        margin-right: 0;
        max-width: 540px;
    }

    .hero-grid .hero-text .subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 480px;
    }

    .hero-grid .hero-cta {
        justify-content: flex-start;
    }

    .hero-grid .hero-stats {
        justify-items: start;
    }
}

/* ===== PRESALE BUYBOX ===== */
.presale-box {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--fg);
    position: relative;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
}

.presale-box:hover {
    box-shadow: var(--card-shadow-hover);
}

.presale-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at top, rgba(126, 217, 87, 0.06), transparent 70%);
    pointer-events: none;
}

.presale-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.presale-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--fg);
}

.presale-box-title .icon {
    color: var(--primary-dark);
}

.presale-box-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.presale-live {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Main card — white card like Next.js */
.presale-main-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Stage Raised / Listing Price row */
.presale-raised-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.presale-raised-left {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.presale-raised-label {
    color: #737373;
    font-size: 0.8125rem;
    margin: 0 0 0.25rem;
    line-height: 1;
}

.presale-raised-left .presale-raised-value {
    font-size: 1.625rem;
    font-weight: 700;
    color: #171717;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.presale-raised-left .presale-raised-cap {
    color: #a3a3a3;
    font-size: 0.8125rem;
    margin-top: 0.125rem;
}

.presale-listing-right {
    text-align: right;
    position: relative;
    flex-shrink: 0;
}

.presale-listing-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #171717;
}

.presale-gain-badge {
    display: inline-block;
    background: #D4E157;
    color: #171717;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -0.75rem;
    right: 0;
    transform: rotate(8deg);
}

/* Stage indicator */
.presale-stage-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
    margin-top: 0.5rem;
    color: #737373;
    font-size: 0.8125rem;
}

/* Progress bar v2 */
.presale-progress-bar-v2 {
    height: 8px;
    border-radius: 9999px;
    background: #f5f5f5;
    overflow: hidden;
    margin-bottom: 1rem;
}

.presale-progress-fill-v2 {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #C5D631, #F59E0B, #EF4444);
    transition: width 1s ease-out;
}

/* Price row */
.presale-price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.presale-meta-label {
    color: #737373;
    font-size: 0.8125rem;
}

.presale-meta-value {
    color: #171717;
    font-weight: 600;
    font-size: 0.8125rem;
}

.presale-meta-rate {
    color: #22C55E;
    font-weight: 600;
    font-size: 0.8125rem;
}

.presale-meta-rate .icon {
    color: #22C55E;
    vertical-align: middle;
}

/* Audit row */
.presale-audit-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.presale-audit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #262626;
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.presale-audit-badge:hover {
    background: #404040;
    color: #fff;
}

/* Buy Button */
.presale-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.presale-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(126, 217, 87, 0.3);
    color: #000;
}

.presale-buy-btn .icon {
    color: #000;
}

/* Chain Icons */
.presale-chains {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--fg-light);
}

.presale-chain-icons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.presale-chain-icons img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.presale-chain-icons img:hover {
    opacity: 1;
}

/* ===== ERROR PAGES ===== */
.error-page {
    padding: 12rem 0 6rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.error-code {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-500 {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
}

.error-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.error-content>p {
    color: var(--fg-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.error-links {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.error-links>p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.error-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.error-links-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--fg);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s;
}

.error-links-grid a:hover {
    border-color: rgba(126, 217, 87, 0.3);
    background: rgba(126, 217, 87, 0.05);
    color: var(--primary-dark);
}

@media (max-width: 480px) {
    .error-code {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG ===== */
.blog-hero {
    padding-top: 10rem;
    padding-bottom: 2rem;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    background: var(--card-bg);
}

.cat-active {
    background: rgba(126, 217, 87, 0.1);
    color: var(--primary-dark);
    border-color: rgba(126, 217, 87, 0.2);
}

.cat-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.cat-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.cat-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

.cat-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.cat-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.2);
}

/* Featured card */
.blog-featured-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--card-bg);
    text-decoration: none;
    color: var(--fg);
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.blog-featured-card:hover {
    border-color: rgba(126, 217, 87, 0.3);
    box-shadow: 0 8px 24px rgba(126, 217, 87, 0.05);
}

.blog-featured-content {
    flex: 1;
}

.blog-featured-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.75rem 0;
    transition: color 0.2s;
}

.blog-featured-card:hover h2 {
    color: var(--primary-dark);
}

.blog-featured-card>p,
.blog-featured-content>p {
    color: var(--fg-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.blog-featured-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(126, 217, 87, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

@media (min-width: 640px) {
    .blog-featured-arrow {
        display: flex;
    }
}

.blog-featured-card:hover .blog-featured-arrow {
    background: rgba(126, 217, 87, 0.2);
}

.blog-featured-arrow .icon {
    color: var(--primary-dark);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.8125rem;
    color: var(--fg-muted);
}

.blog-card-footer span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--fg-muted);
}

.read-link {
    color: var(--primary-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
}

/* Article grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--card-bg);
    text-decoration: none;
    color: var(--fg);
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: rgba(126, 217, 87, 0.3);
    box-shadow: 0 8px 24px rgba(126, 217, 87, 0.05);
}

.blog-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover h3 {
    color: var(--primary-dark);
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-sm {
    padding: 1rem;
}

.blog-card-sm h3 {
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

/* Article page */
.blog-article-section {
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.blog-article-container {
    max-width: 680px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--fg-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.blog-back-link .icon {
    transform: rotate(180deg);
}

.blog-back-link:hover {
    color: var(--primary-dark);
}

.blog-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.blog-article-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0.75rem 0;
}

.article-desc {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-author-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--fg-muted);
}

.article-author-row span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-sep {
    color: rgba(0, 0, 0, 0.2);
}

/* Article content typography */
.article-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.article-content p {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(126, 217, 87, 0.3);
    transition: text-decoration-color 0.2s;
}

.article-content a:hover {
    text-decoration-color: var(--primary-dark);
}

.article-content li {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(126, 217, 87, 0.2);
    margin-left: 0.5rem;
}

.article-content li strong {
    color: var(--fg);
}

.article-content .spacer {
    height: 0.75rem;
}

.article-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
}

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

.article-content th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--muted-bg);
}

.article-content td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--fg-muted);
    border-top: 1px solid var(--border-light);
}

.article-content tr:hover {
    background: rgba(126, 217, 87, 0.03);
}

/* Article CTA */
.article-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(126, 217, 87, 0.15);
    background: rgba(126, 217, 87, 0.05);
    text-align: center;
}

.article-cta h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.article-cta p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    margin-bottom: 1rem;
}

.article-cta-buttons {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

/* Tags */
.article-tags {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: var(--muted-bg);
    border: 1px solid var(--border-light);
    color: var(--fg-muted);
}

/* Related articles */
.related-articles {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.related-articles h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .related-articles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Add calendar icon */
.icon {
    vertical-align: middle;
}

/* ===== TOKEN DETAILS ===== */
.token-details-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .token-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.token-details-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s;
}

.glass-card:hover {
    border-color: rgba(126, 217, 87, 0.3);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.card-title .icon {
    color: var(--primary-dark);
}

.token-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.token-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: var(--muted-bg);
}

.token-info-row span {
    color: var(--fg-muted);
    font-size: 0.9375rem;
}

.token-info-row strong {
    font-weight: 600;
}

.text-primary-bold {
    color: var(--primary-dark);
    font-family: monospace;
    font-weight: 700;
}

.text-live {
    color: #7ed957;
    font-weight: 700;
}

.networks-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem;
}

.network-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.network-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(126, 217, 87, 0.1);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Utility */
.utility-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.utility-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--muted-bg);
    transition: background 0.2s;
}

.utility-item:hover {
    background: rgba(126, 217, 87, 0.06);
}

.utility-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(126, 217, 87, 0.1);
}

.utility-icon .icon {
    color: var(--primary-dark);
}

.utility-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.utility-item p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.5;
}

/* Participate */
.participate-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .participate-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.participate-step {
    display: flex;
    gap: 1rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(126, 217, 87, 0.1);
    transition: all 0.2s;
}

.participate-step:hover .step-icon {
    background: rgba(126, 217, 87, 0.2);
    transform: scale(1.05);
}

.step-icon .icon {
    color: var(--primary-dark);
}

.participate-step h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.participate-step p {
    font-size: 0.875rem;
    color: var(--fg-muted);
}

/* Referral */
.referral-banner {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.12), rgba(126, 217, 87, 0.04));
    margin-bottom: 1.5rem;
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.referral-header .icon {
    color: var(--primary-dark);
}

.referral-banner p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.referral-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.referral-check .icon {
    color: var(--primary-dark);
}

.participate-cta {
    text-align: center;
}

.participate-cta p {
    font-size: 0.875rem;
    color: var(--fg-muted);
    margin-top: 0.5rem;
}

/* Pricing */
.token-pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .token-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pricing-header .card-title {
    margin-bottom: 0;
}

.badge-active {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(126, 217, 87, 0.1);
    color: #7ed957;
    font-size: 0.8125rem;
    font-weight: 600;
}

.pricing-boxes {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.pricing-highlight {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.12), rgba(126, 217, 87, 0.04));
    text-align: center;
}

.pricing-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--fg-muted);
}

.pricing-rate {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--muted-bg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-value-sm {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Currency tags */
.currency-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.currency-tag {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--muted-bg);
    border: 1px solid var(--border-light);
    font-size: 0.9375rem;
}

.currency-tag span {
    font-size: 0.75rem;
    color: var(--fg-muted);
}

/* Contracts */
.contracts-card {
    margin-top: 2rem;
}

.badge-mainnet {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contract-group {
    margin-bottom: 1.5rem;
}

.contract-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-muted);
    margin-bottom: 0.5rem;
}

.contract-label-sub {
    font-size: 0.75rem;
    opacity: 0.6;
}

.contract-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--muted-bg);
    margin-bottom: 0.375rem;
    transition: background 0.2s;
}

.contract-row:hover {
    background: rgba(126, 217, 87, 0.06);
}

.contract-network {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--fg-muted);
    min-width: 70px;
    white-space: nowrap;
}

.contract-address {
    font-size: 0.8125rem;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.contract-link {
    flex-shrink: 0;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.contract-link:hover {
    color: var(--primary-dark);
}

/* ===== ROADMAP ===== */
.roadmap-callout {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.callout-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.callout-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.badge-market {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: rgba(126, 217, 87, 0.1);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.roadmap-callout p {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.roadmap-callout p:last-child {
    margin-bottom: 0;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.375rem;
}

.dot-completed {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.dot-in-progress {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.dot-upcoming {
    background: #9ca3af;
}

.timeline-line {
    width: 2px;
    flex: 1;
    margin-top: 0.5rem;
}

.line-completed {
    background: rgba(16, 185, 129, 0.4);
}

.line-in-progress {
    background: rgba(59, 130, 246, 0.3);
}

.line-upcoming {
    background: var(--border-light);
}

.timeline-card {
    flex: 1;
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.9375rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.timeline-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--fg-muted);
    margin-bottom: 0.625rem;
}

.bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.phase-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-upcoming {
    background: var(--muted-bg);
    color: var(--fg-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-completed .status-dot {
    background: #10b981;
}

.status-upcoming .status-dot {
    background: #9ca3af;
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #3b82f6;
    animation: live-pulse 2s ease-in-out infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: #3b82f6;
}

/* ===== COMMUNITY ===== */
.community-section {
    padding: 5rem 0;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--fg);
    transition: all 0.3s;
    min-width: 100px;
}

.social-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(126, 217, 87, 0.1);
    border-color: rgba(126, 217, 87, 0.3);
}

.social-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--muted-bg);
    transition: background 0.2s;
}

.social-svg {
    width: 20px;
    height: 20px;
}

.social-card span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.social-card:hover span {
    color: var(--fg);
}

.social-facebook:hover {
    border-color: #1877F2;
}

.social-facebook:hover .social-icon-wrap {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.social-tiktok:hover {
    border-color: #ff0050;
}

.social-tiktok:hover .social-icon-wrap {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
}

.social-reddit:hover {
    border-color: #FF4500;
}

.social-reddit:hover .social-icon-wrap {
    background: rgba(255, 69, 0, 0.1);
    color: #FF4500;
}

.social-telegram:hover .social-icon-wrap {
    background: rgba(0, 136, 204, 0.1);
}

.community-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    color: var(--fg-muted);
}

.text-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

/* Tablet - 768px */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9375rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-item {
        min-width: 40%;
        flex: 1 1 40%;
        text-align: center;
    }

    .stat-item::after {
        display: none;
    }

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

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

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

    .section-desc {
        font-size: 0.875rem;
    }

    .token-details-grid {
        grid-template-columns: 1fr;
    }

    .token-details-sidebar {
        order: -1;
    }

    .roadmap-timeline {
        padding-left: 1.5rem;
    }

    .roadmap-dot {
        left: -1.5rem;
    }

    .roadmap-line {
        left: -1.25rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .presale-box {
        max-width: 100%;
    }

    /* Comparison table — horizontal scroll on tablet */
    .compare-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1.5rem -1rem;
        width: calc(100% + 2rem);
    }

    .compare-table th,
    .compare-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        background: var(--card-bg);
    }

    .compare-table th:first-child {
        background: var(--fg);
    }

    .compare-table tr:nth-child(even) td:first-child {
        background: var(--muted-bg);
    }
}

/* Small tablet / large phone - 640px */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

    .section-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }

    .stats-bar {
        gap: 0.75rem;
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-article-content {
        padding: 0 1rem;
    }

    .blog-article-header h1 {
        font-size: 1.5rem;
    }

    .blog-cat-badges {
        flex-wrap: wrap;
        gap: 0.375rem;
    }

    .presale-raised-value {
        font-size: 1.25rem;
    }

    .presale-listing-value {
        font-size: 1rem;
    }

    .presale-price-row {
        gap: 0.5rem;
    }
}

/* Phone - 480px */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.8125rem;
        padding: 0;
    }

    .hero-actions .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .stat-item {
        min-width: 100%;
        flex: 1 1 100%;
        padding: 0.5rem 0;
    }

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

    .feature-card {
        padding: 1.25rem;
    }

    .presale-box {
        padding: 1.25rem;
    }

    .presale-main-card {
        padding: 1rem;
    }

    .presale-raised-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .presale-listing-right {
        text-align: left;
    }

    .presale-gain-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-left: 0.5rem;
    }

    .presale-buy-btn {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .presale-chains {
        flex-wrap: wrap;
        justify-content: center;
    }

    .token-detail-card {
        padding: 1rem;
    }

    .roadmap-card {
        padding: 1.25rem;
    }

    .community-card {
        padding: 1.5rem;
    }


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

    .blog-hero {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .blog-hero h1 {
        font-size: 1.5rem;
    }

    .blog-article-header {
        padding-top: 8rem;
    }
}

/* Small phone - 375px */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 0.75rem;
    }

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

    .presale-raised-value {
        font-size: 1.125rem;
    }

    .presale-raised-cap {
        font-size: 0.6875rem;
    }

    .presale-listing-value {
        font-size: 0.9375rem;
    }

    .presale-stage-row {
        font-size: 0.6875rem;
    }

    .presale-meta-label,
    .presale-meta-value,
    .presale-meta-rate {
        font-size: 0.6875rem;
    }

    .footer-grid {
        gap: 1rem;
    }

    .blog-grid {
        gap: 1rem;
    }
}

/* ===== PRINT ===== */
@media print {

    .site-header,
    .site-footer,
    .mobile-nav,
    .cta-banner {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}