@font-face {
    font-family: "DM Sans";
    src: url("../fonts/dm-sans-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("../fonts/dm-sans-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
}

:root {
    --app-bg: #f4f7fb;
    --app-surface: #ffffff;
    --app-ink: #111827;
    --app-muted: #64748b;
    --app-border: #e2e8f0;
    --app-primary: #2563eb;
    --app-primary-dark: #1d4ed8;
    --app-primary-soft: #eff6ff;
    --app-success: #15803d;
    --app-radius: 20px;
    --app-radius-sm: 14px;
    --app-shadow: 0 12px 38px rgba(15, 23, 42, 0.07);
    --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Outfit", var(--font-sans);
}

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

[hidden] {
    display: none !important;
}

.app-body {
    min-height: 100vh;
    margin: 0;
    color: var(--app-ink);
    background: var(--app-bg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

.app-header {
    color: #fff;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-brand {
    color: #fff;
}

.app-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 5px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 12px;
}

.app-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.app-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.app-brand-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
}

.app-brand-tagline {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 0.75rem;
}

.app-main {
    flex: 1 0 auto;
}

.app-hero {
    margin-bottom: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgba(59, 130, 246, 0.3), transparent 28%),
        linear-gradient(135deg, #111827 0%, #172554 100%);
}

.app-eyebrow {
    color: #93c5fd;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.app-hero-title {
    max-width: 780px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.app-hero-lead {
    max-width: 680px;
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
}

.app-hero-content {
    max-width: 860px;
}

.app-hero-cta {
    min-height: 50px;
    padding: 12px 22px;
    text-decoration: none;
}

.app-hero-benefits {
    display: flex;
    gap: 11px 24px;
    margin: 22px 0 0;
    padding: 0;
    flex-wrap: wrap;
    color: #cbd5e1;
    font-size: 0.86rem;
    list-style: none;
}

.app-hero-benefits li::before {
    margin-right: 7px;
    color: #60a5fa;
    content: "✓";
    font-weight: 700;
}

#upload-section {
    scroll-margin-top: 20px;
}

.app-flow {
    display: grid;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.app-card {
    padding: clamp(20px, 4vw, 34px);
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius);
    box-shadow: var(--app-shadow);
}

.app-section-heading {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.app-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: #fff;
    background: var(--app-primary);
    border-radius: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(37, 99, 235, 0.26);
}

.app-card-title {
    margin: 1px 0 4px;
    font-family: var(--font-display);
    font-size: clamp(1.18rem, 3vw, 1.45rem);
    font-weight: 650;
    letter-spacing: -0.015em;
}

.app-section-heading p {
    margin: 0;
    color: var(--app-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-upload-zone {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 104px;
    padding: 20px;
    color: var(--app-ink);
    background: #f8fafc;
    border: 2px dashed #bfdbfe;
    border-radius: var(--app-radius-sm);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.app-upload-zone:hover {
    background: var(--app-primary-soft);
    border-color: var(--app-primary);
}

.app-upload-zone.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.app-upload-zone.is-disabled:hover {
    border-color: #dbe5f1;
    background: #f8fafc;
    transform: none;
}

.app-upload-zone:focus-within {
    outline: 4px solid rgba(37, 99, 235, 0.14);
    border-color: var(--app-primary);
}

.app-upload-zone.is-ready {
    background: #f0fdf4;
    border-color: #86efac;
}

.app-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    color: var(--app-primary);
    background: #dbeafe;
    border-radius: 15px;
}

.is-ready .app-upload-icon {
    color: var(--app-success);
    background: #dcfce7;
}

.app-upload-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.app-upload-copy strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.app-upload-copy span {
    overflow: hidden;
    color: var(--app-muted);
    font-size: 0.83rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-upload-privacy {
    margin: 10px 0 0;
    color: var(--app-muted);
    font-size: 0.76rem;
    text-align: center;
}

.app-photo-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 12px;
    padding: 11px 13px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.84rem;
    line-height: 1.45;
}

.app-photo-notice-icon {
    display: inline-grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
}

.app-photo-confirmation {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 12px;
    color: #334155;
    cursor: pointer;
    font-size: 0.84rem;
    line-height: 1.45;
}

.app-photo-confirmation input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    accent-color: var(--app-primary);
}

.app-photo-confirmation a {
    color: var(--app-primary);
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.app-form-error {
    margin: 10px 0 0;
    color: #b91c1c;
    font-size: 0.86rem;
}

.app-btn-secondary {
    padding: 9px 15px;
    flex: 0 0 auto;
    color: var(--app-primary);
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 650;
}

.app-disk-carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
}

.app-disk-grid {
    display: grid;
    grid-auto-columns: calc((100% - 60px) / 6);
    grid-auto-flow: column;
    gap: 12px;
    padding: 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.app-disk-grid::-webkit-scrollbar {
    display: none;
}

.app-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--app-primary);
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.app-carousel-button span {
    margin-top: -3px;
    font-size: 2rem;
    line-height: 1;
}

.app-carousel-button:hover:not(:disabled),
.app-carousel-button:focus-visible {
    color: #fff;
    background: var(--app-primary);
    border-color: var(--app-primary);
}

.app-carousel-button:focus-visible {
    outline: 4px solid rgba(37, 99, 235, 0.16);
}

.app-carousel-button:disabled {
    color: #94a3b8;
    background: #f8fafc;
    border-color: var(--app-border);
    cursor: default;
    opacity: 0.55;
}

.app-carousel-footer {
    display: flex;
    min-height: 22px;
    margin-top: 12px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--app-muted);
    font-size: 0.76rem;
}

.app-carousel-dots {
    display: flex;
    gap: 5px;
}

.app-carousel-dot {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 999px;
    transition: width 0.18s ease, background-color 0.18s ease;
}

.app-carousel-dot.is-active {
    width: 18px;
    background: var(--app-primary);
}

.app-disk-card {
    position: relative;
    min-width: 0;
    padding: 9px 9px 12px;
    color: var(--app-ink);
    background: #fff;
    border: 2px solid var(--app-border);
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.app-disk-card:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
}

.app-disk-card:focus-visible {
    outline: 4px solid rgba(37, 99, 235, 0.16);
    border-color: var(--app-primary);
}

.app-disk-card.is-selected {
    background: var(--app-primary-soft);
    border-color: var(--app-primary);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.13);
}

.app-disk-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    margin-bottom: 8px;
    overflow: hidden;
    background: #f8fafc;
    border-radius: 10px;
}

.app-disk-image-wrap img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-disk-check {
    position: absolute;
    top: 6px;
    right: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    color: #fff;
    background: var(--app-primary);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
}

.is-selected .app-disk-check {
    display: inline-flex;
}

.app-disk-card strong,
.app-disk-card > span:last-child {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-disk-card strong {
    font-size: 0.78rem;
    line-height: 1.35;
}

.app-disk-card > span:last-child {
    margin-top: 2px;
    color: var(--app-muted);
    font-size: 0.7rem;
}

.app-editor-empty {
    display: flex;
    min-height: 260px;
    padding: 28px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--app-radius-sm);
    text-align: center;
}

.app-editor-empty strong {
    margin-top: 10px;
    color: #475569;
    font-size: 1rem;
}

.app-editor-empty span:last-child {
    margin-top: 4px;
    font-size: 0.84rem;
}

.app-editor-tip {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 14px;
    color: #1e40af;
    background: var(--app-primary-soft);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.app-editor-tip.is-complete {
    color: #166534;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.app-editor-tip.is-detecting {
    color: #5b21b6;
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.app-tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: #fff;
    background: var(--app-primary);
    border-radius: 50%;
    font-size: 0.76rem;
}

.is-complete .app-tip-number {
    background: #16a34a;
}

.is-detecting .app-tip-number {
    background: #7c3aed;
    animation: app-detecting-pulse 1.4s ease-in-out infinite;
}

@keyframes app-detecting-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.28);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(124, 58, 237, 0);
    }
}

.app-canvas-wrap {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    border-radius: var(--app-radius-sm);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

#car-canvas {
    display: block;
    width: 100%;
    height: auto;
    cursor: crosshair;
    touch-action: none;
}

#car-canvas.is-dragging {
    cursor: grabbing;
}

.app-editor-disk-picker {
    margin-top: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--app-border);
    border-radius: 14px;
}

.app-editor-disk-heading {
    display: flex;
    margin-bottom: 11px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.app-editor-disk-heading > div,
.app-editor-disk-heading strong,
.app-editor-disk-heading span {
    display: block;
}

.app-editor-disk-heading strong {
    font-size: 0.9rem;
}

.app-editor-disk-heading span {
    color: var(--app-muted);
    font-size: 0.74rem;
}

.app-editor-disk-heading > div > span {
    margin-top: 2px;
}

.app-editor-disk-carousel {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: center;
}

.app-editor-disk-list {
    display: grid;
    grid-auto-columns: calc((100% - 50px) / 6);
    grid-auto-flow: column;
    gap: 10px;
    padding: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.app-editor-disk-list::-webkit-scrollbar {
    display: none;
}

.app-editor-disk-list .app-disk-card {
    padding: 6px;
    border-width: 1px;
    border-radius: 11px;
}

.app-editor-disk-list .app-disk-image-wrap {
    margin-bottom: 0;
    border-radius: 8px;
}

.app-quick-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--app-primary);
    background: var(--app-primary-soft);
    border: 1px solid #bfdbfe;
    border-radius: 50%;
    cursor: pointer;
}

.app-quick-carousel-button span {
    margin-top: -2px;
    font-size: 1.55rem;
    line-height: 1;
}

.app-quick-carousel-button:hover:not(:disabled),
.app-quick-carousel-button:focus-visible {
    color: #fff;
    background: var(--app-primary);
    border-color: var(--app-primary);
}

.app-quick-carousel-button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.16);
}

.app-quick-carousel-button:disabled {
    color: #94a3b8;
    background: #f8fafc;
    border-color: var(--app-border);
    cursor: default;
    opacity: 0.55;
}

.app-controls {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 18px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid var(--app-border);
    border-radius: 14px;
}

.app-wheel-choice {
    display: flex;
    grid-column: 1 / -1;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--app-border);
}

.app-wheel-choice > span {
    color: var(--app-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.app-wheel-tabs {
    display: inline-flex;
    padding: 3px;
    background: #e9eef5;
    border-radius: 10px;
}

.app-wheel-tabs button {
    padding: 7px 12px;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 650;
}

.app-wheel-tabs button.is-active {
    color: var(--app-primary);
    background: #fff;
    box-shadow: 0 2px 7px rgba(15, 23, 42, 0.1);
}

.app-wheel-tabs button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.18);
}

.app-size-control label {
    display: block;
    margin-bottom: 9px;
    font-size: 0.86rem;
    font-weight: 650;
}

.app-range-row {
    display: grid;
    grid-template-columns: auto minmax(100px, 1fr) auto 52px;
    gap: 10px;
    align-items: center;
}

.app-range-row > span {
    color: var(--app-muted);
    font-size: 1.15rem;
    font-weight: 700;
}

.app-range-row input {
    width: 100%;
    accent-color: var(--app-primary);
}

.app-range-row output {
    color: var(--app-primary);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: right;
}

.app-control-help {
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 260px;
    color: var(--app-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.app-control-help > span {
    color: var(--app-primary);
    font-size: 1.2rem;
}

.app-perspective-settings {
    grid-column: 1 / -1;
    border-top: 1px solid var(--app-border);
}

.app-perspective-settings summary {
    width: fit-content;
    padding-top: 16px;
    color: var(--app-primary);
    font-size: 0.85rem;
    font-weight: 650;
    cursor: pointer;
}

.app-perspective-settings > p {
    margin: 8px 0 14px;
    color: var(--app-muted);
    font-size: 0.79rem;
}

.app-perspective-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--app-border);
    border-radius: 12px;
}

.app-editor-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.app-btn-primary,
.app-btn-ghost {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 11px;
    font-size: 0.9rem;
    font-weight: 650;
}

.app-btn-primary {
    color: #fff;
    background: var(--app-primary);
    border: 1px solid var(--app-primary);
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.24);
}

.app-btn-primary:hover,
.app-btn-primary:focus {
    color: #fff;
    background: var(--app-primary-dark);
    border-color: var(--app-primary-dark);
}

.app-btn-ghost {
    color: #475569;
    background: #fff;
    border: 1px solid var(--app-border);
}

.app-btn-ghost:hover,
.app-btn-ghost:focus {
    color: var(--app-primary);
    background: var(--app-primary-soft);
    border-color: #bfdbfe;
}

.app-faq {
    max-width: 1040px;
    margin: 0 auto;
}

.app-faq-heading {
    margin-bottom: 16px;
}

.app-faq-heading .app-eyebrow {
    margin-bottom: 4px;
}

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

.app-faq-list details {
    padding: 17px 18px;
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.app-faq-list summary {
    color: var(--app-ink);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 650;
}

.app-faq-list p {
    margin: 12px 0 0;
    color: var(--app-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.app-footer {
    color: #fff;
    background: #0f172a;
}

.app-footer-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.app-footer-link:hover,
.app-footer-link:focus {
    color: #fff;
}

.app-footer-nav {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.82rem;
}

.app-legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px);
}

.app-legal-page h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2.45rem);
    letter-spacing: -0.025em;
}

.app-legal-page h2 {
    margin: 30px 0 9px;
    font-family: var(--font-display);
    font-size: 1.08rem;
}

.app-legal-page p,
.app-legal-page li {
    color: #475569;
    line-height: 1.72;
}

.app-legal-page ul {
    padding-left: 1.25rem;
}

.app-legal-lead {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: 1.04rem;
}

.app-legal-meta {
    margin: 7px 0 0;
    color: var(--app-muted);
    font-size: 0.8rem;
}

.app-legal-note {
    margin: 32px 0 0;
    padding: 15px 17px;
    background: #f8fafc;
    border: 1px solid var(--app-border);
    border-radius: 12px;
    font-size: 0.84rem;
}

.app-contact-card {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 20px;
    flex-direction: column;
    background: #f8fafc;
    border: 1px solid var(--app-border);
    border-radius: 14px;
}

.app-contact-card span {
    color: var(--app-muted);
    font-size: 0.8rem;
}

.app-contact-card a {
    color: var(--app-primary);
    font-size: 1.08rem;
    font-weight: 650;
}

@media (max-width: 991.98px) {
    .app-footer-nav {
        justify-content: center;
    }

    .app-disk-grid {
        grid-auto-columns: calc((100% - 24px) / 3);
    }

    .app-editor-disk-list {
        grid-auto-columns: calc((100% - 20px) / 3);
    }

    .app-controls {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .app-control-help {
        max-width: none;
    }

    .app-perspective-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .app-header .container {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .app-brand-tagline {
        display: none;
    }

    .app-logo-wrap {
        width: 42px;
        height: 42px;
    }

    .app-hero {
        margin-bottom: 18px;
    }

    .app-hero-benefits {
        display: grid;
        gap: 8px;
    }

    .app-flow {
        gap: 16px;
    }

    .app-section-heading {
        margin-bottom: 18px;
    }

    .app-upload-zone {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .app-upload-copy {
        width: calc(100% - 70px);
        flex: auto;
    }

    .app-upload-zone .app-btn-secondary {
        width: 100%;
    }

    .app-disk-grid {
        grid-auto-columns: calc((100% - 9px) / 2);
        gap: 9px;
    }

    .app-editor-disk-list {
        grid-auto-columns: calc((100% - 8px) / 2);
        gap: 8px;
    }

    .app-editor-disk-picker {
        padding: 11px;
    }

    .app-editor-disk-carousel {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
        gap: 5px;
    }

    .app-quick-carousel-button {
        width: 30px;
        height: 30px;
    }

    .app-disk-carousel {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 5px;
    }

    .app-carousel-button {
        width: 36px;
        height: 36px;
    }

    .app-editor-tip {
        align-items: flex-start;
        font-size: 0.84rem;
    }

    .app-controls {
        padding: 14px;
    }

    .app-wheel-choice {
        align-items: stretch;
        flex-direction: column;
    }

    .app-wheel-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .app-editor-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .app-editor-actions .btn {
        width: 100%;
    }

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

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

.app-cookie-banner {
    position: fixed;
    z-index: 1080;
    right: 20px;
    bottom: 20px;
    display: flex;
    width: min(560px, calc(100% - 40px));
    padding: 16px;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.45;
}

.app-cookie-banner[hidden] {
    display: none;
}

.app-cookie-banner__copy {
    flex: 1;
}

.app-cookie-banner__copy a {
    white-space: nowrap;
}

.app-cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .app-cookie-banner {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

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