:root {
    color-scheme: light dark;

    --accent: #a364fa;

    --background: #f7f7f8;
    --surface: #ffffff;
    --surface-secondary: #eeeeef;

    --text: #161617;
    --text-secondary: #66666b;

    --border: rgba(0, 0, 0, 0.10);

    --content-width: 1240px;

    --radius-large: 24px;
    --radius-medium: 12px;
}


* {
    box-sizing: border-box;
}


html {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Text",
        "Helvetica Neue",
        Arial,
        sans-serif;

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


body {
    margin: 0;
    min-width: 320px;

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


img {
    max-width: 100%;
}


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


/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;

    background:
        color-mix(
            in srgb,
            var(--background) 86%,
            transparent
        );

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

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


.site-header-inner {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    height: 64px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.02em;
}


.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 14px;

    color: var(--text-secondary);
}


.main-navigation a {
    transition: color 140ms ease;
}


.main-navigation a:hover {
    color: var(--text);
}


/* Produktmarke */

.hero-app-icon {
    display: block;

    width: 112px;
    height: 112px;

    margin: 0 0 30px;

    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);

    object-fit: contain;
}


/* Hero */

.hero {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    min-height: 760px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(390px, 0.82fr)
        minmax(0, 1.38fr);

    align-items: center;

    gap: 64px;

    padding: 92px 0 100px;
}


.hero-content {
    min-width: 0;
}


.eyebrow,
.section-label {
    margin: 0 0 18px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.01em;
}


.hero h1 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(48px, 5.4vw, 76px);
    line-height: 0.98;

    font-weight: 700;
    letter-spacing: -0.055em;
}


.hero-description {
    max-width: 590px;

    margin: 30px 0 0;

    font-size: 20px;
    line-height: 1.5;

    color: var(--text-secondary);
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 34px;
}


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

    min-height: 44px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;
}


.button-primary {
    color: white;

    background: var(--accent);

    transition:
        transform 140ms ease,
        opacity 140ms ease;
}


.button-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}


.platform-label {
    color: var(--text-secondary);

    font-size: 14px;
}


/* Produkt-Screenshot */

.hero-preview {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


.product-shot {
    width: 100%;

    margin: 0;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--surface);

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.20),
        0 8px 24px rgba(0, 0, 0, 0.10);
}


.product-shot img {
    display: block;

    width: 100%;
    height: auto;
}


/* Startseiten-Intro */

.intro {
    width: min(
        calc(100% - 40px),
        760px
    );

    margin: 0 auto;

    padding: 110px 0 100px;

    text-align: center;
}


.intro h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;

    letter-spacing: -0.045em;
}


.intro > p:last-child {
    max-width: 680px;

    margin: 26px auto 0;

    font-size: 19px;
    line-height: 1.6;

    color: var(--text-secondary);
}


/* Startseiten-Kernargumente */

.home-benefits {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

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


.home-benefit {
    min-width: 0;

    padding: 58px 42px 64px;
}


.home-benefit + .home-benefit {
    border-left: 1px solid var(--border);
}


.home-benefit-number {
    margin: 0 0 34px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
}


.home-benefit h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.12;

    letter-spacing: -0.035em;
}


.home-benefit > p:last-child {
    margin: 20px 0 0;

    color: var(--text-secondary);

    font-size: 16px;
    line-height: 1.65;
}


/* Startseiten-Features-Link */

.home-features-link {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 0 auto;

    padding: 130px 0 150px;
}


.home-features-link-content {
    width: min(100%, 780px);

    margin: 0 auto;

    text-align: center;
}


.home-features-link h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;

    letter-spacing: -0.045em;
}


.home-features-link-content > p:last-of-type {
    max-width: 680px;

    margin: 26px auto 0;

    color: var(--text-secondary);

    font-size: 19px;
    line-height: 1.6;
}


.home-features-link .button {
    margin-top: 34px;
}


/* Features */

.features-page {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 0 auto;

    padding: 110px 0 150px;
}


.features-header {
    width: min(100%, 840px);

    margin: 0 auto 100px;

    text-align: center;
}


.features-header h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;

    font-weight: 700;
    letter-spacing: -0.052em;
}


.features-lead {
    max-width: 760px;

    margin: 30px auto 0;

    font-size: 20px;
    line-height: 1.55;

    color: var(--text-secondary);
}


.feature-showcase {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.55fr);

    align-items: center;

    gap: 68px;

    padding: 82px 0;

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


.feature-showcase-reverse {
    grid-template-columns:
        minmax(280px, 0.55fr)
        minmax(0, 1.45fr);
}


.feature-showcase-reverse .feature-media {
    order: 2;
}


.feature-showcase-reverse .feature-copy {
    order: 1;
}


.feature-media {
    min-width: 0;
}


.feature-image {
    margin: 0;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--surface);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.16),
        0 6px 18px rgba(0, 0, 0, 0.08);
}


.feature-image img {
    display: block;

    width: 100%;
    height: auto;
}


.feature-copy {
    min-width: 0;
}


.feature-kicker {
    margin: 0 0 14px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 650;
}


.feature-copy h2 {
    margin: 0;

    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.05;

    letter-spacing: -0.04em;
}


.feature-copy p:not(.feature-kicker) {
    margin: 22px 0 0;

    font-size: 17px;
    line-height: 1.65;

    color: var(--text-secondary);
}


.features-summary {
    width: min(100%, 780px);

    margin: 70px auto 0;

    padding: 110px 0 20px;

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

    text-align: center;
}


.features-summary h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;

    letter-spacing: -0.045em;
}


.features-summary > p:last-of-type {
    max-width: 690px;

    margin: 26px auto 0;

    font-size: 19px;
    line-height: 1.6;

    color: var(--text-secondary);
}


.features-summary .button {
    margin-top: 34px;
}


/* Support und Download */

.service-page {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    margin: 0 auto;

    padding: 110px 0 150px;
}


.service-hero {
    width: min(100%, 820px);

    margin: 0 auto 90px;

    text-align: center;
}


.service-hero h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;

    font-weight: 700;
    letter-spacing: -0.052em;
}


.service-lead {
    max-width: 720px;

    margin: 30px auto 0;

    color: var(--text-secondary);

    font-size: 20px;
    line-height: 1.55;
}


.service-kicker {
    margin: 0 0 14px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 650;
}


.support-contact-panel,
.download-availability {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 48px;

    padding: 44px 48px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--surface);
}


.support-contact-copy {
    min-width: 0;
}


.support-contact-copy h2,
.download-availability-copy h2 {
    margin: 0;

    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;

    letter-spacing: -0.04em;
}


.support-contact-copy > p:last-child,
.download-availability-copy > p:last-child {
    max-width: 650px;

    margin: 18px 0 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.6;
}


.service-section {
    padding: 110px 0 0;
}


.service-section-heading {
    width: min(100%, 760px);

    margin-bottom: 54px;
}


.service-section-heading h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.06;

    letter-spacing: -0.045em;
}


.service-section-heading > p:last-child {
    max-width: 650px;

    margin: 24px 0 0;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.6;
}


/* Support */

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

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


.support-card {
    min-width: 0;

    padding: 46px 42px 50px;

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


.support-card-number,
.distribution-status {
    margin: 0 0 28px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
}


.support-card h3,
.distribution-card h3 {
    margin: 0;

    font-size: 26px;
    line-height: 1.12;

    letter-spacing: -0.035em;
}


.support-card > p:last-child,
.distribution-card > p:last-child {
    margin: 18px 0 0;

    color: var(--text-secondary);

    font-size: 16px;
    line-height: 1.65;
}


.support-data-note {
    width: min(100%, 880px);

    margin: 110px auto 0;

    padding: 68px 70px;

    border-radius: var(--radius-large);

    background: var(--surface-secondary);
}


.support-data-note h2,
.purchase-note h2 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.07;

    letter-spacing: -0.043em;
}


.support-data-note > div > p:last-child,
.purchase-note > p:last-child {
    max-width: 720px;

    margin: 24px 0 0;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.65;
}


.service-footer-link {
    width: min(100%, 720px);

    margin: 80px auto 0;

    text-align: center;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.6;
}


.service-footer-link p {
    margin: 0;
}


.service-footer-link a,
.text-action {
    color: var(--accent);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.service-footer-link a:hover,
.text-action:hover {
    text-decoration-thickness: 2px;
}


/* Download */

.download-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.download-app-icon {
    display: block;

    width: 104px;
    height: 104px;

    margin: 0 0 32px;

    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);
}


.download-availability {
    justify-content: flex-start;
}


.release-status {
    flex: 0 0 auto;

    padding: 9px 13px;

    border-radius: 999px;

    color: var(--accent);

    background:
        color-mix(
            in srgb,
            var(--accent) 12%,
            var(--surface)
        );

    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}


.download-availability-copy {
    min-width: 0;
}


.distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


.distribution-card {
    min-width: 0;

    padding: 44px 42px 48px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--surface);
}


.purchase-note {
    width: min(100%, 820px);

    margin: 110px auto 0;

    padding: 70px;

    border-radius: var(--radius-large);

    background: var(--surface-secondary);

    text-align: center;
}


.purchase-note > p:last-child {
    margin-left: auto;
    margin-right: auto;
}


.download-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 26px;

    margin-top: 54px;
}


.text-action {
    font-size: 15px;
    font-weight: 600;
}


/* Datenschutz */

.policy-page {
    width: min(
        calc(100% - 40px),
        1040px
    );

    margin: 0 auto;

    padding: 110px 0 150px;
}


.policy-hero {
    width: min(100%, 820px);

    margin: 0 auto 90px;

    text-align: center;
}


.policy-hero h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;

    font-weight: 700;
    letter-spacing: -0.052em;
}


.policy-lead {
    max-width: 720px;

    margin: 30px auto 0;

    color: var(--text-secondary);

    font-size: 20px;
    line-height: 1.55;
}


.policy-meta {
    margin: 22px 0 0;

    color: var(--text-secondary);

    font-size: 13px;
}


.privacy-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 90px;

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


.privacy-summary-card {
    min-width: 0;

    padding: 42px 34px 46px;
}


.privacy-summary-card + .privacy-summary-card {
    border-left: 1px solid var(--border);
}


.privacy-summary-number {
    margin: 0 0 28px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
}


.privacy-summary-card h2 {
    margin: 0;

    font-size: 23px;
    line-height: 1.15;

    letter-spacing: -0.032em;
}


.privacy-summary-card > p:last-child {
    margin: 18px 0 0;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.65;
}


.policy-section {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);

    gap: 34px;

    padding: 50px 0;

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


.policy-section-marker {
    padding-top: 5px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
}


.policy-section-content {
    min-width: 0;
}


.policy-section-content h2 {
    margin: 0 0 20px;

    font-size: clamp(27px, 3vw, 34px);
    line-height: 1.12;

    letter-spacing: -0.038em;
}


.policy-section-content p {
    max-width: 800px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.68;
}


.policy-section-content p + p {
    margin-top: 18px;
}


.policy-section-content strong {
    color: var(--text);

    font-weight: 650;
}


.policy-section-content a {
    color: var(--accent);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.policy-section-content a:hover {
    text-decoration-thickness: 2px;
}


/* Impressum / Legal */

.legal-page {
    width: min(
        calc(100% - 40px),
        900px
    );

    margin: 0 auto;

    padding: 110px 0 150px;
}


.legal-hero {
    width: min(100%, 760px);

    margin: 0 auto 70px;

    text-align: center;
}


.legal-hero h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 72px);
    line-height: 0.98;

    font-weight: 700;
    letter-spacing: -0.052em;
}


.legal-lead {
    max-width: 680px;

    margin: 28px auto 0;

    color: var(--text-secondary);

    font-size: 19px;
    line-height: 1.6;
}


.draft-notice {
    margin: 0 0 54px;

    padding: 18px 20px;

    border: 1px solid var(--accent);
    border-radius: var(--radius-medium);

    background:
        color-mix(
            in srgb,
            var(--accent) 10%,
            var(--surface)
        );

    font-size: 15px;
    line-height: 1.55;
}


.draft-notice strong {
    display: block;

    margin-bottom: 4px;
}


.legal-draft-notice {
    margin-bottom: 70px;

    padding: 24px 26px;

    border-radius: 16px;
}


.legal-section {
    padding: 46px 0;

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


.legal-section-label {
    margin: 0 0 14px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
}


.legal-section h2 {
    margin: 0;

    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;

    letter-spacing: -0.038em;
}


.legal-section p:not(.legal-section-label) {
    margin: 20px 0 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.65;
}


.legal-section a {
    color: var(--accent);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.legal-section a:hover {
    text-decoration-thickness: 2px;
}


.placeholder {
    color: var(--accent);

    font-weight: 650;
}


.legal-status {
    margin-top: 80px;

    padding: 56px 60px;

    border-radius: var(--radius-large);

    background: var(--surface-secondary);

    text-align: center;
}


.legal-status h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.08;

    letter-spacing: -0.043em;
}


.legal-status > p:last-child {
    max-width: 680px;

    margin: 22px auto 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.65;
}


.legal-status code {
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    color: var(--text);
}


/* Footer */

.site-footer {
    border-top: 1px solid var(--border);
}


.site-footer-inner {
    width: min(
        calc(100% - 40px),
        var(--content-width)
    );

    min-height: 90px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--text-secondary);

    font-size: 13px;
}


.site-footer-inner nav {
    display: flex;
    gap: 22px;
}


/* Bestehende generische Inhaltsseiten */

.content-page {
    width: min(
        calc(100% - 40px),
        860px
    );

    min-height: calc(100vh - 155px);

    margin: 0 auto;

    padding: 110px 0 140px;
}


.content-page-header {
    margin-bottom: 70px;
}


.content-page-header h1 {
    margin: 0;

    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;

    font-weight: 700;
    letter-spacing: -0.05em;
}


.content-page-lead {
    max-width: 720px;

    margin: 28px 0 0;

    font-size: 20px;
    line-height: 1.55;

    color: var(--text-secondary);
}


.content-section {
    padding: 42px 0;

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


.content-section h2 {
    margin: 0 0 16px;

    font-size: 28px;
    line-height: 1.15;

    letter-spacing: -0.035em;
}


.content-section p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    color: var(--text-secondary);
}


.content-section a {
    color: var(--accent);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.content-section a:hover {
    text-decoration-thickness: 2px;
}


.content-section p + p {
    margin-top: 18px;
}


.content-section ul {
    margin: 18px 0 0;

    padding-left: 24px;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.65;
}


.legal-meta {
    margin-top: 22px;

    color: var(--text-secondary);

    font-size: 14px;
}


/* Dark Mode */

@media (prefers-color-scheme: dark) {

    :root {
        --background: #111112;
        --surface: #1b1b1d;
        --surface-secondary: #242427;

        --text: #f5f5f7;
        --text-secondary: #a6a6ad;

        --border: rgba(255, 255, 255, 0.10);
    }

}


/* Mittlere Fenster */

@media (max-width: 1050px) {

    .hero {
        grid-template-columns:
            minmax(340px, 0.9fr)
            minmax(0, 1.1fr);

        gap: 44px;
    }


    .hero h1 {
        font-size: clamp(46px, 5.4vw, 64px);
    }


    .home-benefit {
        padding-left: 30px;
        padding-right: 30px;
    }


    .feature-showcase,
    .feature-showcase-reverse {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(260px, 0.8fr);

        gap: 44px;
    }


    .support-contact-panel,
    .download-availability {
        padding-left: 38px;
        padding-right: 38px;
    }

}


/* Kleine Bildschirme */

@media (max-width: 800px) {

    .site-header-inner {
        height: auto;
        min-height: 64px;

        flex-direction: column;
        justify-content: center;

        gap: 10px;

        padding: 12px 0;
    }


    .main-navigation {
        gap: 18px;
    }


    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 60px;

        padding: 80px 0;
    }


    .hero-content {
        text-align: center;
    }


    .hero-app-icon {
        width: 104px;
        height: 104px;

        margin-left: auto;
        margin-right: auto;

        border-radius: 22px;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


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


    .product-shot {
        border-radius: 16px;
    }


    .intro {
        padding-top: 90px;
        padding-bottom: 80px;
    }


    .home-benefits {
        grid-template-columns: 1fr;
    }


    .home-benefit {
        padding: 46px 0 50px;
    }


    .home-benefit + .home-benefit {
        border-left: 0;
        border-top: 1px solid var(--border);
    }


    .home-benefit-number {
        margin-bottom: 22px;
    }


    .home-features-link {
        padding: 100px 0 120px;
    }


    .features-page,
    .service-page,
    .policy-page,
    .legal-page {
        padding-top: 80px;
        padding-bottom: 110px;
    }


    .features-header,
    .service-hero,
    .policy-hero,
    .legal-hero {
        margin-bottom: 60px;
    }


    .feature-showcase,
    .feature-showcase-reverse {
        grid-template-columns: 1fr;

        gap: 38px;

        padding: 60px 0;
    }


    .feature-showcase-reverse .feature-media,
    .feature-showcase-reverse .feature-copy {
        order: initial;
    }


    .feature-copy {
        text-align: center;
    }


    .feature-image {
        border-radius: 15px;
    }


    .features-summary {
        padding-top: 80px;
    }


    .support-contact-panel,
    .download-availability {
        flex-direction: column;
        align-items: flex-start;

        padding: 36px;
    }


    .support-contact-panel .button {
        align-self: flex-start;
    }


    .support-grid,
    .distribution-grid {
        grid-template-columns: 1fr;
    }


    .support-data-note,
    .purchase-note {
        margin-top: 80px;

        padding: 50px 40px;
    }


    .purchase-note {
        text-align: center;
    }


    .download-actions {
        margin-top: 44px;
    }


    .privacy-summary {
        grid-template-columns: 1fr;
    }


    .privacy-summary-card {
        padding: 34px 0 38px;
    }


    .privacy-summary-card + .privacy-summary-card {
        border-left: 0;
        border-top: 1px solid var(--border);
    }


    .policy-section {
        grid-template-columns: 48px minmax(0, 1fr);

        gap: 20px;
    }


    .legal-status {
        padding: 48px 40px;
    }


    .content-page {
        padding-top: 70px;
        padding-bottom: 100px;
    }


    .content-page-header {
        margin-bottom: 50px;
    }


    .site-footer-inner {
        flex-direction: column;
        justify-content: center;

        gap: 10px;

        padding: 25px 0;
    }

}


/* Sehr kleine Bildschirme */

@media (max-width: 520px) {

    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;

        gap: 12px 18px;
    }


    .hero {
        width: min(
            calc(100% - 28px),
            var(--content-width)
        );

        padding-top: 62px;
    }


    .hero h1 {
        font-size: 46px;
    }


    .hero-description {
        font-size: 18px;
    }


    .hero-actions {
        flex-direction: column;

        gap: 16px;
    }


    .home-benefits,
    .home-features-link,
    .features-page,
    .service-page,
    .policy-page,
    .legal-page {
        width: min(
            calc(100% - 28px),
            var(--content-width)
        );
    }


    .features-header h1,
    .service-hero h1,
    .policy-hero h1,
    .legal-hero h1 {
        font-size: 46px;
    }


    .features-lead,
    .service-lead,
    .policy-lead,
    .legal-lead {
        font-size: 18px;
    }


    .feature-copy h2 {
        font-size: 34px;
    }


    .support-contact-panel,
    .download-availability {
        padding: 28px 24px;

        border-radius: 18px;
    }


    .support-contact-copy h2 {
        font-size: 23px;
        overflow-wrap: anywhere;
    }


    .support-card,
    .distribution-card {
        padding: 36px 28px 40px;
    }


    .support-data-note,
    .purchase-note {
        padding: 42px 28px;

        border-radius: 18px;
    }


    .support-data-note h2,
    .purchase-note h2 {
        font-size: 34px;
    }


    .download-actions {
        flex-direction: column;

        gap: 18px;
    }


    .policy-section {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 40px 0;
    }


    .policy-section-marker {
        padding-top: 0;
    }


    .policy-section-content h2 {
        font-size: 28px;
    }


    .legal-draft-notice {
        padding: 22px 20px;
    }


    .legal-section {
        padding: 40px 0;
    }


    .legal-section h2 {
        font-size: 29px;
    }


    .legal-status {
        padding: 42px 28px;

        border-radius: 18px;
    }


    .legal-status h2 {
        font-size: 34px;
    }

}

/* Support-Kontaktformular */

.support-form-section {
    width: min(100%, 900px);

    margin: 110px auto 0;

    padding: 58px 60px 62px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--surface);
}


.support-form-heading {
    width: min(100%, 720px);

    margin-bottom: 42px;
}


.support-form-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.07;

    letter-spacing: -0.043em;
}


.support-form-heading > p:last-child {
    max-width: 700px;

    margin: 22px 0 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.65;
}


.support-form {
    position: relative;

    display: grid;
    gap: 26px;
}


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

    gap: 22px;
}


.form-field {
    min-width: 0;
}


.form-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 10px;

    color: var(--text);

    font-size: 14px;
    font-weight: 650;
}


.form-required,
.form-optional {
    color: var(--text-secondary);

    font-size: 12px;
    font-weight: 500;
}


.form-field input,
.form-field textarea {
    display: block;

    width: 100%;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    padding: 13px 14px;

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

    font: inherit;
    font-size: 16px;
    line-height: 1.5;

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


.form-field textarea {
    min-height: 190px;

    resize: vertical;
}


.form-field input:focus,
.form-field textarea:focus {
    outline: none;

    border-color: var(--accent);

    background: var(--surface);

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--accent) 18%,
            transparent
        );
}


.form-honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}


.form-submit-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 34px;

    padding-top: 8px;
}


.form-privacy-note {
    max-width: 610px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


.form-privacy-note a {
    color: var(--accent);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.form-privacy-note a:hover {
    text-decoration-thickness: 2px;
}


button.button {
    border: 0;

    font-family: inherit;

    cursor: pointer;
}


.contact-result-page {
    min-height: calc(100vh - 155px);

    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-result-card {
    width: min(100%, 760px);

    padding: 64px 66px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--surface);

    text-align: center;
}


.contact-result-card h1 {
    margin: 0;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;

    letter-spacing: -0.048em;
}


.contact-result-card > p:not(.service-kicker) {
    max-width: 640px;

    margin: 24px auto 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.65;
}


.contact-result-card .button {
    margin-top: 34px;
}


.contact-result-detail {
    font-size: 14px !important;
}


@media (max-width: 800px) {

    .support-form-section {
        margin-top: 80px;

        padding: 44px 38px 48px;
    }


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


    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }


    .contact-result-card {
        padding: 50px 40px;
    }

}


@media (max-width: 520px) {

    .support-form-section {
        padding: 36px 24px 40px;

        border-radius: 18px;
    }


    .support-form-heading h2 {
        font-size: 34px;
    }


    .form-field label {
        align-items: flex-start;
        flex-direction: column;

        gap: 4px;
    }


    .form-submit-row .button {
        width: 100%;
    }


    .contact-result-card {
        padding: 42px 28px;

        border-radius: 18px;
    }


    .contact-result-card h1 {
        font-size: 40px;
    }

}