/* ============================================
   BLACKBOOK.FINANCE — Landing Page
   Ein blindes Huhn findet die meisten Körner
   ============================================ */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-section-alt: #0f0f0f;
    --red: #e63232;
    --red-glow: #ff4444;
    --gold: #f5a623;
    --gold-dim: #c48a1a;
    --white: #f0f0f0;
    --gray: #888;
    --gray-light: #aaa;
    --green: #22c55e;
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.btn-connect {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-connect:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: radial-gradient(ellipse at center bottom, rgba(230,50,50,0.08) 0%, transparent 60%);
}

.hero-content {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-logo-container {
    flex-shrink: 0;
}

.hero-logo {
    width: 280px;
    height: auto;
    /* no shadow - clean look */
}

.hero-text {
    flex: 1;
}

.hero-statement {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

.hero-subtext {
    margin-top: 24px;
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.6;
}

.hero-brand {
    margin-top: 16px;
    font-size: 20px;
    color: var(--white);
}

.hero-brand strong {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
}

/* ---- TICKER ---- */
.ticker {
    background: var(--bg-card);
    border-top: 1px solid rgba(245,166,35,0.2);
    border-bottom: 1px solid rgba(245,166,35,0.2);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-label {
    color: var(--gray);
    font-size: 14px;
}

.ticker-value {
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

.ticker-sep {
    color: rgba(255,255,255,0.1);
    font-size: 20px;
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-section-alt); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---- CARDS ---- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(245,166,35,0.3);
    transform: translateY(-4px);
}

.card-icon { font-size: 48px; margin-bottom: 16px; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { color: var(--gray-light); font-size: 15px; line-height: 1.7; }

/* ---- CHICKEN BANNER ---- */
.section-chicken {
    margin-top: 64px;
    text-align: center;
}

.chicken-banner {
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.chicken-quote {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: clamp(15px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ---- STEPS ---- */
.steps {
    max-width: 700px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step { display: flex; gap: 24px; align-items: flex-start; }

.step-number {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
    font-family: var(--font-display);
}

.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-content p { color: var(--gray-light); font-size: 15px; line-height: 1.7; }

/* ---- HONESTY ---- */
.honesty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}

.honesty-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
}

.honesty-item h3 { font-size: 20px; margin-bottom: 16px; }
.honesty-item ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.honesty-item li { font-size: 15px; color: var(--gray-light); padding-left: 8px; }
.honesty-bad { border-color: rgba(230,50,50,0.2); }
.honesty-bad li { opacity: 0.8; }
.honesty-good { border-color: rgba(34,197,94,0.2); }

.honesty-quote {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(245,166,35,0.15);
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

.honesty-quote p { font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.honesty-quote span { color: var(--gray); font-size: 14px; font-style: italic; }

/* ---- PERFORMANCE ---- */
.perf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.perf-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.perf-period { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.perf-value { font-size: 36px; font-weight: 900; font-family: var(--font-display); }
.perf-value.positive { color: var(--green); }
.perf-value.negative { color: var(--red); }
.perf-detail { color: var(--gray); font-size: 14px; margin-top: 8px; }

/* ---- CHART ---- */
.chart-container {
    margin-top: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
}

.chart-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-light);
    margin-bottom: 20px;
}

#perfChart {
    width: 100%;
    height: 250px;
}

.perf-disclaimer {
    text-align: center; color: var(--gray); font-size: 13px;
    margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ---- AI BOX ---- */
.ai-box {
    background: var(--bg-card);
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 20px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ai-box h2 { font-size: 32px; margin-bottom: 24px; font-family: var(--font-display); }
.ai-box p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--gray-light); }
.ai-box em { color: var(--gray); }
.ai-box strong { color: var(--white); }

/* ---- CTA ---- */
.section-cta {
    text-align: center;
    padding: 120px 24px;
    background: radial-gradient(ellipse at center, rgba(230,50,50,0.06) 0%, transparent 60%);
}

.section-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-cta p { color: var(--gray-light); font-size: 16px; margin-bottom: 32px; }
.cta-small { color: var(--gray) !important; font-size: 13px !important; margin-top: 16px !important; }

.btn-primary {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.btn-primary:hover {
    background: var(--red-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(230,50,50,0.4);
}

.btn-large { font-size: 20px; padding: 20px 48px; }

/* ---- FOOTER ---- */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-center p { color: var(--gray); font-size: 14px; }
.footer-small { font-size: 12px !important; margin-top: 4px; }
.footer-right { display: flex; gap: 20px; }
.footer-link { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }

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

.footer-bottom p { color: var(--gray); font-size: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-logo { width: 200px; }

    .hero-statement { font-size: clamp(28px, 8vw, 42px); }

    .honesty-grid { grid-template-columns: 1fr; }

    .ticker-inner { flex-direction: column; gap: 12px; }
    .ticker-sep { display: none; }

    .footer-inner { flex-direction: column; text-align: center; align-items: center; }

    .step { flex-direction: column; align-items: center; text-align: center; }

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

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

.fade-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; }

.card, .step, .perf-card, .honesty-item {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card.visible, .step.visible, .perf-card.visible, .honesty-item.visible {
    opacity: 1; transform: translateY(0);
}
