:root {
    color-scheme: dark;
    --bg: #0f1117;
    --panel: #171b24;
    --panel-strong: #1e2430;
    --text: #f5f7fb;
    --muted: #a9b2c3;
    --accent: #86b7ff;
    --accent-strong: #5891ff;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top, rgba(88, 145, 255, 0.2), transparent 30%),
        linear-gradient(180deg, #0b0e13, var(--bg));
    color: var(--text);
}

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

button,
input {
    font: inherit;
}

.hero,
.order-section,
.showcase-section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    padding: 4rem 0 3rem;
    display: grid;
    gap: 2rem;
}

.hero__copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

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

h1 {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero__text,
.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero__media {
    width: min(760px, 100%);
    margin: 0 auto;
}

.hero__gif-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.hero__gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gif-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 17, 23, 0.72);
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
    color: var(--text);
}

.mini-gallery {
    margin-top: 1rem;
    border-radius: 22px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.mini-gallery__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    touch-action: pan-y;
}

.mini-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.mini-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.mini-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0b0e13;
}

.mini-gallery__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.gallery-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--panel-strong);
    color: var(--text);
    cursor: pointer;
}

.mini-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.mini-gallery__dots button {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mini-gallery__dots button.is-active {
    background: var(--accent);
}

.order-section,
.showcase-section {
    padding: 2rem 0 4rem;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.form-panels {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
}

.form-panel {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.form-panel h3 {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.form-panel label,
.finish-options,
.lookup-form label {
    display: grid;
    gap: 0.5rem;
}

.form-panel label,
.lookup-form label {
    margin-bottom: 1rem;
}

.form-panel span,
.lookup-form span,
.lookup-result__grid span,
.order-result__label {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-panel span small {
    color: var(--muted);
    font-size: 0.85em;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-panel input[type="email"],
.form-panel input[type="text"],
.lookup-form input[type="email"],
.lookup-form input[type="text"] {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(10, 12, 18, 0.7);
    color: var(--text);
}

.finish-options {
    border: 0;
    padding: 0;
    margin: 1.5rem 0;
}

.finish-options legend {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.finish-card {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.finish-card input {
    width: 1rem;
    height: 1rem;
}

.finish-card strong,
.finish-card small {
    display: block;
}

.finish-card small {
    margin-top: 0.2rem;
    color: var(--accent);
}

.finish-card small s {
    color: var(--muted);
    opacity: 0.8;
    margin-right: 0.35rem;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(88, 145, 255, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(134, 183, 255, 0.25);
}

.price-box strong {
    font-size: 1.6rem;
}

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

.upload-card {
    position: relative;
    min-height: 220px;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.26);
    cursor: pointer;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.upload-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-card__preview {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 220ms ease;
}

.upload-card__reference {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #10141d;
    opacity: 0.72;
}

.upload-card.has-image .upload-card__preview {
    opacity: 1;
}

.upload-card__badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(8, 10, 16, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: white;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.upload-card__hint {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 2;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.1), rgba(8, 10, 16, 0.82));
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    line-height: 1.4;
}

.upload-card.has-image .upload-card__hint {
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.16), rgba(8, 10, 16, 0.72));
}

.primary-btn,
.secondary-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.95rem 1.1rem;
    border: 0;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
}

.form-status {
    min-height: 1.5rem;
    margin: 0.85rem 0 0;
    color: var(--muted);
}

.submit-progress {
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.submit-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
    color: var(--muted);
}

.submit-progress__top strong {
    color: var(--text);
}

.submit-progress__bar {
    width: 100%;
    height: 0.75rem;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.submit-progress__bar span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    transition: width 180ms ease;
}

.order-result,
.lookup-panel {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.order-result strong {
    display: block;
    margin: 0.35rem 0;
    font-size: 1.25rem;
}

.order-result small {
    color: var(--muted);
}

.lookup-panel__copy {
    margin-bottom: 1rem;
}

.lookup-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.lookup-form .secondary-btn {
    width: auto;
    min-width: 180px;
    margin-top: 0;
}

.lookup-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.lookup-result__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.lookup-result__grid strong {
    display: block;
    margin-top: 0.3rem;
}

.lookup-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.lookup-links a {
    color: var(--accent);
    text-decoration: none;
}

.tracking-qr {
    margin-top: 1rem;
}

.tracking-qr img {
    width: 160px;
    height: 160px;
    padding: 0.6rem;
    border-radius: 18px;
    background: white;
}

.showcase-fader {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.showcase-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.showcase-card.is-active {
    opacity: 1;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card__caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(15, 17, 23, 0.7);
    backdrop-filter: blur(8px);
}

@media (max-width: 820px) {
    .form-panels {
        grid-template-columns: 1fr;
    }

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

    .lookup-form .secondary-btn {
        width: 100%;
    }

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

@media (max-width: 640px) {
    .hero {
        padding-top: 2.5rem;
    }

    .mini-gallery__controls {
        padding: 0.75rem;
    }

    .showcase-fader {
        min-height: 360px;
    }
}
