/* ===== FONTS ===== */
@font-face {
    font-family: 'BigBoss';
    src: url('assets/fonts/headings/BIGBOSS.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BigDrama';
    src: url('assets/fonts/headings/Big Drama.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BigLetters';
    src: url('assets/fonts/headings/BIG_LETTERS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CuteCat';
    src: url('assets/fonts/copy/Cute Cat.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg-dark: #0a0f0a;
    --bg-card: #111a11;
    --bg-card-hover: #162216;
    --green-primary: #39e75f;
    --green-dim: #2cb34a;
    --green-glow: #39e75f44;
    --green-deep: #1a3a1a;
    --text-main: #e8f5e8;
    --text-dim: #8aab8a;
    --text-bright: #ffffff;
    --accent-rainbow: linear-gradient(135deg, #39e75f, #b8ff57, #39e75f, #00ffa3, #39e75f);
    --font-heading: 'BigBoss', 'BigDrama', Impact, sans-serif;
    --font-body: 'CuteCat', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--green-primary) var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 17px;
    letter-spacing: 0.015em;
    word-spacing: 0.03em;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

p {
    line-height: 1.8;
}

a { color: var(--green-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-bright); }

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

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(57, 231, 95, 0.1);
    transition: background 0.3s;
    animation: navSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
    0% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.nav-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--green-primary);
}
.nav-logo img { height: 42px; width: auto; }

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-dim);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.25s ease-out, left 0.25s ease-out;
}
.nav-links a:hover { color: var(--green-primary); }
.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--green-primary);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease-out, box-shadow 0.15s;
}
.nav-cta {
    animation: ctaPulse 2.5s ease-in-out infinite;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px var(--green-glow);
    color: var(--bg-dark);
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57, 231, 95, 0); }
    50% { box-shadow: 0 0 18px 4px rgba(57, 231, 95, 0.25); }
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dim);
    transition: color 0.15s, transform 0.15s ease-out;
}
.nav-socials a:hover {
    color: var(--green-primary);
    transform: translateY(-2px) scale(1.1);
}

.nav-mobile-socials {
    display: none;
}

.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(--green-primary);
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text { flex: 1; }

.hero-text h1 {
    font-size: clamp(80px, 12vw, 160px);
    line-height: 0.9;
    color: var(--green-primary);
    text-shadow: 0 0 40px rgba(57, 231, 95, 0.5), 0 0 80px rgba(57, 231, 95, 0.2);
    margin-bottom: 12px;
    animation: heroTextPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both, heroGlowPulse 3s ease-in-out 0.6s infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { text-shadow: 0 0 40px rgba(57, 231, 95, 0.5), 0 0 80px rgba(57, 231, 95, 0.2); }
    50% { text-shadow: 0 0 60px rgba(57, 231, 95, 0.7), 0 0 120px rgba(57, 231, 95, 0.35), 0 0 4px rgba(57, 231, 95, 0.9); }
}

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

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 36px);
    color: var(--text-bright);
    margin-bottom: 16px;
    animation: heroTextPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: heroTextPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    animation: heroTextPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.15s ease-out, box-shadow 0.15s;
    border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.05s; }

.btn-primary {
    background: var(--green-primary);
    color: var(--bg-dark);
    animation: btnPrimaryPulse 2.8s ease-in-out infinite;
}
.btn-primary:hover {
    box-shadow: 0 6px 32px var(--green-glow);
    color: var(--bg-dark);
    animation: none;
}

@keyframes btnPrimaryPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57, 231, 95, 0); }
    50% { box-shadow: 0 0 20px 6px rgba(57, 231, 95, 0.2); }
}

.btn-secondary {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}
.btn-secondary:hover {
    background: rgba(57, 231, 95, 0.1);
    color: var(--green-primary);
}

.hero-ca {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(57, 231, 95, 0.06);
    border: 1px solid rgba(57, 231, 95, 0.15);
    font-size: 13px;
    font-family: monospace;
}

.ca-label {
    color: var(--green-primary);
    font-weight: 700;
}

.ca-address {
    color: var(--text-dim);
    word-break: break-all;
}

.ca-copy {
    background: none;
    border: none;
    color: var(--green-primary);
    cursor: pointer;
    padding: 4px;
    transition: transform 0.12s ease-out;
}
.ca-copy:hover { transform: scale(1.25); }

.hero-image {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(57, 231, 95, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 231, 95, 0.15),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    animation: heroShimmer 4s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes heroShimmer {
    0%, 100% { left: -150%; }
    50%, 55% { left: 200%; }
}

.hero-image img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    animation: floatDino 3s ease-in-out infinite, heroImageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    filter: drop-shadow(0 20px 60px rgba(57, 231, 95, 0.4));
    will-change: transform;
}

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

@keyframes heroImageIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(57, 231, 95, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--green-primary), transparent);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% { top: -50%; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 120%; opacity: 0; }
}

/* ===== TICKER ===== */
.ticker {
    overflow: hidden;
    background: var(--green-primary);
    padding: 14px 0;
    white-space: nowrap;
    position: relative;
}

.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.25),
        transparent
    );
    animation: tickerShimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes tickerShimmer {
    0%, 100% { left: -100%; }
    40%, 60% { left: 150%; }
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 20s linear infinite;
    will-change: transform;
}

.ticker-track span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--bg-dark);
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* ===== SECTION DIVIDERS ===== */
section + section::before {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    margin: 0 auto 0;
    background: linear-gradient(90deg, transparent, rgba(57, 231, 95, 0.3), transparent);
    position: relative;
    top: -60px;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 17px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 24px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-dim), var(--green-primary), var(--green-dim));
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid rgba(57, 231, 95, 0.2);
    transition: transform 0.2s ease-out, border-color 0.15s;
}
.about-image img:hover {
    transform: scale(1.03);
    border-color: var(--green-primary);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.85;
}
.about-text strong { color: var(--green-primary); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(57, 231, 95, 0.08);
}

.stat-card {
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(57, 231, 95, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: border-color 0.15s, transform 0.2s ease-out;
}
.stat-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-3px);
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--green-primary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* ===== SECTION BACKGROUND IMAGES ===== */
.section-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

#tokenomics,
#how-to-buy,
#community {
    position: relative;
    overflow: hidden;
}

#tokenomics .section-inner,
#how-to-buy .section-inner,
#community .section-inner {
    position: relative;
    z-index: 1;
}

.tokenomics-bg {
    background-image: url('assets/images/photo_9_2026-03-23_07-31-51.jpg');
    opacity: 0.08;
    filter: blur(2px);
}

.how-to-buy-bg {
    background-image: url('assets/images/photo_7_2026-03-23_07-31-51.jpg');
    opacity: 0.05;
}

.community-bg {
    background-image: url('assets/images/photo_32_2026-03-23_07-31-51.jpg');
    opacity: 0.1;
    filter: blur(1px);
}

/* ===== TOKENOMICS ===== */
#tokenomics {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--green-deep) 50%, var(--bg-dark) 100%);
}

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

.token-card {
    padding: 36px 24px;
    background: rgba(10, 15, 10, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(57, 231, 95, 0.12);
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s;
    position: relative;
}
.token-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--green-primary), #00ffa3, #b8ff57, var(--green-primary));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.token-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 15, 10, 0.7);
    z-index: -1;
}
.token-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(57, 231, 95, 0.18);
}
.token-card:hover::before {
    opacity: 1;
    animation: gradientBorderSpin 3s linear infinite;
}

@keyframes gradientBorderSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.token-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: rgba(57, 231, 95, 0.08);
    border: 1px solid rgba(57, 231, 95, 0.2);
    margin-bottom: 20px;
    color: var(--green-primary);
}

.token-card h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-family: var(--font-body);
}

.token-value {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--green-primary);
    margin-bottom: 8px;
}

.token-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===== HOW TO BUY ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line between step cards */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(33.333% - 16px);
    right: calc(33.333% - 16px);
    height: 2px;
    background: linear-gradient(90deg, rgba(57, 231, 95, 0.08), rgba(57, 231, 95, 0.25), rgba(57, 231, 95, 0.25), rgba(57, 231, 95, 0.08));
    z-index: 0;
    pointer-events: none;
}

.step-card {
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(57, 231, 95, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-out;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--green-primary), #00ffa3, #b8ff57, var(--green-primary));
    background-size: 300% 300%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.step-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-card);
    z-index: 0;
}
.step-card > * {
    position: relative;
    z-index: 1;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
}
.step-card:hover::before {
    opacity: 1;
    animation: gradientBorderSpin 3s linear infinite;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 72px;
    color: rgba(57, 231, 95, 0.08);
    position: absolute;
    top: -8px;
    right: 16px;
    line-height: 1;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--green-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(57, 231, 95, 0.08);
}

.step-card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== GALLERY ===== */
#gallery {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d140d 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid rgba(57, 231, 95, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease-out, border-color 0.15s;
    aspect-ratio: 1;
    content-visibility: auto;
    contain-intrinsic-size: 220px;
}
.gallery-item:hover {
    transform: scale(1.04);
    border-color: var(--green-primary);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== COMMUNITY ===== */
#community {
    padding: 120px 24px 140px;
}

.community-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    background: var(--bg-card);
    border: 1px solid rgba(57, 231, 95, 0.15);
    overflow: hidden;
}

.community-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(57, 231, 95, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.community-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 24px;
    animation: floatDino 3.5s ease-in-out infinite;
    will-change: transform;
}

.community-card h2 {
    margin-bottom: 20px;
}

.community-card p {
    color: var(--text-dim);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(57, 231, 95, 0.08);
    border: 1px solid rgba(57, 231, 95, 0.2);
    color: var(--green-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s, color 0.15s, transform 0.2s ease-out, box-shadow 0.2s;
}
.social-btn:hover {
    background: var(--green-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--green-glow);
}
.social-btn:active {
    transform: translateY(0);
    transition-duration: 0.05s;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(57, 231, 95, 0.15);
    padding: 48px 24px 40px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 15, 10, 0.95) 100%);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.footer-left p {
    max-width: 400px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.footer-right p {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid rgba(57, 231, 95, 0.3);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    font-size: 36px;
    background: none;
    border: none;
    color: var(--text-bright);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.lightbox-close:hover { color: var(--green-primary); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* -- Smooth breakpoint transitions for layout-shifting elements -- */
.hero-content,
.hero-image img,
.about-grid,
.about-stats,
.steps-grid,
.tokenomics-grid,
.gallery-grid,
.footer-inner,
.community-card,
.social-links,
section h2,
.hero-text h1,
.hero-tagline,
.hero-sub,
.btn,
.token-card,
.step-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== VERY LARGE SCREENS (1440px+) ===== */
@media (min-width: 1440px) {
    .nav-inner {
        max-width: 1400px;
    }

    .hero-content {
        max-width: 1400px;
    }

    .section-inner {
        max-width: 1320px;
    }

    body {
        font-size: 18px;
    }

    section h2 {
        font-size: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .community-card {
        max-width: 840px;
        padding: 72px 56px;
    }

    .footer-inner {
        max-width: 1400px;
    }
}

/* ===== TABLET (1024px and below) ===== */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== MOBILE (768px and below) ===== */
@media (max-width: 768px) {
    /* -- Mobile font scale -- */
    body {
        font-size: 16px;
    }
    section h2 {
        font-size: clamp(28px, 7vw, 42px);
    }
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .hero-tagline {
        font-size: clamp(18px, 5vw, 28px);
    }
    .hero-sub {
        font-size: 15px;
    }
    .about-text p {
        font-size: 15px;
    }
    .step-card h3 {
        font-size: 20px;
    }
    .step-card p {
        font-size: 14px;
    }
    .token-value {
        font-size: 28px;
    }

    /* -- Navbar: hide desktop, show hamburger -- */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-socials { display: none; }
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .nav-toggle span {
        width: 26px;
        height: 2.5px;
        border-radius: 2px;
        transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.25s ease;
    }

    /* -- Mobile menu: smooth slide-down with backdrop -- */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: rgba(10, 15, 10, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 28px 24px 32px;
        gap: 8px;
        border-bottom: 1px solid rgba(57, 231, 95, 0.15);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(57, 231, 95, 0.05);
        animation: mobileMenuSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes mobileMenuSlideDown {
        0% {
            opacity: 0;
            transform: translateY(-12px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* -- Mobile nav link touch targets (44px minimum) -- */
    .nav-links.open a {
        padding: 12px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 16px;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }
    .nav-links.open a:hover,
    .nav-links.open a:active {
        background: rgba(57, 231, 95, 0.08);
    }

    .nav-links.open .nav-mobile-socials {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(57, 231, 95, 0.1);
    }
    .nav-links.open .nav-mobile-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: var(--text-dim);
        transition: color 0.2s, background 0.2s;
        border-radius: 8px;
    }
    .nav-links.open .nav-mobile-socials a:hover,
    .nav-links.open .nav-mobile-socials a:active {
        color: var(--green-primary);
        background: rgba(57, 231, 95, 0.08);
    }

    /* -- Hero: stack vertically, center, scale image -- */
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 28px;
    }
    #hero {
        padding: 100px 20px 48px;
        min-height: auto;
    }
    .hero-image img {
        width: min(300px, 70vw);
        height: auto;
        margin: 0 auto;
    }
    .hero-image-glow {
        width: 300px;
        height: 300px;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-ca {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
    }
    .hero-scroll-indicator {
        display: none;
    }

    /* -- Touch targets: buttons at least 44px -- */
    .btn {
        min-height: 44px;
        padding: 12px 28px;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-cta {
        min-height: 44px;
    }
    .social-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    .ca-copy {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* -- About section -- */
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-text h2 { text-align: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    /* -- Steps & Tokenomics -- */
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .tokenomics-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .token-card {
        padding: 28px 20px;
    }

    /* -- Gallery -- */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    /* -- Sections reduced padding -- */
    section {
        padding: 72px 20px;
    }
    #community {
        padding: 72px 20px 80px;
    }
    .community-card {
        padding: 40px 24px;
    }

    /* -- Lightbox: full-screen on mobile -- */
    .lightbox {
        padding: 0;
    }
    .lightbox img {
        max-width: 100vw;
        max-height: 100vh;
        border: none;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 32px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        backdrop-filter: blur(8px);
    }

    /* -- Footer -- */
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; }

    /* -- Ticker -- */
    .ticker { padding: 10px 0; }
    .ticker-track span { font-size: 15px; padding: 0 28px; }

    /* -- Section divider spacing -- */
    section + section::before {
        top: -36px;
        width: 80px;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    /* -- Smaller headings -- */
    .hero-text h1 {
        font-size: clamp(52px, 16vw, 72px);
    }
    section h2 {
        font-size: clamp(24px, 7vw, 34px);
    }
    .hero-tagline {
        font-size: clamp(16px, 5vw, 22px);
    }

    /* -- Hero fine-tuning -- */
    .hero-image img {
        width: min(240px, 65vw);
    }
    .hero-image-glow {
        width: 240px;
        height: 240px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .hero-ca {
        font-size: 11px;
        padding: 8px 12px;
    }

    /* -- About stats: single column -- */
    .about-stats { grid-template-columns: 1fr; }
    .stat-card {
        padding: 16px 12px;
    }

    /* -- Tokenomics: single column, nice card stacking -- */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }
    .token-card {
        padding: 24px 20px;
    }
    .token-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    .token-value {
        font-size: 26px;
    }
    .token-card h3 {
        font-size: 14px;
    }
    .token-desc {
        font-size: 13px;
    }

    /* -- Gallery: 2-column with proper sizing -- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    /* -- Steps cards -- */
    .step-card {
        padding: 28px 20px;
    }
    .step-number {
        font-size: 56px;
    }

    /* -- Community -- */
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    .social-btn {
        justify-content: center;
        width: 100%;
    }
    .community-card {
        padding: 32px 16px;
    }
    .community-card p {
        font-size: 14px;
    }

    /* -- Buttons -- */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    /* -- Lightbox close even easier to tap -- */
    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    /* -- Section padding tighter -- */
    section {
        padding: 56px 16px;
    }
    #community {
        padding: 56px 16px 64px;
    }

    /* -- Footer -- */
    .footer-left p {
        font-size: 11px;
    }
}
