/* ============================================
   mono. — Main Stylesheet
   Outfit Light 300 + Inter + Playfair Display
   ============================================ */

:root {
    --bg: #FFFFFF;
    --bg-soft: #F7F7F5;
    --text: #111111;
    --text-secondary: #888888;
    --border: #E8E8E6;
    --galerie: #C8956C;
    --radio: #4A7FD4;
    --casts: #8B6DB5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== NAVIGATION ===== */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0 clamp(24px, 5vw, 80px); height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px; font-weight: 300; color: var(--text);
    text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo .dot { color: var(--galerie); transition: color 0.4s; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-lang {
    font-size: 12px; font-weight: 600; color: var(--text-secondary);
    letter-spacing: 0.5px; cursor: pointer;
    border: 1px solid var(--border); padding: 5px 10px; border-radius: 4px;
    text-decoration: none;
}
.nav-user {
    font-size: 13px; color: var(--text-secondary);
}
.nav-cta {
    padding: 8px 20px; border-radius: 100px;
    background: var(--text); color: #fff !important;
    font-size: 13px; font-weight: 600;
}
.nav-cta:hover { opacity: 0.8; }

/* ===== HERO ===== */
.hero {
    height: 100vh; min-height: 700px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 0 24px;
    position: relative; overflow: hidden;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}
.hero-word {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(80px, 14vw, 180px); font-weight: 300;
    letter-spacing: -5px; line-height: 0.9; color: var(--text);
}
.hero-word .dot {
    display: inline-block;
    animation: dot-pulse 6s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 30% { color: var(--galerie); }
    33%, 63% { color: var(--radio); }
    66%, 96% { color: var(--casts); }
}
.hero-sub {
    margin-top: 32px;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary); font-weight: 400;
    letter-spacing: -0.02em; max-width: 400px;
}
.hero-scroll-hint {
    position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--text-secondary); font-size: 12px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
.hero-scroll-hint .line {
    width: 1.5px; height: 48px; background: var(--text-secondary); opacity: 0.4;
    animation: grow 2.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes grow { 0%,100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

/* ===== DIVIDER ===== */
.divider {
    width: 80px; height: 1.5px; background: var(--text-secondary); opacity: 0.3; margin: 0 auto;
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 120px); align-items: center;
    max-width: 1400px; margin: 0 auto;
    padding: clamp(60px, 12vh, 140px) clamp(24px, 5vw, 80px);
}
.app-showcase.reverse { direction: rtl; }
.app-showcase.reverse > * { direction: ltr; }

.app-num {
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 20px;
}
.app-showcase-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 56px); font-weight: 300;
    line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.app-showcase-text p {
    font-size: 16px; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 32px; max-width: 400px;
}
.app-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    margin-top: 8px; transition: gap 0.3s;
}
.app-link:hover { gap: 14px; }
.app-link .arrow {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: transform 0.3s;
}
.app-link:hover .arrow { transform: translateX(4px); }

/* Overlapping Device Layout (Landing Page) — V7: Phone rechts, minimale Überlagerung */
.devices-overlap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(320px, 38vw, 540px);
    padding-bottom: clamp(30px, 4vw, 50px);
    padding-right: clamp(40px, 5vw, 80px);
}
.device-tablet-ol {
    width: clamp(380px, 42vw, 620px);
    aspect-ratio: 520 / 343;
    background: #111; border-radius: clamp(16px, 1.8vw, 28px); padding: clamp(6px, 0.7vw, 10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative; z-index: 1;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.device-tablet-ol:hover { transform: translateY(-6px); }
.device-tablet-ol-screen {
    width: 100%; height: 100%; border-radius: clamp(10px, 1.2vw, 18px);
    overflow: hidden; background: #FFFFFF;
}
.device-phone-ol {
    width: clamp(130px, 14vw, 210px);
    aspect-ratio: 180 / 367;
    background: #111; border-radius: clamp(20px, 2.3vw, 34px); padding: clamp(5px, 0.5vw, 8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
    position: absolute; z-index: 2;
    right: clamp(-30px, -4vw, 0px);
    bottom: clamp(-20px, -3vw, 0px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.device-phone-ol:hover { transform: translateY(-8px); }
.device-phone-ol-screen {
    width: 100%; height: 100%; border-radius: clamp(15px, 1.8vw, 26px);
    overflow: hidden;
}

/* ===== DEVICE SWITCHER (shared) ===== */

/* Pill Toggle — Variante A (App-Detail) */
.device-switcher { display: flex; justify-content: center; margin-bottom: 40px; }
.device-toggle {
    display: flex; gap: 4px;
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 100px; padding: 4px;
}
.device-toggle-btn {
    padding: 8px 20px; border-radius: 100px; border: none;
    font: 500 13px 'Inter', sans-serif;
    cursor: pointer; transition: all 0.3s;
    background: transparent; color: var(--text-secondary);
    display: flex; align-items: center; gap: 6px;
}
.device-toggle-btn.active {
    background: var(--text); color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.device-toggle-btn:hover:not(.active) { color: var(--text); }
.device-toggle-btn svg { width: 16px; height: 16px; pointer-events: none; }

/* Icon Toggle — Variante B (Guide) */
.device-toggle-compact {
    display: flex; gap: 2px;
    background: #F3F4F6; border: 1px solid #E5E7EB;
    border-radius: 10px; padding: 3px;
}
.device-toggle-compact .toggle-btn {
    padding: 6px 10px; border-radius: 7px; border: none;
    cursor: pointer; transition: all 0.3s;
    background: transparent; color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
}
.device-toggle-compact .toggle-btn.active {
    background: #fff; color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.device-toggle-compact .toggle-btn:hover:not(.active) { color: var(--text); }
.device-toggle-compact .toggle-btn svg { width: 18px; height: 18px; pointer-events: none; }

/* Device Frame (App-Detail) */
.app-device-area { display: flex; flex-direction: column; align-items: center; }
.device-frame {
    width: 280px; height: 570px;
    background: #111; border-radius: 44px; padding: 10px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    margin: 0 auto;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.device-frame.tablet {
    width: 560px; height: 370px;
    border-radius: 28px;
}
.device-frame .device-screen {
    position: relative;
    width: 100%; height: 100%; border-radius: 34px;
    overflow: hidden;
    transition: border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.device-frame.tablet .device-screen { border-radius: 18px; background: #111; }

/* Guide-spezifische Anpassungen fuer device-frame */
.guide-screenshot-frame .device-frame { transition: none; }
.guide-screenshot-frame .device-frame.tablet {
    width: 840px; height: 556px;
    border-radius: 28px;
}
.guide-screenshot-frame .device-frame.landscape {
    width: 480px; height: 230px;
    border-radius: 22px;
}
.guide-screenshot-frame .device-frame.landscape .device-screen {
    border-radius: 14px;
}

/* Placeholder content inside device frames */
.phone-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    font-family: 'Outfit', sans-serif; font-weight: 300;
}
/* Screenshot images inside device frames */
.device-screenshot {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: opacity 0.3s;
}
.device-frame .device-screenshot,
.device-frame.tablet .device-screenshot {
    width: 100%; height: 100%; object-fit: cover;
    display: block; max-width: none; border-radius: 0; margin: 0;
}

.device-placeholder-icon { opacity: 0.2; transition: opacity 0.3s; pointer-events: none; }
.device-placeholder-label { font-size: 13px; opacity: 0.4; transition: opacity 0.3s; pointer-events: none; }

/* Guide section header with toggle */
.guide-section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding-bottom: 16px; margin-top: 48px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}
.guide-section-header:first-child { margin-top: 0; }
.guide-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px; font-weight: 300; letter-spacing: -0.5px;
    margin: 0; padding: 0; border: none;
}

/* Guide global device switcher */
.guide-global-switcher {
    max-width: 720px; margin: 0 auto 8px;
    padding: 0 clamp(24px, 5vw, 80px);
    transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.guide-global-switcher.guide-switcher-wide {
    max-width: 1080px;
}

/* Toggle direkt über der Screenshot-Area (Variante B) */
.guide-screenshot-toggle {
    display: flex; justify-content: flex-end;
    margin: 24px 0 8px;
}

/* Guide screenshot area */
.guide-screenshot-area {
    background: #F3F4F6; border: 1px solid #E5E7EB;
    border-radius: 16px; overflow: hidden; margin: 0 0 24px;
}
.guide-screenshot-frame {
    display: flex; justify-content: center; align-items: center;
    padding: 32px;
}

/* Guide text blocks */
.guide-text p {
    color: var(--text-secondary); margin-bottom: 16px; font-size: 16px; line-height: 1.8;
}
.guide-text ol, .guide-text ul {
    margin: 0 0 16px 24px; color: var(--text-secondary); line-height: 1.8;
}
.guide-text li { margin-bottom: 8px; }

/* Guide hint/callout box */
.guide-hint {
    border-left: 3px solid var(--hint-color, #999);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0;
}
.guide-hint p {
    color: var(--text-secondary); margin-bottom: 8px; font-size: 15px; line-height: 1.7;
}
.guide-hint p:last-child { margin-bottom: 0; }
.guide-hint strong { color: var(--text); }

/* Guide comparison slider (before/after screenshot) */
.guide-comparison {
    position: absolute; inset: 0;
    overflow: hidden;
    user-select: none; -webkit-user-select: none;
    touch-action: none;
    cursor: grab;
}
.guide-comparison:active { cursor: grabbing; }
.guide-comparison .comparison-bottom {
    display: block; width: 100%; height: 100%; object-fit: cover;
    max-width: none; border-radius: 0; margin: 0;
    /* Spezifität 0,2,1 — schlägt .guide-content img (0,1,1) */
}
.guide-comparison .comparison-top {
    position: absolute; inset: 0;
}
.guide-comparison .comparison-top img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    max-width: none; border-radius: 0; margin: 0;
    /* Spezifität 0,2,1 — schlägt .guide-content img (0,1,1) */
}
.guide-comparison .comparison-top .comparison-placeholder {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.comparison-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 400; letter-spacing: 0.02em;
}
.comparison-handle {
    position: absolute; z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
/* Vertical mode (phone) */
.guide-comparison[data-orientation="vertical"] .comparison-handle {
    left: 0; right: 0; height: 2px;
    background: rgba(255,255,255,0.85);
    transform: translateY(-50%);
    cursor: ns-resize;
}
/* Horizontal mode (tablet) */
.guide-comparison[data-orientation="horizontal"] .comparison-handle {
    top: 0; bottom: 0; width: 2px;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
    cursor: ew-resize;
}
.comparison-grip {
    width: 36px; height: 36px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.comparison-grip svg {
    width: 18px; height: 18px; color: #444;
    transition: transform 0.3s ease;
}
.guide-comparison[data-orientation="vertical"] .comparison-grip svg {
    transform: rotate(90deg);
}

/* Guide screenshot label (between two screenshots in same chapter) */
.guide-screenshot-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 400;
    color: var(--text-muted, #999);
    text-align: center;
    margin: 8px 0 4px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    text-align: center;
    padding: clamp(100px, 14vw, 200px) clamp(24px, 5vw, 80px);
}
.philosophy blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-style: italic; font-weight: 400;
    line-height: 1.35; letter-spacing: -0.02em;
    max-width: 800px; margin: 0 auto; color: var(--text);
}
.philosophy .attr {
    margin-top: 32px; font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-secondary);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    max-width: 640px; margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
    text-align: center;
}
.disclaimer-icon {
    font-size: 24px; color: var(--text-secondary);
    margin-bottom: 16px;
}
.disclaimer h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-secondary); margin-bottom: 12px;
}
.disclaimer p {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta {
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
    text-align: center; background: var(--bg-soft);
}
.cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 300;
    letter-spacing: -1px; margin-bottom: 16px;
}
.cta p {
    font-size: 16px; color: var(--text-secondary); margin-bottom: 40px;
}
.btn-pill {
    display: inline-block; padding: 14px 40px;
    border-radius: 100px; background: var(--text); color: #fff;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px clamp(24px, 5vw, 80px);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border);
}
.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 300; color: var(--text); letter-spacing: -0.5px;
}
.footer-logo .dot { color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a, .footer-links span {
    font-size: 13px; color: var(--text-secondary); text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

/* ===== LOGIN (Landing Page) ===== */
.login-wall { margin: 0; overflow: hidden; }

.login-lang {
    position: absolute; top: 28px; right: 32px;
    font-size: 12px; font-weight: 600; color: var(--text-secondary);
    letter-spacing: 0.5px; text-decoration: none; transition: color 0.2s;
    z-index: 10;
}
.login-lang:hover { color: var(--text); }

.login-hero {
    height: 100vh; min-height: 600px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 0 24px;
    position: relative; overflow: hidden;
}

.login-logo {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(80px, 14vw, 180px); font-weight: 300;
    letter-spacing: -5px; line-height: 0.9;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-logo .dot {
    display: inline-block;
    animation: loginDotPulse 6s ease-in-out infinite;
}
@keyframes loginDotPulse {
    0%, 30% { color: var(--galerie); }
    33%, 63% { color: var(--radio); }
    66%, 96% { color: var(--casts); }
}
.login-logo.shifted {
    transform: translateY(-10px) scale(0.85);
    opacity: 0.6;
}

.login-tagline {
    margin-top: 28px;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary); font-weight: 400;
    letter-spacing: -0.02em;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-tagline.shifted {
    transform: translateY(-8px);
    opacity: 0; max-height: 0; margin-top: 0;
}

/* Trigger: Kreis + "login" */
.login-trigger-wrap {
    margin-top: 48px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.login-trigger-wrap.hidden {
    opacity: 0; pointer-events: none; transform: translateY(10px);
}
.login-trigger {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    border: none; background: none; cursor: pointer;
    color: var(--text-secondary);
    animation: loginTriggerFloat 2.5s ease-in-out infinite;
}
.login-trigger:hover { color: var(--text); }
.login-trigger-circle {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all 0.3s;
}
.login-trigger:hover .login-trigger-circle { border-color: var(--text); }
.login-trigger-label {
    font-size: 12px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
}
@keyframes loginTriggerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Login-Karte */
.login-card-wrap {
    margin-top: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease, margin-top 0.5s ease;
}
.login-card-wrap.visible {
    max-height: 400px; opacity: 1; margin-top: 40px;
}
.login-card {
    background: #fff; border-radius: 20px;
    padding: 40px 36px; width: 100%; max-width: 380px;
    text-align: center;
}
.login-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 400; margin-bottom: 24px;
}
.login-error {
    background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA;
    padding: 12px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 24px;
}
.login-form { text-align: left; }
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); margin-bottom: 6px;
}
.form-field input {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 10px;
    font: 400 15px 'Inter', sans-serif; outline: none;
    background: var(--bg); color: var(--text);
    transition: border-color 0.2s;
}
.form-field input:focus { border-color: var(--text); }
.login-btn {
    width: 100%; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; margin-top: 8px;
}
@media (max-width: 480px) {
    .login-card { padding: 32px 24px; }
}

/* ===== APP DETAIL ===== */
.app-hero {
    text-align: center;
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.app-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 72px); font-weight: 300;
    letter-spacing: -2px; line-height: 1.1;
}
.app-hero-tagline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary); margin-top: 16px;
}
.app-detail {
    max-width: 1200px; margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
}
.app-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 120px); align-items: center;
}
.app-detail-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px; font-weight: 300;
    letter-spacing: -0.5px; margin-bottom: 16px;
}
.app-detail-text p {
    font-size: 16px; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 32px;
}
.app-detail-actions {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.app-info {
    max-width: 1200px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.app-info-cards {
    display: flex; gap: 16px; justify-content: center;
}
.app-info-card {
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 32px; text-align: center;
    min-width: 120px;
}
.app-info-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px;
}
.app-info-value {
    font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 300;
}
.app-back {
    max-width: 1200px; margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 120px);
}

/* ===== DOWNLOADS ===== */
.downloads-hero {
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 24px clamp(40px, 6vw, 60px);
}
.downloads-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 300;
    letter-spacing: -1.5px;
}
.downloads-hero p {
    color: var(--text-secondary); font-size: 16px; margin-top: 12px;
}
.downloads-flash {
    max-width: 640px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) 24px;
}
.downloads-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; max-width: 1100px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.download-card {
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.download-card-icon {
    display: flex; align-items: center; justify-content: center;
    padding: 48px 32px 32px;
}
.download-card-icon img {
    width: 80px; height: 80px; border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.download-card-icon-placeholder {
    width: 80px; height: 80px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 300;
    color: #fff; letter-spacing: -0.5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.download-card-body {
    padding: 0 32px 24px; text-align: center;
    flex: 1; display: flex; flex-direction: column;
}
.download-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 400;
    letter-spacing: -0.3px; margin-bottom: 6px;
}
.download-card-tagline {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.download-card-chips {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 20px;
}
.download-chip {
    font-size: 12px; padding: 5px 14px; border-radius: 99px;
    background: var(--bg-soft); color: var(--text-secondary); font-weight: 500;
}
.download-card-action { padding: 0 24px 24px; }
.download-btn {
    display: block; text-align: center;
}
.download-card-accent { height: 3px; width: 100%; }

/* Gesperrte Download-Karte (Variante B) */
.download-card-locked .download-card-icon img { opacity: 0.4; filter: grayscale(0.5); }
.download-card-locked .download-card-body h3 { opacity: 0.5; }
.download-card-locked .download-card-tagline { opacity: 0.4; }
.download-card-locked .download-card-chips { opacity: 0.3; }
.download-btn-locked {
    display: block; text-align: center; padding: 12px 32px;
    border-radius: 99px; font-size: 14px; font-weight: 500;
    background: var(--bg-soft); color: var(--text-secondary);
    border: 1px solid var(--border);
}
.download-locked-sub {
    text-align: center; font-size: 11px; color: #bbb;
    margin-top: 8px;
}

/* Admin: App-Zugriffs-Toggles */
.app-access-toggles { display: flex; gap: 8px; align-items: center; }
.app-access-toggle {
    width: 32px; height: 32px; border-radius: 8px;
    border: 2px solid var(--border); background: #fff;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 0;
}
.app-access-toggle img { border-radius: 5px; opacity: 0.3; transition: opacity 0.2s; }
.app-access-toggle.active { border-color: color-mix(in srgb, var(--ac, var(--border)) 30%, transparent); background: color-mix(in srgb, var(--ac, #fff) 6%, #fff); }
.app-access-toggle.active img { opacity: 1; }
.app-access-check {
    position: absolute; bottom: -3px; right: -3px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #22C55E; color: #fff; font-size: 9px; font-weight: 700;
    display: none; align-items: center; justify-content: center;
    border: 2px solid #fff; line-height: 1;
}
.app-access-toggle.active .app-access-check { display: flex; }
.downloads-hint {
    max-width: 640px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(40px, 6vw, 60px);
}
.downloads-hint-card {
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px; font-size: 14px;
    color: var(--text-secondary); line-height: 1.7;
}
.downloads-hint-card strong { color: var(--text); }

/* ===== DOWNLOAD-INFO (Disclaimer) ===== */
.download-info-hero {
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 24px clamp(30px, 4vw, 48px);
}
.download-info-icon {
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}
.download-info-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 300;
    letter-spacing: -1.5px;
}
.download-info-sub {
    color: var(--text-secondary); font-size: 16px; margin-top: 12px;
}
.download-info-content {
    max-width: 560px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.download-info-card {
    border: 1px solid var(--border); border-radius: 20px;
    overflow: hidden;
}
.download-info-notice {
    padding: 40px 32px 32px; text-align: center;
}
.download-info-notice-icon {
    font-size: 28px; color: var(--text-secondary); margin-bottom: 12px;
}
.download-info-notice h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px; font-weight: 400; margin-bottom: 12px;
}
.download-info-notice p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.download-info-action {
    padding: 24px 32px 32px; text-align: center;
    border-top: 1px solid var(--border);
}
.download-info-action p {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 16px;
}
.download-info-action .btn-pill {
    display: inline-block; padding: 12px 48px;
}

/* ===== GUIDE / ANLEITUNG ===== */
.guide-hero {
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 24px clamp(40px, 6vw, 60px);
}
.guide-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 300;
    letter-spacing: -1.5px;
}
.guide-hero-sub {
    color: var(--text-secondary); font-size: 16px; margin-top: 12px;
}
.guide-content {
    max-width: 720px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 8vw, 120px);
    font-size: 16px; line-height: 1.8;
    transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.guide-content.guide-content-wide {
    max-width: 1080px;
}
.guide-content code {
    background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; font-size: 14px;
}
.guide-content img {
    max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0;
}
.guide-placeholder {
    text-align: center; padding: 60px 0;
    color: var(--text-secondary); font-style: italic;
}

/* Floating TOC Sidebar (Variante A) */
.guide-toc {
    position: fixed;
    left: max(20px, calc((100vw - var(--guide-width, 720px)) / 2 - 240px));
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s, left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.guide-toc.visible {
    opacity: 1;
    pointer-events: all;
}
.guide-toc a {
    display: block;
    padding: 6px 0 6px 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    border-left: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.guide-toc a:hover {
    color: var(--text);
}
.guide-toc a.active {
    font-weight: 400;
}
@media (max-width: 1100px) {
    .guide-toc { display: none; }
}

/* ===== LEGAL PAGES (Impressum, Datenschutz) ===== */
.legal-page {
    max-width: 720px; margin: 0 auto;
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 120px);
}
.legal-page h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 48px); font-weight: 300;
    letter-spacing: -1px; margin-bottom: 40px;
}
.legal-content h2 {
    font-size: 18px; font-weight: 600; margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 15px; font-weight: 600; margin: 20px 0 8px;
}
.legal-content p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 16px;
}
.legal-content ul {
    margin: 0 0 16px 24px; color: var(--text-secondary);
    font-size: 15px; line-height: 1.8;
}
.legal-content a {
    color: var(--text); text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--text-secondary); }

/* ===== ADMIN ===== */
.admin-page {
    max-width: 960px; margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
}
.admin-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.admin-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px; font-weight: 300; letter-spacing: -0.5px;
}
.admin-nav { display: flex; gap: 8px; }
.admin-nav-link {
    padding: 6px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 500; text-decoration: none;
    color: var(--text-secondary); border: 1px solid var(--border);
    transition: all 0.2s;
}
.admin-nav-link:hover { color: var(--text); border-color: var(--text); }
.admin-nav-link.active { color: #fff; background: var(--text); border-color: var(--text); }

.admin-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px; margin-bottom: 40px;
}
.stat-card {
    background: var(--bg-soft); border-radius: 16px; padding: 24px;
    border: 1px solid var(--border); text-align: center;
}
.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px; font-weight: 300; letter-spacing: -1px;
}
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.admin-section { margin-bottom: 40px; }
.admin-section h2 {
    font-size: 16px; font-weight: 600; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

.admin-table {
    width: 100%; border-collapse: collapse; font-size: 14px;
}
.admin-table th {
    text-align: left; padding: 10px 12px; font-weight: 600;
    font-size: 12px; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}
.admin-table td {
    padding: 12px; border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.admin-badge {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    font-size: 10px; font-weight: 700; background: var(--text);
    color: #fff; letter-spacing: 0.5px; vertical-align: middle;
    margin-left: 6px;
}
.status-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    margin-right: 6px;
}
.status-dot.active { background: #22C55E; }
.status-dot.inactive { background: #EF4444; }

.admin-actions { white-space: nowrap; }
.admin-btn {
    padding: 4px 12px; border-radius: 6px; border: 1px solid var(--border);
    background: #fff; font: 500 12px 'Inter', sans-serif;
    cursor: pointer; transition: all 0.2s; color: var(--text-secondary);
}
.admin-btn:hover { border-color: var(--text); color: var(--text); }
.admin-input-sm {
    padding: 4px 10px; border: 1px solid var(--border); border-radius: 6px;
    font: 400 12px 'Inter', sans-serif; width: 120px; outline: none;
    margin-left: 8px;
}
.admin-input-sm:focus { border-color: var(--text); }

.admin-form-row {
    display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap;
}
.admin-form-row .field { flex: 1; min-width: 140px; }

.admin-message {
    padding: 12px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 24px;
}
.admin-message.success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.admin-message.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ===== ADMIN — APP-VERWALTUNG ===== */
.app-mgmt-cards { display: flex; flex-direction: column; gap: 16px; }
.app-mgmt-card {
    border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.app-mgmt-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.app-mgmt-card-main {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 24px;
}
.app-mgmt-icon img {
    width: 48px; height: 48px; border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.app-mgmt-icon-placeholder {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 300;
    color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.app-mgmt-info { flex: 1; }
.app-mgmt-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 400; margin-bottom: 4px;
}
.app-mgmt-meta {
    font-size: 13px; color: var(--text-secondary);
}
.app-mgmt-meta span { font-weight: 500; color: var(--text); }
.app-mgmt-actions { display: flex; gap: 8px; align-items: center; }
.btn-apk-upload, .btn-apk-archive {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 10px;
    border: 1px solid var(--border); background: #fff;
    font: 500 13px 'Inter', sans-serif;
    cursor: pointer; transition: all 0.2s; color: var(--text-secondary);
}
.btn-apk-upload:hover, .btn-apk-archive:hover {
    border-color: var(--text); color: var(--text);
}
.btn-apk-upload svg { width: 16px; height: 16px; }

/* Upload-Dropzone */
.app-mgmt-upload { padding: 0 24px 20px; }
.apk-dropzone {
    border: 2px dashed var(--border); border-radius: 14px;
    padding: 32px; text-align: center; transition: all 0.2s;
    cursor: pointer;
}
.apk-dropzone.dragover {
    border-color: #4A90D9; background: rgba(74,144,217,0.04);
}
.apk-dropzone-icon {
    font-size: 32px; color: var(--text-secondary); margin-bottom: 8px;
}
.apk-dropzone p { font-size: 14px; color: var(--text-secondary); }
.apk-dropzone p strong { color: #4A90D9; cursor: pointer; }
.apk-dropzone-sub { font-size: 12px; color: #bbb; margin-top: 6px; }

/* Upload-Bestätigung */
.app-mgmt-confirm {
    display: flex; align-items: center; gap: 16px;
    padding: 0 24px 20px;
}
.apk-confirm-icon { font-size: 24px; flex-shrink: 0; }
.apk-confirm-info { flex: 1; }
.apk-confirm-filename {
    font-weight: 600; font-size: 14px; margin-bottom: 6px;
}
.apk-confirm-meta {
    display: flex; gap: 20px; font-size: 13px; color: var(--text-secondary);
    align-items: center;
}
.apk-version-input {
    width: 80px; padding: 4px 10px; border: 1px solid var(--border);
    border-radius: 6px; font: 500 13px 'Inter', sans-serif;
    outline: none; color: #166534;
}
.apk-version-input:focus { border-color: #166534; }
.apk-new-value { font-weight: 500; color: #166534; }
.apk-old-value {
    text-decoration: line-through; color: #bbb; margin-left: 6px;
}
.apk-confirm-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.btn-apk-cancel {
    padding: 8px 16px; border-radius: 10px;
    border: 1px solid var(--border); background: #fff;
    font: 500 13px 'Inter', sans-serif;
    cursor: pointer; color: var(--text-secondary);
}
.btn-apk-confirm {
    padding: 8px 20px; border-radius: 10px;
    border: none; background: #166534;
    font: 600 13px 'Inter', sans-serif;
    color: #fff; cursor: pointer; transition: opacity 0.2s;
}
.btn-apk-confirm:hover { opacity: 0.85; }
.btn-apk-confirm:disabled { opacity: 0.5; cursor: default; }

/* Archiv-Liste */
.app-mgmt-archive-list {
    border-top: 1px solid var(--border);
}
.archive-row {
    display: flex; align-items: center; gap: 16px;
    padding: 10px 24px; font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.archive-row:last-child { border-bottom: none; }
.archive-row-version { font-weight: 600; min-width: 60px; }
.archive-row-size { color: var(--text-secondary); min-width: 80px; }
.archive-row-date { color: var(--text-secondary); flex: 1; }
.archive-row-download {
    font-size: 12px; color: #4A90D9; text-decoration: none; font-weight: 500;
}
.archive-row-download:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .app-mgmt-card-main { flex-wrap: wrap; }
    .app-mgmt-actions { width: 100%; }
    .app-mgmt-confirm { flex-wrap: wrap; }
    .apk-confirm-meta { flex-direction: column; gap: 6px; }
}

/* ===== GUIDES OVERVIEW ===== */
.guides-hero {
    text-align: center;
    padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 80px);
}
.guides-hero-label {
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px;
}
.guides-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 300;
    letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.guides-hero-sub {
    font-size: 16px; color: var(--text-secondary); line-height: 1.6;
    max-width: 520px; margin: 0 auto;
}

.guides-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; max-width: 1100px; margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px) clamp(80px, 12vh, 140px);
}

.guide-card {
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.guide-card-icon {
    display: flex; align-items: center; justify-content: center;
    padding: 48px 32px 32px;
}
.guide-card-icon img {
    width: 80px; height: 80px; border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.guide-card-icon-placeholder {
    width: 80px; height: 80px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 300;
    color: #fff; letter-spacing: -0.5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.guide-card-body {
    padding: 0 32px 36px; text-align: center;
    flex: 1; display: flex; flex-direction: column;
}
.guide-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 400; letter-spacing: -0.3px;
    margin-bottom: 8px;
}
.guide-card-body p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 20px; flex: 1;
}
.guide-card-chapters {
    font-size: 12px; color: var(--text-secondary);
    letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500;
}
.guide-card-accent { height: 3px; width: 100%; }

/* ===== APP ICON IN HERO (Variante B) ===== */
.app-hero-row {
    display: inline-flex; align-items: center; gap: 28px;
}
.app-hero-row .app-hero-text { text-align: left; }
.app-hero-row .app-hero-text h1 { margin: 0; }
.app-hero-row .app-hero-text .app-hero-tagline { margin-top: 0; padding-left: 4px; }
.app-hero-icon {
    width: 88px; height: 88px; border-radius: 20px; flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .downloads-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .guides-grid { grid-template-columns: 1fr; max-width: 400px; }
    .app-showcase { grid-template-columns: 1fr; text-align: center; }
    .app-showcase.reverse { direction: ltr; }
    .app-showcase-text p { margin-left: auto; margin-right: auto; }
    .app-showcase { padding-top: 40px; padding-bottom: 40px; }
    .devices-overlap { padding-right: 30px; padding-bottom: 30px; }
    .nav-links a:not(.nav-cta):not(.nav-lang) { display: none; }
    .nav-user { display: none; }

    .app-detail-grid { grid-template-columns: 1fr; text-align: center; }
    .app-detail-text p { margin-left: auto; margin-right: auto; }
    .app-detail-actions { justify-content: center; }
    .app-info-cards { flex-wrap: wrap; }

    .device-frame { width: 220px; height: 450px; border-radius: 36px; }
    .device-frame.tablet { width: 400px; height: 265px; border-radius: 22px; }
    .guide-screenshot-frame .device-frame { width: 220px; height: 450px; border-radius: 36px; }
    .guide-screenshot-frame .device-frame .device-screen { border-radius: 28px; }
    .guide-screenshot-frame .device-frame.tablet { width: 100%; max-width: 560px; height: auto; aspect-ratio: 840 / 556; border-radius: 22px; }
    .guide-screenshot-frame .device-frame.landscape { width: 100%; max-width: 360px; height: auto; aspect-ratio: 480 / 230; border-radius: 16px; }

    .downloads-grid { grid-template-columns: 1fr; max-width: 400px; }

    .footer { flex-direction: column; gap: 12px; text-align: center; }
}
