/* ============================================
   C.CC — Single Page / Space Grotesk + Orbitron
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    background: #060606;
    color: #c0c0c0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* subtle scanline overlay — retro nod */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.035) 3px,
        rgba(0, 0, 0, 0.035) 4px
    );
    z-index: 9999;
}

::selection {
    background: rgba(51, 255, 51, 0.25);
    color: #fff;
}

/* ---- Navigation ---- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(20px, 4vw, 48px);
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 1000;
    transition: background 0.3s;
}

.nav-logo {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: #33ff33;
    text-decoration: none;
}

.nav-logo:hover {
    color: #33ff33;
}

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

.nav-link {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s;
    border: none;
}

.nav-link:hover {
    color: #33ff33;
    border: none;
}

/* ---- Shared ---- */

a {
    color: #33ff33;
    text-decoration: none;
    opacity: 0.65;
    transition: color 0.25s;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #66ff66;
    border-bottom-color: rgba(51, 255, 51, 0.25);
}

section {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px clamp(24px, 5vw, 48px) 60px;
}

.section-label {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #33ff33;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.section-label::before {
    content: "// ";
    opacity: 0.4;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 255, 51, 0.12), transparent);
}

/* ---- Hero ---- */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 64px;
}

.hero-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(51, 255, 51, 0.2);
    box-shadow: 0 0 40px rgba(51, 255, 51, 0.06);
    margin-bottom: 2rem;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.hero-img:hover {
    border-color: rgba(51, 255, 51, 0.5);
    box-shadow: 0 0 60px rgba(51, 255, 51, 0.12);
}

.hero-name {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 0.08em;
    color: #dcdcdc;
    color: f1f1f1;
    opacity: 0.9;
    margin-bottom: 0.6rem;
}

.hero-tagline {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.95rem;
    color: #33ff33;
    opacity: 0.9;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
}

.hero-locations {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 520px;
}

.loc-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.loc-key {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #33ff33;
    opacity: 0.65;
    min-width: 90px;
    flex-shrink: 0;
    text-align: left;
}

.loc-val {
    font-size: 0.88rem;
    color: #dbdbdb;
    opacity: 0.8;
}

.hero-scroll {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Orbitron", sans-serif;
    animation: pulse 2.5s ease-in-out infinite;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, #33ff33, transparent);
    opacity: 0.4;
}

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

/* ---- Bio Section ---- */

#bio {
    text-align: left;
}

.bio-text {
    color: #999;
    font-size: 1rem;
    line-height: 1.85;
}

.bio-text p {
    margin-bottom: 1.4rem;
}

.bio-text a {
    border-bottom-color: rgba(51, 255, 51, 0.15);
}

/* ---- Invest Section ---- */

#invest {
    text-align: left;
}

.invest-intro {
    color: #999;
    font-size: 1rem;
    line-height: 1.85;
    text-align: left;
    margin-bottom: 2.5rem;
}

.invest-intro p {
    margin-bottom: 1.4rem;
}

.invest-heading {
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.invest-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.3rem;
    margin-bottom: 3rem;
}

.invest-pill {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: #fff;
    opacity: 0.65;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: none;
    border-bottom: none;
    background: #111;
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.invest-pill:hover {
    color: #33ff33;
    background: rgba(51, 255, 51, 0.06);
    border-bottom: none;
}

.invest-contact {
    color: #777;
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: center;
}

.invest-contact h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #33ff33;
}

/* ---- Notice Section ---- */

.notice-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.3rem;
    margin-bottom: 3rem;
}

.notice-pill {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: #000;
    opacity: 0.95;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: none;
    border-bottom: none;
    background: #33ff33;
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.notice-pill:hover {
    color: #33ff33;
    background: rgba(51, 255, 51, 0.06);
    border-bottom: none;
}

/* ---- Domain Section ---- */

#ccc {
    text-align: center;
}

.domain-badge {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 6rem);
    color: #33ff33;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 40px rgba(51, 255, 51, 0.2),
        0 0 80px rgba(51, 255, 51, 0.06);
    margin-bottom: 2rem;
    display: block;
}

.domain-text {
    color: #888;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}

.domain-text p {
    margin-bottom: 1.4rem;
}

.large-emoji {
    font-size: 1.8em;
    vertical-align: middle;
}

/* ---- Footer ---- */

footer {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 20px;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.25s;
    margin-bottom: 1.5rem;
}

.follow-btn:hover {
    border-color: rgba(51, 255, 51, 0.3);
    color: #33ff33;
    background: rgba(51, 255, 51, 0.04);
}

.follow-btn img {
    height: 14px;
    width: 14px;
    filter: brightness(0) invert(0.35);
    transition: filter 0.25s;
}

.follow-btn:hover img {
    filter: brightness(0) invert(0.8);
}

footer .copyright {
    color: #999;
    font-size: 0.8rem;
}

footer .copyright a {
    color: #33ff33;
    border: none;
}

footer .copyright a:hover {
    color: #33ff33;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
    .nav-links {
        gap: 18px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    section {
        padding: 80px 20px 40px;
    }

    .hero-name {
        font-size: 1.8rem;
    }

    .loc-row {
        flex-direction: column;
        gap: 0.15rem;
    }

    .loc-key {
        min-width: unset;
    }
}

/* POP UP PHOTO */

.hover-photo .photo-popup {
  display: none;
  position: absolute;
}

.hover-photo:hover .photo-popup {
  display: block;
}
