/* ============================================
   PALE BLUE DOT - REDESIGNED
   Bold typography, creative layouts, unique
   ============================================ */

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

:root {
    --black: #000000;
    --white: #ffffff;
    --cyan: #87CEEB;
    --pale-blue: #D5FFFF;
    --gray: #666666;
    --gray-light: #999999;
    --gray-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/space-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-4px, -4px);
}

.cursor-follower {
    display: none;
}

body:hover .custom-cursor {
    transform: scale(1.5);
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(2);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-dot {
    width: 32px;
    height: 32px;
    background: var(--cyan);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-logo:hover .nav-dot {
    transform: scale(1.2) rotate(180deg);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 10px 24px;
    border: 1px solid var(--white);
    border-radius: 50px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--white);
    color: var(--black);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    outline: none;
}

.nav-burger:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease;
    pointer-events: none;
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.earth-canvas {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(213, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: -60px;
}

.hero-title {
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    margin-top: 0;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 600;
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    color: var(--cyan);
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-price {
    margin: 24px auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.price-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.price-value {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-subtitle p {
    margin-bottom: 0;
}

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

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-height: 800px) {
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-scroll {
        display: none;
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.scroll-indicator span {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.scroll-indicator p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   COMMON STYLES
   ============================================ */

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

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 120px;
    padding: 160px 0;
}

.section-title {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 200px;
}

.title-number {
    display: block;
    font-size: 60px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 12px;
}

.large-text {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 32px;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-section {
    padding: 80px 0 40px;
    text-align: center;
}

.featured-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-badge:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.featured-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
}

.featured-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.featured-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--cyan);
    margin-top: 4px;
    transition: all 0.3s ease;
}

.featured-badge:hover .featured-link {
    transform: translateX(4px);
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: 160px 0 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.large-quote {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.large-quote p {
    margin-bottom: 0;
    opacity: 0.9;
}

.large-quote cite {
    display: block;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    font-style: normal;
    color: var(--cyan);
    margin-top: 40px;
}

/* ============================================
   MESSAGE SECTION
   ============================================ */

.message-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-light);
}

.message-content strong {
    color: var(--white);
    font-weight: 600;
}

.fraction-label {
    font-size: 16px !important;
    color: var(--gray-light) !important;
    margin-top: 48px !important;
    margin-bottom: 16px !important;
    font-style: italic;
}

.fractions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.fraction-item {
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 50px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fraction-item:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.message-tagline {
    font-size: 24px !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    margin-top: 48px !important;
}

.video-section {
    margin-top: 80px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}



/* ============================================
   TOKENOMICS SECTION
   ============================================ */

.tokenomics-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Tablet: Force 2x2 grid */
@media (min-width: 769px) and (max-width: 1100px) {
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.token-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.token-card:hover {
    border-color: var(--white);
    transform: translateY(-8px);
}

.token-card-highlight {
    background: rgba(213, 255, 255, 0.03);
    border-color: var(--cyan);
}

.token-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.token-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 16px;
}

.token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.token-row:last-child {
    border-bottom: none;
}

.token-row span {
    color: var(--gray-light);
}

.token-row strong {
    font-size: 18px;
    font-weight: 700;
}

.token-card p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

.highlight-note {
    color: var(--cyan) !important;
    font-weight: 600 !important;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.check {
    color: var(--cyan);
    font-size: 20px;
}

.audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-btn:hover {
    background: var(--cyan);
    color: var(--black);
}

.audit-btn span {
    transition: transform 0.3s ease;
}

.audit-btn:hover span {
    transform: translateX(4px);
}

/* ============================================
   INITIATIVE SECTION
   ============================================ */

.initiative-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.initiative-intro {
    margin-bottom: 60px;
}

.initiative-intro .large-text {
    margin-bottom: 24px;
}

.initiative-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
}

.initiative-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan) 0%, transparent 100%);
    margin: 60px 0;
    opacity: 0.3;
}

.initiative-header {
    margin-bottom: 60px;
}

.recipient-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    font-weight: 600;
}

.wcs-logo {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    padding: 20px 40px;
    border: 2px solid var(--white);
    margin-bottom: 24px;
}

.recipient-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.recipient-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 600px;
}

.initiative-highlight {
    display: flex;
    gap: 40px;
    padding: 60px;
    border: 1px solid var(--cyan);
    margin: 60px 0;
    align-items: center;
}

.highlight-number {
    font-size: 80px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
}

.highlight-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white);
}

.focus-areas {
    margin: 60px 0;
}

.focus-areas h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

.focus-item {
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.focus-item:hover {
    border-color: var(--white);
    transform: translateX(8px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   JOIN SECTION
   ============================================ */

.join-section {
    padding: 200px 0;
}

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

.join-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 80px;
}

.contract-box {
    margin-bottom: 80px;
}

.contract-box label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.contract-input {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contract-input input {
    flex: 1;
    padding: 20px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.copy-btn {
    padding: 20px 40px;
    background: var(--white);
    color: var(--black);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.copy-btn:hover {
    background: var(--cyan);
}

.copy-success {
    display: none;
}

.copy-btn.copied .copy-default {
    display: none;
}

.copy-btn.copied .copy-success {
    display: inline;
}

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

.contract-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contract-links a:hover {
    color: var(--white);
}

.socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 100px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-quote {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-quote p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 16px;
}

.footer-quote cite {
    font-size: 16px;
    color: var(--cyan);
    font-style: normal;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 13px;
    color: var(--gray);
}

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

@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 120px 0;
    }

    .section-title {
        position: relative;
        top: 0;
    }

    .initiative-highlight {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 30px 30px;
        mix-blend-mode: normal;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
    }

    .nav-burger {
        display: flex;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero-content {
        margin-top: -40px;
    }

    .hero-scroll {
        display: none;
    }

    .container,
    .container-large {
        padding: 0 30px;
    }

    .tokenomics-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .contract-input {
        flex-direction: column;
    }

    .contract-links {
        flex-direction: column;
        gap: 16px;
    }

    .socials {
        gap: 12px;
    }

    body {
        cursor: auto;
    }

    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}