/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F6DE4E;
    --bg-dark: #f7f8fb;
    --bg-darker: #eef1f6;
    --text-white: #111827;
    --text-gray: #4b5563;
    --card-bg: #ffffff;
    --card-border: rgba(17, 24, 39, 0.08);
    --muted-border: rgba(17, 24, 39, 0.06);
    --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.12);
    --glow: 0 10px 28px rgba(246, 222, 78, 0.24);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.12), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f9fafc 55%, #eef2f7 100%);
    color: var(--text-white);
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

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

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-md {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--muted-border);
    backdrop-filter: blur(14px) saturate(160%);
    transition: var(--transition);
    padding: 14px 0;
    box-shadow: 0 6px 30px rgba(15, 23, 42, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    color: #0f172a;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.nav-item:hover {
    color: var(--primary-color);
    border-color: rgba(246, 222, 78, 0.5);
}

/* Buttons */
.btn-outline {
    padding: 9px 20px;
    border: 1px solid var(--card-border);
    color: #0f172a;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
    border-color: rgba(246, 222, 78, 0.7);
    box-shadow: var(--glow);
}

.header-button {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--card-border);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0f172a;
}

.theme-toggle:hover {
    background: rgba(246, 222, 78, 0.1);
    border-color: rgba(246, 222, 78, 0.7);
}

.theme-toggle .moon-icon {
    display: none;
}

body.dark-mode .theme-toggle .sun-icon {
    display: none;
}

body.dark-mode .theme-toggle .moon-icon {
    display: block;
}

/* ==================== DARK MODE STYLES ==================== */

/* Base Dark Mode */
body.dark-mode {
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.05), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.03), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 55%, #334155 100%) !important;
    color: #e2e8f0 !important;
}

/* Header */
body.dark-mode .header {
    background: rgba(15, 23, 42, 0.95) !important;
    border-bottom: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo-text {
    color: #f8fafc !important;
}

body.dark-mode .nav-item {
    color: #e2e8f0 !important;
}

body.dark-mode .nav-item:hover {
    color: #f6de4e !important;
}

body.dark-mode .btn-outline {
    border-color: rgba(246, 222, 78, 0.4);
    color: #f8fafc !important;
    background: rgba(246, 222, 78, 0.05);
}

body.dark-mode .btn-outline:hover {
    background: rgba(246, 222, 78, 0.2);
    border-color: #f6de4e;
}

body.dark-mode .theme-toggle {
    border-color: rgba(246, 222, 78, 0.4);
    color: #f8fafc !important;
}

body.dark-mode .theme-toggle:hover {
    background: rgba(246, 222, 78, 0.15);
}

/* Typography - All Headings */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #f8fafc !important;
}

body.dark-mode .section-heading__title {
    color: #f8fafc !important;
}

body.dark-mode .section-heading__subtitle {
    color: #cbd5e1 !important;
}

body.dark-mode .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode p {
    color: #cbd5e1 !important;
}

body.dark-mode li {
    color: #cbd5e1 !important;
}

body.dark-mode strong {
    color: #e2e8f0 !important;
}

/* Hero Section */
body.dark-mode .hero-title {
    color: #f8fafc !important;
}

body.dark-mode .hero-description {
    color: #cbd5e1 !important;
}

/* All Sections - Remove White Backgrounds */
body.dark-mode .hero-section,
body.dark-mode .abstract-section,
body.dark-mode .mission-section,
body.dark-mode .about-section,
body.dark-mode .platform-section,
body.dark-mode .replatform-section,
body.dark-mode .stability-section,
body.dark-mode .tokenomics-section,
body.dark-mode .exchange-section,
body.dark-mode .compliance-section,
body.dark-mode .network-section {
    background: transparent !important;
}

/* Cards */
body.dark-mode .platform-card,
body.dark-mode .about-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .platform-card:hover,
body.dark-mode .about-card:hover {
    background: rgba(30, 41, 59, 0.85) !important;
    border-color: rgba(246, 222, 78, 0.3);
}

body.dark-mode .platform-card h3,
body.dark-mode .platform-card h4,
body.dark-mode .about-card h3,
body.dark-mode .about-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .platform-card p,
body.dark-mode .platform-card li,
body.dark-mode .about-card p,
body.dark-mode .about-card li {
    color: #cbd5e1 !important;
}

body.dark-mode .platform-card ul li strong {
    color: #e2e8f0 !important;
}

/* Team & Advisors */
body.dark-mode .team-member,
body.dark-mode .advisor-member {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .team-member h5,
body.dark-mode .advisor-member h5 {
    color: #f8fafc !important;
}

body.dark-mode .team-member p,
body.dark-mode .advisor-member p {
    color: #94a3b8 !important;
}

/* Partners */
body.dark-mode .partner-item {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

/* Buttons */
body.dark-mode .btn-primary {
    background: #f6de4e;
    color: #0f172a !important;
}

body.dark-mode .btn-primary:hover {
    background: #fde047;
}

/* Footer */
body.dark-mode .footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
    border-top: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .footer-title {
    color: #f8fafc !important;
}

body.dark-mode .footer-column a {
    color: #cbd5e1 !important;
}

body.dark-mode .footer-column a:hover {
    color: #f6de4e !important;
}

body.dark-mode .office p,
body.dark-mode .office h6 {
    color: #cbd5e1 !important;
}

body.dark-mode .footer-copyright p {
    color: #94a3b8 !important;
}

/* ==================== ALL CARD TYPES - DARK MODE ==================== */

/* Hero Cards */
body.dark-mode .hero-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Hero Stats (Settlement, Compliance, Utility boxes) */
body.dark-mode .hero-stat {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hero-stat dt {
    color: #f8fafc !important;
}

body.dark-mode .hero-stat dd {
    color: #cbd5e1 !important;
}

body.dark-mode .hero-card-eyebrow {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode .hero-card-title {
    color: #f8fafc !important;
}

body.dark-mode .hero-card-body {
    color: #cbd5e1 !important;
}

body.dark-mode .hero-card-list li {
    color: #cbd5e1 !important;
}

body.dark-mode .hero-card-label {
    color: #94a3b8 !important;
}

body.dark-mode .hero-card-pill {
    color: #f8fafc !important;
    background: rgba(30, 41, 59, 0.6);
}

/* Abstract Cards (Settlement, Compliance, Utility boxes) */
body.dark-mode .abstract-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .abstract-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .abstract-card p {
    color: #cbd5e1 !important;
}

/* Mission Cards (Mission/Vision boxes) */
body.dark-mode .mission-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .mission-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .mission-card p {
    color: #cbd5e1 !important;
}

/* Highlight Cards */
body.dark-mode .highlight-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .highlight-card__eyebrow {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode .highlight-card p {
    color: #cbd5e1 !important;
}

/* Advantage Cards */
body.dark-mode .adv-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .adv-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .adv-card p,
body.dark-mode .adv-card li {
    color: #cbd5e1 !important;
}

/* Replatform Cards (Core Loop section) */
body.dark-mode .replatform-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .replatform-card__badge {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode .replatform-card__tagline {
    color: #f8fafc !important;
}

body.dark-mode .replatform-card__body {
    color: #cbd5e1 !important;
}

/* Flow Cards (Issue, Move, Audit, Govern, Report) */
body.dark-mode .flow-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .flow-card__step {
    color: #f6de4e !important;
}

body.dark-mode .flow-card h5 {
    color: #f8fafc !important;
}

body.dark-mode .flow-card p {
    color: #cbd5e1 !important;
}

/* Metric Cards (Settlement T+0, Compliance, etc.) */
body.dark-mode .metric-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .metric-card__label {
    color: #94a3b8 !important;
}

body.dark-mode .metric-card__value {
    color: #f8fafc !important;
}

body.dark-mode .metric-card__hint {
    color: #cbd5e1 !important;
}

/* Stability Cards (Oracle-driven peg section) */
body.dark-mode .stability-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .stability-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .stability-card p {
    color: #cbd5e1 !important;
}

/* Tokenomics Cards */
body.dark-mode .tokenomics-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .tokenomics-card h5 {
    color: #f8fafc !important;
}

body.dark-mode .tokenomics-card__value {
    color: #f8fafc !important;
}

body.dark-mode .tokenomics-card__hint {
    color: #cbd5e1 !important;
}

/* Tokenomics Box & Token Table */
body.dark-mode .tokenomics-box {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .token-table {
    background: rgba(30, 41, 59, 0.7) !important;
}

body.dark-mode .token-table__header {
    background: rgba(15, 23, 42, 0.8) !important;
    border-bottom: 2px solid rgba(246, 222, 78, 0.3) !important;
}

body.dark-mode .token-table__header span {
    color: #f8fafc !important;
    font-weight: 600;
}

body.dark-mode .token-table__row {
    border-bottom: 1px solid rgba(246, 222, 78, 0.1) !important;
}

body.dark-mode .token-table__row span {
    color: #cbd5e1 !important;
}

body.dark-mode .token-table__row:hover {
    background: rgba(30, 41, 59, 0.5) !important;
}

/* Exchange Cards (Exchange listings) */
body.dark-mode .exchange-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .exchange-card:hover {
    background: rgba(30, 41, 59, 0.85) !important;
    border-color: rgba(246, 222, 78, 0.3);
}

body.dark-mode .exchange-card h5 {
    color: #f8fafc !important;
}

body.dark-mode .exchange-card p {
    color: #cbd5e1 !important;
}

body.dark-mode .exchange-name {
    color: #f8fafc !important;
}

body.dark-mode .exchange-pair {
    color: #cbd5e1 !important;
}

body.dark-mode .exchange-cta {
    color: #f6de4e !important;
}

/* Tables (Tokenomics Distribution) */
body.dark-mode table {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode thead {
    background: rgba(15, 23, 42, 0.8) !important;
}

body.dark-mode th {
    background: rgba(15, 23, 42, 0.8) !important;
    color: #f8fafc !important;
    border-color: rgba(246, 222, 78, 0.2) !important;
}

body.dark-mode td {
    color: #cbd5e1 !important;
    border-color: rgba(246, 222, 78, 0.1) !important;
}

body.dark-mode tbody tr:hover {
    background: rgba(30, 41, 59, 0.5) !important;
}

/* Chart Container */
body.dark-mode #tokenomics-pie-chart {
    background: rgba(30, 41, 59, 0.5) !important;
    border-radius: 16px;
}

/* Timeline Steps (Roadmap phases) */
body.dark-mode .timeline__step {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .timeline__content {
    background: rgba(30, 41, 59, 0.7) !important;
}

body.dark-mode .timeline__content h3 {
    color: #f8fafc !important;
}

body.dark-mode .timeline__content p {
    color: #cbd5e1 !important;
}

body.dark-mode .timeline__content li {
    color: #cbd5e1 !important;
}

body.dark-mode .timeline__marker {
    background: #f6de4e !important;
    border-color: rgba(246, 222, 78, 0.3) !important;
}

/* Generic Fallbacks - Catch Any Remaining White Boxes */
body.dark-mode .card,
body.dark-mode .box,
body.dark-mode .panel,
body.dark-mode .grid-item,
body.dark-mode .item {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .social-icon-btn {
    background: rgba(246, 222, 78, 0.15);
    color: #f8fafc !important;
}

body.dark-mode .social-icon-btn:hover {
    background: rgba(246, 222, 78, 0.3);
}

/* Subheadings */
body.dark-mode .subhead {
    color: #f8fafc !important;
}

/* Abstract Cards */
body.dark-mode .abstract-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .abstract-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .abstract-card p {
    color: #cbd5e1 !important;
}

/* Mission & Vision Cards */
body.dark-mode .mission-card,
body.dark-mode .vision-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .mission-card h3,
body.dark-mode .vision-card h3 {
    color: #f8fafc !important;
}

body.dark-mode .mission-card p,
body.dark-mode .vision-card p {
    color: #cbd5e1 !important;
}

/* Value Items */
body.dark-mode .value-item {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .value-item h4 {
    color: #f8fafc !important;
}

body.dark-mode .value-item p {
    color: #cbd5e1 !important;
}

/* Replatform Cards */
body.dark-mode .replatform-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .replatform-card h3,
body.dark-mode .replatform-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .replatform-card p {
    color: #cbd5e1 !important;
}

/* Stability Cards */
body.dark-mode .stability-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .stability-card h3,
body.dark-mode .stability-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .stability-card p {
    color: #cbd5e1 !important;
}

/* Tokenomics Cards */
body.dark-mode .tokenomics-card,
body.dark-mode .token-stat {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .tokenomics-card h4,
body.dark-mode .token-stat h4 {
    color: #f8fafc !important;
}

body.dark-mode .tokenomics-card p,
body.dark-mode .token-stat p {
    color: #cbd5e1 !important;
}

body.dark-mode .tokenomics-card strong,
body.dark-mode .token-stat strong {
    color: #f8fafc !important;
}

/* Table */
body.dark-mode table {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode th {
    background: rgba(15, 23, 42, 0.8) !important;
    color: #f8fafc !important;
    border-color: rgba(246, 222, 78, 0.2) !important;
}

body.dark-mode td {
    color: #cbd5e1 !important;
    border-color: rgba(246, 222, 78, 0.1) !important;
}

body.dark-mode tr:hover {
    background: rgba(30, 41, 59, 0.5) !important;
}

/* Exchange Cards */
body.dark-mode .exchange-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .exchange-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .exchange-card p {
    color: #cbd5e1 !important;
}

/* Compliance Cards */
body.dark-mode .compliance-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .compliance-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .compliance-card p {
    color: #cbd5e1 !important;
}

/* Timeline / Roadmap Items */
body.dark-mode .timeline-item,
body.dark-mode .roadmap-item,
body.dark-mode .phase-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .timeline-item h4,
body.dark-mode .roadmap-item h4,
body.dark-mode .phase-card h4 {
    color: #f8fafc !important;
}

body.dark-mode .timeline-item p,
body.dark-mode .roadmap-item p,
body.dark-mode .phase-card p {
    color: #cbd5e1 !important;
}

/* All Generic White Boxes */
body.dark-mode .card,
body.dark-mode .box,
body.dark-mode .panel {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

/* Grid Items */
body.dark-mode .grid-item {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .grid-item h3,
body.dark-mode .grid-item h4 {
    color: #f8fafc !important;
}

body.dark-mode .grid-item p {
    color: #cbd5e1 !important;
}

.btn-primary {
    padding: 12px 28px;
    background: #f6de4e;
    color: #0f0f0f;
    border-radius: 999px;
    border: 1px solid rgba(246, 222, 78, 0.5);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 48px;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background: linear-gradient(120deg, #fff3a0, #f6de4e);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 12px 30px rgba(246, 222, 78, 0.26);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Icon Badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: none;
    background: transparent;
    box-shadow: none;
    color: var(--primary-color);
}

.icon-badge svg {
    width: 26px;
    height: 26px;
}

.icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 0;
}

.icon-compact svg {
    width: 22px;
    height: 22px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 140px 24px 120px;
    background: radial-gradient(circle at 18% 20%, rgba(246, 222, 78, 0.16), transparent 32%), var(--bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.8;
}

.hero-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-orb-1 {
    top: -60px;
    left: -80px;
    background: rgba(246, 222, 78, 0.45);
}

.hero-orb-2 {
    bottom: -120px;
    right: -80px;
    background: rgba(59, 130, 246, 0.28);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(246, 222, 78, 0.22);
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #0f172a;
    margin: 0;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 620px;
    margin: 0;
    line-height: 1.75;
    position: relative;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.hero-description .char-chunk {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    filter: blur(3px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.hero-description .char-chunk.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.typing-caret {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--primary-color);
    margin-left: 2px;
    animation: typing-caret 1s steps(1) infinite;
    vertical-align: -0.1em;
}

@keyframes typing-caret {
    0%, 50% {
        opacity: 1;
    }
    50.01%, 100% {
        opacity: 0;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.hero-stat {
    padding: 16px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.hero-stat dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 8px;
}

.hero-stat dd {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.hero-preview {
    position: relative;
}

.hero-card {
    background: linear-gradient(145deg, #0f172a, #1f2937);
    color: #f8fafc;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-eyebrow {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.12);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-card-title {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #f8fafc;
}

.hero-card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-card-list li {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #e2e8f0;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-card-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cbd5e1;
}

.hero-card-pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(246, 222, 78, 0.18);
    color: #fef3c7;
    font-weight: 700;
    font-size: 13px;
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 51px;
    height: 130px;
}

.scroll-indicator svg {
    width: 100%;
    height: 100%;
}

/* Dot animation - moves from top to bottom inside the mouse */
.scroll-dot {
    animation: scroll-dot-move 2.5s ease-in-out infinite;
}

@keyframes scroll-dot-move {
    0% {
        cy: 32;
        opacity: 0;
    }
    10% {
        cy: 32;
        opacity: 1;
    }
    40% {
        cy: 55;
        opacity: 1;
    }
    50% {
        cy: 60;
        opacity: 0;
    }
    100% {
        cy: 60;
        opacity: 0;
    }
}

/* Arrow animations - fade in and out sequentially */
.scroll-arrow-1 {
    animation: arrow-fade 2.5s ease-in-out 0.5s infinite;
}

.scroll-arrow-2 {
    animation: arrow-fade 2.5s ease-in-out 0.8s infinite;
}

.scroll-arrow-3 {
    animation: arrow-fade 2.5s ease-in-out 1.1s infinite;
}

@keyframes arrow-fade {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 108px 24px;
    position: relative;
}

.about-section,
.replatform-section,
.tokenomics-section,
.timeline-section,
.network-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.about-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--shadow-soft);
}

.about-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0f172a;
}

.about-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.highlight-card {
    background: linear-gradient(145deg, #0f172a, #1f2937);
    color: #f8fafc;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.highlight-card__eyebrow {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(248, 250, 252, 0.12);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlight-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #f8fafc;
}

.highlight-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.replatform-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
}

.replatform-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.replatform-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.replatform-card__badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.replatform-card__tagline {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.replatform-card__body {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.flow-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.flow-card__step {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
    font-weight: 700;
    margin-bottom: 10px;
}

.flow-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f172a;
}

.flow-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.replatform-metrics {
    position: relative;
}

.metric-stack {
    display: grid;
    gap: 12px;
}

.metric-stack__eyebrow {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.metric-card {
    background: linear-gradient(145deg, #0f172a, #1f2937);
    border-radius: 12px;
    padding: 16px;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
}

.metric-card__label {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #cbd5e1;
}

.metric-card__value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fef3c7;
    margin: 6px 0;
}

.metric-card__hint {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

.compliance-section {
    background: #ffffff;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.compliance-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0f172a;
}

.compliance-card ul {
    margin: 0;
    padding-left: 18px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.tokenomics-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.tokenomics-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.tokenomics-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #0f172a;
}

.tokenomics-card__value {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.tokenomics-card__hint {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1040px;
    margin: 0 auto;
}

.tokenomics-legend {
    display: grid;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0f172a;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

#tokenomics-pie-chart {
    min-height: 420px;
    width: 100%;
}

.token-table {
    margin-top: 28px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.token-table__row {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.8fr 1.6fr;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    font-size: 14px;
    color: #0f172a;
}

.token-table__header {
    background: rgba(246, 222, 78, 0.16);
    font-weight: 700;
    color: #111827;
    border-top: none;
}

.token-table--grid {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.token-table--grid .token-table__row {
    flex: 0 0 auto;
}

.tokenomics-chart {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.tokenomics-pie {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.tokenomics-box {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
}

.exchange-section {
    background: #ffffff;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.exchange-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    transition: var(--transition);
    color: #0f172a;
}

.exchange-card:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.exchange-name {
    font-size: 16px;
    font-weight: 700;
}

.exchange-pair {
    font-size: 14px;
    color: #4b5563;
}

.exchange-cta {
    font-size: 13px;
    color: #111827;
    font-weight: 600;
}

.nav-item.active {
    color: var(--primary-color);
    border-color: rgba(246, 222, 78, 0.5);
}

.timeline-section {
    background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline__step {
    position: relative;
    padding: 18px 18px 18px 52px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.timeline__marker {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(246, 222, 78, 0.4);
    border: 2px solid #f6de4e;
    box-shadow: 0 0 0 6px rgba(246, 222, 78, 0.14);
}

.timeline__content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.timeline__content p {
    margin: 0 0 10px;
    color: #4b5563;
    line-height: 1.6;
}

.timeline__content ul {
    margin: 0;
    padding-left: 18px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.timeline__step.is-active {
    border-color: rgba(246, 222, 78, 0.5);
    box-shadow: 0 16px 36px rgba(246, 222, 78, 0.2);
}

.network-section {
    background: #ffffff;
}

.grid-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
    margin-bottom: 32px;
}

.explorer-page {
    position: relative;
    background: #0f172a;
    overflow-x: hidden;
}

.explorer-page header,
.explorer-page main,
.explorer-page footer {
    position: relative;
    z-index: 1;
}

.explorer-hero {
    padding: 140px 24px 100px;
    min-height: 80vh;
}

.explorer-page .section-heading__title {
    color: #f8fafc;
}

.explorer-page .section-heading__subtitle,
.explorer-page .explorer-lead,
.explorer-page .platform-card p,
.explorer-page .platform-card h4 {
    color: #e5e7eb;
}

.explorer-page .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.2);
    color: #111827;
}

.explorer-page .header {
    background: rgba(15, 23, 42, 0.55);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

.explorer-page .logo-text,
.explorer-page .nav-item {
    color: #f8fafc;
}

.explorer-page .btn-outline {
    border-color: var(--card-border);
    color: var(--text-white);
}

.explorer-page .platform-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-soft);
}

.explorer-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.platform-card-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.explorer-page .btn-primary {
    margin-top: 0;
    margin-bottom: 0;
}

/* explorer page light overrides */
.explorer-page {
    background: #ffffff;
}

.explorer-hero {
    padding: 140px 24px 100px;
    min-height: 80vh;
}

.explorer-hero-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.45)),
        url('/assets/explorer.png');
    background-size: 80%;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
    transition: background-position 0.3s ease;
    pointer-events: none;
    filter: blur(4px) saturate(1.2);
}

.explorer-page .section-heading__title {
    color: #0f172a;
}

.explorer-page .section-heading__subtitle,
.explorer-page .explorer-lead,
.explorer-page .platform-card p,
.explorer-page .platform-card h4 {
    color: #0f172a;
}

.explorer-page .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.95);
    color: #111827;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(246, 222, 78, 0.3);
}

.explorer-page .header {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 30px rgba(15, 23, 42, 0.06);
}

.explorer-page .logo-text,
.explorer-page .nav-item {
    color: #0f172a;
}

.explorer-page .btn-outline {
    border-color: var(--card-border);
    color: var(--text-white);
}

.explorer-page .btn-outline:hover {
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
}

.explorer-page .platform-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(17, 24, 39, 0.12);
    box-shadow: var(--shadow-soft);
}

.explorer-hero-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.45)),
        url('/assets/explorer.png');
    background-size: 80%;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
    transition: background-position 0.3s ease;
    pointer-events: none;
    filter: blur(4px) saturate(1.2);
}
.explorer-actions-standalone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.explorer-actions-standalone .btn-primary,
.explorer-actions-standalone .btn-outline {
    padding: 12px 24px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.explorer-preview {
    position: relative;
    margin-top: 40px;
    padding: 60px 0 60px;
    overflow: hidden;
}

.explorer-preview-bg {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(246, 222, 78, 0.2), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35));
}

.explorer-preview-bg.real img {
    width: min(92vw, 1100px);
    height: auto;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.4);
    display: block;
    transform: rotate(-6deg) translateY(-8px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.explorer-preview-bg.real img:hover {
    transform: rotate(-4deg) translateY(-4px) scale(1.01);
    box-shadow: 0 36px 80px rgba(15, 23, 42, 0.46);
}

.explorer-lead {
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: center;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
}

.subhead {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.partners-block {
    margin-top: 28px;
}
.section-title {
    text-align: center;
    margin-bottom: 54px;
}

.section-title h3,
section > h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-white);
    letter-spacing: 0.04em;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.section-heading__eyebrow {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(246, 222, 78, 0.35);
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading__title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin: 12px 0;
    letter-spacing: 0.02em;
}

.section-heading__subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.abstract-section {
    background: #ffffff;
}

.abstract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.abstract-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
    color: #0f172a;
}

.abstract-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.abstract-card p,
.abstract-card ul {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.abstract-card ul {
    padding-left: 18px;
}

.mission-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.mission-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.mission-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #0f172a;
}

.mission-card ul {
    margin: 0;
    padding-left: 18px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.platform-section {
    background: #ffffff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    color: #0f172a;
}

.platform-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.platform-card p {
    margin: 0 0 6px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.platform-card .small-text {
    font-size: 12px;
    color: #6b7280;
}

.platform-advantages {
    margin-top: 18px;
}

.adv-card {
    background: linear-gradient(145deg, #0f172a, #1f2937);
    color: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.adv-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 14px;
}

.stability-section {
    background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

.stability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.stability-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.stability-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #0f172a;
}

.stability-card p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.platform-advantages .adv-card ul li,
.stability-card ul {
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-item:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.benefit-item {
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.benefit-item:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.benefit-icon {
    margin-bottom: 14px;
}

.benefit-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Problem Statement Section */
.problem-section {
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.problem-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.problem-item:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.problem-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
}

.problem-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.problem-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.solution-item {
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.solution-item:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.solution-icon {
    margin: 0 auto 20px;
    display: inline-flex;
}

.solution-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.solution-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Core Values Section */
.values-section {
    background: linear-gradient(180deg, #eef2f7 0%, #f9fafc 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.value-card:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.value-icon {
    margin: 0 auto 20px;
    display: inline-flex;
}

.value-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

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

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
    text-align: center;
    border-top: 1px solid var(--muted-border);
    border-bottom: 1px solid var(--muted-border);
}

.tokenomics-chart {
    margin: 54px 0;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f2f4f8);
    border-radius: 16px;
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
}

.chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.pie-chart {
    width: 360px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    perspective-origin: 50% 30%;
}

.pie-3d {
    position: relative;
    width: 320px;
    height: 320px;
    transform: rotateX(32deg) rotateZ(-14deg);
    transform-style: preserve-3d;
    animation: pie-float 10s ease-in-out infinite;
}

.pie-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #3366cc 0% 50%,
        #dc3912 50% 62%,
        #ff9900 62% 72%,
        #109618 72% 80%,
        #990099 80% 88%,
        #0099c6 88% 95%,
        #dd4477 95% 98%,
        #66aa00 98% 100%
    );
    box-shadow:
        inset 0 -16px 26px rgba(15, 23, 42, 0.16),
        inset 0 14px 16px rgba(255, 255, 255, 0.32),
        0 18px 42px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.pie-side {
    position: absolute;
    left: -6px;
    right: -6px;
    top: 58%;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.35) 0%, rgba(17, 24, 39, 0.2) 35%, rgba(17, 24, 39, 0.12) 70%, rgba(17, 24, 39, 0.08) 100%);
    box-shadow:
        inset 0 10px 22px rgba(255, 255, 255, 0.28),
        inset 0 -10px 16px rgba(17, 24, 39, 0.16),
        0 18px 32px rgba(17, 24, 39, 0.16);
    transform: translateZ(-28px) scaleX(1.02);
}

.pie-gloss {
    position: absolute;
    inset: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateZ(8px);
}

.pie-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
    text-shadow: 0 3px 8px rgba(17, 24, 39, 0.12);
}

.pie-label.center {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--muted-border);
    border-bottom: 1px solid var(--muted-border);
}

.roadmap-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(246, 222, 78, 0.5) 10%,
        rgba(246, 222, 78, 0.5) 90%,
        transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.roadmap-timeline {
    position: relative;
    margin-top: 80px;
    padding: 40px 0;
}

.roadmap-phase {
    position: relative;
    width: 45%;
    margin-bottom: 60px;
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-darker);
    border: 3px solid rgba(246, 222, 78, 0.6);
    border-radius: 50%;
    top: 40px;
    z-index: 2;
}

.roadmap-phase::after {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(246, 222, 78, 0.3);
    top: 49px;
    z-index: 1;
}

/* 홀수 Phase - 왼쪽 */
.roadmap-phase:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.roadmap-phase:nth-child(odd)::before {
    right: -60px;
}

.roadmap-phase:nth-child(odd)::after {
    left: 100%;
    width: 50px;
}

/* 짝수 Phase - 오른쪽 */
.roadmap-phase:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.roadmap-phase:nth-child(even)::before {
    left: -60px;
}

.roadmap-phase:nth-child(even)::after {
    right: 100%;
    width: 50px;
}

.roadmap-phase:hover {
    border-color: rgba(246, 222, 78, 0.5);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.roadmap-phase.highlight {
    border-color: rgba(246, 222, 78, 0.4);
    background: linear-gradient(140deg, rgba(246, 222, 78, 0.14), #ffffff);
    box-shadow: 0 0 24px rgba(246, 222, 78, 0.22);
}

.roadmap-phase.highlight::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 24px;
    height: 24px;
    box-shadow: 0 0 15px rgba(246, 222, 78, 0.6);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.phase-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
}

.roadmap-phase.highlight .phase-number {
    opacity: 1;
}

.phase-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
    margin: 0;
}

.phase-period {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(246, 222, 78, 0.15);
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(246, 222, 78, 0.06);
    border-radius: 10px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
}

.milestone-item:hover {
    background: rgba(246, 222, 78, 0.12);
    border-color: rgba(246, 222, 78, 0.5);
}

.milestone-icon {
    flex-shrink: 0;
    border: 1px solid rgba(246, 222, 78, 0.3);
}

.milestone-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    background: linear-gradient(180deg, #f9fafc 0%, #eef2f7 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-soft);
}

.use-case-card:hover {
    border-color: rgba(246, 222, 78, 0.35);
    box-shadow: var(--glow);
}

.use-case-icon {
    margin-bottom: 6px;
}

.use-case-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.use-case-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.use-case-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(246, 222, 78, 0.3);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.team-member:hover {
    background: rgba(246, 222, 78, 0.08);
    border-color: rgba(246, 222, 78, 0.35);
}

.member-avatar {
    font-size: 94px;
    margin-bottom: 20px;
}

.team-img {
    height: 94px;
    width: auto;
    flex-shrink: 0;
}

.team-member h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.team-member p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Advisor Section */
.advisor-section {
    background: linear-gradient(180deg, #eef2f7 0%, #f9fafc 100%);
}

.advisor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.advisor-member {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.advisor-img {
    height: 94px;
    width: auto;
    flex-shrink: 0;
}

.advisor-member h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.advisor-member p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.advisor-member:hover {
    border-color: rgba(246, 222, 78, 0.35);
    background: rgba(246, 222, 78, 0.08);
    box-shadow: var(--glow);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 36px;
    margin-top: 48px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    background: var(--card-bg);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
    min-height: 180px;
}

.partner-item:hover {
    background: rgba(246, 222, 78, 0.08);
    border-color: rgba(246, 222, 78, 0.35);
}

.partner-item.partner-item-dark {
    background: linear-gradient(145deg, #0f172a, #1f2937);
    border-color: rgba(17, 24, 39, 0.35);
}

.partner-item.partner-item-dark:hover {
    background: linear-gradient(145deg, #1a2333, #111827);
    border-color: rgba(246, 222, 78, 0.45);
}

.partner-item a {
    display: block;
    width: 100%;
}

.partner-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1);
    transition: var(--transition);
}

.partner-item img:hover {
    filter: brightness(1.08);
}

.partner-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #ffffff 100%);
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(246, 222, 78, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links {
    display: contents;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 15px;
    color: var(--text-gray);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    padding: 8px 16px;
    background: rgba(246, 222, 78, 0.1);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #111827;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(246, 222, 78, 0.1);
    border-radius: 50%;
    color: #111827;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 222, 78, 0.3);
}

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

.footer-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--muted-border);
}

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

.office-flag {
    height: 30px;
    width: auto;
    margin-bottom: 8px;
}

.office h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.office p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 32px;
    margin-top: 40px;
    border-top: 1px solid var(--muted-border);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--text-gray);
    opacity: 0.8;
}

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

    .hero-title {
        font-size: 42px;
        letter-spacing: 0.02em;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title h3,
    section > h3 {
        font-size: 36px;
    }

    .chart-container {
        flex-direction: column;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .use-cases-grid,
    .problem-grid,
    .solution-grid,
    .values-grid,
    .team-grid,
    .advisor-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        gap: 20px;
    }

    .values-grid {
        gap: 20px;
    }

    .roadmap-section::before {
        left: 30px;
    }

    .roadmap-phase {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .roadmap-phase::before {
        left: -60px !important;
        right: auto !important;
    }

    .roadmap-phase::after {
        left: -60px !important;
        right: auto !important;
        width: 50px !important;
    }

    .phase-header {
        flex-wrap: wrap;
    }

    .phase-number {
        font-size: 32px;
    }

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

    .about-grid,
    .about-highlights,
    .tokenomics-summary,
    .tokenomics-grid,
    .grid-duo {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title h3,
    section > h3 {
        font-size: 28px;
    }

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

    .phase-header h4 {
        font-size: 20px;
    }

    .phase-number {
        font-size: 24px;
    }
}

/* PalaBank Page Styles */
.palabank-page {
    position: relative;
    background: #ffffff;
    overflow-x: hidden;
}

.palabank-page header,
.palabank-page main,
.palabank-page footer {
    position: relative;
    z-index: 1;
}

.palabank-hero {
    padding: 140px 24px 100px;
}

.palabank-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 222, 78, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 76, 148, 0.12), transparent 50%),
        linear-gradient(135deg, #fdfbf7 0%, #f8f9fa 50%, #f0f2f5 100%);
    z-index: 0;
    pointer-events: none;
}

.palabank-page .section-heading__title {
    color: #0f172a;
}

.palabank-page .section-heading__subtitle {
    color: #1e293b;
}

.palabank-page .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.95);
    color: #111827;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(246, 222, 78, 0.3);
}

.palabank-page .header {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 30px rgba(15, 23, 42, 0.06);
}

.palabank-page .logo-text,
.palabank-page .nav-item {
    color: #0f172a;
}

.palabank-page .btn-outline {
    border-color: #e5e7eb;
    color: #0f172a;
}

.palabank-page .btn-outline:hover {
    background: rgba(246, 222, 78, 0.16);
    color: #111827;
}

.palabank-page .platform-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(246, 222, 78, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(246, 222, 78, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.palabank-page .platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(246, 222, 78, 0.2);
    border-color: rgba(246, 222, 78, 0.4);
}

.palabank-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.palabank-intro h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.palabank-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.palabank-features {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.palabank-features > h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 56px;
}

.palabank-features .platform-card {
    margin-bottom: 32px;
}

.feature-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F6DE4E 0%, #F4D03F 100%);
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(246, 222, 78, 0.3);
}

.feature-icon-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.palabank-download {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 72px 56px;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.palabank-download::before {
    display: none;
}

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

.palabank-download h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.palabank-download > p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
    background: #1e293b;
}

.download-btn.web-btn {
    background: linear-gradient(135deg, #344C94 0%, #4A6BB5 100%);
}

.download-btn.web-btn:hover {
    background: linear-gradient(135deg, #4A6BB5 0%, #5A7BC5 100%);
    box-shadow: 0 8px 24px rgba(52, 76, 148, 0.4);
}

.download-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.download-label {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    text-align: left;
}

.download-store {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
}

.palabank-cta {
    text-align: center;
    padding-bottom: 40px;
}

.palabank-cta .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .palabank-hero {
        padding: 120px 20px 80px;
    }

    .palabank-intro h3,
    .palabank-features > h3 {
        font-size: 28px;
    }

    .palabank-download {
        padding: 48px 32px;
    }

    .palabank-download h3 {
        font-size: 28px;
    }

    .download-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .download-btn {
        justify-content: center;
        flex: 1 1 calc(33.333% - 12px);
        min-width: 0;
        padding: 14px 20px;
    }

    .download-btn svg {
        width: 28px;
        height: 28px;
    }

    .download-label {
        font-size: 10px;
    }

    .download-store {
        font-size: 13px;
    }

    .feature-icon-header h4 {
        font-size: 20px;
    }
}

/* PalaBank App Preview */
.palabank-app-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-screens-slider {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 0 24px;
    scroll-snap-type: x mandatory;
}

.app-screen-item {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    scroll-snap-align: center;
    border: none !important;
}

.app-screen-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: none !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-screen-item img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.screen-caption {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .palabank-app-preview {
        margin-bottom: 60px;
    }

    .app-screens-slider {
        gap: 20px;
    }

    .app-screen-item {
        width: 260px;
    }

    .screen-caption {
        font-size: 14px;
    }
}

/* Wallet Page Styles */
.wallet-page {
    position: relative;
    background: #ffffff;
    overflow-x: hidden;
}

.wallet-page header,
.wallet-page main,
.wallet-page footer {
    position: relative;
    z-index: 1;
}

.wallet-hero {
    padding: 140px 24px 100px;
}

.wallet-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(52, 76, 148, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(246, 222, 78, 0.12), transparent 50%),
        linear-gradient(180deg, #fdfbf7 0%, #f8f9fa 50%, #f0f2f5 100%);
    z-index: 0;
    pointer-events: none;
}

.wallet-page .section-heading__title {
    color: #0f172a;
}

.wallet-page .section-heading__subtitle {
    color: #1e293b;
}

.wallet-page .section-heading__eyebrow {
    background: rgba(52, 76, 148, 0.95);
    color: #ffffff;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(52, 76, 148, 0.3);
}

.wallet-page .header {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 30px rgba(15, 23, 42, 0.06);
}

.wallet-page .logo-text,
.wallet-page .nav-item {
    color: #0f172a;
}

.wallet-page .btn-outline {
    border-color: #e5e7eb;
    color: #0f172a;
}

.wallet-page .btn-outline:hover {
    background: rgba(52, 76, 148, 0.1);
    color: #111827;
}

.wallet-page .platform-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(52, 76, 148, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(52, 76, 148, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.wallet-page .platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(52, 76, 148, 0.2);
    border-color: rgba(52, 76, 148, 0.4);
}

.wallet-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.wallet-intro h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.wallet-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.wallet-app-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wallet-page .app-screens-slider {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 0 24px;
    scroll-snap-type: x mandatory;
}

.wallet-features {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.wallet-features > h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 56px;
}

.wallet-features .platform-card {
    margin-bottom: 32px;
}

.wallet-page .feature-icon-badge {
    background: linear-gradient(135deg, #344C94 0%, #4A6BB5 100%);
    color: #ffffff;
}

.wallet-download {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 76, 148, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(52, 76, 148, 0.3);
    border-radius: 24px;
    padding: 72px 56px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(52, 76, 148, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.wallet-download::before {
    display: none;
}

.wallet-download h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.wallet-download > p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

.wallet-download .download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap !important;
}

.wallet-cta {
    text-align: center;
    padding-bottom: 40px;
}

.wallet-cta .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .wallet-hero {
        padding: 120px 20px 80px;
    }

    .wallet-intro h3,
    .wallet-features > h3 {
        font-size: 28px;
    }

    .wallet-download {
        padding: 48px 32px;
    }

    .wallet-download h3 {
        font-size: 28px;
    }

    .wallet-app-preview {
        margin-bottom: 60px;
    }
}

/* ==================== EXPLORER PAGE DARK MODE ==================== */

body.dark-mode.explorer-page {
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.05), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.03), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 55%, #334155 100%) !important;
}

body.dark-mode .explorer-hero-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 222, 78, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 76, 148, 0.06), transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

body.dark-mode .explorer-hero {
    color: #cbd5e1;
}

body.dark-mode .explorer-lead {
    color: #cbd5e1 !important;
}

body.dark-mode .explorer-stack .platform-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .explorer-actions-standalone .btn-primary {
    background: #f6de4e;
    color: #0f172a !important;
}

/* ==================== PALABANK PAGE DARK MODE ==================== */

body.dark-mode.palabank-page {
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.05), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.03), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 55%, #334155 100%) !important;
}

body.dark-mode .palabank-hero-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 222, 78, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 76, 148, 0.06), transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

body.dark-mode .palabank-page .section-heading__title {
    color: #f8fafc !important;
}

body.dark-mode .palabank-page .section-heading__subtitle {
    color: #cbd5e1 !important;
}

body.dark-mode .palabank-page .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode .palabank-intro h3 {
    color: #f8fafc !important;
}

body.dark-mode .palabank-intro p {
    color: #cbd5e1 !important;
}

body.dark-mode .palabank-features > h3 {
    color: #f8fafc !important;
}

body.dark-mode .palabank-page .platform-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .feature-icon-header h4 {
    color: #f8fafc !important;
}

body.dark-mode .palabank-download {
    background: transparent !important;
    border: none !important;
}

body.dark-mode .palabank-download h3 {
    color: #f8fafc !important;
}

body.dark-mode .palabank-download > p {
    color: #cbd5e1 !important;
}

body.dark-mode .download-btn {
    background: #f6de4e;
    color: #0f172a !important;
}

body.dark-mode .download-btn:hover {
    background: #fde047;
}

body.dark-mode .download-btn.web-btn {
    background: linear-gradient(135deg, #4A6BB5 0%, #5A7BC5 100%);
    color: #ffffff !important;
}

body.dark-mode .download-btn.web-btn:hover {
    background: linear-gradient(135deg, #5A7BC5 0%, #6A8BD5 100%);
}

body.dark-mode .download-label,
body.dark-mode .download-store {
    color: inherit !important;
}

/* ==================== WALLET PAGE DARK MODE ==================== */

body.dark-mode.wallet-page {
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.05), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.03), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 55%, #334155 100%) !important;
}

body.dark-mode .wallet-hero-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 222, 78, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 76, 148, 0.06), transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

body.dark-mode .wallet-page .section-heading__title {
    color: #f8fafc !important;
}

body.dark-mode .wallet-page .section-heading__subtitle {
    color: #cbd5e1 !important;
}

body.dark-mode .wallet-page .section-heading__eyebrow {
    background: rgba(246, 222, 78, 0.25);
    color: #fef08a !important;
}

body.dark-mode .wallet-intro h3 {
    color: #f8fafc !important;
}

body.dark-mode .wallet-intro p {
    color: #cbd5e1 !important;
}

body.dark-mode .wallet-features-grid h3 {
    color: #f8fafc !important;
}

body.dark-mode .wallet-page .platform-card {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(246, 222, 78, 0.15);
}

body.dark-mode .wallet-app-preview {
    background: transparent !important;
    border: none !important;
}

body.dark-mode .wallet-app-preview h3 {
    color: #f8fafc !important;
}

body.dark-mode .wallet-app-preview p {
    color: #cbd5e1 !important;
}

body.dark-mode .app-screen-item,
body.dark-mode .app-screen-item img {
    border: none !important;
}

body.dark-mode .wallet-download {
    background: transparent !important;
    border: none !important;
}

body.dark-mode .wallet-download h3 {
    color: #f8fafc !important;
}

body.dark-mode .wallet-download > p {
    color: #cbd5e1 !important;
}
