/* ══════════════════════════════════════════════════════════
   OPHYR INVESTMENT INTELLIGENCE (INVESTOREN) - Light Luxury Stylesheet
   Premium Styling für den exklusiven Investoren-Bereich (Clean Luxury Light)
   ══════════════════════════════════════════════════════════ */

.investoren-page {
    background-color: #FAF9F5;
    /* Warmes, weiches Elfenbein-Creme */
    color: #2D2D2A;
    /* Edles, softes Anthrazit-Dunkelgrau für perfekte Lesbarkeit */
    font-family: var(--font-primary), 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* -- Chapter Navigation (Sticky Investor Deck Menu) -- */
.deck-navigation {
    position: sticky;
    top: var(--header-height, 70px);
    background: rgba(250, 249, 245, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(196, 161, 105, 0.18);
    z-index: 90;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
}

.deck-navigation::-webkit-scrollbar {
    display: none;
    /* Safari & Chrome */
}

.deck-nav-list {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    gap: 1.8rem;
    list-style: none;
    height: 3.5rem;
    align-items: center;
}

.deck-nav-link {
    color: rgba(45, 45, 42, 0.55);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.4s ease, border-color 0.4s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.deck-nav-link:hover,
.deck-nav-link.is-active {
    color: #A6854E;
    /* Warmes, mattes Gold */
    border-bottom-color: #A6854E;
}

/* -- Section Layouts -- */
.inv-section {
    width: 100%;
    max-width: 100%;
    padding: clamp(5.5rem, 10vw, 8.5rem) var(--container-padding);
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(to right, transparent, rgba(196, 161, 105, 0.18) 15%, rgba(196, 161, 105, 0.18) 85%, transparent);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.inv-section--light-gray {
    background-color: #F4F2EC;
    /* Sehr sanfter, warmer Pastell-Grauton */
}

.inv-section--gradient {
    background: radial-gradient(circle at center, rgba(196, 161, 105, 0.04) 0%, rgba(250, 249, 245, 0) 75%);
}

/* -- Thematic Light Background Colors for Editorial Rhythms -- */
.bg-ivory {
    background-color: #FAF9F5;
}
.bg-sand {
    background-color: #F3F1EA;
}
.bg-champagne {
    background-color: #FAF6ED;
}
.bg-alabaster {
    background-color: #F5F3EC;
}
.bg-silk {
    background-color: #F7F6F0;
}
.bg-platinum {
    background-color: #F0EFF4;
    background-image: radial-gradient(circle at 80% 20%, rgba(180, 170, 210, 0.04) 0%, transparent 60%);
}
.bg-taupe {
    background-color: #EFECE3;
}

/* -- Section Titles -- */
.inv-title-group {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto clamp(3.5rem, 6vw, 5rem);
}

.inv-chapter-num {
    font-family: var(--font-accent);
    font-weight: 200;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    background: linear-gradient(135deg, rgba(166, 133, 78, 0.38) 0%, rgba(166, 133, 78, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

.inv-subtitle {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: clamp(0.72rem, 2vw, 0.8rem);
    color: #A6854E;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.inv-title {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    color: #1C1C1A;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.inv-lead {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: rgba(45, 45, 42, 0.8);
    font-weight: 300;
}

/* -- Grid layouts for specific chapters -- */
.inv-grid-2col {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: flex-start;
}

@media (min-width: 48rem) {
    .inv-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inv-grid-3col {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.8rem, 3.5vw, 3rem);
    align-items: flex-start;
}

@media (min-width: 62rem) {
    .inv-grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}


.inv-content-block {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(45, 45, 42, 0.85);
}

.inv-content-block h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #1C1C1A;
    letter-spacing: 0.08em;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(196, 161, 105, 0.25);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.inv-content-block p {
    margin-bottom: 1.5rem;
}

.inv-content-block p strong {
    color: #8A6F27;
    font-weight: 500;
}

/* -- Founding Team Grid -- */
.team-grid {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.8rem, 4vw, 2.5rem);
}

@media (min-width: 48rem) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(196, 161, 105, 0.16);
    border-top: 3px solid #A6854E;
    border-radius: var(--border-radius);
    padding: clamp(2rem, 5vw, 2.8rem);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s ease,
        background-color 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(166, 133, 78, 0.03);
}

.team-card:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
    border-color: rgba(196, 161, 105, 0.45);
    box-shadow: 0 20px 40px rgba(166, 133, 78, 0.06);
}

.team-card-header {
    margin-bottom: 1.25rem;
}

.team-role {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.72rem;
    color: #A6854E;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
}

.team-name {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 400;
    color: #1C1C1A;
    letter-spacing: 0.05em;
    margin: 0;
}

.team-age {
    font-size: 0.85rem;
    color: rgba(45, 45, 42, 0.5);
    margin-left: 0.4rem;
    font-family: var(--font-primary);
    font-weight: 300;
}

.team-bio {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(45, 45, 42, 0.8);
    font-weight: 300;
    margin: 0 0 1.5rem 0;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(196, 161, 105, 0.08);
    border: 1px solid rgba(196, 161, 105, 0.22);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.68rem;
    font-family: var(--font-accent);
    letter-spacing: 0.08em;
    color: #8A6F27;
    margin-top: auto;
    align-self: flex-start;
    font-weight: 500;
}

/* -- Key Metrics / Highlights Grid -- */
.metrics-grid {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 3vw, 2rem);
}

@media (min-width: 48rem) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(196, 161, 105, 0.12);
    border-radius: var(--border-radius);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    box-shadow: 0 2px 12px rgba(166, 133, 78, 0.02);
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 161, 105, 0.35);
    background: #FFFFFF;
}

.metric-val {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #8A6F27;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.metric-lbl {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    color: rgba(45, 45, 42, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

/* -- Investment Case & Table breakdowns -- */
@keyframes luxuryShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.inv-funding-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(196, 161, 105, 0.22);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 55rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(166, 133, 78, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s ease;
}

.inv-funding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(166, 133, 78, 0.07);
    border-color: rgba(196, 161, 105, 0.4);
}

.inv-funding-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.4) 70%, transparent);
    background-size: 200% 100%;
    animation: luxuryShimmer 12s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.inv-funding-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.inv-funding-amount {
    font-family: var(--font-accent);
    font-weight: 200;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #8A6F27;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.inv-funding-equity {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 400;
    color: #1C1C1A;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.funding-alloc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 48rem) {
    .funding-alloc-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alloc-item {
    background: #FAF9F5;
    border: 1px solid rgba(196, 161, 105, 0.15);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.alloc-item:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 161, 105, 0.35);
}

.alloc-percent {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 300;
    color: #8A6F27;
    margin-bottom: 0.25rem;
}

.alloc-title {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: #1C1C1A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alloc-desc {
    font-size: 0.8rem;
    color: rgba(45, 45, 42, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* -- Interactive Accordion Q&A -- */
.qa-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.qa-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(196, 161, 105, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s ease;
    box-shadow: 0 2px 10px rgba(166, 133, 78, 0.01);
}

.qa-item:hover {
    background-color: #FFFFFF;
    border-color: rgba(196, 161, 105, 0.35);
}

.qa-item.is-active {
    background-color: #FFFFFF;
    border-color: rgba(196, 161, 105, 0.5);
    box-shadow: 0 10px 25px rgba(166, 133, 78, 0.05);
}

.qa-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.qa-category {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    color: #A6854E;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

.qa-question {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #1C1C1A;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    padding-right: 1.5rem;
}

.qa-icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(196, 161, 105, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s ease;
    flex-shrink: 0;
}

.qa-icon {
    width: 0.65rem;
    height: 0.65rem;
    stroke: #A6854E;
    stroke-width: 2.5;
    fill: none;
}

.qa-item.is-active .qa-icon-wrapper {
    transform: rotate(45deg);
    border-color: #8A6F27;
    background: rgba(196, 161, 105, 0.08);
}

.qa-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qa-body {
    padding: 0 clamp(1.2rem, 3vw, 1.8rem) clamp(1.5rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 1.8rem);
    border-top: 1px solid rgba(196, 161, 105, 0.1);
    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 2vw, 0.92rem);
    line-height: 1.8;
    color: rgba(45, 45, 42, 0.8);
    font-weight: 300;
}

.qa-body p {
    margin: 0 0 1.25rem 0;
}

.qa-body p:last-child {
    margin-bottom: 0;
}

.qa-body ul,
.qa-body ol {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
}

.qa-body li {
    margin-bottom: 0.5rem;
}

.qa-body li strong {
    color: #8A6F27;
}

.qa-body .scientific-cite {
    font-size: 0.75rem;
    color: rgba(45, 45, 42, 0.5);
    background: rgba(196, 161, 105, 0.05);
    border-left: 2px solid #A6854E;
    padding: 0.6rem 1rem;
    margin: 1.25rem 0 0 0;
    border-radius: 0 4px 4px 0;
}

.qa-body .scientific-cite a {
    color: #8A6F27;
    text-decoration: none;
}

.qa-body .scientific-cite a:hover {
    text-decoration: underline;
}

/* -- Specific Highlight Box inside answers -- */
.qa-box {
    background: rgba(196, 161, 105, 0.04);
    border: 1px solid rgba(196, 161, 105, 0.2);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    margin: 1.25rem 0;
    color: rgba(45, 45, 42, 0.85);
}

.qa-box-title {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: #8A6F27;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* -- Skip-Link & Layout Integrity -- */
.skip-link {
    position: absolute;
    top: -2.5rem;
    left: 0;
    background: #A6854E;
    color: #FFFFFF;
    padding: 0.5rem;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* -- Smooth scroll offset -- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height, 70px) + 3.6rem);
}

/* -- Redesign the charts and table for premium light mode -- */
.insight-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(196, 161, 105, 0.16);
    border-radius: var(--border-radius);
    padding: clamp(1.8rem, 4vw, 2.5rem);
    box-shadow: 0 4px 20px rgba(166, 133, 78, 0.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s ease,
                border-color 0.5s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
    border-color: rgba(196, 161, 105, 0.45);
    box-shadow: 0 20px 40px rgba(166, 133, 78, 0.06);
}

.insight-card h3 {
    color: #1C1C1A !important;
}

.chart-stats .stat-box {
    border-color: rgba(196, 161, 105, 0.15) !important;
}

.chart-stats .stat-number {
    color: #8A6F27 !important;
}

.chart-stats .stat-label {
    color: rgba(45, 45, 42, 0.6) !important;
}

.chart-narrative {
    color: rgba(45, 45, 42, 0.8) !important;
}

.premium-price-table th {
    background-color: rgba(196, 161, 105, 0.06) !important;
    color: #1C1C1A !important;
    border-bottom: 2px solid rgba(196, 161, 105, 0.25) !important;
}

.premium-price-table td {
    border-bottom: 1px solid rgba(196, 161, 105, 0.12) !important;
    color: rgba(45, 45, 42, 0.85) !important;
}

.premium-price-table tr:hover {
    background-color: rgba(196, 161, 105, 0.03) !important;
}

.ophyr-row {
    background-color: rgba(196, 161, 105, 0.06) !important;
    border: 1px solid rgba(196, 161, 105, 0.4) !important;
}

.badge-nein {
    background-color: rgba(0, 0, 0, 0.04) !important;
    color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.badge-ja {
    background-color: rgba(196, 161, 105, 0.08) !important;
    color: #8A6F27 !important;
    border: 1px solid rgba(196, 161, 105, 0.25) !important;
}

.card-inner {
    border: none !important;
    padding: 0 !important;
}

/* -- Roadmap & Expansion Dashboard -- */
.roadmap-widget {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(196, 161, 105, 0.18);
    border-radius: var(--border-radius);
    padding: clamp(1.8rem, 4vw, 3rem);
    margin: 3rem auto 0;
    max-width: 75rem;
    box-shadow: 0 8px 30px rgba(166, 133, 78, 0.03);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.roadmap-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(196, 161, 105, 0.12);
    padding-bottom: 1.25rem;
}

.roadmap-tab-btn {
    background: none;
    border: 1px solid rgba(196, 161, 105, 0.15);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(45, 45, 42, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
}

.roadmap-tab-btn:hover {
    color: #A6854E;
    border-color: #A6854E;
    background: rgba(196, 161, 105, 0.03);
}

.roadmap-tab-btn.is-active {
    color: #FFFFFF;
    background: #A6854E;
    border-color: #A6854E;
    box-shadow: 0 4px 15px rgba(166, 133, 78, 0.2);
}

.roadmap-display {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 62rem) {
    .roadmap-display {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.roadmap-map-wrapper {
    background: #F4F2EC;
    border: 1px solid rgba(196, 161, 105, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.roadmap-map-svg {
    width: 100%;
    height: auto;
    max-height: 350px;
}

/* -- Premium Map Phase Transition Layers -- */
.map-layer {
    opacity: 0;
    transform: scale(0.97);
    transform-origin: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-layer.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Minimalist Country Styling */
.country-outline {
    fill: #E5E3DC;
    stroke: #FFFFFF;
    stroke-width: 0.75;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.country-highlight-green {
    stroke: #FFFFFF;
    stroke-width: 0.75;
    animation: greenShimmer 4s ease-in-out infinite alternate;
}

.country-highlight-soft {
    fill-opacity: 0.25;
    stroke: #FFFFFF;
    stroke-width: 0.75;
}

@keyframes greenShimmer {
    0% { opacity: 0.85; }
    100% { opacity: 1; }
}

.map-node {
    fill: rgba(196, 161, 105, 0.3);
    stroke: rgba(196, 161, 105, 0.5);
    stroke-width: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-node.is-pulse {
    animation: mapPulse 2s infinite;
}

.map-node.is-active {
    fill: #A6854E;
    stroke: #FFFFFF;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(166, 133, 78, 0.8));
    r: 10 !important;
}

/* Override for the unified multi-phase layers to preserve design sizes */
.map-layer .map-node.is-active {
    r: inherit !important;
}

.map-node--sub {
    fill: rgba(196, 161, 105, 0.6);
    stroke: #FFFFFF;
    stroke-width: 1;
}

.map-route {
    stroke: rgba(196, 161, 105, 0.15);
    stroke-dasharray: 4, 4;
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
}

.map-route.is-active {
    stroke: #A6854E;
    stroke-width: 1.5;
    stroke-dasharray: none;
    filter: drop-shadow(0 0 2px rgba(166, 133, 78, 0.3));
}

@keyframes mapPulse {
    0% {
        r: 5;
        opacity: 0.5;
    }

    50% {
        r: 10;
        opacity: 0.9;
    }

    100% {
        r: 5;
        opacity: 0.5;
    }
}

.roadmap-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roadmap-panel {
    display: none;
    animation: fadeInRoadmap 0.6s ease forwards;
}

.roadmap-panel.is-active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeInRoadmap {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    border-bottom: 1px solid rgba(196, 161, 105, 0.15);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.panel-date {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: #A6854E;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: block;
}

.panel-title {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    color: #1C1C1A;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

.panel-metric-box {
    background: #FAF9F5;
    border: 1px solid rgba(196, 161, 105, 0.12);
    border-radius: 6px;
    padding: 0.8rem;
    text-align: center;
}

.panel-metric-num {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: #8A6F27;
    font-weight: bold;
}

.panel-metric-lbl {
    font-family: var(--font-primary);
    font-size: 0.68rem;
    color: rgba(45, 45, 42, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.panel-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.panel-list li {
    position: relative;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: rgba(45, 45, 42, 0.8);
    line-height: 1.6;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
}

.panel-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 2px;
    color: #A6854E;
    font-size: 0.6rem;
}

/* -- Logo Semiotics Section -- */
.logo-semiotics-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.logo-display-container {
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-display-img {
    max-width: 15rem;
    height: auto;
    margin-bottom: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-display-img:hover {
    transform: scale(1.03);
}

.logo-claim-display {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #c4a169;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.logo-claim-sub {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.semiotics-list {
    margin-top: 1.5rem;
}

.semiotics-item {
    margin-bottom: 2rem;
}

.semiotics-item h4 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: #1C1C1A;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.semiotics-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(45, 45, 42, 0.85);
}

/* -- Ritual Marketing Block -- */
.ritual-marketing-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 246, 240, 0.2) 100%);
    border: 1px solid rgba(196, 161, 105, 0.15);
    border-radius: 12px;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.ritual-marketing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ritual-marketing-header h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #1C1C1A;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ritual-marketing-header p {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(45, 45, 42, 0.7);
    max-width: 45rem;
    margin: 0 auto;
    line-height: 1.7;
}

.ritual-marketing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 48rem) {
    .ritual-marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ritual-marketing-item {
    font-family: var(--font-primary);
}

.ritual-marketing-item h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: #8A6F27;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
    border-bottom: 1px solid rgba(196, 161, 105, 0.2);
    padding-bottom: 0.4rem;
}

.ritual-marketing-item p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(45, 45, 42, 0.85);
    margin: 0;
}

/* -- Section 4.6 Name Analysis -- */
.name-analysis-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.name-display-container {
    background: none;
    border: none;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 20rem;
}

.name-display-text {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #1C1C1A; /* Edles Dunkelanthrazit */
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 300; /* Wesentlich edler und leichter */
    margin-bottom: 1.25rem;
    text-indent: 0.35em;
}

.name-display-origin {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: #A6854E; /* Edles Mattgold statt Weiß */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

/* -- Verknappung Sektion -- */
.verknappung-container {
    max-width: 55rem;
    margin: 0 auto;
}

/* -- Section 4.7 Ambassador Synergy -- */
.ambassador-synergy-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.ambassador-display-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 20rem;
    overflow: hidden;
}

.ambassador-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 24rem;
}

/* -- Section 4.8 Business Development -- */
.biz-dev-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.portfolio-display-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 20rem;
}

.portfolio-display-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 13.8rem;
    margin: 0 auto;
}

.portfolio-display-logo {
    width: 100%;
    height: auto;
    margin-bottom: 0.6rem;
    display: block;
}

.portfolio-display-liquid {
    font-family: var(--font-accent);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.35rem;
    padding-left: 2.82rem;
    line-height: 1.2;
    white-space: nowrap;
}

.portfolio-display-liquid:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   70% BLACK DIGIT ENHANCEMENTS (Clean Luxury Understatement)
   Setzt alle markanten Ziffern, Kapitelnummern, Metriken und Tabellenwerte
   auf ein edles, kontrastreiches 70% Schwarz (rgba(0, 0, 0, 0.7)),
   um die Lesbarkeit zu perfektionieren.
   ══════════════════════════════════════════════════════════ */

/* 1. Kapitelnummern (z.B. 01, 02, 4.5, 4.6 ...) */
.inv-chapter-num {
    color: rgba(0, 0, 0, 0.7) !important;
    font-weight: 300;
}

/* 2. Große Zahlen, Statistiken und Finanzwerte */
.stat-number,
.metric-val,
.panel-metric-num,
.alloc-percent,
.inv-funding-amount,
.team-age {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* 3. Ziffern und Preise in Tabellen */
.year-cell,
.revenue-cell,
.luxury-cell,
.price-cell,
.volume-cell {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* Spezifische Korrektur für die markierte Ophyr-Zeile */
.ophyr-row .price-cell,
.ophyr-row .volume-cell {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* 4. SVG Diagramm-Ziffern und Beschriftungen (CAGR, USD-Werte, Jahreszahlen) */
svg text.svg-val,
svg text.svg-text,
svg text.svg-val[fill],
svg text.svg-text[fill] {
    fill: rgba(0, 0, 0, 0.7) !important;
    color: rgba(0, 0, 0, 0.7) !important;
}

/* 5. Kapitel-Navigation (Standardzustand der Kapitelnummern) */
.deck-nav-link {
    color: rgba(0, 0, 0, 0.7) !important;
}

.deck-nav-link:hover,
.deck-nav-link.is-active {
    color: #A6854E !important; /* Goldene Akzentuierung für aktive Kapitel beibehalten */
    border-bottom-color: #A6854E !important;
}

/* ── Investor Gate Modal Override (Light Luxury Theme) ── */
.investor-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.investor-gate-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.investor-gate-modal.is-active .gate-modal-container {
    transform: translateY(0) scale(1);
}

.investor-gate-modal .gate-modal-backdrop {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.investor-gate-modal .gate-modal-container {
    background: #FAF9F5; /* Elfenbein Light Background */
    border: 1px solid rgba(196, 161, 105, 0.3);
    box-shadow: 0 20px 50px rgba(166, 133, 78, 0.15);
    color: #2D2D2A;
}

.investor-gate-modal .gate-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
}

.investor-gate-modal .gate-modal-close::before,
.investor-gate-modal .gate-modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 1px;
    background-color: #2D2D2A;
}

.investor-gate-modal .gate-modal-close::before {
    transform: rotate(45deg);
}

.investor-gate-modal .gate-modal-close::after {
    transform: rotate(-45deg);
}

.investor-gate-modal .gate-modal-title {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1C1C1A;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.investor-gate-modal .gate-modal-text {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(45, 45, 42, 0.8);
    margin-bottom: 2rem;
}

.investor-gate-modal .gate-digit {
    background: rgba(196, 161, 105, 0.05);
    border: 1px solid rgba(196, 161, 105, 0.3);
    color: #8A6F27;
}

.investor-gate-modal .gate-digit:focus {
    border-color: #8A6F27;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(138, 111, 39, 0.15);
}

.investor-gate-modal .gate-digit.is-filled {
    background: #FFFFFF;
    border-color: #8A6F27;
    color: #8A6F27;
}

.investor-gate-modal .gate-digit.is-error {
    border-color: #c0392b;
    background: rgba(192, 57, 43, 0.05);
    color: #c0392b;
}

.investor-gate-modal .gate-submit {
    background: linear-gradient(135deg, #d4bc91 0%, #b89742 50%, #a6854e 100%);
    border: 1px solid #d4bc91;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(166, 133, 78, 0.2);
}

.investor-gate-modal .gate-submit:hover {
    box-shadow: 0 6px 20px rgba(166, 133, 78, 0.35);
}

.investor-gate-modal .gate-modal-divider {
    border-top: 1px solid rgba(196, 161, 105, 0.15);
}

.investor-gate-modal .gate-modal-hint {
    color: rgba(45, 45, 42, 0.6);
}

.inv-intro {
    background-color: #FAF9F5;
    border-bottom: 1px solid rgba(196, 161, 105, 0.15);
    text-align: center;
    padding: clamp(3rem, 6vw, 4rem) 2rem;
    max-width: 52rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.inv-intro-title {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 0.1em;
    color: #A6854E;
    margin: 0 0 1.75rem 0;
    text-transform: uppercase;
}

.inv-intro-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1.75rem 0;
}

.inv-intro-btn-wrapper {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.inv-intro-btn-wrapper .btn-primary {
    margin: 0;
}

.inv-locked-section {
    display: none !important;
}

.btn-primary.is-unlocked {
    background: linear-gradient(135deg, #d4bc91 0%, #b89742 50%, #a6854e 100%) !important;
    border-color: #d4bc91 !important;
    box-shadow: 0 0 20px rgba(212, 188, 145, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    animation: goldPulse 2s infinite ease-in-out;
    cursor: pointer;
}

.btn-primary.is-unlocked:hover {
    box-shadow: 0 0 30px rgba(212, 188, 145, 0.6), 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-2px);
}

.gate-error-message {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.05em;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.gate-error-message.is-visible {
    display: block;
    opacity: 1;
}

.gate-input-wrapper.is-shake {
    animation: gateShake 0.4s ease;
}