/* ============================================
   $CLAWWAVE - VAPORWAVE / SYNTHWAVE THEME
   Retro 80s Aesthetic
   ============================================ */

:root {
    --pink: #ff6ec7;
    --cyan: #00ffff;
    --purple: #9d4edd;
    --blue: #4361ee;
    --orange: #ff6b35;
    --yellow: #ffd700;
    --dark: #0d0221;
    --darker: #060111;
    --text: #ffffff;
    --text-dim: #aaaacc;
    --font-display: 'Righteous', cursive;
    --font-body: 'Lexend Deca', sans-serif;
    --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--pink);
    color: var(--dark);
}

/* Background Layer */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, 
        #1a0533 0%, 
        #2d1b4e 30%, 
        #ff6b35 70%, 
        #ffcc00 100%
    );
    overflow: hidden;
}

.sun {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, #ffcc00 0%, #ff6b35 50%, #ff0066 100%);
    border-radius: 50%;
    box-shadow: 0 0 100px #ff6b35, 0 0 200px #ff0066;
}

.sun::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 8px,
        rgba(0,0,0,0.3) 8px,
        rgba(0,0,0,0.3) 16px
    );
}

.grid-floor {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 40%;
    background: 
        linear-gradient(90deg, var(--cyan) 1px, transparent 1px),
        linear-gradient(0deg, var(--cyan) 1px, transparent 1px);
    background-size: 60px 30px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    opacity: 0.5;
    animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

.mountains {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 200px;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.m1 {
    left: 10%;
    border-width: 0 150px 180px 150px;
    border-color: transparent transparent #1a0533 transparent;
}

.m2 {
    right: 10%;
    border-width: 0 200px 150px 200px;
    border-color: transparent transparent #2d1b4e transparent;
}

.stars {
    position: absolute;
    width: 100%;
    height: 60%;
    top: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.9) 0%, transparent 100%);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-cta:hover {
    box-shadow: 0 0 30px var(--pink);
    transform: scale(1.05);
}

/* Buttons */
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyan);
    transition: left 0.3s;
    z-index: -1;
}

.btn-neon:hover {
    color: var(--dark);
    box-shadow: 0 0 30px var(--cyan);
}

.btn-neon:hover::before {
    left: 0;
}

.btn-neon.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 110, 199, 0.2);
    box-shadow: 0 0 20px var(--pink);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    margin-bottom: 2rem;
}

.hero-badge span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 3px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-top {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: 10px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--pink);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.h-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 500px;
}

.statue {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.statue-head {
    width: 120px;
    height: 150px;
    background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 100%);
    border-radius: 60px 60px 30px 30px;
    position: relative;
}

.statue-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
}

.statue-eye {
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--dark);
    top: 20%;
}

.statue-eye.left { left: 15%; }
.statue-eye.right { right: 15%; }

.statue-hair {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 60px;
    background: linear-gradient(180deg, #d0d0d0 0%, #a0a0a0 100%);
    border-radius: 70px 70px 0 0;
}

.statue-body {
    width: 180px;
    height: 200px;
    background: linear-gradient(180deg, #d8d8d8 0%, #b0b0b0 100%);
    margin: -20px auto 0;
    border-radius: 10px 10px 0 0;
}

.statue-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 110, 199, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.palm {
    position: absolute;
    font-size: 5rem;
    filter: brightness(0.3);
}

.palm-1 { bottom: 0; left: -50px; transform: scaleX(-1); }
.palm-2 { bottom: 0; right: -50px; }

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    font-size: 3rem;
    animation: floatShape 6s ease-in-out infinite;
}

.triangle {
    top: 10%;
    right: 10%;
    color: var(--pink);
    animation-delay: 0s;
}

.circle {
    top: 40%;
    right: -20%;
    color: var(--cyan);
    animation-delay: 2s;
}

.diamond {
    bottom: 20%;
    left: 10%;
    color: var(--yellow);
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Sections Common */
section {
    padding: 8rem 2rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--cyan);
    letter-spacing: 5px;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--pink);
    animation: glitch1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--cyan);
    animation: glitch2 3s infinite linear alternate-reverse;
}

@keyframes glitch1 {
    0%, 100% { clip-path: inset(0 0 90% 0); }
    25% { clip-path: inset(30% 0 50% 0); }
    50% { clip-path: inset(70% 0 10% 0); }
    75% { clip-path: inset(10% 0 80% 0); }
}

@keyframes glitch2 {
    0%, 100% { clip-path: inset(90% 0 0 0); }
    25% { clip-path: inset(50% 0 30% 0); }
    50% { clip-path: inset(10% 0 70% 0); }
    75% { clip-path: inset(80% 0 10% 0); }
}

/* Vibe Section */
.vibe-section {
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.9) 0%, rgba(45, 27, 78, 0.9) 100%);
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vibe-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2.5rem;
    transition: all 0.4s;
}

.vibe-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vibe-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--pink);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.vibe-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: var(--darker);
}

.stats-display {
    max-width: 800px;
    margin: 0 auto;
}

.stat-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 110, 199, 0.3);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-block.main {
    border-color: var(--cyan);
    padding: 3rem;
}

.block-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.block-value {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-block.main .block-value {
    font-size: 4rem;
}

.block-sub {
    font-size: 1rem;
    color: var(--cyan);
    margin-top: 0.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-row .block-value {
    font-size: 2rem;
}

.block-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
}

.bonus-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bonus-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    font-size: 0.85rem;
    color: var(--cyan);
}

.badge-icon {
    color: var(--pink);
}

/* Terminal Section */
.terminal-section {
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.9) 0%, rgba(13, 2, 33, 0.9) 100%);
}

.terminal-container {
    max-width: 800px;
    margin: 0 auto;
}

.terminal-window {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--purple);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(157, 78, 221, 0.3);
    border-bottom: 1px solid var(--purple);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.terminal-title {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.terminal-body {
    padding: 1.5rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--purple);
}

.ascii-art {
    color: var(--cyan);
    font-size: 0.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--cyan);
}

.welcome-text {
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.welcome-hint {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.terminal-output {
    margin-top: 1rem;
}

.output-line {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.output-line.user {
    color: var(--cyan);
}

.output-line.user::before {
    content: '❯ ';
    color: var(--pink);
}

.output-line.system {
    color: var(--text-dim);
    padding-left: 1rem;
    border-left: 2px solid var(--purple);
    white-space: pre-wrap;
}

.terminal-input-area {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--purple);
}

.prompt {
    color: var(--pink);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.terminal-input::placeholder {
    color: var(--text-dim);
}

.quick-commands {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-commands button {
    padding: 0.5rem 1rem;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--purple);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-commands button:hover {
    background: var(--purple);
    box-shadow: 0 0 15px var(--purple);
}

/* Future Section */
.future-section {
    background: var(--darker);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--pink));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dim);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-item.done .timeline-marker {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.timeline-item.active .timeline-marker {
    border-color: var(--pink);
    color: var(--pink);
    box-shadow: 0 0 15px var(--pink);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 15px var(--pink); }
    50% { box-shadow: 0 0 30px var(--pink); }
}

.timeline-content {
    flex: 1;
    padding: 1rem 0;
}

.timeline-phase {
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin: 0.5rem 0;
}

.timeline-content p {
    color: var(--text-dim);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.9) 0%, rgba(45, 27, 78, 0.9) 100%);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-jp {
    display: block;
    font-size: 1rem;
    color: var(--pink);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-copy p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-jp {
    color: var(--pink);
    letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
