:root {
    --color-background: #020711;
    --color-background-soft: #07111f;
    --color-surface: rgba(10, 27, 48, 0.58);
    --color-surface-strong: rgba(11, 31, 56, 0.8);
    --color-border: rgba(125, 213, 255, 0.22);
    --color-border-strong: rgba(125, 213, 255, 0.48);
    --color-text: #f7fbff;
    --color-text-muted: #a8b6c8;
    --color-primary: #65dfff;
    --color-primary-strong: #149cff;
    --color-shadow: rgba(0, 151, 255, 0.22);

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

    --container-width: 1180px;
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 36px;
    --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.32);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 128, 255, 0.16), transparent 26rem),
        radial-gradient(circle at 85% 35%, rgba(0, 220, 255, 0.11), transparent 30rem),
        linear-gradient(180deg, #020711 0%, #06101d 46%, #020711 100%);
    color: var(--color-text);
    font-family: var(--font-family);
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(2, 7, 17, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: min(360px, 48vw);
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.main-navigation a {
    transition:
        color var(--transition),
        text-shadow var(--transition);
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: var(--color-primary);
    text-shadow: 0 0 16px rgba(101, 223, 255, 0.65);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--color-text);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: grid;
    place-items: center;
    padding: 110px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span {
    display: block;
    margin-top: clamp(18px, 2vw, 30px);
    color: var(--color-primary);
    text-shadow: 0 0 34px rgba(101, 223, 255, 0.2);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.hero-text,
.section-heading > p:last-child,
.about-copy,
.contact-card p,
.app-card p {
    color: var(--color-text-muted);
}

.hero-text {
    max-width: 670px;
    margin-bottom: 34px;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

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

.button-primary {
    color: #00101a;
    background: linear-gradient(135deg, var(--color-primary), #baf3ff);
    box-shadow: 0 12px 36px rgba(56, 199, 255, 0.28);
}

.button-secondary {
    border-color: var(--color-border);
    background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--color-border-strong);
    box-shadow: 0 12px 36px rgba(0, 151, 255, 0.12);
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.logo-orbit {
    position: relative;
    width: min(540px, 82vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.logo-orbit::before,
.logo-orbit::after {
    position: absolute;
    inset: 7%;
    content: "";
    border: 1px solid rgba(101, 223, 255, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(0, 151, 255, 0.16),
        inset 0 0 70px rgba(0, 151, 255, 0.08);
}

.logo-orbit::after {
    inset: 16%;
    border-style: dashed;
    animation: rotate 28s linear infinite;
}

.logo-orbit img {
    position: relative;
    z-index: 2;
    width: 88%;
    filter: drop-shadow(0 0 36px rgba(0, 157, 255, 0.24));
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 500px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
}

.hero-glow-left {
    left: -220px;
    top: 15%;
    background: #0066ff;
}

.hero-glow-right {
    right: -220px;
    bottom: 6%;
    background: #00d9ff;
}

.section {
    padding: 110px 0;
}

.section-muted {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.018),
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.018)
    );
    border-block: 1px solid rgba(255, 255, 255, 0.045);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.glass-card {
    border: 1px solid var(--color-border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 34%),
        var(--color-surface);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(24px);
}

.app-card {
    min-height: 330px;
    padding: 30px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.app-card:hover {
    transform: translateY(-7px);
    border-color: var(--color-border-strong);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
        var(--color-surface-strong);
}

.app-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 28px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 0 34px rgba(0, 157, 255, 0.22);
}

.app-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--color-primary);
    font-weight: 750;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-copy {
    max-width: 720px;
    font-size: 1.08rem;
}

.promise-card {
    position: relative;
    overflow: hidden;
    margin-top: 58px;
    padding: clamp(32px, 5vw, 58px);
}

.promise-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, var(--color-primary), #5c7cff);
    box-shadow: 0 0 28px rgba(101, 223, 255, 0.55);
}

.promise-card::after {
    position: absolute;
    top: -150px;
    right: -120px;
    width: 320px;
    aspect-ratio: 1;
    content: "";
    border-radius: 50%;
    background: rgba(0, 157, 255, 0.13);
    filter: blur(70px);
    pointer-events: none;
}

.promise-card > * {
    position: relative;
    z-index: 1;
}

.promise-card h3 {
    max-width: 980px;
    margin: 10px 0 24px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-text);
}

.promise-card p:last-child {
    max-width: 920px;
    margin-bottom: 0;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.85;
    color: var(--color-text-muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
}

.value-card {
    min-height: 210px;
    padding: 26px;
}

.value-card h3 {
    color: var(--color-primary);
}

.value-card p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.contact-card {
    padding: clamp(34px, 6vw, 70px);
    text-align: center;
}

.contact-card p {
    max-width: 620px;
    margin-right: auto;
    margin-bottom: 26px;
    margin-left: auto;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    color: #00101a;
    background: linear-gradient(135deg, var(--color-primary), #baf3ff);
    box-shadow: 0 12px 36px rgba(56, 199, 255, 0.22);
    font-weight: 800;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-email:hover,
.contact-email:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(56, 199, 255, 0.32);
}

.site-footer {
    padding: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.footer-inner img {
    width: 250px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.footer-inner p {
    margin: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--color-border);
        border-radius: 20px;
        background: rgba(3, 12, 24, 0.96);
        box-shadow: var(--shadow-card);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-inner img {
        object-position: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .brand img {
        width: 225px;
    }

    .hero {
        min-height: auto;
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(2.9rem, 15vw, 4.4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 78px 0;
    }

    .app-card {
        min-height: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .contact-email {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* --------------------------------------------------------------------------
   Patch 06: subtile Tiefen-, Licht- und Scroll-Effekte
   -------------------------------------------------------------------------- */

body {
    position: relative;
    overflow-x: hidden;
    isolation: isolate;
}

/* Ruhige Aurora-Lichtschleier hinter der gesamten Seite. */
body::after {
    position: fixed;
    inset: -18%;
    z-index: -2;
    content: "";
    pointer-events: none;
    opacity: 0.42;
    background:
        radial-gradient(ellipse at 18% 30%, rgba(27, 121, 255, 0.2), transparent 33%),
        radial-gradient(ellipse at 78% 24%, rgba(0, 224, 255, 0.14), transparent 30%),
        radial-gradient(ellipse at 58% 78%, rgba(77, 87, 255, 0.12), transparent 34%);
    filter: blur(72px);
    transform: translate3d(0, 0, 0) scale(1.05);
    animation: aurora-drift 34s ease-in-out infinite alternate;
}

/* Sehr dezentes Sternenfeld; bewusst ohne hektisches Blinken. */
main::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: 0.26;
    background-image:
        radial-gradient(circle, rgba(214, 247, 255, 0.78) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(120, 215, 255, 0.62) 0 0.8px, transparent 1.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.46) 0 0.7px, transparent 1.1px);
    background-position: 20px 35px, 90px 125px, 145px 70px;
    background-size: 190px 190px, 270px 270px, 340px 340px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
    animation: star-drift 44s linear infinite;
}

/* Sanfter Hero-Parallax, gesteuert über CSS-Variablen aus main.js. */
.hero-content {
    transform: translate3d(
        calc(var(--hero-parallax-x, 0) * -0.45px),
        calc(var(--hero-parallax-y, 0) * -0.35px),
        0
    );
    transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-visual {
    transform: translate3d(
        calc(var(--hero-parallax-x, 0) * 0.8px),
        calc(var(--hero-parallax-y, 0) * 0.65px),
        0
    );
    transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

/* Karten erhalten neben dem Glass-Hover einen dezenten Maus-Lichtreflex. */
.glass-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1),
        border-color 360ms ease,
        background 360ms ease,
        box-shadow 360ms ease,
        backdrop-filter 360ms ease;
}

.glass-card::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(
        360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(155, 235, 255, 0.16),
        rgba(87, 186, 255, 0.06) 32%,
        transparent 68%
    );
    transition: opacity 320ms ease;
}

.glass-card::after {
    position: absolute;
    inset: 1px;
    z-index: -2;
    content: "";
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 32%);
    opacity: 0.55;
    transition: opacity 320ms ease;
}

.glass-card:hover,
.glass-card:focus-within {
    border-color: rgba(125, 213, 255, 0.52);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), transparent 36%),
        rgba(11, 31, 56, 0.78);
    box-shadow:
        0 30px 88px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(50, 188, 255, 0.1),
        inset 0 1px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(28px) saturate(1.08);
}

.glass-card:hover::before,
.glass-card:focus-within::before {
    opacity: 1;
}

.glass-card:hover::after,
.glass-card:focus-within::after {
    opacity: 0.9;
}

.app-card:hover,
.app-card:focus-within {
    transform: translateY(-8px) scale(1.008);
}

.value-card:hover,
.value-card:focus-within {
    transform: translateY(-5px);
}

.promise-card:hover,
.promise-card:focus-within,
.contact-card:hover,
.contact-card:focus-within {
    transform: translateY(-4px);
}

/* App-Icons schweben leicht und zeitlich versetzt. */
.app-icon {
    transform-origin: center;
    animation: app-icon-float 9s ease-in-out infinite;
    will-change: transform;
}

.app-card:nth-child(2) .app-icon {
    animation-delay: -2.2s;
    animation-duration: 10.5s;
}

.app-card:nth-child(3) .app-icon {
    animation-delay: -4.6s;
    animation-duration: 8.5s;
}

.app-card:nth-child(4) .app-icon {
    animation-delay: -6.3s;
    animation-duration: 11s;
}

/* Scroll-Reveal: Inhalte bleiben ohne JavaScript sichtbar. */
.reveal-ready {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(4px);
    transition:
        opacity 760ms ease,
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 760ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-ready.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* Animierte Neon-Linie unter den großen Bereichsüberschriften. */
.section-heading h2,
.about-grid h2,
.contact-card h2 {
    position: relative;
    width: fit-content;
    padding-bottom: 16px;
}

.section-heading h2::after,
.about-grid h2::after,
.contact-card h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), rgba(20, 156, 255, 0.15));
    box-shadow: 0 0 14px rgba(101, 223, 255, 0.45);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.reveal-visible h2::after,
h2.reveal-visible::after,
.contact-card.reveal-visible h2::after {
    transform: scaleX(1);
}

.contact-card h2 {
    margin-inline: auto;
}

@keyframes aurora-drift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.04) rotate(-1deg);
    }

    50% {
        transform: translate3d(2.5%, 1.5%, 0) scale(1.09) rotate(1deg);
    }

    100% {
        transform: translate3d(-1%, 3%, 0) scale(1.06) rotate(-0.5deg);
    }
}

@keyframes star-drift {
    to {
        background-position: 20px 225px, 90px 395px, 145px 410px;
    }
}

@keyframes app-icon-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0.001deg);
    }

    50% {
        transform: translate3d(0, -7px, 0) rotate(0.001deg);
    }
}

@media (max-width: 900px) {
    .hero-content,
    .hero-visual {
        transform: none;
    }

    .section-heading h2,
    .about-grid h2 {
        margin-inline: auto;
    }
}

@media (hover: none), (pointer: coarse) {
    .glass-card::before {
        display: none;
    }

    .app-card:hover,
    .value-card:hover,
    .promise-card:hover,
    .contact-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after,
    main::before,
    .app-icon {
        animation: none !important;
    }

    .hero-content,
    .hero-visual,
    .reveal-ready,
    .reveal-ready.reveal-visible {
        transform: none !important;
        filter: none !important;
    }

    .reveal-ready {
        opacity: 1;
    }

    .section-heading h2::after,
    .about-grid h2::after,
    .contact-card h2::after {
        transform: scaleX(1);
    }
}

/* --------------------------------------------------------------------------
   Patch 08: strukturierter Premium-App-Bereich
   -------------------------------------------------------------------------- */

.app-grid {
    align-items: stretch;
    gap: 28px;
}

.app-card {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(280px, 1.16fr);
    grid-template-rows: 1fr auto;
    column-gap: 34px;
    row-gap: 30px;
    min-height: 0;
    padding: 32px;
}

.app-card-main,
.app-features {
    min-width: 0;
}

.app-card-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #dce9f6;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
}

.app-status-test .status-dot {
    background: #6784ff;
    box-shadow: 0 0 14px rgba(103, 132, 255, 0.9);
}

.app-status-development .status-dot {
    background: #ffd35a;
    box-shadow: 0 0 14px rgba(255, 211, 90, 0.8);
}

.app-card .app-icon {
    width: 108px;
    height: 108px;
    margin-top: 30px;
    margin-bottom: 26px;
}

.app-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    line-height: 1.18;
}

.app-description {
    margin-bottom: 0;
    font-size: 1rem;
}

.app-features {
    padding-left: 32px;
    border-left: 1px solid rgba(125, 213, 255, 0.2);
}

.app-features h4 {
    margin: 2px 0 18px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.app-features ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-features li {
    position: relative;
    padding-left: 28px;
    color: #dce6f1;
    font-size: 0.94rem;
    line-height: 1.45;
}

.app-features li::before {
    position: absolute;
    top: 0.25em;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    content: "✓";
    border: 1px solid rgba(101, 223, 255, 0.52);
    border-radius: 50%;
    background: rgba(101, 223, 255, 0.11);
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(101, 223, 255, 0.12);
}

.app-card-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(125, 213, 255, 0.14);
}

.app-card-footer p {
    margin: 0;
    color: #91a6bb;
    font-size: 0.82rem;
    line-height: 1.45;
}

.app-cta {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 211, 90, 0.42);
    border-radius: 999px;
    background: rgba(255, 211, 90, 0.07);
    color: #ffe28a;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 211, 90, 0.08);
}

.app-cta-test {
    border-color: rgba(103, 132, 255, 0.52);
    background: rgba(103, 132, 255, 0.1);
    color: #b9c5ff;
    box-shadow: 0 0 20px rgba(103, 132, 255, 0.1);
}

.app-card-games .app-features ul {
    gap: 8px;
}

.app-card-games .app-features li {
    font-size: 0.88rem;
}

@media (max-width: 1120px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-card {
        grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    }
}

@media (max-width: 760px) {
    .app-card {
        grid-template-columns: 1fr;
        row-gap: 26px;
        padding: 26px;
    }

    .app-features {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(125, 213, 255, 0.18);
        border-left: 0;
    }

    .app-card-footer {
        grid-column: 1;
        align-items: flex-start;
        flex-direction: column;
    }

    .app-cta {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .app-card {
        padding: 22px;
    }

    .app-card .app-icon {
        width: 96px;
        height: 96px;
        margin-top: 26px;
    }

    .app-features li {
        padding-left: 25px;
        font-size: 0.9rem;
    }
}

/* Legal pages */
.legal-page {
    background:
        radial-gradient(circle at 16% 8%, rgba(0, 128, 255, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 30%, rgba(0, 220, 255, 0.1), transparent 34rem),
        linear-gradient(180deg, #020711 0%, #06101d 48%, #020711 100%);
}

.legal-header-button {
    min-height: 46px;
    padding-inline: 20px;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(96px, 13vw, 170px) 0 clamp(74px, 9vw, 120px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(4rem, 10vw, 8.4rem);
    color: var(--color-text);
    text-shadow: 0 0 50px rgba(101, 223, 255, 0.12);
}

.legal-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.legal-title span {
    display: block;
    width: 100%;
}

.legal-title-agb {
    max-width: 1240px;
    margin-inline: auto;
    font-size: clamp(3.6rem, 8vw, 7.2rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.legal-title-agb span + span {
    margin-top: 0.08em;
}

.legal-intro {
    max-width: 790px;
    margin: 0 auto 24px;
    color: var(--color-text-muted);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.85;
}

.legal-updated {
    margin-bottom: 0;
    color: rgba(168, 182, 200, 0.72);
    font-size: 0.92rem;
}

.legal-hero-glow {
    position: absolute;
    width: min(520px, 72vw);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.18;
    pointer-events: none;
}

.legal-hero-glow-left {
    top: -220px;
    left: -210px;
    background: #0066ff;
}

.legal-hero-glow-right {
    right: -220px;
    bottom: -300px;
    background: #00d9ff;
}

.legal-section {
    padding: clamp(72px, 9vw, 120px) 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.legal-navigation {
    position: sticky;
    top: 104px;
    padding: 26px;
}

.legal-navigation-title {
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.legal-navigation nav {
    display: grid;
    gap: 6px;
}

.legal-navigation a {
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.35;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.legal-navigation a:hover,
.legal-navigation a:focus-visible {
    transform: translateX(3px);
    color: var(--color-primary);
    border-color: rgba(101, 223, 255, 0.16);
    background: rgba(101, 223, 255, 0.055);
}

.legal-content {
    display: grid;
    gap: 24px;
}

.legal-card,
.legal-placeholder-notice {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4.5vw, 48px);
}

.legal-card::after,
.legal-placeholder-notice::after {
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 320px;
    aspect-ratio: 1;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101, 223, 255, 0.1), transparent 68%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.legal-card:hover::after,
.legal-placeholder-notice:hover::after {
    opacity: 1;
}

.legal-card > *,
.legal-placeholder-notice > * {
    position: relative;
    z-index: 1;
}

.legal-card {
    scroll-margin-top: 116px;
}

.legal-card h2 {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: clamp(1.75rem, 3.4vw, 2.55rem);
}

.legal-card h3 {
    margin-top: 30px;
    color: var(--color-text);
    font-size: 1.08rem;
}

.legal-card p,
.legal-card li,
.legal-placeholder-notice p {
    color: var(--color-text-muted);
}

.legal-card p:last-child,
.legal-placeholder-notice p:last-child {
    margin-bottom: 0;
}

.legal-number {
    margin-bottom: 12px;
    color: var(--color-primary) !important;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.22em;
}

.legal-placeholder-notice {
    border-color: rgba(255, 196, 92, 0.32);
    background:
        linear-gradient(145deg, rgba(255, 204, 113, 0.07), transparent 38%),
        rgba(30, 25, 12, 0.45);
}

.legal-placeholder-title {
    margin-bottom: 8px;
    color: #ffd78a !important;
    font-weight: 800;
}

.legal-address {
    margin: 20px 0;
    padding: 22px 24px;
    border: 1px solid rgba(101, 223, 255, 0.14);
    border-radius: 16px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.025);
    font-style: normal;
}

.legal-address strong {
    color: var(--color-text);
}

.legal-link {
    color: var(--color-primary);
    font-weight: 750;
}

.legal-link:hover,
.legal-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-note {
    padding: 14px 16px;
    border-left: 3px solid rgba(255, 196, 92, 0.72);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 196, 92, 0.06);
    font-size: 0.92rem;
}

.legal-provider-placeholder {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px dashed rgba(255, 196, 92, 0.35);
    border-radius: 14px;
    color: #d7c49f;
    background: rgba(255, 196, 92, 0.04);
}

.legal-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
}

.legal-list li::before {
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    border: 1px solid rgba(101, 223, 255, 0.76);
    border-radius: 50%;
    background: rgba(101, 223, 255, 0.18);
    box-shadow: 0 0 12px rgba(101, 223, 255, 0.3);
    transform: translateY(-50%);
}

.legal-rights-list {
    gap: 16px;
}

.legal-rights-list strong {
    color: var(--color-text);
}

.legal-back-row {
    display: flex;
    justify-content: center;
    padding-top: 22px;
}

.footer-links a[aria-current="page"] {
    color: var(--color-primary);
}

@media (max-width: 980px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-navigation {
        position: static;
    }

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

@media (max-width: 640px) {
    .legal-header-button {
        min-height: 42px;
        padding-inline: 16px;
        font-size: 0.88rem;
    }

    .legal-hero {
        padding-top: 78px;
    }

    .legal-hero h1 {
        font-size: clamp(3.2rem, 18vw, 5.4rem);
    }

    .legal-title-agb {
        font-size: clamp(2.7rem, 12.5vw, 4.2rem);
        line-height: 0.94;
        letter-spacing: -0.045em;
    }

    .legal-navigation nav {
        grid-template-columns: 1fr;
    }

    .legal-card,
    .legal-placeholder-notice,
    .legal-navigation {
        border-radius: 20px;
    }
}

/* PATCH 12: AGB-Hero exakt an der Bildschirmmitte ausrichten.
   Der Titel löst sich für seine Breite bewusst aus dem begrenzten
   Legal-Container, damit beide Zeilen unabhängig voneinander exakt
   am Viewport zentriert werden. */
.legal-hero .legal-title-agb {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin: 0 0 28px;
    transform: translateX(-50%);
    text-align: center;
}

.legal-hero .legal-title-agb span {
    display: table;
    width: auto;
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    color: var(--color-text);
    text-align: center;
    text-shadow: 0 0 50px rgba(101, 223, 255, 0.12);
}

.legal-hero .legal-title-agb span + span {
    margin-top: 0.08em;
}

@media (max-width: 560px) {
    .legal-hero .legal-title-agb span {
        max-width: calc(100vw - 28px);
    }
}


/* =========================================================
   PATCH 14: App-Detailseiten und Screenshot-Galerien
   ========================================================= */
.app-card {
    position: relative;
}

.app-card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
}

.app-card:has(.app-card-link) {
    cursor: pointer;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.app-card:has(.app-card-link):hover,
.app-card:has(.app-card-link):focus-within {
    transform: translateY(-7px);
    border-color: var(--color-border-strong);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), 0 0 38px rgba(20, 156, 255, 0.12);
}

.app-card-link:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 5px;
}

.product-header-button {
    min-height: 44px;
}

.product-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 96px;
}

.product-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
}

.product-hero-content h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(3.35rem, 7vw, 6.8rem);
}

.product-back-link {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--color-text-muted);
    font-weight: 700;
    transition: color var(--transition), transform var(--transition);
}

.product-back-link:hover,
.product-back-link:focus-visible {
    color: var(--color-primary);
    transform: translateX(-3px);
}

.product-lead {
    max-width: 760px;
    margin-bottom: 34px;
    color: var(--color-text-muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-app-panel {
    display: grid;
    justify-items: start;
    gap: 26px;
    padding: clamp(28px, 4vw, 46px);
}

.product-app-panel .app-status {
    position: static;
}

.product-app-panel p {
    margin: 0;
    color: var(--color-text-muted);
}

.product-app-icon {
    width: min(230px, 64%);
    aspect-ratio: 1;
    border-radius: 28%;
    object-fit: cover;
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.35));
}

.product-section-heading {
    max-width: 780px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-feature-card {
    min-height: 190px;
    padding: 28px;
}

.product-feature-number {
    display: block;
    margin-bottom: 32px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.2em;
}

.product-feature-card p {
    margin: 0;
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 720;
    line-height: 1.45;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.screenshot-card {
    overflow: hidden;
    margin: 0;
    padding: 12px;
}

.screenshot-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 18.5;
    border: 1px solid rgba(125, 213, 255, 0.16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 20%, rgba(101, 223, 255, 0.13), transparent 38%),
        rgba(1, 8, 18, 0.72);
}

.screenshot-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    place-content: center;
    gap: 8px;
    padding: 24px;
    color: var(--color-text-muted);
    text-align: center;
}

.screenshot-placeholder span {
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.screenshot-placeholder strong {
    overflow-wrap: anywhere;
    color: var(--color-text);
    font-size: 0.96rem;
}

.screenshot-card.is-missing .screenshot-placeholder {
    display: grid;
}

.screenshot-card.is-missing img {
    display: none;
}

.screenshot-card figcaption {
    padding: 17px 10px 8px;
    color: var(--color-text-muted);
    font-weight: 700;
}

.product-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    align-items: start;
    gap: clamp(38px, 7vw, 92px);
}

.technical-card {
    margin: 0;
    padding: 16px clamp(22px, 4vw, 40px);
}

.technical-row {
    display: grid;
    grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(125, 213, 255, 0.12);
}

.technical-row:last-child {
    border-bottom: 0;
}

.technical-row dt {
    color: var(--color-text-muted);
    font-weight: 700;
}

.technical-row dd {
    margin: 0;
    color: var(--color-text);
    font-weight: 760;
}

.product-download-section {
    padding-top: 18px;
}

.product-download-card {
    padding: clamp(34px, 6vw, 72px);
    text-align: center;
}

.product-download-card h2,
.product-download-card p {
    max-width: 760px;
    margin-inline: auto;
}

.product-download-card p {
    color: var(--color-text-muted);
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.store-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 58px;
    padding: 12px 22px;
    border: 1px dashed rgba(125, 213, 255, 0.32);
    border-radius: 14px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.025);
    font-weight: 750;
}

@media (max-width: 980px) {
    .product-hero-grid,
    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-app-panel {
        max-width: 680px;
    }

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

@media (max-width: 640px) {
    .product-header-button {
        min-height: 40px;
        padding-inline: 15px;
        font-size: 0.84rem;
    }

    .product-hero {
        padding: 76px 0 72px;
    }

    .product-hero-content h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .product-feature-grid,
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-card {
        max-width: 420px;
        margin-inline: auto;
    }

    .technical-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}


/* --------------------------------------------------------------------------
   Patch 15: echte JPEG-Screenshots, Landscape-Spiele und offizielle Store-Badges
   -------------------------------------------------------------------------- */

.screenshot-grid {
    align-items: start;
}

.screenshot-card {
    min-width: 0;
}

.screenshot-media {
    aspect-ratio: 9 / 19.5;
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(3, 13, 25, 0.7);
}

.screenshot-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: rgba(3, 13, 25, 0.88);
}

.screenshot-card-landscape {
    grid-column: span 2;
}

.screenshot-card-landscape .screenshot-media {
    aspect-ratio: 16 / 9;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.store-badge img {
    display: block;
    width: auto;
    height: 58px;
    max-width: min(100%, 210px);
    object-fit: contain;
}

.store-badge-google-play img {
    /* Das Google-Asset enthält bereits den vorgeschriebenen Freiraum. */
    height: 70px;
}

.store-badge.is-disabled {
    cursor: default;
    opacity: 0.88;
}

@media (hover: hover) {
    .store-badge:not(.is-disabled):hover {
        transform: translateY(-3px);
        filter: brightness(1.04);
    }
}

@media (max-width: 760px) {
    .screenshot-card-landscape {
        grid-column: 1 / -1;
    }

    .store-actions {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .store-badge img {
        height: 52px;
    }

    .store-badge-google-play img {
        height: 63px;
    }
}

/* --------------------------------------------------------------------------
   Patch 16: Marken- und Plattform-Footer der Startseite
   -------------------------------------------------------------------------- */

.footer-inner--main {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.75fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
}

.footer-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.footer-platforms a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 12px;
    transition:
        transform var(--transition),
        filter var(--transition),
        opacity var(--transition);
}

.footer-platforms a:hover,
.footer-platforms a:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.footer-platforms a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.footer-platforms .footer-brand-badge img {
    width: 198px;
    max-height: 40px;
    object-position: left center;
}

.footer-platforms .footer-android-badge {
    width: 54px;
    height: 48px;
    padding: 4px;
}

.footer-platforms .footer-android-badge img {
    width: 46px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.footer-platforms .footer-store-badge img {
    width: auto;
    height: 42px;
    max-width: 142px;
    object-fit: contain;
    object-position: center;
}

.android-attribution {
    flex-basis: 100%;
    margin: 2px 0 0;
    max-width: 620px;
    font-size: 0.63rem;
    line-height: 1.45;
    color: rgba(196, 214, 230, 0.48);
    text-align: left;
}

.footer-values {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.footer-values p {
    margin: 0;
}

.footer-values > p:not(.footer-copyright) {
    color: var(--color-text);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.footer-values > p span {
    display: inline-block;
    width: 1.55em;
    text-align: center;
}

.footer-copyright {
    margin-top: 7px !important;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.footer-inner--main .footer-links {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

.footer-inner--main .footer-links a {
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .footer-inner--main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-platforms {
        justify-content: center;
    }

    .android-attribution {
        text-align: center;
    }

    .footer-inner--main .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 34px 0;
    }

    .footer-inner--main {
        gap: 28px;
    }

    .footer-platforms {
        gap: 12px;
    }

    .footer-platforms .footer-brand-badge {
        flex-basis: 100%;
    }

    .footer-platforms .footer-brand-badge img {
        width: 220px;
        object-position: center;
    }

    .footer-platforms .footer-store-badge img {
        height: 39px;
        max-width: 132px;
    }

    .footer-inner--main .footer-links {
        flex-direction: row;
        gap: 10px 18px;
    }
}

/* --------------------------------------------------------------------------
   Patch 17: Footer-Plattformen als sauberes 2×2-Raster
   -------------------------------------------------------------------------- */
.footer-inner--main {
    grid-template-columns: minmax(430px, 1.35fr) minmax(250px, 0.8fr) minmax(300px, 0.9fr);
}

.footer-platforms {
    display: grid;
    grid-template-columns: 190px 150px;
    grid-template-areas:
        "brand galaxy"
        "android google"
        "attribution attribution";
    align-items: center;
    justify-content: start;
    column-gap: 18px;
    row-gap: 14px;
}

.footer-platforms .footer-brand-badge {
    grid-area: brand;
    justify-self: start;
}

.footer-platforms .footer-brand-badge img {
    width: 188px;
    max-height: 58px;
}

.footer-platforms .footer-galaxy-badge {
    grid-area: galaxy;
    justify-self: start;
}

.footer-platforms .footer-android-badge {
    grid-area: android;
    justify-self: center;
    width: 84px;
    height: 58px;
}

.footer-platforms .footer-android-badge img {
    width: 72px;
    height: 54px;
}

.footer-platforms .footer-google-badge {
    grid-area: google;
    justify-self: start;
}

.footer-platforms .footer-store-badge img {
    height: 46px;
    max-width: 150px;
}

.footer-platforms .android-attribution {
    grid-area: attribution;
    width: 100%;
    max-width: 360px;
}

@media (max-width: 1120px) {
    .footer-inner--main {
        grid-template-columns: 1fr;
    }

    .footer-platforms {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-platforms {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 12px;
    }

    .footer-platforms .footer-brand-badge img {
        width: min(180px, 100%);
    }

    .footer-platforms .footer-store-badge img {
        height: auto;
        width: 100%;
        max-width: 145px;
    }
}


/* --------------------------------------------------------------------------
   Patch 18: finales Footer-Raster + Android-Wortmarke + Copyright-Abstand
   -------------------------------------------------------------------------- */
.footer-platforms {
    grid-template-columns: 190px 150px;
    grid-template-areas:
        "brand android"
        "galaxy google"
        "attribution attribution";
    column-gap: 18px;
    row-gap: 14px;
}

.footer-platforms .footer-brand-badge {
    grid-area: brand;
    width: 100%;
    justify-self: stretch;
}

.footer-platforms .footer-brand-badge img {
    width: 100%;
    max-width: 190px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.footer-platforms .footer-android-badge {
    grid-area: android;
    width: 150px;
    height: 72px;
    padding: 0;
    justify-self: start;
}

.footer-android-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    height: 100%;
    color: #f5f8fb;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.footer-platforms .footer-android-badge img {
    width: 66px;
    height: 44px;
    object-fit: contain;
}

.footer-platforms .footer-galaxy-badge {
    grid-area: galaxy;
}

.footer-platforms .footer-google-badge {
    grid-area: google;
}

.footer-copyright {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3em;
    width: 100%;
    line-height: 1.45;
    letter-spacing: normal;
    word-spacing: normal;
}

.footer-copyright > span {
    display: inline;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .footer-platforms {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .footer-platforms .footer-brand-badge img {
        width: 100%;
        max-width: 180px;
    }

    .footer-platforms .footer-android-badge {
        width: 100%;
        min-width: 0;
    }
}

/* --------------------------------------------------------------------------
   Patch 19: faire Vollversion + bündige Copyright-Zeile
   -------------------------------------------------------------------------- */
.fair-use-card {
    margin-top: clamp(28px, 4vw, 52px);
    margin-bottom: clamp(28px, 4vw, 52px);
    padding: clamp(28px, 4vw, 52px);
}

.fair-use-card h3 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    line-height: 1.15;
}

.fair-use-card > p:last-of-type {
    max-width: 960px;
    margin-bottom: 0;
}

.fair-use-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 24px;
}

.fair-use-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(101, 213, 255, 0.28);
    border-radius: 999px;
    background: rgba(55, 164, 214, 0.08);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-values {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
}

.footer-copyright {
    display: block;
    width: auto;
    margin-top: 10px !important;
    padding: 0;
    text-align: left;
    white-space: nowrap;
}

.footer-values .footer-copyright > span {
    display: inline;
    width: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 640px) {
    .fair-use-card {
        padding: 25px 22px;
    }

    .fair-use-points {
        align-items: stretch;
    }

    .fair-use-points span {
        flex: 1 1 190px;
        justify-content: center;
        text-align: center;
    }
}
