:root {
    --bg-color: #F8F8F8;
    --surface-color: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #777777;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.8, 0, 0.1, 1);
}

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

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

/* ── CURSOR ──────────────────────── */
.cursor {
    position: fixed; top: 0; left: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background-color: var(--text-primary);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}
.cursor.hovered { width: 60px; height: 60px; background-color: #fff; }

/* ── LOADER ──────────────────────── */
.loader {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: #111;
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    z-index: 10000;
}
.loader-text {
    font-family: var(--font-heading);
    font-size: 4rem; font-weight: 800;
}

/* ── NAVBAR ──────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0;
    width: 100%;
    padding: 1.8rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: #fff;
}
.nav-brand { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
    color: currentColor; text-decoration: none;
    font-weight: 500; font-size: 0.95rem;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background-color: currentColor;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── HERO ────────────────────────── */
.hero {
    height: 100vh;
    display: flex; align-items: center;
    padding: 0 4rem;
    position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text-secondary); font-weight: 400; }
.hero-subtitle .accent { color: var(--text-primary); font-weight: 500; }
.hero-title {
    font-family: var(--font-heading);
    font-size: 7.5rem; font-weight: 800;
    line-height: 1; letter-spacing: -0.04em;
    margin-bottom: 2rem;
}
.hero-title .line { overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); }
.hero-description {
    font-size: 1.2rem; color: var(--text-secondary);
    max-width: 520px; margin-bottom: 3rem;
    opacity: 0; transform: translateY(20px);
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-primary); color: var(--surface-color);
    text-decoration: none; border-radius: 100px;
    font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--text-primary);
    opacity: 0; transform: translateY(20px);
}
.btn:hover { background-color: transparent; color: var(--text-primary); }
.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.shape { position: absolute; filter: blur(90px); border-radius: 50%; opacity: 0.5; animation: float 12s ease-in-out infinite; }
.shape-1 { width: 600px; height: 600px; background: #DCDCDC; top: -150px; right: -150px; }
.shape-2 { width: 450px; height: 450px; background: #EBEBEB; bottom: -80px; left: 15%; animation-delay: -6s; }
@keyframes float {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(-30px, 30px); }
}
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 4rem;
    display: flex; align-items: center; gap: 1rem;
    z-index: 2; opacity: 0;
}
.mouse { width: 24px; height: 36px; border: 2px solid var(--text-primary); border-radius: 12px; position: relative; }
.wheel {
    width: 4px; height: 6px;
    background-color: var(--text-primary);
    border-radius: 2px; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
.scroll-text { font-size: 0.85rem; color: var(--text-secondary); letter-spacing: 0.1em; }

/* ── MARQUEE STRIP ───────────────── */
.marquee-strip {
    width: 100%;
    background: var(--text-primary);
    color: #fff;
    padding: 1.2rem 0;
    overflow: hidden;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.marquee-track {
    display: flex; gap: 2.5rem;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    letter-spacing: 0.03em;
}
.marquee-track span:nth-child(even) { opacity: 0.35; font-size: 0.8rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ───────────────────────── */
.about { background-color: var(--surface-color); }
.container { max-width: 1400px; margin: 0 auto; padding: 8rem 4rem; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 4rem;
    position: relative; display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute; bottom: -10px; left: 0;
    width: 40px; height: 4px;
    background-color: var(--text-primary);
}
.about-grid {
    display: grid; grid-template-columns: 0.75fr 1.25fr;
    gap: 5rem; align-items: center;
}
.about-photo-wrapper {
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/5; background: #E8E8E8;
    position: relative;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform 0.8s var(--transition), filter 0.5s ease; }
.about-photo-wrapper:hover .about-photo { transform: scale(1.04); filter: grayscale(0%); }
.photo-label {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: rgba(0,0,0,0.55);
    color: #fff; font-family: var(--font-heading);
    font-size: 0.9rem; font-weight: 600;
    padding: 0.4rem 1rem; border-radius: 100px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
}
.about-text-container { display: flex; flex-direction: column; gap: 3rem; }
.about-text p { font-size: 1.35rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.about-text strong { color: var(--text-primary); font-weight: 600; }
.about-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 800;
    line-height: 1; display: inline;
}
.stat-unit { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-left: 2px; }
.stat-label { font-size: 0.95rem; color: var(--text-secondary); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.07em; }

/* ── STACK ───────────────────────── */
.stack-section { background-color: var(--bg-color); }
.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stack-card {
    background: var(--surface-color);
    border-radius: 24px; padding: 2.5rem;
    transition: transform 0.4s var(--transition), box-shadow 0.4s ease;
    border: 1px solid #EBEBEB;
}
.stack-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.06); }
.stack-card.featured {
    background: var(--text-primary); color: #fff;
    border-color: transparent;
}
.stack-card.featured p { color: rgba(255,255,255,0.65); }
.stack-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.stack-card h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.8rem; }
.stack-card p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; }

/* ── PROJECTS DARK ───────────────── */
.dark-section { background-color: #111; color: #F8F8F8; }
.dark-section .section-title::after { background-color: #F8F8F8; }
.projects-coming { display: flex; justify-content: center; }
.coming-card {
    max-width: 700px; width: 100%;
    background: #1A1A1A;
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    border: 1px solid #2A2A2A;
    position: relative; overflow: hidden;
}
.coming-pulse {
    display: flex; justify-content: center; margin-bottom: 2.5rem;
}
.coming-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #4DFF91;
    box-shadow: 0 0 0 0 rgba(77, 255, 145, 0.4);
    animation: pulse 2s infinite;
    display: block;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(77,255,145,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(77,255,145,0); }
    100% { box-shadow: 0 0 0 0 rgba(77,255,145,0); }
}
.coming-card h3 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.coming-card p { font-size: 1.15rem; color: #999; line-height: 1.7; margin-bottom: 2.5rem; }
.coming-tags { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }
.tag {
    padding: 0.4rem 1.2rem;
    border: 1px solid #333;
    border-radius: 100px;
    font-size: 0.9rem; color: #aaa;
    font-family: var(--font-heading); font-weight: 500;
}

/* ── SERVICES ────────────────────── */
.services { background-color: var(--surface-color); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-item {
    padding: 3rem 2.5rem;
    border-top: 2px solid var(--text-primary);
    transition: background 0.3s ease;
    border-radius: 0 0 16px 16px;
}
.service-item:hover { background: #F2F2F2; }
.service-num {
    font-family: var(--font-heading); font-size: 0.9rem;
    font-weight: 700; color: var(--text-secondary);
    letter-spacing: 0.1em; margin-bottom: 1.5rem; display: block;
}
.service-item h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.service-item p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ── CONTACT ─────────────────────── */
.contact { background-color: var(--bg-color); text-align: center; }
.contact .section-title::after { left: 50%; transform: translateX(-50%); }
.contact-text { font-size: 1.4rem; color: var(--text-secondary); }
.contact-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 4rem; flex-wrap: wrap; }
.contact-pill {
    display: flex; flex-direction: column; align-items: center;
    padding: 1.5rem 3.5rem;
    background: var(--text-primary); color: #fff;
    border-radius: 24px; text-decoration: none;
    transition: transform 0.4s var(--transition), background 0.3s ease, box-shadow 0.3s ease;
    min-width: 220px;
}
.contact-pill.outline {
    background: transparent; color: var(--text-primary);
    border: 2px solid var(--text-primary);
}
.contact-pill:hover { transform: translateY(-8px); background: #222; color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.contact-pill.outline:hover { background: var(--text-primary); color: #fff; }
.pill-label { font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.pill-value { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; }

/* ── FOOTER ──────────────────────── */
footer {
    padding: 2rem 4rem; display: flex;
    justify-content: space-between; align-items: center;
    border-top: 1px solid #E5E5E5;
    background: var(--bg-color); color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-link { color: var(--text-primary); text-decoration: none; font-weight: 500; }
.footer-link:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
    .hero-title { font-size: 5.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrapper { aspect-ratio: 16/9; max-height: 400px; }
    .stack-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    .hero { padding: 0 2rem; }
    .hero-title { font-size: 3.5rem; }
    .container { padding: 5rem 2rem; }
    .stack-grid { grid-template-columns: 1fr; }
    .contact-links { flex-direction: column; align-items: center; }
    .contact-pill { width: 90%; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem 2rem; }
    .scroll-indicator { left: 2rem; }
}

/* ── SUPPORT / CRYPTO ────────────────── */
.support { background-color: #111; color: #F8F8F8; }

/* Pitch Banner */
.support-pitch {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}
.pitch-left {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.pitch-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.2rem;
}
.pitch-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #F0F0F0;
}
.pitch-desc {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
    max-width: 560px;
}
.pitch-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-shrink: 0;
    border-left: 1px solid #2A2A2A;
    padding-left: 3rem;
}
.pitch-stat { display: flex; flex-direction: column; }
.pitch-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #4DFF91;
    line-height: 1;
}
.pitch-stat-label {
    font-size: 0.78rem;
    color: #555;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.support-sub {
    font-size: 1.2rem; color: #777;
    margin-bottom: 3rem; max-width: 600px; line-height: 1.6;
}
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    gap: 1.5rem;
}
.crypto-card {
    background: #1A1A1A; border: 1px solid #2A2A2A;
    border-radius: 24px; padding: 2rem;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.8,0,0.1,1);
}
.crypto-card:hover { border-color: #444; transform: translateY(-6px); }
.crypto-card-soon { opacity: 0.45; pointer-events: none; }
.crypto-soon-label {
    font-size: 0.85rem; color: #444;
    margin-top: 1rem;
    font-style: italic;
}
.crypto-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.crypto-icon {
    font-size: 1.8rem; width: 48px; height: 48px;
    background: #252525; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.crypto-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
.crypto-net { font-size: 0.8rem; color: #666; margin-top: 2px; letter-spacing: 0.03em; }
.crypto-qr {
    display: block; width: 120px; height: 120px;
    border-radius: 12px; margin-bottom: 1.5rem; image-rendering: pixelated;
}
.crypto-address-row {
    display: flex; align-items: center; gap: 0.75rem;
    background: #111; border: 1px solid #2A2A2A; border-radius: 12px; padding: 0.75rem 1rem;
}
.crypto-address {
    font-family: 'Courier New', monospace; font-size: 0.78rem; color: #AAA;
    flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.copy-btn {
    flex-shrink: 0; background: transparent; border: none; color: #666;
    cursor: pointer; padding: 4px; border-radius: 6px; display: flex;
    transition: color 0.2s ease, background 0.2s ease;
}
.copy-btn:hover { color: #4DFF91; background: rgba(77,255,145,0.08); }
.copy-btn.copied { color: #4DFF91; }

@media (max-width: 900px) {
    .support-pitch { grid-template-columns: 1fr; gap: 2rem; }
    .pitch-stats { flex-direction: row; border-left: none; border-top: 1px solid #2A2A2A; padding-left: 0; padding-top: 1.5rem; }
}


/* ── ANNIVERSARY PHOTO FRAME ─────────────── */
.about-photo-wrapper.anniversary-frame {
    box-shadow:
        0 0 0 4px #111,
        0 0 0 8px #F0F0F0,
        0 0 40px 10px rgba(0,0,0,0.12);
    animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
    0%,100% { box-shadow: 0 0 0 4px #111, 0 0 0 8px #F0F0F0, 0 0 40px 8px rgba(0,0,0,0.1); }
    50%      { box-shadow: 0 0 0 4px #111, 0 0 0 8px #E0E0E0, 0 0 60px 16px rgba(0,0,0,0.18); }
}

/* ── ANNIVERSARY OVERLAY ─────────────────── */
#anniv-overlay {
    position: fixed; inset: 0;
    background: #FAFAFA;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#anniv-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.anniv-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 2rem;
}
.anniv-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    opacity: 0;
}
.anniv-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #111;
    margin-bottom: 1.5rem;
    opacity: 0;
}
.anniv-sub {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 3rem;
    max-width: 420px;
    line-height: 1.6;
    opacity: 0;
}
.anniv-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    opacity: 0;
}
.anniv-btn:hover { background: #333; transform: translateY(-2px); }
