/* ===== CSS VARIABLES ===== */
:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    
    --primary: #ffdf00;
    --primary-dim: #d4b800;
    --secondary: #ffdf00;
    --accent: #ffdf00;
    --magikarp-orange: #ffdf00;
    --water-blue: #3498db;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-dim: #606070;
    
    --gradient-primary: linear-gradient(135deg, #ffdf00 0%, #ffc107 50%, #ff9800 100%);
    --gradient-accent: linear-gradient(135deg, #ffdf00 0%, #ffe84d 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,223,0,0.1) 0%, rgba(0,212,255,0.1) 100%);
    
    --glow-primary: 0 0 30px rgba(255, 223, 0, 0.3);
    --glow-accent: 0 0 30px rgba(255, 223, 0, 0.3);
    
    --font-display: 'Orbitron', monospace;
    --font-body: 'Exo 2', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 223, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 223, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 223, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 223, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.pokeball {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffdf00 50%, #fff 50%);
    position: relative;
    border: 3px solid #333;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.pokeball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #333;
    transform: translateY(-50%);
}

.pokeball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-text .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

.social-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.social-x svg {
    width: 20px;
    height: 20px;
}

.social-x:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

.cta-button {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition-medium);
}

.cta-button:hover .button-glow {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 223, 0, 0.1);
    border: 1px solid rgba(255, 223, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.tag-icon {
    color: var(--magikarp-orange);
    font-size: 0.75rem;
}

.tagline span:last-child {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--magikarp-orange);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.primary-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.primary-btn:hover svg {
    transform: translateX(4px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 223, 0, 0.05);
}

/* ===== 3D CARD ===== */
.hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.card-container {
    position: relative;
    width: 320px;
    height: 450px;
}

.card-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: grab;
}

.card-3d:active {
    cursor: grabbing;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.card-front {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.1) 35%,
        rgba(255, 255, 255, 0.3) 42%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.card-holographic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        125deg,
        rgba(255, 0, 128, 0.2) 0%,
        rgba(255, 215, 0, 0.2) 20%,
        rgba(0, 255, 128, 0.2) 40%,
        rgba(0, 128, 255, 0.2) 60%,
        rgba(128, 0, 255, 0.2) 80%,
        rgba(255, 0, 128, 0.2) 100%
    );
    background-size: 200% 200%;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 11;
    animation: holographicShift 3s ease infinite;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card-3d:hover .card-shine {
    opacity: 1;
}

.card-3d:hover .card-holographic {
    opacity: 0.6;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 223, 0, 0.4) 0%,
        rgba(255, 223, 0, 0.2) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: -1;
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.card-reflection {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 80%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255, 140, 66, 0.15) 0%,
        transparent 100%
    );
    transform: translateX(-50%) scaleY(-1);
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-dim);
    border-bottom: 2px solid var(--text-dim);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ===== SECTION STYLES ===== */
section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 223, 0, 0.1);
    border: 1px solid rgba(255, 223, 0, 0.3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MECHANISM SECTION ===== */
.mechanism-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 223, 0, 0.02) 50%, transparent 100%);
}

/* Flywheel Visual */
.flywheel-visual {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 4rem;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--bg-card);
    border: 2px solid var(--magikarp-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 10;
    box-shadow: var(--glow-accent);
}

.flywheel-icon {
    font-size: 2.5rem;
}

.flywheel-center span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--magikarp-orange);
}

.flywheel-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

.flywheel-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flywheel-segment {
    position: absolute;
    width: 130px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flywheel-segment:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatTop 4s ease-in-out infinite;
}

.flywheel-segment:nth-child(2) {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: floatRight 4s ease-in-out infinite 1s;
}

.flywheel-segment:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatBottom 4s ease-in-out infinite 2s;
}

.flywheel-segment:nth-child(4) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: floatLeft 4s ease-in-out infinite 3s;
}

@keyframes floatTop {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}

@keyframes floatBottom {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

.segment-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.segment-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.segment-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.flywheel-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 223, 0, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.flywheel-arrows::before {
    content: '→';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--magikarp-orange);
}

/* Flow Steps */
.mechanism-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.flow-step {
    flex: 0 0 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.flow-step:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 223, 0, 0.3);
}

.flow-step.highlight {
    border-color: var(--magikarp-orange);
    background: rgba(255, 223, 0, 0.05);
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 12px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.flow-step h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding-top: 4rem;
}

.connector-arrow {
    font-size: 1.5rem;
    color: var(--magikarp-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* Detail Cards */
.mechanism-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.detail-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 223, 0, 0.3);
    transform: translateY(-3px);
}

.detail-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.detail-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.detail-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== TARGET SECTION ===== */
.target-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 223, 0, 0.02) 50%, transparent 100%);
}

.target-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.target-info .section-tag {
    display: inline-block;
}

.target-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.target-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.target-description strong {
    color: var(--magikarp-orange);
}

/* Why Magikarp */
.why-magikarp {
    background: var(--bg-card);
    border: 1px solid rgba(255, 223, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.why-magikarp h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--magikarp-orange);
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.why-list .check {
    color: var(--primary);
    font-weight: bold;
}

.why-list strong {
    color: var(--text-primary);
}

/* Target Stats */
.target-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.target-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-ring {
    position: relative;
    width: 100px;
    height: 100px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.ring-fill {
    fill: none;
    stroke: url(#gradient-primary);
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.ring-fill.secondary {
    stroke: var(--magikarp-orange);
}

.ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Acquisition Tracker */
.acquisition-tracker {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tracker-header span:first-child {
    font-weight: 600;
}

.tracker-count {
    font-family: var(--font-display);
    color: var(--primary);
}

.tracker-bar {
    position: relative;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tracker-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 6px;
    position: relative;
    transition: width 1s ease;
}

.tracker-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tracker-milestones {
    display: flex;
    justify-content: space-between;
}

.milestone {
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.milestone.passed {
    color: var(--primary);
}

.milestone.active {
    color: var(--magikarp-orange);
    font-weight: 700;
}

/* Target Visual */
.target-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-card {
    perspective: 1000px;
}

.target-card-display {
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.target-card-display:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 223, 0, 0.2);
}

.target-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 223, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: -1;
}

/* Price History */
.price-history {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.price-history h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.price-chart {
    position: relative;
    height: 120px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 10%,
        rgba(255, 140, 66, 0.1) 40%,
        rgba(255, 140, 66, 0.2) 85%,
        rgba(255, 140, 66, 0.1) 100%
    );
    clip-path: polygon(0% 85%, 10% 85%, 45% 55%, 85% 25%, 100% 25%, 100% 100%, 0% 100%);
}

.chart-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--magikarp-orange);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    cursor: pointer;
}

.chart-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: rgba(255, 140, 66, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chart-point.active {
    background: var(--primary);
}

.chart-point.active::before {
    background: rgba(0, 212, 255, 0.3);
    animation: pointPulse 2s infinite;
}

@keyframes pointPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

.point-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    opacity: 0;
    transition: var(--transition-fast);
}

.chart-point:hover .point-label,
.chart-point.active .point-label {
    opacity: 1;
}

.chart-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-align: center;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 223, 0, 0.02) 50%, transparent 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.token-info-card {
    grid-column: span 2;
    display: flex;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 223, 0, 0.2);
    border-radius: 20px;
}

.token-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-icon {
    position: relative;
}

.vault-emblem {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--glow-accent);
    animation: float 4s ease-in-out infinite;
}

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

.token-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.token-details {
    flex: 1;
}

.token-details h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.token-details > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.token-stats-row {
    display: flex;
    gap: 3rem;
}

.token-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.token-stat .label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-stat .value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Fee Breakdown */
.fee-breakdown {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.fee-breakdown h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.fee-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.fee-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.fee-segment {
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fee-segment span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: #000;
}

.fee-legend {
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.acquisition {
    background: var(--gradient-accent);
}

.legend-text {
    flex: 1;
    font-size: 0.9rem;
}

.legend-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--magikarp-orange);
}

.fee-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Token Benefits */
.token-benefits {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.token-benefits h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.benefits-list strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.benefits-list p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 223, 0, 0.02) 50%, transparent 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--primary) 0%, 
        var(--magikarp-orange) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    padding-bottom: 3rem;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    border-color: var(--primary);
    background: rgba(255, 223, 0, 0.1);
}

.timeline-item.active .timeline-marker {
    border-color: var(--magikarp-orange);
    background: rgba(255, 140, 66, 0.1);
    box-shadow: var(--glow-accent);
}

.marker-inner {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.timeline-item.completed .marker-inner {
    color: var(--primary);
}

.timeline-item.active .marker-inner {
    width: 12px;
    height: 12px;
    background: var(--magikarp-orange);
    border-radius: 50%;
}

.marker-inner.pulse {
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-medium);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(255, 223, 0, 0.3);
    transform: translateX(5px);
}

.timeline-item.active .timeline-content {
    border-color: var(--magikarp-orange);
    background: rgba(255, 223, 0, 0.05);
}

.timeline-phase {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-item.active .timeline-phase {
    background: rgba(255, 140, 66, 0.1);
    color: var(--magikarp-orange);
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.timeline-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 223, 0, 0.1) 0%, transparent 70%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    animation: swim 3s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes swim {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(10px) rotate(5deg); }
    75% { transform: translateX(-10px) rotate(-5deg); }
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.primary-btn.large,
.secondary-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.cta-links a:hover {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo-icon.small {
    width: 24px;
    height: 24px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-card {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .target-content {
        grid-template-columns: 1fr;
    }
    
    .target-info .section-title {
        text-align: center;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .token-info-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .token-stats-row {
        justify-content: center;
    }
    
    .flywheel-visual {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mechanism-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-connector {
        transform: rotate(90deg);
        padding: 0;
        height: 40px;
    }
    
    .target-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .card-container {
        width: 260px;
        height: 370px;
    }
    
    .flywheel-visual {
        transform: scale(0.6);
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

