:root {
    --bg: #07120e;
    --bg-soft: #0b1a14;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.09);

    --text: #f5f7f6;
    --muted: #9caca5;
    --line: rgba(255, 255, 255, 0.1);

    --green: #9bc53d;
    --green-bright: #b8ef57;
    --green-deep: #1aad72;

    --paypal-blue: #0070e0;
    --paypal-dark: #003087;

    --red: #ff6b6b;
    --yellow: #f2cf61;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;

    --shadow-soft:
        0 20px 60px rgba(0, 0, 0, 0.28);

    --shadow-strong:
        0 35px 100px rgba(0, 0, 0, 0.42);

    --max-width: 1440px;
}

/* ---------------------------------------------------------
   Reset
--------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;

    scroll-behavior: smooth;
    overflow-x: clip;

    background: var(--bg);
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    min-height: 100vh;

    margin: 0;
    overflow-x: clip;

    color: var(--text);
    background: var(--bg);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "Segoe UI",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

svg {
    width: 1em;
    height: 1em;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------------------------------------------------------
   Globaler Hintergrund
--------------------------------------------------------- */

.site-shell,
main,
.hero,
.section,
.section--showcase,
#termin,
#finansije,
#arhiv,
.footer {
    background: transparent;
}

/* ---------------------------------------------------------
   Layout
--------------------------------------------------------- */

.site-shell {
    position: relative;

    width: min(var(--max-width), 100%);
    max-width: 100%;

    margin: 0 auto;
    overflow-x: clip;

    padding:
        max(18px, env(safe-area-inset-top))
        max(18px, env(safe-area-inset-right))
        max(28px, env(safe-area-inset-bottom))
        max(18px, env(safe-area-inset-left));
}

/* ---------------------------------------------------------
   Topbar
--------------------------------------------------------- */

.topbar {
    position: sticky;
    top: 14px;
    z-index: 30;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;

    min-height: 72px;
    padding: 10px 16px;

    background: rgba(7, 19, 15, 0.88);
    border: 1px solid var(--line);
    border-radius: 22px;

    box-shadow: var(--shadow-soft);

    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.brand__logo {
    width: 50px;
    height: 50px;

    flex: 0 0 auto;
    object-fit: contain;
}

.brand__text {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.brand__text strong {
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.74rem;
}

.topnav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.topnav a {
    padding: 10px 14px;

    color: var(--muted);
    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--muted);

    font-size: 0.8rem;
    font-weight: 700;
}

.system-status__dot {
    width: 9px;
    height: 9px;

    background: var(--green-bright);
    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(184, 239, 87, 0.7);
}

/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 800;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #07110d;
    background: var(--green-bright);

    box-shadow:
        0 10px 30px rgba(184, 239, 87, 0.16);
}

.button--primary:hover {
    box-shadow:
        0 16px 40px rgba(184, 239, 87, 0.25);
}

.button--secondary {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.06);

    border-color: var(--line);
}

.button--paypal {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--paypal-blue),
            var(--paypal-dark)
        );

    border-color:
        rgba(255, 255, 255, 0.14);

    box-shadow:
        0 12px 34px rgba(0, 48, 135, 0.3);
}

.button--paypal:hover {
    box-shadow:
        0 18px 44px rgba(0, 112, 224, 0.36);
}

.button--paypal svg {
    width: 19px;
    height: 19px;
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */

.hero {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, 0.92fr);

    align-items: center;
    gap: clamp(50px, 8vw, 130px);

    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 110px);

    padding:
        clamp(90px, 11vw, 170px)
        3vw
        120px;

    isolation: isolate;
}

/*
 * Sämtliche großflächigen Hero-Hintergründe deaktiviert.
 */
.hero__background,
.hero__background::before,
.hero__background::after,
.hero__grid,
.hero__beam {
    display: none;
}

.hero__content,
.hero__visual {
    position: relative;
    z-index: 2;

    min-width: 0;
    max-width: 100%;
}

.hero__government-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    max-width: 100%;

    margin-bottom: 22px;
    padding: 9px 13px;

    color: var(--green-bright);

    background:
        rgba(184, 239, 87, 0.08);

    border:
        1px solid rgba(184, 239, 87, 0.18);

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.hero__government-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    background: var(--green-bright);
    border-radius: 50%;

    box-shadow:
        0 0 8px var(--green-bright),
        0 0 20px rgba(184, 239, 87, 0.7);

    animation:
        statusPulse 2.2s ease-in-out infinite;
}

.hero__title {
    max-width: 820px;
    margin: 0;

    font-size:
        clamp(3.4rem, 7vw, 7.5rem);

    line-height: 0.98;
    letter-spacing: -0.068em;
}

.hero__title span {
    display: block;
}

.hero__title-accent {
    position: relative;

    color: var(--green-bright);

    text-shadow:
        0 0 38px rgba(184, 239, 87, 0.16);
}

.hero__title-accent::after {
    content: "";

    display: block;

    width: min(280px, 48%);
    height: 3px;

    margin-top: 18px;

    background:
        linear-gradient(
            90deg,
            var(--green-bright),
            transparent
        );

    border-radius: 999px;
}

.hero__description {
    max-width: 700px;
    margin: 30px 0 0;

    color: var(--muted);

    font-size:
        clamp(1rem, 1.6vw, 1.22rem);

    line-height: 1.65;
}

.hero__facts {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    max-width: 760px;
    margin-top: 34px;
}

.hero-fact {
    display: grid;
    gap: 7px;

    min-width: 0;
    padding: 15px 16px;

    background:
        var(--surface);

    border: 1px solid var(--line);
    border-radius: 16px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-fact span {
    color: var(--muted);

    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-fact strong {
    font-size: 0.92rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-system {
    position: relative;

    display: grid;
    place-items: center;

    width: min(38vw, 540px);
    max-width: 100%;

    aspect-ratio: 1;
}

.hero-logo-system__halo {
    position: absolute;
    inset: 18%;

    background:
        rgba(184, 239, 87, 0.08);

    border-radius: 50%;
    filter: blur(34px);

    animation:
        haloPulse 4.5s ease-in-out infinite;
}

.hero-logo-system__logo {
    position: relative;
    z-index: 5;

    width: 72%;
    aspect-ratio: 1;

    animation:
        logoFloat 5.5s ease-in-out infinite,
        logoRotate 28s linear infinite;
}

.hero-logo-system__logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 30px 45px rgba(0, 0, 0, 0.55)
        )
        drop-shadow(
            0 0 24px rgba(184, 239, 87, 0.08)
        );
}

.hero-logo-system__orbit {
    position: absolute;

    border:
        1px solid rgba(184, 239, 87, 0.16);

    border-radius: 50%;
}

.hero-logo-system__orbit--outer {
    inset: 2%;

    animation:
        orbitRotate 24s linear infinite;
}

.hero-logo-system__orbit--inner {
    inset: 12%;

    border-color:
        rgba(24, 165, 107, 0.22);

    animation:
        orbitRotateReverse 17s linear infinite;
}

.hero-logo-system__orbit::before,
.hero-logo-system__orbit::after {
    content: "";

    position: absolute;
    inset: 11%;

    border:
        1px dashed rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.hero-logo-system__orbit::after {
    inset: 27%;

    border-style: solid;
    border-color:
        rgba(255, 255, 255, 0.045);
}

.orbit-node {
    position: absolute;

    width: 10px;
    height: 10px;

    background: var(--green-bright);

    border:
        2px solid rgba(255, 255, 255, 0.75);

    border-radius: 50%;

    box-shadow:
        0 0 10px var(--green-bright),
        0 0 22px rgba(184, 239, 87, 0.7);
}

.orbit-node--one {
    top: 12%;
    left: 21%;
}

.orbit-node--two {
    right: 5%;
    bottom: 37%;
}

.orbit-node--three {
    left: 3%;
    bottom: 25%;
}

.hero-logo-system__badge {
    position: absolute;
    z-index: 8;

    display: grid;
    gap: 4px;

    min-width: 128px;
    padding: 13px 15px;

    background:
        rgba(13, 30, 23, 0.9);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 16px;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-logo-system__badge span {
    color: var(--muted);

    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.hero-logo-system__badge strong {
    color: var(--green-bright);
    font-size: 0.85rem;
}

.hero-logo-system__badge--top {
    top: 12%;
    right: -2%;

    animation:
        badgeFloat 5s ease-in-out infinite;
}

.hero-logo-system__badge--bottom {
    bottom: 13%;
    left: 0;

    animation:
        badgeFloat 5s ease-in-out infinite -2.5s;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 3vw;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--muted);

    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.hero__scroll span {
    width: 1px;
    height: 34px;

    background:
        linear-gradient(
            to bottom,
            var(--green-bright),
            transparent
        );

    animation:
        scrollPulse 2s ease-in-out infinite;
}

/* ---------------------------------------------------------
   Sections
--------------------------------------------------------- */

.section {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding:
        clamp(80px, 10vw, 140px)
        3vw;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 34px;
}

.section-header > div:first-child {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 14px;

    color: var(--green-deep);

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-header h2 {
    margin: 0;

    font-size:
        clamp(2.4rem, 5vw, 4.7rem);

    line-height: 1;
    letter-spacing: -0.05em;
}

.section-header p:not(.eyebrow) {
    max-width: 680px;
    margin: 18px 0 0;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.6;
}

.date-pill,
.live-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex: 0 0 auto;

    padding: 11px 14px;

    color: var(--green-bright);

    background:
        var(--surface);

    border: 1px solid var(--line);
    border-radius: 999px;

    font-size: 0.82rem;
    font-weight: 800;
}

.live-chip span {
    width: 8px;
    height: 8px;

    background: var(--green-bright);
    border-radius: 50%;

    box-shadow:
        0 0 14px rgba(184, 239, 87, 0.65);
}

/* ---------------------------------------------------------
   Finance actions / PayPal
--------------------------------------------------------- */

.finance-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.paypal-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 11px 14px;

    color: #ffffff;

    background:
        rgba(0, 72, 160, 0.22);

    border:
        1px solid rgba(0, 112, 224, 0.36);

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0, 48, 135, 0.18);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.paypal-quick-link:hover {
    transform: translateY(-2px);

    border-color:
        rgba(0, 112, 224, 0.7);

    box-shadow:
        0 16px 38px rgba(0, 112, 224, 0.25);
}

.paypal-quick-link__icon {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    background:
        var(--paypal-blue);

    border-radius: 12px;

    font-size: 1rem;
    font-weight: 900;
}

.paypal-quick-link__text {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.paypal-quick-link__text strong {
    font-size: 0.84rem;
}

.paypal-quick-link__text small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.68rem;
}

.paypal-quick-link svg {
    width: 18px;
    height: 18px;

    margin-left: 4px;
    flex: 0 0 auto;
}

/* ---------------------------------------------------------
   Event showcase
--------------------------------------------------------- */

.event-showcase {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(260px, 0.55fr);

    gap: 18px;

    width: 100%;
    max-width: 100%;
}

.event-showcase__ambient {
    display: none;
}

.event-showcase__image-button {
    position: relative;

    min-width: 0;
    padding: 0;
    overflow: hidden;

    background: transparent;
    border: 0;
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-strong);

    cursor: zoom-in;
}

.event-showcase__image {
    width: 100%;
    height: 100%;

    aspect-ratio: 1;
    object-fit: cover;

    transition:
        transform 280ms ease;
}

.event-showcase__image-button:hover
.event-showcase__image {
    transform: scale(1.015);
}

.event-showcase__zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 14px;

    color: var(--text);

    background:
        rgba(6, 14, 11, 0.84);

    border: 1px solid var(--line);
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 800;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.event-showcase__panel {
    display: grid;
    align-content: start;
    gap: 1px;

    min-width: 0;
    padding: 18px;

    background:
        var(--surface);

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.event-showcase__panel-label {
    margin-bottom: 12px;

    color: var(--green-deep);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.event-showcase__panel-item {
    display: grid;
    gap: 7px;

    min-width: 0;
    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}

.event-showcase__panel-item:last-child {
    border-bottom: 0;
}

.event-showcase__panel-item span {
    color: var(--muted);
    font-size: 0.76rem;
}

.event-showcase__panel-item strong {
    font-size: 1.03rem;
}

/* ---------------------------------------------------------
   Stats
--------------------------------------------------------- */

.stats-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
    max-width: 100%;
}

.stat-card {
    position: relative;

    display: grid;
    align-content: space-between;

    min-width: 0;
    min-height: 220px;

    padding: 20px;
    overflow: hidden;

    background:
        var(--surface);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
}

.stat-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(184, 239, 87, 0.26);
}

.stat-card--hero {
    grid-column: span 2;

    color: #07110d;
    background: var(--green-bright);
}

.stat-card--reserved {
    background:
        rgba(242, 207, 97, 0.1);
}

.stat-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card__icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    color: var(--green-bright);

    background:
        rgba(255, 255, 255, 0.06);

    border: 1px solid var(--line);
    border-radius: 14px;
}

.stat-card--hero .stat-card__icon {
    color: #07110d;

    background:
        rgba(255, 255, 255, 0.3);

    border-color:
        rgba(7, 17, 13, 0.1);
}

.stat-card__status {
    color: var(--muted);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-card--hero .stat-card__status {
    color:
        rgba(7, 17, 13, 0.55);
}

.stat-card__content {
    display: grid;
    gap: 9px;

    min-width: 0;
    margin-top: 34px;
}

.stat-card__label {
    color: var(--muted);

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-card--hero .stat-card__label {
    color:
        rgba(7, 17, 13, 0.62);
}

.stat-card__value {
    max-width: 100%;

    font-size:
        clamp(2rem, 4vw, 3.4rem);

    line-height: 1;
    letter-spacing: -0.05em;

    overflow-wrap: anywhere;
}

.stat-card__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 2px;

    background:
        var(--green-bright);

    opacity: 0.55;
}

/* ---------------------------------------------------------
   Archive
--------------------------------------------------------- */

.archive-list {
    display: grid;
    gap: 12px;

    width: 100%;
    max-width: 100%;
}

.archive-item {
    display: grid;
    grid-template-columns:
        180px 1fr auto;

    align-items: center;
    gap: 24px;

    min-width: 0;
    padding: 18px 20px;

    background:
        var(--surface);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.archive-item:hover {
    transform: translateX(4px);

    border-color:
        rgba(184, 239, 87, 0.22);
}

.archive-item__date {
    display: grid;
    gap: 4px;

    min-width: 0;
}

.archive-item__date span {
    font-size: 1.02rem;
    font-weight: 900;
}

.archive-item__date small {
    color: var(--muted);
}

.archive-item__metrics {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    min-width: 0;
}

.archive-item__metrics div {
    display: grid;
    gap: 5px;

    min-width: 0;
}

.archive-item__metrics span {
    color: var(--muted);
    font-size: 0.7rem;
}

.archive-item__metrics strong {
    font-size: 0.95rem;
}

.archive-item__result--positive {
    color: var(--green-bright);
}

.archive-item__result--negative {
    color: var(--red);
}

.archive-item__seal {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    color: var(--green-bright);

    border:
        1px solid rgba(184, 239, 87, 0.3);

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: 900;
}

/* ---------------------------------------------------------
   System panel
--------------------------------------------------------- */

.system-panel {
    padding-top: 20px;
}

.system-panel__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    width: 100%;
    max-width: 100%;
    overflow: hidden;

    background: var(--line);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.system-panel__grid > div {
    display: grid;
    gap: 10px;

    min-width: 0;
    padding: 22px;

    background:
        var(--bg-soft);
}

.system-panel__label {
    color: var(--muted);

    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.system-panel__grid strong {
    font-size: 1.1rem;
}

/* ---------------------------------------------------------
   Messages
--------------------------------------------------------- */

.system-message {
    display: grid;
    gap: 8px;

    padding: 18px;

    border-radius: var(--radius-sm);
}

.system-message--error {
    color: #ffd7d7;

    background:
        rgba(201, 71, 71, 0.15);

    border:
        1px solid rgba(201, 71, 71, 0.3);
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;
    max-width: 100%;

    padding: 34px 3vw 10px;

    color: var(--muted);

    border-top:
        1px solid var(--line);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.footer__brand img {
    width: 42px;
    height: 42px;

    flex: 0 0 auto;
    object-fit: contain;
}

.footer__brand div {
    display: grid;
    gap: 3px;

    min-width: 0;
}

.footer__brand strong {
    color: var(--text);
    font-size: 0.9rem;
}

.footer__brand small,
.footer p {
    font-size: 0.72rem;
}

/* ---------------------------------------------------------
   Modal
--------------------------------------------------------- */

.image-modal {
    width: min(92vw, 980px);
    max-height: 92vh;
    padding: 0;

    overflow: visible;

    background: transparent;
    border: 0;
}

.image-modal::backdrop {
    background:
        rgba(0, 0, 0, 0.9);

    backdrop-filter: blur(8px);
}

.image-modal img {
    width: 100%;
    max-height: 90vh;

    object-fit: contain;
    border-radius: 18px;
}

.image-modal__close {
    position: absolute;
    top: -46px;
    right: 0;

    width: 40px;
    height: 40px;

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.1);

    border: 1px solid var(--line);
    border-radius: 50%;

    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------------------------------------------------------
   Reveal
--------------------------------------------------------- */

.reveal {
    opacity: 1;
    transform: none;
}

/* ---------------------------------------------------------
   Animationen
--------------------------------------------------------- */

@keyframes logoFloat {
    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-14px)
            scale(1.018);
    }
}

@keyframes logoRotate {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes haloPulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes statusPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.72);
        opacity: 0.55;
    }
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.35;

        transform: scaleY(0.7);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 50px;

        min-height: auto;
        padding-top: 100px;
    }

    .hero__visual {
        order: -1;
    }

    .hero-logo-system {
        width: min(68vw, 480px);
    }

    .hero__content {
        text-align: center;
    }

    .hero__government-label {
        justify-content: center;
    }

    .hero__description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__title-accent::after {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__facts {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }

    .event-showcase {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .event-showcase__panel {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .event-showcase__panel-label {
        grid-column: 1 / -1;
    }

    .event-showcase__panel-item {
        border-bottom: 0;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .archive-item {
        grid-template-columns:
            150px minmax(0, 1fr);
    }

    .archive-item__seal {
        display: none;
    }
}

/* ---------------------------------------------------------
   Mobil
--------------------------------------------------------- */

@media (max-width: 760px) {
    .site-shell {
        width: 100%;
        max-width: 100%;

        padding-right: 12px;
        padding-left: 12px;

        overflow-x: clip;
    }

    .topbar {
        top: 8px;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap: 10px;

        width: 100%;
        max-width: 100%;
        min-height: 62px;

        padding: 8px 10px;

        border-radius: 18px;
    }

    .brand__logo {
        width: 42px;
        height: 42px;
    }

    .brand__text strong {
        font-size: 0.82rem;
    }

    .brand__text small {
        font-size: 0.66rem;
    }

    .topnav {
        display: none;
    }

    .system-status {
        font-size: 0;
    }

    .system-status__dot {
        width: 10px;
        height: 10px;
    }

    .hero {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 34px;

        width: 100%;
        max-width: 100%;

        overflow: hidden;

        padding:
            66px
            5px
            78px;
    }

    .hero__content,
    .hero__visual,
    .hero-logo-system {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-logo-system {
        width: min(92vw, 390px);
        margin: 0 auto;
    }

    .hero-logo-system__logo {
        width: 69%;

        animation:
            logoFloat 5.5s ease-in-out infinite,
            logoRotate 34s linear infinite;
    }

    .hero-logo-system__badge {
        min-width: 108px;
        max-width: calc(100% - 8px);

        padding: 11px 12px;
    }

    .hero-logo-system__badge--top {
        top: 8%;
        right: 4px;
    }

    .hero-logo-system__badge--bottom {
        bottom: 8%;
        left: 4px;
    }

    .hero__government-label {
        max-width: 100%;
        white-space: normal;
    }

    .hero__title {
        max-width: 100%;

        font-size:
            clamp(2.9rem, 13.8vw, 5rem);

        line-height: 1;
        letter-spacing: -0.06em;

        overflow-wrap: anywhere;
    }

    .hero__description {
        max-width: 100%;
        font-size: 0.96rem;
    }

    .hero__facts {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 8px;

        width: 100%;
        max-width: 100%;
    }

    .hero-fact {
        width: 100%;
        max-width: 100%;

        text-align: left;
    }

    .hero__actions {
        flex-direction: column;

        width: 100%;
        max-width: 100%;
    }

    .button {
        width: 100%;
        max-width: 100%;
    }

    .section {
        width: 100%;
        max-width: 100%;

        padding:
            72px
            4px;

        overflow-x: clip;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;

        width: 100%;
        max-width: 100%;
    }

    .section-header > div:first-child {
        width: 100%;
        max-width: 100%;
    }

    .section-header h2 {
        max-width: 100%;

        font-size:
            clamp(2.3rem, 12vw, 3.6rem);

        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .date-pill,
    .live-chip {
        align-self: flex-start;
        max-width: 100%;
    }

    .finance-actions {
        align-items: stretch;

        width: 100%;
        max-width: 100%;
    }

    .paypal-quick-link {
        width: 100%;
        max-width: 100%;

        justify-content: flex-start;
    }

    .paypal-quick-link svg {
        margin-left: auto;
    }

    .event-showcase {
        grid-template-columns:
            minmax(0, 1fr);

        width: 100%;
        max-width: 100%;
    }

    .event-showcase__image-button {
        width: 100%;
        max-width: 100%;

        border-radius: 20px;
    }

    .event-showcase__panel {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        max-width: 100%;

        border-radius: 20px;
    }

    .event-showcase__panel-item {
        min-width: 0;
        padding: 14px 0;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        max-width: 100%;

        gap: 10px;
    }

    .stat-card {
        min-width: 0;
        min-height: 172px;

        padding: 16px;

        border-radius: 18px;
    }

    .stat-card--hero {
        grid-column: 1 / -1;
        min-height: 190px;
    }

    .stat-card__value {
        max-width: 100%;

        font-size:
            clamp(1.6rem, 8vw, 2.35rem);

        overflow-wrap: anywhere;
    }

    .archive-item {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 16px;

        width: 100%;
        max-width: 100%;

        padding: 16px;
    }

    .archive-item__metrics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .system-panel__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        max-width: 100%;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;

        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 430px) {
    .hero__title {
        font-size:
            clamp(2.55rem, 13vw, 4rem);
    }

    .stats-grid {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .stat-card--hero {
        grid-column: auto;
    }

    .event-showcase__panel {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .archive-item__metrics,
    .system-panel__grid {
        grid-template-columns:
            minmax(0, 1fr);
    }
}

/* ---------------------------------------------------------
   Reduzierte Bewegung
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}