:root {
    --bg-color: #fcfaf2;
    /* Beige Background */
    --text-color: #1a1a1c;
    /* Dark Text */
    --primary-color: #FF9900;
    /* Bitcoin Orange */
    --secondary-color: #000000;
    --accent-color: #FFB84D;
    --card-bg: #ffffff;
    --border-color: #e6e4dc;
    --shadow-color: rgba(60, 60, 50, 0.05);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #000;
    /* Dark headings */
    font-weight: 600;
}

.gradient-text {
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: rgba(252, 250, 242, 0.95);
    /* Beige glass */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #000;
}

.logo span {
    color: #000;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(255, 153, 0, 0.2);
}

.btn-primary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: #000;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Founder Profiles */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.founder-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    /* Circle looks cleaner on white */
    margin-bottom: 15px;
    background-color: #eee;
    margin-left: auto;
    margin-right: auto;
}

.founder-name {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
}

.role {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-link {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}


/* Mission Layout */
.mission-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-image-wrapper {
    flex: 1;
    position: relative;
}

.mission-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
}

.mission-image:hover {
    transform: scale(1.02);
}

.mission-content {
    flex: 1;
}


.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8eb;
    /* Light orange bg */
    color: var(--primary-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, #fffcf5 0%, #fff 100%);
    border: 1px solid var(--border-color);
    padding: 80px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-color);
}

.cta-box h2 {
    margin-bottom: 20px;
    font-size: 3rem;
    color: #000;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #888;
    background: #fcfcfc;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .mission-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}

/* --- Ergänzungen für Hugo-Version (fehlende Klassen aus HTML) --- */
.center-text {
    text-align: center;
}

.btn-large {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 10px;
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: rgba(252, 250, 242, 0.98);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.35) 0, rgba(0, 0, 0, 0) 40%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0) 45%),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.20) 0, rgba(0, 0, 0, 0) 45%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.gradient-bg {
    position: fixed;
    inset: -20%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 153, 0, 0.18), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 184, 77, 0.15), transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255, 153, 0, 0.10), transparent 50%);
    filter: blur(20px);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
}

.glowing-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 153, 0, 0.55), rgba(255, 153, 0, 0.08) 55%, transparent 70%);
    box-shadow:
        0 0 0 1px rgba(255, 153, 0, 0.15),
        0 30px 80px rgba(255, 153, 0, 0.20);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 {
    transition-delay: 120ms;
}

.scroll-reveal.delay-2 {
    transition-delay: 220ms;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}

.lang-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-link.active {
    border-color: var(--primary-color);
    color: #fff;
    background: var(--primary-color);
}