/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLEN
   ========================================================================== */
:root {
    color-scheme: light only;
    --bs-body-color: #26262b;
    --bs-body-bg: #ffffff;
    --bs-body-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text: #26262b;
    --muted: #4f5a45;
    --green: #5f7f22;
    --green-deep: #3f5f10;
    --green-bright: #7ea51f;
    --green-soft: #e0edc6;
    --leaf: #6f9720;
    --mint: #a8c575;
    --sun: #f4a000;
    --surface: rgba(255, 255, 255, 0.94);
    --line: rgba(95, 127, 34, 0.24);
    --shadow: 0 24px 70px rgba(63, 95, 16, 0.2);
    --page-gutter: clamp(1rem, 4vw, 2rem);
    --content-width: 1120px;
    --section-space: clamp(2.25rem, 5vw, 4rem);
}


/* ==========================================================================
   2. BASICS & GLOBALS
   ========================================================================== */
html {
    color-scheme: light only;
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
    color: var(--text);
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath d='M-150 170 C 130 80 340 260 620 165 S 1040 80 1570 190' fill='none' stroke='%2394a964' stroke-width='7' stroke-linecap='round' opacity='.26'/%3E%3Cpath d='M-180 285 C 120 170 360 380 660 265 S 1090 165 1600 305' fill='none' stroke='%2394a964' stroke-width='3.5' stroke-linecap='round' opacity='.22'/%3E%3Cpath d='M-130 440 C 160 330 390 520 705 410 S 1130 320 1580 455' fill='none' stroke='%2394a964' stroke-width='5' stroke-linecap='round' opacity='.18'/%3E%3Cpath d='M-170 610 C 110 505 385 705 700 585 S 1125 500 1585 625' fill='none' stroke='%2394a964' stroke-width='3' stroke-linecap='round' opacity='.2'/%3E%3Cpath d='M-120 760 C 190 640 430 835 760 720 S 1160 645 1580 780' fill='none' stroke='%2394a964' stroke-width='6' stroke-linecap='round' opacity='.16'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: var(--bs-body-font-family);
}

a, .btn-link {
    color: var(--green);
}

h1, h2, h3, p {
    margin-top: 0;
}

    h1:focus {
        outline: none;
    }


/* Startup logo loader */
.startup-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(232, 242, 212, 0.94) 42%, rgba(255, 249, 232, 0.96));
    animation: startup-loader-fade 4s ease-in-out forwards;
}

.startup-loader img {
    width: min(78vw, 520px);
    height: auto;
    filter: drop-shadow(0 26px 45px rgba(63, 95, 16, 0.24));
    animation: startup-logo-pulse 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes startup-loader-fade {
    0%, 68% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes startup-logo-pulse {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    24% {
        opacity: 1;
        transform: scale(1);
    }

    68% {
        opacity: 1;
        transform: scale(1.04);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .startup-loader,
    .startup-loader img {
        animation-duration: 0.01ms;
    }
}

/* ==========================================================================
   3. BUTTONS & FORMS
   ========================================================================== */
.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.35rem;
}

.btn-primary-modern {
    color: #fff;
    background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
    border: 0;
    box-shadow: 0 18px 35px rgba(63, 95, 16, 0.3);
}

    .btn-primary-modern:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 22px 42px rgba(63, 95, 16, 0.36);
    }

.btn-secondary-modern {
    color: var(--green-deep);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
}

    .btn-secondary-modern:hover {
        color: var(--green-deep);
        background: #fff;
        transform: translateY(-2px);
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(101, 211, 126, 0.65);
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Validation */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #94a964;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    color: white;
    padding: 1rem;
}

    .blazor-error-boundary::after {
        content: 'Ein Fehler ist aufgetreten.';
    }

/* ==========================================================================
   4. LAYOUT STRUCTURE & HERO SECTIONS
   ========================================================================== */
.hero-section,
.section,
.page-hero {
    width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: calc(100vh - 94px);
}

.page-hero {
    padding: clamp(1rem, 4vw, 6rem) 0 clamp(1rem, 1vw, 3rem);
}

    .page-hero.compact {
        min-height: auto;
    }

.eyebrow {
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.25rem, 5.2vw, 4.35rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
    margin-bottom: 1.35rem;
}

.hero-text,
.page-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.partner-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 19rem);
    padding: 1.15rem 1.45rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 44px rgba(148, 169, 100, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(148, 169, 100, 0.2);
}

.partner-logo-card img {
    display: block;
    width: min(100%, 13.5rem);
    height: auto;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .trust-row span {
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        color: var(--green-deep);
        font-size: 0.92rem;
        font-weight: 700;
        padding: 0.65rem 0.95rem;
    }

/* Hero Cards & Logos */
.hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 2.2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(224, 237, 198, 0.9)), radial-gradient(circle at 16% 12%, rgba(244, 160, 0, 0.38), transparent 16rem), radial-gradient(circle at 92% 8%, rgba(95, 127, 34, 0.36), transparent 14rem);
    box-shadow: 0 30px 80px rgba(63, 95, 16, 0.24);
    padding: clamp(1.15rem, 3vw, 1.55rem);
}

    .hero-card::before,
    .hero-card::after {
        position: absolute;
        content: '';
        border-radius: 999px;
        pointer-events: none;
    }

    .hero-card::before {
        inset: auto -4rem -5rem auto;
        width: 14rem;
        height: 14rem;
        background: rgba(148, 169, 100, 0.28);
        filter: blur(8px);
    }

    .hero-card::after {
        inset: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.58);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

.logo-showcase {
    isolation: isolate;
}

    .logo-showcase > * {
        position: relative;
        z-index: 1;
    }

.showcase-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(148, 169, 100, 0.18);
    border-radius: 999px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(148, 169, 100, 0.08);
    padding: 0.48rem 0.72rem;
}

    .status-pill span {
        width: 0.58rem;
        height: 0.58rem;
        border-radius: 50%;
        background: var(--green-bright);
        box-shadow: 0 0 0 0.35rem rgba(148, 169, 100, 0.16);
    }

.showcase-note {
    text-align: right;
}

.logo-orb {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
    overflow: hidden;
    background-color: white;
}

    .logo-orb::before {
        position: absolute;
        inset: 12%;
        content: '';
        border-radius: 50%;
        filter: blur(0.5px);
        opacity: 0.82;
    }

    .logo-orb img {
        position: relative;
        width: min(110%, 450px);
        height: auto;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 20px 35px rgba(148, 169, 100, 0.2));
    }

/* Metrics */
.metric-card,
.metric-grid > div {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(148, 169, 100, 0.1);
    padding: 1rem;
}

.main-metric {
    display: grid;
    gap: 0.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 223, 0.82)), radial-gradient(circle at 92% 0%, rgba(255, 178, 13, 0.24), transparent 8rem);
}

.metric-card span,
.metric-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.metric-card strong,
.metric-grid strong {
    color: var(--green);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.metric-card small,
.metric-grid small {
    color: var(--muted);
    font-weight: 700;
}

.metric-card small {
    display: block;
    margin-top: 0.25rem;
}

.metric-card strong {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.metric-grid strong {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

    .metric-grid > div {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

        .metric-grid > div:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 48px rgba(148, 169, 100, 0.13);
        }

/* ==========================================================================
   5. SECTIONS & CARDS (BENEFITS, STEPS, CTA)
   ========================================================================== */
.section {
    padding-block: var(--section-space);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

    .section-heading h2,
    .cta-section h2,
    .info-panel h2 {
        font-size: clamp(1.7rem, 3vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.08;
    }

.benefit-grid,
.steps-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-card,
.step-card,
.info-panel,
.cta-section {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 1.6rem;
    background: var(--surface);
    box-shadow: 0 16px 44px rgba(148, 169, 100, 0.08);
}

.benefit-card,
.step-card {
    padding: 1.35rem;
}

.icon-pill {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--green-soft), rgba(255, 178, 13, 0.14));
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.benefit-card h3,
.step-card h2 {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.benefit-card p,
.step-card p,
.info-panel p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.step-card p + p {
    margin-top: 0.85rem;
}

.step-card a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.step-card a:hover,
.step-card a:focus-visible {
    color: var(--green-dark);
    text-decoration: underline;
}

.steps-heading {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: var(--green);
    background: linear-gradient(135deg, var(--sun), #ffe58a);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section,
.info-panel {
    display: grid;
    grid-template-columns: auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.how-it-works-prep {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.check-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--muted-readable);
    font-weight: 700;
    line-height: 1.55;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sun), #ffe58a);
    color: var(--green-deep);
    font-size: 0.85rem;
    font-weight: 900;
}

/* ==========================================================================
   6. LAUNCH STATUS & COUNTDOWN
   ========================================================================== */
.launch-status-section {
    /*padding-block: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);*/
}

.launch-status-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 2rem;
    background: radial-gradient(circle at 8% 12%, rgba(255, 178, 13, 0.25), transparent 16rem), radial-gradient(circle at 92% 18%, rgba(148, 169, 100, 0.22), transparent 18rem), linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 223, 0.84));
    box-shadow: var(--shadow);
    padding: clamp(1.4rem, 4vw, 2.35rem);
}

    .launch-status-card::before {
        position: absolute;
        inset: 1rem;
        content: '';
        border: 1px dashed rgba(148, 169, 100, 0.13);
        border-radius: 1.45rem;
        pointer-events: none;
    }

.launch-status-copy,
.countdown-panel {
    position: relative;
    z-index: 1;
}

    .launch-status-copy h2 {
        color: var(--green-deep);
        font-size: clamp(1.7rem, 3vw, 2.65rem);
        font-weight: 900;
        letter-spacing: -0.045em;
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .launch-status-copy p {
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .launch-status-copy strong {
        color: var(--green-deep);
    }

.countdown-panel {
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 42px rgba(148, 169, 100, 0.11);
    padding: clamp(1rem, 3vw, 1.35rem);
}

.countdown-status {
    justify-self: start;
    font-weight: 900;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.countdown-item {
    display: grid;
    place-items: center;
    min-height: 6.1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 223, 0.8)), radial-gradient(circle at 50% 0%, rgba(255, 178, 13, 0.22), transparent 5rem);
    text-align: center;
}

    .countdown-item strong {
        color: var(--green-deep);
        font-size: clamp(1.65rem, 4vw, 2.75rem);
        font-weight: 900;
        letter-spacing: -0.055em;
        line-height: 1;
    }

    .countdown-item span {
        color: var(--muted);
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

/* ==========================================================================
   7. CONNECTION DIAGRAM
   ========================================================================== */
.connection-diagram-section {
    padding-top: clamp(1rem, 3vw, 2rem);
}

.connection-diagram {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 2rem;
    background: radial-gradient(circle at 50% 0%, rgba(255, 178, 13, 0.2), transparent 18rem), radial-gradient(circle at 12% 38%, rgba(148, 169, 100, 0.16), transparent 18rem), linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 223, 0.86));
    box-shadow: var(--shadow);
    padding: clamp(1.25rem, 4vw, 2.75rem);
}

    .connection-diagram::before {
        position: absolute;
        inset: 1rem;
        content: '';
        border: 1px dashed rgba(148, 169, 100, 0.12);
        border-radius: 1.45rem;
        pointer-events: none;
    }

.diagram-node {
    position: relative;
    z-index: 1;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(148, 169, 100, 0.1);
    padding: clamp(1.2rem, 3vw, 1.65rem);
}

.meter-node,
.result-node {
    width: min(100%, 760px);
    margin-inline: auto;
    text-align: center;
}

.meter-node {
    background: linear-gradient(135deg, rgba(148, 169, 100, 0.95), rgba(148, 169, 100, 0.9)), radial-gradient(circle at 20% 12%, rgba(255, 178, 13, 0.35), transparent 9rem);
    color: #fff;
}

.diagram-kicker {
    display: block;
    color: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    opacity: 0.76;
    text-transform: uppercase;
}

.meter-node h2,
.result-node p {
    margin: 0.2rem 0 0;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.diagram-line {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(82%, 720px);
    height: clamp(3.5rem, 7vw, 5.4rem);
    margin-inline: auto;
}

    .diagram-line::before,
    .diagram-line::after,
    .diagram-line span::before,
    .diagram-line span::after {
        position: absolute;
        content: '';
        background: rgba(148, 169, 100, 0.32);
    }

.split-line::before,
.merge-line::before {
    left: 50%;
    width: 2px;
    height: 42%;
    transform: translateX(-50%);
}

.split-line::before {
    top: 0;
}

.merge-line::before {
    bottom: 0;
}

.split-line span::before,
.merge-line span::before {
    top: 42%;
    width: calc(50% + 2px);
    height: 2px;
}

.split-line span:first-child::before,
.merge-line span:first-child::before {
    right: 50%;
    transform: rotate(-18deg);
    transform-origin: right center;
}

.split-line span:last-child::before,
.merge-line span:last-child::before {
    left: 50%;
    transform: rotate(18deg);
    transform-origin: left center;
}

.merge-line span:first-child::before {
    transform: rotate(18deg);
}

.merge-line span:last-child::before {
    transform: rotate(-18deg);
}

.diagram-line::after {
    left: 50%;
    bottom: 0.55rem;
    width: 0.72rem;
    height: 0.72rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}

.split-line::after {
    display: none;
}

.diagram-branches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.6rem);
}

.diagram-number {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    color: var(--green);
    background: linear-gradient(135deg, var(--sun), #ffe58a);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.diagram-node h3 {
    color: var(--green);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.diagram-subtitle {
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 1rem;
}

.diagram-node ul {
    display: grid;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.diagram-node li {
    position: relative;
    color: var(--text);
    font-weight: 700;
    line-height: 1.45;
    padding-left: 1.75rem;
}

    .diagram-node li::before {
        position: absolute;
        left: 0;
        top: 0.1rem;
        display: grid;
        place-items: center;
        width: 1.15rem;
        height: 1.15rem;
        content: '✓';
        border-radius: 999px;
        color: #fff;
        background: var(--green-bright);
        font-size: 0.7rem;
        font-weight: 900;
    }

.community-node {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(237, 248, 223, 0.92)), radial-gradient(circle at 90% 12%, rgba(255, 178, 13, 0.22), transparent 8rem);
}

.result-node {
    color: var(--green-deep);
    background: linear-gradient(135deg, #fff8df, rgba(237, 248, 223, 0.96));
}

    .result-node .diagram-kicker {
        color: var(--green-bright);
        opacity: 1;
    }

/* ==========================================================================
   8. PRICING & COMPARISON TABLES (DESKTOP)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.6rem;
    background: radial-gradient(circle at 90% 0%, rgba(255, 178, 13, 0.18), transparent 10rem), rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 44px rgba(148, 169, 100, 0.08);
    padding: clamp(1.35rem, 3vw, 1.8rem);
}

    .pricing-card::after {
        position: absolute;
        inset: auto -2rem -3rem auto;
        width: 8rem;
        height: 8rem;
        content: '';
        border-radius: 999px;
        background: rgba(148, 169, 100, 0.12);
    }

    .pricing-card.featured {
        color: #fff;
        background: radial-gradient(circle at 92% 8%, rgba(255, 178, 13, 0.32), transparent 9rem), linear-gradient(135deg, var(--green-deep), var(--green-bright));
    }

    .pricing-card.savings-card {
        background: radial-gradient(circle at 92% 8%, rgba(148, 169, 100, 0.24), transparent 10rem), linear-gradient(145deg, #ffffff, var(--green-soft));
    }

.pricing-label {
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    opacity: 0.82;
    padding: 0.45rem 0.7rem;
    text-transform: uppercase;
}

.pricing-card strong {
    display: block;
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.86);
}

.price-metric-grid {
    margin-top: 1rem;
}

.price-highlight-section {
    padding-top: clamp(1rem, 4vw, 3rem);
}

.price-info-panel,
.imprint-panel {
    margin-top: 0;
}

/* Originales Desktop-Design für Tabellen-Komponenten */
.comparison-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .comparison-header h2 {
        margin-bottom: .5rem;
    }

    .comparison-header p {
        color: #64748b;
    }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison-table thead th {
        background: #0f766e;
        color: white;
        padding: 1rem;
        text-align: left;
    }

    .comparison-table td {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .comparison-table tbody tr:hover {
        background: #f8fafc;
    }

    .comparison-table tfoot td {
        font-weight: 700;
        font-size: 1.1rem;
        background: #f0fdf4;
    }

.positive {
    color: #16a34a;
    font-weight: 700;
}

.negative {
    color: #dc2626;
}

.neutral {
    color: #2563eb;
}

.saving-banner {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    font-size: 1.2rem;
}

    .saving-banner strong {
        display: block;
        font-size: 2rem;
        margin: .3rem 0;
    }

    .saving-banner span {
        display: block;
        opacity: .9;
    }

/* ==========================================================================
   9. COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(2, 22, 13, 0.2);
    backdrop-filter: blur(2px);
}

.cookie-consent,
.cookie-preferences {
    position: fixed;
    z-index: 1050;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: radial-gradient(circle at 94% 0%, rgba(255, 178, 13, 0.2), transparent 12rem), linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 223, 0.95));
    box-shadow: 0 28px 90px rgba(2, 31, 18, 0.28);
    color: var(--text);
}

.cookie-consent {
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 3vw, 1.8rem);
    align-items: end;
    width: min(920px, calc(100% - 2rem));
    border-radius: 1.6rem;
    padding: clamp(1rem, 3vw, 1.5rem);
}

    .cookie-consent h2,
    .cookie-preferences h2,
    .cookie-option h3 {
        margin: 0;
    }

    .cookie-consent p,
    .cookie-preferences p,
    .cookie-option p {
        color: var(--muted);
        line-height: 1.6;
    }

        .cookie-consent p:last-child,
        .cookie-preferences p:last-child,
        .cookie-option p:last-child {
            margin-bottom: 0;
        }

.cookie-consent__link,
.cookie-consent__settings {
    color: var(--green);
    font-weight: 800;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cookie-preferences {
    top: 50%;
    left: 50%;
    width: min(680px, calc(100% - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 1.8rem;
    padding: clamp(1.15rem, 3vw, 1.8rem);
    transform: translate(-50%, -50%);
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-preferences__close {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    margin-top: 0.85rem;
    padding: 1rem;
}

    .cookie-option input {
        width: 1.35rem;
        height: 1.35rem;
        accent-color: var(--green-bright);
        flex: 0 0 auto;
    }

.cookie-option__state {
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.45rem 0.7rem;
}

.cookie-preferences__actions {
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.cookie-settings-trigger {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 50;
    border: 1px solid rgba(148, 169, 100, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 34px rgba(148, 169, 100, 0.14);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.6rem 0.85rem;
    backdrop-filter: blur(14px);
}

/* Privacy */
.privacy-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.privacy-content {
    display: grid;
    gap: 0.75rem;
}

    .privacy-content h3 {
        color: var(--green-deep);
        font-size: 1.05rem;
        font-weight: 900;
        margin: 0.5rem 0 0;
    }

/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */

/* Standard-Hinweis im Desktop-Modus unsichtbar */
.rotate-device-hint {
    display: none;
}

/* --- Bis max. 900px Breite --- */
@media (max-width: 900px) {
    .hero-section,
    .section-heading,
    .benefit-grid,
    .steps-section,
    .cta-section,
    .info-panel,
    .launch-status-card,
    .pricing-grid,
    .privacy-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .cta-section {
        align-items: start;
    }

    /* Connection Diagram Anpassung mobil */
    .diagram-branches {
        grid-template-columns: 1fr;
    }

    .diagram-line {
        display: block;
        width: 2px;
        height: 3rem;
        background: rgba(148, 169, 100, 0.32);
    }

        .diagram-line::before,
        .diagram-line span::before {
            display: none;
        }

    .split-line::after,
    .merge-line::after {
        display: block;
        bottom: -0.05rem;
    }

    .launch-status-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: clamp(1.2rem, 4vw, 1.75rem);
    }
}

/* --- MOBILGERÄTE IM HOCHFORMAT (Portrait) --- */
@media (max-width: 768px) and (orientation: portrait) {
    /* Versteckt die eigentliche Tabelle und die Ersparnis-Banner komplett */
    .table-responsive,
    .comparison-table,
    .saving-banners-container {
        display: none !important;
    }

    /* Blendet das Hinweisschild stilvoll ein */
    .rotate-device-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 3rem 1rem;
        box-sizing: border-box;
    }

    .rotate-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 2.25rem 1.5rem;
        text-align: center;
        max-width: 340px;
        box-shadow: var(--shadow);
    }

        .rotate-card h3 {
            color: var(--green-deep);
            font-weight: 800;
            font-size: 1.25rem;
            margin: 1rem 0 0.5rem;
        }

        .rotate-card p {
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

    /* Das animierte Smartphone-Icon */
    .phone-icon-wrapper {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 4.5rem;
        height: 4.5rem;
        background: var(--green-soft);
        color: var(--green-deep);
        border-radius: 50%;
    }

    .phone-svg {
        width: 2.5rem;
        height: 2.5rem;
        animation: rotatePhone 2.2s ease-in-out infinite;
    }

    /* Die Drehanimation des Handys um exakt 90 Grad */
    @keyframes rotatePhone {
        0%, 15% {
            transform: rotate(0deg);
        }

        40%, 65% {
            transform: rotate(-90deg);
        }

        90%, 100% {
            transform: rotate(0deg);
        }
    }

    /* Cookie Banner Anpassung mobil im Portrait-Modus */
    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        grid-template-columns: 1fr;
        width: auto;
        padding: 1.25rem;
        gap: 1.2rem;
    }

    .cookie-consent__actions {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

        .cookie-consent__actions > * {
            width: 100%;
            text-align: center;
            padding: 0.8rem 1.2rem;
        }

    .cookie-preferences {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-height: 85vh;
        border-radius: 1.8rem 1.8rem 0 0;
        border-bottom: none;
        border-left: none;
        border-right: none;
        padding: 1.25rem;
        box-shadow: 0 -10px 40px rgba(2, 31, 18, 0.2);
    }

    .cookie-option {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

        .cookie-option h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .cookie-option p {
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .cookie-option input[type="checkbox"] {
            width: 1.6rem;
            height: 1.6rem;
            margin: 0;
            cursor: pointer;
        }

    .cookie-preferences__actions {
        margin-top: 1.5rem;
        flex-direction: column;
    }
}

/* --- MOBILGERÄTE IM QUERFORMAT (Landscape) --- */
@media (max-width: 900px) and (orientation: landscape) {
    /* Blendet den Hinweis aus */
    .rotate-device-hint {
        display: none !important;
    }

    /* Aktiviert die Tabelle in ihrer echten, wunderschönen Standardstruktur */
    .table-responsive,
    .comparison-table {
        display: table !important;
        width: 100% !important;
    }

        .comparison-table th,
        .comparison-table td {
            white-space: nowrap !important;
            padding: 0.75rem 0.85rem !important;
            font-size: 0.88rem; /* Minimal kleiner im Querformat, damit alles nebeneinander passt */
        }

    .comparison-header h2 {
        font-size: 1.35rem;
    }

    .saving-banners-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .saving-banner {
        padding: 0.85rem;
    }

        .saving-banner strong {
            font-size: 1.4rem;
        }
}

/* --- Bis max. 560px Breite (Kleine Smartphones) --- */
@media (max-width: 560px) {
    .logo-orb {
        min-height: 280px;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-section .btn {
        width: 100%;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .countdown-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.4rem;
    }

    .countdown-item {
        min-height: 4.8rem;
        border-radius: 0.85rem;
        padding: 0.4rem 0.2rem;
    }

        .countdown-item strong {
            font-size: clamp(1.35rem, 6vw, 1.85rem);
        }

        .countdown-item span {
            font-size: 0.65rem;
            letter-spacing: 0.04em;
        }

    .countdown-panel {
        padding: 0.85rem;
    }
}

/* ==========================================================================
   11. EXTRA ADDONS (SLIDER & WHATSAPP-FLOAT)
   ========================================================================== */
.banner-slider {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slider 18s infinite;
}

    .slides img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

@keyframes slider {
    0%, 30% {
        transform: translateX(0);
    }

    33%, 63% {
        transform: translateX(-33.333%);
    }

    66%, 96% {
        transform: translateX(-66.666%);
    }

    100% {
        transform: translateX(0);
    }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
    }

/* ==========================================================================
   12. READABILITY & MODERN POLISH
   ========================================================================== */
:root {
    color-scheme: light only;
    --bs-body-color: #26262b;
    --bs-body-bg: #ffffff;
    --text-strong: #242329;
    --muted-readable: #555f4d;
    --surface-strong: rgba(255, 255, 255, 0.94);
    --card-border: rgba(101, 124, 58, 0.16);
    --focus-ring: rgba(111, 130, 71, 0.34);
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: var(--text-strong);
    background: rgba(255, 178, 13, 0.36);
}

a {
    text-underline-offset: 0.18em;
}

.hero-content h1,
.page-hero h1,
.section-heading h2,
.cta-section h2,
.info-panel h2,
.launch-status-copy h2 {
    color: var(--text-strong);
    text-wrap: balance;
}

.hero-text,
.page-hero p,
.benefit-card p,
.step-card p,
.info-panel p,
.launch-status-copy p,
.pricing-card p,
.cookie-consent p,
.cookie-preferences p,
.cookie-option p {
    color: var(--muted-readable);
}

.hero-section {
    padding-block: clamp(1rem, 3vw, 2.25rem) clamp(2.25rem, 5vw, 3.75rem);
}

.hero-content {
    max-width: 720px;
}

.hero-content h1,
.page-hero h1 {
    letter-spacing: -0.045em;
}

.hero-text,
.page-hero p {
    font-size: clamp(1.06rem, 1.45vw, 1.22rem);
    line-height: 1.75;
}

.btn,
.nav-link,
.metric-card,
.metric-grid > div,
.benefit-card,
.step-card,
.pricing-card,
.info-panel,
.cta-section,
.launch-status-card,
.countdown-panel,
.cookie-consent,
.cookie-preferences {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
.cookie-preferences__close:focus-visible,
.cookie-settings-trigger:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.launch-status-card,
.hero-card,
.benefit-card,
.step-card,
.pricing-card,
.info-panel,
.cta-section,
.countdown-panel,
.metric-card,
.metric-grid > div {
    border-color: var(--card-border);
    background-color: var(--surface-strong);
}

.benefit-card:hover,
.step-card:hover,
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(93, 112, 53, 0.13);
}

.benefit-card h3,
.step-card h2,
.diagram-node h3,
.metric-card strong,
.metric-grid strong,
.launch-status-copy strong {
    color: var(--green-deep);
}

.logo-orb {
    border-radius: 1.45rem;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(240, 244, 232, 0.74));
}

.logo-orb img {
    max-width: 100%;
}

.countdown-item {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.countdown-item strong {
    color: var(--text-strong);
}

@media (max-width: 900px) {
    .hero-section {
        gap: 1.5rem;
        padding-top: 1rem;
    }

    .section-heading {
        gap: 0.7rem;
    }
}

@media (max-width: 560px) {
    .hero-section,
    .section,
    .page-hero {
        width: min(100% - 1.25rem, var(--content-width));
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.05;
    }

    .btn {
        justify-content: center;
        min-height: 3.15rem;
    }
}

/* ==========================================================================
   11. MEMBER AREA
   ========================================================================== */
.member-hero h1 {
    max-width: 900px;
}

.member-section {
    padding-block: clamp(1.5rem, 4vw, 2.75rem);
}

.member-login-grid,
.member-module-grid {
    display: grid;
    gap: 1rem;
}

.member-login-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-card,
.member-dashboard {
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.6rem;
    background: radial-gradient(circle at 92% 8%, rgba(244, 160, 0, 0.14), transparent 10rem), rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 44px rgba(148, 169, 100, 0.1);
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.login-card,
.module-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.login-card h2,
.module-card h3,
.member-dashboard h2 {
    color: var(--green-deep);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.login-card p,
.module-card p,
.member-heading p,
.member-dashboard p,
.dashboard-item span {
    color: var(--muted);
    line-height: 1.6;
}

.login-card form {
    display: grid;
    gap: 0.7rem;
    margin-top: auto;
}

.login-card .btn {
    justify-self: start;
    margin-top: 0.35rem;
}

.admin-card {
    background: radial-gradient(circle at 8% 10%, rgba(95, 127, 34, 0.18), transparent 10rem), rgba(255, 255, 255, 0.9);
}

.member-alert {
    border: 1px solid var(--line);
    border-radius: 1rem;
    color: var(--green-deep);
    background: rgba(224, 237, 198, 0.72);
    font-weight: 800;
    padding: 0.85rem 1rem;
}

.member-heading {
    align-items: start;
}

.module-card .check-list {
    margin-top: auto;
}

.member-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(1rem, 4vw, 2rem);
    align-items: start;
}

.dashboard-list {
    display: grid;
    gap: 0.75rem;
}

.dashboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    padding: 0.9rem 1rem;
}

.dashboard-item strong {
    color: var(--green-deep);
}

@media (max-width: 1100px) {
    .member-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .member-login-grid,
    .member-module-grid,
    .member-dashboard {
        grid-template-columns: 1fr;
    }

    .dashboard-item {
        align-items: flex-start;
        flex-direction: column;
    }
}
