:root {
    --bg-deep: #020408;
    --bg-space: #040b14;
    --bg-card: rgba(8, 20, 40, 0.85);
    --bg-card-hover: rgba(12, 28, 56, 0.95);
    --accent-orange: #f97316;
    --accent-amber: #f59e0b;
    --accent-blue: #38bdf8;
    --accent-cyan: #06b6d4;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --text-primary: #f0f6ff;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --border: rgba(56, 189, 248, 0.15);
    --border-bright: rgba(56, 189, 248, 0.4);
    --glow-orange: 0 0 30px rgba(249, 115, 22, 0.4);
    --glow-blue: 0 0 30px rgba(56, 189, 248, 0.3);
    --font-display: 'Orbitron', monospace;
    --font-mono: 'Share Tech Mono', monospace;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(2, 4, 8, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(2, 4, 8, 0.95);
    border-bottom-color: var(--border-bright);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.ham-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.6));
    animation: floatIcon 3s ease-in-out infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 0.1em;
}

.logo-symbol {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-blue);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.08em;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 100px 48px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
    flex-shrink: 0;
}

.mission-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.title-ham {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 120px);
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 0.05em;
    text-shadow: 0 0 60px rgba(249, 115, 22, 0.5), 0 0 120px rgba(249, 115, 22, 0.2);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 60px rgba(249, 115, 22, 0.5), 0 0 120px rgba(249, 115, 22, 0.2); }
    50% { text-shadow: 0 0 80px rgba(249, 115, 22, 0.7), 0 0 160px rgba(249, 115, 22, 0.3); }
}

.title-sub {
    font-family: var(--font-display);
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-ticker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    position: relative;
}

.hero-ticker::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #000;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    border: 1px solid var(--border-bright);
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.06);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.capsule-wrapper {
    position: relative;
    width: 280px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capsule {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatCapsule 4s ease-in-out infinite;
}

@keyframes floatCapsule {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.capsule-nose {
    width: 60px;
    height: 80px;
    background: linear-gradient(180deg, #c0c8d4 0%, #8090a0 100%);
    border-radius: 50% 50% 0 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.capsule-body {
    width: 100px;
    height: 120px;
    background: linear-gradient(180deg, #8090a0 0%, #607080 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.capsule-window {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.4), rgba(4, 11, 20, 0.9));
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.2), 0 0 20px rgba(56, 189, 248, 0.2);
    animation: windowGlow 3s ease-in-out infinite;
}

@keyframes windowGlow {
    0%, 100% { box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.2), 0 0 20px rgba(56, 189, 248, 0.2); }
    50% { box-shadow: inset 0 0 30px rgba(56, 189, 248, 0.35), 0 0 40px rgba(56, 189, 248, 0.35); }
}

.capsule-rivets {
    display: flex;
    gap: 8px;
}

.capsule-rivets span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.capsule-bottom {
    width: 80px;
    height: 30px;
    background: linear-gradient(180deg, #607080 0%, #405060 100%);
    border-radius: 0 0 8px 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.thruster-glow {
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.8) 0%, rgba(249, 115, 22, 0) 100%);
    border-radius: 0 0 50% 50%;
    filter: blur(8px);
    animation: thruster 0.15s ease-in-out infinite alternate;
    margin-top: -8px;
}

@keyframes thruster {
    from { opacity: 0.7; height: 50px; }
    to { opacity: 1; height: 70px; }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.15);
    pointer-events: none;
}

.ring-1 {
    width: 240px;
    height: 240px;
    border-style: dashed;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(249, 115, 22, 0.1);
    animation: rotateRing 35s linear infinite reverse;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dot-1 {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
    animation: orbitDot1 20s linear infinite;
}

.dot-2 {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-orange);
    animation: orbitDot2 35s linear infinite;
}

.dot-3 {
    width: 4px;
    height: 4px;
    background: var(--accent-amber);
    box-shadow: 0 0 6px var(--accent-amber);
    animation: orbitDot3 25s linear infinite reverse;
}

@keyframes orbitDot1 {
    from { transform: rotate(0deg) translateX(120px); }
    to { transform: rotate(360deg) translateX(120px); }
}

@keyframes orbitDot2 {
    from { transform: rotate(0deg) translateX(160px); }
    to { transform: rotate(360deg) translateX(160px); }
}

@keyframes orbitDot3 {
    from { transform: rotate(90deg) translateX(140px); }
    to { transform: rotate(450deg) translateX(140px); }
}

.ticker-bar {
    position: relative;
    z-index: 1;
    background: rgba(249, 115, 22, 0.08);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
    padding: 12px 0;
}

.ticker-track {
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

.ticker-content span {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-orange);
    letter-spacing: 0.05em;
}

.ticker-content .sep {
    color: rgba(249, 115, 22, 0.4);
}

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

section {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-blue);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
}

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

.mission-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.lead-text {
    font-size: 18px;
    color: var(--text-primary) !important;
    font-weight: 600;
}

.lead-text em {
    color: var(--accent-amber);
    font-style: normal;
}

.highlight-text {
    font-family: var(--font-mono);
    color: var(--accent-cyan) !important;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 16px;
    font-size: 15px;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.timeline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.timeline-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-space);
    border: 2px solid var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s;
}

.timeline-item.completed .tl-dot {
    border-color: var(--accent-green);
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.tl-time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-amber);
    margin-bottom: 4px;
}

.tl-event {
    font-size: 14px;
    color: var(--text-secondary);
}

.timeline-item.completed .tl-event {
    color: var(--accent-green);
    font-weight: 600;
}

.contract-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 115, 22, 0.03) 50%, transparent 100%);
}

.contract-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    max-width: 720px;
    margin: 0 auto 32px;
}

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

.contract-network {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-green);
    letter-spacing: 0.05em;
}

.contract-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-green);
}

.contract-label-text {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contract-address-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(2, 4, 8, 0.8);
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.address-prefix {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-blue);
    padding: 14px 12px 14px 16px;
    white-space: nowrap;
    border-right: 1px solid var(--border);
}

.contract-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
    padding: 14px 16px;
    cursor: default;
    min-width: 0;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.08);
    border: none;
    border-left: 1px solid var(--border);
    padding: 14px 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.copy-btn:hover {
    background: rgba(56, 189, 248, 0.18);
}

.copy-btn.copied {
    color: var(--accent-green);
    background: rgba(34, 197, 94, 0.12);
}

.contract-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--accent-amber);
    font-family: var(--font-mono);
    opacity: 0.8;
}

.buy-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #000;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(249, 115, 22, 0.5);
}

.buy-btn.secondary-buy {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--border-bright);
    box-shadow: none;
}

.buy-btn.secondary-buy:hover {
    background: rgba(56, 189, 248, 0.08);
    box-shadow: var(--glow-blue);
}

.tokenomics-section {
    padding: 100px 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.toki-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.toki-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.toki-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.toki-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    word-break: break-word;
}

.toki-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.toki-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.distribution {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.dist-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-blue);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.dist-bar-wrap {
    margin-bottom: 20px;
}

.dist-bar {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    gap: 2px;
}

.dist-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    transition: filter 0.2s;
}

.dist-seg:hover {
    filter: brightness(1.15);
}

.seg-community { background: var(--accent-orange); border-radius: 8px 0 0 8px; }
.seg-marketing { background: var(--accent-blue); }
.seg-dev { background: var(--accent-green); border-radius: 0 8px 8px 0; }

.dist-legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.community-dot { background: var(--accent-orange); }
.marketing-dot { background: var(--accent-blue); }
.dev-dot { background: var(--accent-green); }

.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(56, 189, 248, 0.03) 50%, transparent 100%);
}

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

.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.roadmap-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
}

.roadmap-card.active-card {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
}

.roadmap-phase {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.roadmap-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.roadmap-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.roadmap-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.roadmap-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.roadmap-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.phase-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 20px;
}

.phase-badge.in-progress {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.phase-badge.pending {
    background: rgba(71, 85, 105, 0.3);
    color: var(--text-muted);
    border: 1px solid rgba(71, 85, 105, 0.4);
}

.community-section {
    padding: 100px 0;
    text-align: center;
}

.community-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: -20px auto 48px;
    line-height: 1.7;
}

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

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 20px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-card:hover {
    transform: translateY(-6px);
}

.telegram-card {
    color: #29b6f6;
}

.telegram-card:hover {
    border-color: rgba(41, 182, 246, 0.4);
    box-shadow: 0 0 30px rgba(41, 182, 246, 0.15);
}

.twitter-card {
    color: var(--text-primary);
}

.twitter-card:hover {
    border-color: rgba(240, 246, 255, 0.25);
    box-shadow: 0 0 30px rgba(240, 246, 255, 0.08);
}

.dex-card {
    color: var(--accent-green);
}

.dex-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.social-icon-wrap {
    opacity: 0.9;
    transition: opacity 0.2s;
}

.social-card:hover .social-icon-wrap {
    opacity: 1;
}

.social-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.social-handle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

footer {
    position: relative;
    z-index: 1;
    background: rgba(2, 4, 8, 0.9);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-chimp {
    font-size: 36px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}

.footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.footer-symbol {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-orange);
}

.footer-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 4px;
    transition: color 0.2s;
}

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

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 700px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-row {
        justify-content: center;
    }

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

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

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

    .roadmap-track {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .social-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(2, 4, 8, 0.97);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .toki-value {
        font-size: 13px;
    }

    .contract-input {
        font-size: 11px;
    }

    .dist-legend {
        flex-direction: column;
        gap: 12px;
    }

    .hero-visual {
        display: none;
    }

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

    .mission-photo-wrap {
        margin-top: 24px;
    }
}

.capsule-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(30%) contrast(1.1);
}

.mission-photo-wrap {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-bright);
    box-shadow: var(--glow-blue);
    position: relative;
}

.mission-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.mission-photo:hover {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(1.1);
}

.mission-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(2, 4, 8, 0.9));
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 16px 16px 10px;
    letter-spacing: 0.05em;
}

.gallery-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(56, 189, 248, 0.03), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item--tall {
    aspect-ratio: 2/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--border-bright);
    box-shadow: var(--glow-blue);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(2, 4, 8, 0.85));
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 20px 14px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
