/* ==========================================================================
 * PROPERTY OF JUSTIN "KRALLHEIM" HELBIG | ALL RIGHTS RESERVED
 * --------------------------------------------------------------------------
 * Official Website: https://www.krallheim.net
 * Legal Contact: business@krallheim-network.net
 * 
 * Copyright (c) 2026 Justin "Krallheim" Helbig.
 * 
 * COPYRIGHT / RECHTSINHABER-HINWEIS:
 * Diese Website und sämtliche zugehörigen Quelldateien basieren auf der von
 * Justin "Krallheim" Helbig eigenständig entwickelten Website-Engine.
 * 
 * Jede unbefugte Vervielfältigung, Kopie, Dekompilierung, Weitergabe oder 
 * kommerzielle Nutzung des Codes ist ohne ausdrückliche 
 * schriftliche Genehmigung des Rechteinhabers strengstens untersagt.
 * ========================================================================== 
 */

:root {
    --bg-primary: #06080c;
    --bg-secondary: #0b0f17;
    --bg-card: rgba(15, 20, 31, 0.72);
    --bg-card-hover: rgba(22, 30, 46, 0.90);
    --bg-input: rgba(8, 11, 18, 0.85);

    --gold: #d4af37;
    --gold-light: #f8e8b0;
    --gold-dark: #9a7818;
    --gold-subtle: rgba(212, 175, 55, 0.12);
    --gold-gradient: linear-gradient(135deg, #f5df8a 0%, #d4af37 50%, #8c6e12 100%);
    --gold-gradient-hover: linear-gradient(135deg, #fbf0b8 0%, #e5c148 50%, #a38218 100%);
    --gold-glow: rgba(212, 175, 55, 0.30);

    --text-primary: #f8fafc;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.28);
    --border-focus: rgba(212, 175, 55, 0.65);
    --glass-border: 1px solid rgba(212, 175, 55, 0.20);

    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.50);
    --shadow-lg: 0 16px 40px -10px rgba(0, 0, 0, 0.70);
    --ambient-glow: 0 0 30px rgba(212, 175, 55, 0.25);
    --input-focus-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 50% -10%, #172133 0%, var(--bg-primary) 75%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: var(--radius-full);
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(28px);
    background: rgba(6, 8, 12, 0.82);
    border-bottom: var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 50px;
    box-shadow: var(--shadow-md);
}

.logo a {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.navigation {
    display: flex;
    gap: 32px;
}

.navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.navigation a:hover, .navigation a.active {
    color: var(--gold-light);
}

/* Layout */
.vision-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}

.hero-manifest {
    text-align: center;
    margin-bottom: 50px;
}

.hero-manifest h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    background: linear-gradient(180deg, #ffffff 15%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 16px 0;
}

.hero-subtext {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
}

.role-badge {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.manifest-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.manifest-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-inner {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
}

.sidebar-inner h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.sidebar-nav .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: var(--gold-light);
    background: var(--gold-subtle);
    border-left: 3px solid var(--gold);
}

.sidebar-cta {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    text-align: center;
}

.sidebar-cta p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Main Sections */
.manifest-section {
    margin-bottom: 55px;
}

.manifest-section h2 {
    font-size: 1.85rem;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.gold-quote {
    border-left: 4px solid var(--gold);
    background: linear-gradient(90deg, var(--gold-subtle) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 24px;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 25px 0;
}

/* Feature Pills */
.feature-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
}

/* Grids AND Cards */
.profile-stats, .vision-grid, .roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card, .category-card, .role-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.stat-card:hover, .category-card:hover, .role-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-focus);
    transform: translateY(-4px);
    box-shadow: var(--ambient-glow);
}

.stat-card {
    text-align: center;
}

.stat-card h2 {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 800;
}

.category-card h3, .role-card h4 {
    color: var(--gold-light);
    margin-bottom: 8px;
}

.role-card {
    text-align: center;
}

.role-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 20, 31, 0.9) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--ambient-glow);
}

.cta-banner {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Buttons */
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: var(--gold-gradient);
    color: #06080c;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--ambient-glow);
    background: var(--gold-gradient-hover);
}

.full-width {
    width: 100%;
}

/* Form inputs AND MODUL */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

input[type="text"], select, textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: var(--input-focus-shadow);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: var(--bg-secondary);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.site-footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    border-top: var(--border);
    margin-top: auto;
}

@media (max-width: 992px) {
    .manifest-wrapper {
        grid-template-columns: 1fr;
    }
    .manifest-sidebar {
        display: none;
    }
    .site-header {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
}

/* FEATURE BULLET CARDS STYLING */
.feature-card-bullet {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin: 0;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Custom Gold Bullet ICON */
.feature-bullets li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.65rem;
    line-height: 1.5rem;
}

.feature-bullets li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ECOSYSTEM BOX */
.ecosystem-box {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* BOX EFFECTS */
.ecosystem-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ecosystem-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 28px;
}

.ecosystem-header h3 {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-top: 8px;
}

/* BOX RASTER */
.ecosystem-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.ecosystem-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.ecosystem-item:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: var(--border-gold);
}

.item-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
}

.item-icon {
    font-size: 1.4rem;
}

.item-title h4 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin: 0;
}

/* Bullet Points Styles */
.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-bullets li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.6rem;
    line-height: 1.4rem;
}

.feature-bullets li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* MOBILE NAVIGATION & MENU */

/* BUTTON DESKTOP DISABLE */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

@media (max-width: 992px) {
    .manifest-wrapper {
        grid-template-columns: 1fr;
    }
    .manifest-sidebar {
        display: none;
    }

    /* HEADER LAYOUT */
    .site-header {
        position: sticky;
        top: 0;
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row !important;
    }

    /* BUTTON MOBIL MODE */
    .menu-toggle {
        display: block;
    }

    /* NAVIGATION DROPDOWN */
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 8, 12, 0.96);
        backdrop-filter: blur(20px);
        border-bottom: var(--glass-border);
        box-shadow: var(--shadow-lg);
        
        flex-direction: column !important;
        align-items: center;
        gap: 16px !important;
        padding: 24px 20px;

        /* CLAPPING */
        display: none;
    }

    /* MENU OPEN */
    .navigation.is-active {
        display: flex;
    }

    .logo a {
        font-size: 1.5rem;
    }
}

/* Navigation CTA-Button TEXT */
.navigation a.primary-button,
.navigation .primary-button {
    color: #06080c !important;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: none !important;
}

.navigation a.primary-button:hover,
.navigation .primary-button:hover {
    color: #06080c !important;
}

/* FIX WHITE BALKEN*/

/* WHITE DISABLE*/
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
}

@media (max-width: 992px) {
    /* CENTRAL WHITE DISABLE */
    .site-header {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* AUSGEKLAPPT NAVIGATION*/
    .navigation {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* CONTAINER MOBIL */
    .vision-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden;
    }
}

/* STYLE MAIL DESIGN */
.modal-card input[type="email"],
form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    background-color: #0b0e14 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    color: #e2e8f0 !important;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* HOVER FOCUS*/
.modal-card input[type="email"]:focus,
form input[type="email"]:focus {
    border-color: #d4af37 !important;
    background-color: #111622 !important;
}

/* PLACE HOLDING TEXT*/
.modal-card input[type="email"]::placeholder,
form input[type="email"]::placeholder {
    color: #4a5568 !important;
    opacity: 1;
}
}