:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --border-color: #1a1a1a;
    --border-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-gold: #d4a542;
    --accent-gold-light: #f0c95c;
    --accent-gold-dark: #a07d2e;
    --gradient-start: #d4a542;
    --gradient-end: #f0c95c;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== Dynamic Gradient Background ===== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(212,165,66,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(180,130,30,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(240,201,92,0.04) 0%, transparent 70%);
    animation: gradientShift 12s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background:
            radial-gradient(ellipse 80% 60% at 20% 10%, rgba(212,165,66,0.12) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 80%, rgba(180,130,30,0.06) 0%, transparent 55%),
            radial-gradient(ellipse 70% 70% at 50% 50%, rgba(240,201,92,0.03) 0%, transparent 70%);
    }
    33% {
        background:
            radial-gradient(ellipse 70% 70% at 70% 20%, rgba(240,201,92,0.10) 0%, transparent 60%),
            radial-gradient(ellipse 80% 60% at 15% 70%, rgba(212,165,66,0.09) 0%, transparent 55%),
            radial-gradient(ellipse 60% 50% at 50% 40%, rgba(180,130,30,0.05) 0%, transparent 70%);
    }
    66% {
        background:
            radial-gradient(ellipse 60% 50% at 40% 80%, rgba(180,130,30,0.11) 0%, transparent 60%),
            radial-gradient(ellipse 70% 70% at 85% 15%, rgba(240,201,92,0.07) 0%, transparent 55%),
            radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212,165,66,0.04) 0%, transparent 70%);
    }
    100% {
        background:
            radial-gradient(ellipse 80% 60% at 60% 30%, rgba(212,165,66,0.13) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 10% 60%, rgba(240,201,92,0.08) 0%, transparent 55%),
            radial-gradient(ellipse 70% 70% at 80% 50%, rgba(180,130,30,0.05) 0%, transparent 70%);
    }
}

/* ===== 3D Cube Field ===== */
.bg-cubes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    perspective: 1200px;
}

.cube-wrap {
    position: absolute;
    will-change: transform, opacity;
    transition: opacity 0.3s;
}

.cube {
    width: var(--cube-size, 80px);
    height: var(--cube-size, 80px);
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin linear infinite;
}

@keyframes cubeSpin {
    0%   { transform: rotateX(0deg)   rotateY(0deg)   rotateZ(0deg);   }
    100% { transform: rotateX(var(--rx, 360deg)) rotateY(var(--ry, 360deg)) rotateZ(var(--rz, 180deg)); }
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212,165,66,0.18);
    background: rgba(212,165,66,0.03);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
}

.cube-face img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    opacity: 0.35;
}

.cube-face.front  { transform: translateZ(calc(var(--cube-size, 80px) / 2)); }
.cube-face.back   { transform: rotateY(180deg) translateZ(calc(var(--cube-size, 80px) / 2)); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(calc(var(--cube-size, 80px) / 2)); }
.cube-face.right  { transform: rotateY(90deg)  translateZ(calc(var(--cube-size, 80px) / 2)); }
.cube-face.top    { transform: rotateX(90deg)  translateZ(calc(var(--cube-size, 80px) / 2)); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(calc(var(--cube-size, 80px) / 2)); }

/* Cube glow variants */
.cube-wrap.glow .cube-face {
    border-color: rgba(240,201,92,0.30);
    background: rgba(240,201,92,0.05);
    box-shadow: inset 0 0 20px rgba(212,165,66,0.06), 0 0 15px rgba(212,165,66,0.05);
}

.cube-wrap.glow .cube-face img {
    opacity: 0.5;
    filter: drop-shadow(0 0 4px rgba(212,165,66,0.4));
}

/* Mouse ripple effect */
.mouse-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid rgba(212, 165, 66, 0.4);
    animation: rippleExpand 0.6s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

/* Custom cursor glow */
.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 66, 0.08) 0%, rgba(240,201,92,0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

.nav-logo img {
    height: 36px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-btn:hover {
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

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

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #000;
    box-shadow: 0 0 30px rgba(212, 165, 66, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(212, 165, 66, 0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-image {
    animation: fadeInUp 0.6s ease 0.4s both;
    position: relative;
}

.hero-image img {
    max-width: 360px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(212, 165, 66, 0.15));
}

/* Section Common */
section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Steps / How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(212, 165, 66, 0.08);
    line-height: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.feature-large {
    grid-column: span 2;
}

.feature-card-inner {
    padding: 40px 32px;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.feature-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-subtitle {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.feature-code {
    background: rgba(212, 165, 66, 0.05);
    border: 1px solid rgba(212, 165, 66, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.code-line {
    margin-bottom: 4px;
}

.code-line:last-child {
    margin-bottom: 0;
}

.code-key {
    color: var(--accent-gold);
}

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

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

.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.eco-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.eco-card:hover {
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 165, 66, 0.08);
}

.eco-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--accent-gold);
}

.eco-icon svg {
    width: 100%;
    height: 100%;
}

.eco-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.eco-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Stats */
.stats {
    background: var(--bg-secondary);
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

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

/* Transactions */
.transactions {
    background: var(--bg-primary);
}

.tx-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tx-col-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.tx-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.tx-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.tx-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.tx-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 6px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.tx-dot.nft {
    background: #8b5cf6;
}

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

.tx-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tx-time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.tx-detail {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Partners Marquee */
.partners {
    background: var(--bg-secondary);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.marquee-content img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s;
    border-radius: var(--radius-sm);
}

.marquee-content img:hover {
    filter: grayscale(0%) brightness(1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Community / Social */
.community {
    background: var(--bg-primary);
}

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

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.social-icon.telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.social-icon.twitter {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.social-icon.email {
    background: rgba(212, 165, 66, 0.15);
    color: var(--accent-gold);
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.social-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Chain Info */
.chain-info {
    background: var(--bg-secondary);
}

.chain-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chain-info-text {
    opacity: 0;
    transform: translateX(-30px);
}

.chain-info-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.chain-info-content {
    opacity: 0;
    transform: translateX(30px);
}

.chain-info-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.chain-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
}

.chain-info-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-large {
        grid-column: span 2;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 24px;
    }

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

    .nav-links a {
        font-size: 18px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

    .feature-large {
        grid-column: span 1;
    }

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

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

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

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

    .chain-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 56px);
    }
}

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

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

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

    .stat-value {
        font-size: 24px;
    }
}
