:root {
    --bg: #faf6ee;
    --bg-soft: #fff5e8;
    --bg-ink: #0d0c1d;
    --ink: #0d0c1d;
    --text: #1a1925;
    --muted: #5e5d72;
    --line: #e6dfd1;
    --line-soft: #efe9da;
    --accent: #ff4d2e;
    --accent-soft: #ffe1d7;
    --accent2: #d8ff00;
    --good: #16a34a;
    --bad: #dc2626;
    --shadow-hard: 5px 5px 0 var(--ink);
    --shadow-hard-lg: 7px 7px 0 var(--ink);
}

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

html, body { background: var(--bg); }

body {
    min-width: 480px;
    color: var(--text);
    font: 400 15px/1.6 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
}

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

.lp {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

/* === REVEAL ANIMATION === */
[data-reveal] {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
    will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(28px); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* Stagger children of revealed sections */
.polaroids__grid > .polaroid,
.steps__grid > .step,
.faq__list > .faq__item {
    transition-delay: 0s;
}
.polaroids.is-revealed .polaroid:nth-child(1) { transition-delay: .05s; }
.polaroids.is-revealed .polaroid:nth-child(2) { transition-delay: .15s; }
.polaroids.is-revealed .polaroid:nth-child(3) { transition-delay: .25s; }
.polaroids.is-revealed .polaroid:nth-child(4) { transition-delay: .35s; }
.steps.is-revealed .step:nth-child(1) { transition-delay: .05s; }
.steps.is-revealed .step:nth-child(2) { transition-delay: .15s; }
.steps.is-revealed .step:nth-child(3) { transition-delay: .25s; }
.steps.is-revealed .step:nth-child(4) { transition-delay: .35s; }
.faq.is-revealed .faq__item:nth-child(1) { transition-delay: .04s; }
.faq.is-revealed .faq__item:nth-child(2) { transition-delay: .12s; }
.faq.is-revealed .faq__item:nth-child(3) { transition-delay: .20s; }
.faq.is-revealed .faq__item:nth-child(4) { transition-delay: .28s; }
.faq.is-revealed .faq__item:nth-child(5) { transition-delay: .36s; }
.faq.is-revealed .faq__item:nth-child(6) { transition-delay: .44s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .ticker__track { animation: none !important; }
    .hero__sticker { animation: none !important; }
}

/* === SECTION LABEL === */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.section-label__num {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--ink);
    background: var(--accent2);
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: .5px;
    line-height: 1.4;
}
.section-label__line {
    flex: 1;
    height: 1px;
    background: var(--ink);
    opacity: .15;
}
.section-label__name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--ink);
}
.section-label--invert .section-label__num { background: var(--accent); color: #fff; }
.section-label--on-dark .section-label__num { background: var(--accent2); color: var(--ink); }
.section-label--on-dark .section-label__line { background: #fefce8; opacity: .2; }
.section-label--on-dark .section-label__name { color: #fefce8; }

/* === TICKER === */
.ticker {
    background: var(--bg-ink);
    color: #fefce8;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 11px 0;
    position: relative;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: tickerScroll 32s linear infinite;
    will-change: transform;
}
.ticker__group {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 14px;
    flex-shrink: 0;
}
.ticker__item {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fefce8;
}
.ticker__item--accent { color: var(--accent2); }
.ticker__dot { color: var(--accent); font-size: 9px; line-height: 1; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* === HERO === */
.hero {
    padding: 28px 22px 30px;
    position: relative;
    background:
        radial-gradient(circle at 95% -8%, var(--accent-soft) 0%, transparent 38%),
        radial-gradient(circle at -10% 110%, rgba(216,255,0,.18) 0%, transparent 40%),
        var(--bg);
}
.hero__head { margin-bottom: 18px; }
.hero__label {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--accent2);
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.hero__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 38px;
    line-height: .98;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--ink);
    margin-bottom: 10px;
    text-wrap: balance;
}
.hero__subtitle {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.5;
}
.hero__visual {
    position: relative;
    margin: 4px 0 22px;
    padding-right: 6px;
}
.hero__image-frame {
    position: relative;
    border: 3px solid var(--ink);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(-1.4deg);
    aspect-ratio: 1 / .92;
    transition: transform .35s ease;
}
.hero.is-revealed .hero__image-frame { transform: rotate(-1.4deg); }
.hero__image-frame:hover { transform: rotate(0); }
.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero__sticker {
    position: absolute;
    top: -16px;
    right: -6px;
    z-index: 3;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    box-shadow: 0 4px 0 #b1351f, 0 12px 28px rgba(255,77,46,.35);
    animation: stickerWobble 4s ease-in-out infinite;
}
.hero__sticker-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: -2px;
    opacity: .9;
}
.hero__sticker-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.5px;
}
@keyframes stickerWobble {
    0%, 100% { transform: rotate(8deg) scale(1); }
    50%      { transform: rotate(2deg) scale(1.04); }
}

.hero__price-card {
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: 16px 16px 16px;
    box-shadow: var(--shadow-hard);
    margin-bottom: 0;
}
.hero__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.hero__price-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 0 1 auto;
    min-width: 0;
}
.hero__price-new {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1.2px;
    line-height: 1;
}
.hero__price-new small {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-left: 2px;
}
.hero__price-old {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    line-height: 1;
}
.hero__price-tag {
    margin-left: auto;
    display: inline-block;
    background: var(--accent2);
    color: var(--ink);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 5px 10px;
    border-radius: 999px;
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
}
.hero__price-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    margin-bottom: 12px;
    border-top: 1px dashed var(--line);
}
.hero__price-timer {
    text-align: center;
    margin: 4px 0 12px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
}
.hero__price-timer-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: .6px;
    font-variant-numeric: tabular-nums;
}
.hero__price-btn { width: 100%; }
.hero__price-note {
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.45;
}
.hero__price-stock-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    flex: 0 0 auto;
}
.hero__price-stock-bar {
    flex: 1;
    height: 8px;
    background: var(--line-soft);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.hero__price-stock-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff7e5f);
    width: 50%;
    border-radius: 4px;
    transition: width .8s cubic-bezier(.2,.7,.3,1);
}
.hero__price-stock-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    flex: 0 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 16px 22px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    color: inherit;
    background: #fff;
    width: 100%;
}
.btn__arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 5px 5px 0 var(--accent);
}
.btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--accent);
}
.btn--primary:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--accent);
}
.btn--lg { padding: 18px 22px; font-size: 16px; }
.btn.success {
    background: var(--good);
    border-color: var(--good);
    box-shadow: 5px 5px 0 var(--ink);
}
.btn.success:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--ink);
}
.button-submit2:disabled { opacity: .55; cursor: not-allowed; }

/* === ABOUT === */
.about {
    padding: 38px 22px 30px;
    border-top: 1px solid var(--line);
}
.about__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -.6px;
    text-wrap: balance;
}
.about__text {
    font-size: 15px;
    line-height: 1.72;
    color: #2a2940;
}
.about__text p { margin: 0 0 12px; }
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--ink); font-weight: 700; }
.about__text ul, .about__text ol { margin: 12px 0; padding-left: 18px; }
.about__text li { margin-bottom: 6px; }
.about__text li::marker { color: var(--accent); }
.about__text img,
.specs__bento-body img { max-width: 100%; height: auto; display: block; border-radius: 10px; margin: 12px 0; }
.about__text figure.media,
.specs__bento-body figure.media { margin: 16px 0; }
.about__text figure.media iframe,
.specs__bento-body figure.media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* === VS === */
.vs {
    padding: 40px 22px;
    background: var(--bg-ink);
    color: #f5f1e6;
    position: relative;
}
.vs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
    opacity: .35;
}
.vs__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -.6px;
    line-height: 1.15;
    text-wrap: balance;
    color: #fefce8;
}
.vs__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
}
.vs__col {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 16px 16px 14px;
    backdrop-filter: blur(2px);
}
.vs__col--bad  { border-left: 3px solid var(--bad); }
.vs__col--good { border-left: 3px solid var(--good); }
.vs__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vs__list li {
    font-size: 14px;
    line-height: 1.45;
    color: #e8e4d6;
    padding-left: 16px;
    position: relative;
}
.vs__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px; height: 7px;
    border-radius: 50%;
}
.vs__col--bad  li::before { background: var(--bad); }
.vs__col--good li::before { background: var(--good); }
.vs__divider {
    position: relative;
    text-align: center;
    margin: -2px 0;
    pointer-events: none;
}
.vs__divider-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--accent2);
    color: var(--ink);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    box-shadow: 0 6px 22px rgba(216,255,0,.22);
}

/* === SPECS BENTO === */
.specs { padding: 40px 22px; }
.specs__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -.5px;
    line-height: 1.15;
    text-wrap: balance;
}
.specs__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.specs__bento-photo {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-hard);
    background: #fff;
}
.specs__bento-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}
.specs__bento-body {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    color: #2a2940;
    line-height: 1.7;
    font-size: 14px;
}
.specs__bento-body p { margin: 0 0 10px; }
.specs__bento-body p:last-child { margin-bottom: 0; }
.specs__bento-body strong { color: var(--ink); font-weight: 700; }
.specs__bento-body ul, .specs__bento-body ol { margin: 10px 0; padding-left: 18px; }
.specs__bento-body li { margin-bottom: 6px; }
.specs__bento-body li::marker { color: var(--accent); }
.specs__bento-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
}
.specs__bento-body th,
.specs__bento-body td {
    text-align: left;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 13.5px;
}
.specs__bento-body th {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === POLAROIDS === */
.polaroids {
    padding: 40px 22px 44px;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 10% 100%, var(--accent-soft) 0%, transparent 35%),
        var(--bg);
}
.polaroids__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.5px;
}
.polaroids__rate {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.polaroids__rate-stars { color: var(--accent); font-size: 18px; letter-spacing: 1.5px; }
.polaroids__rate-score {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.polaroids__rate-count { font-size: 12px; color: var(--muted); width: 100%; }

.polaroids__grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 6px 6px 0;
}
.polaroid {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px 16px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(13,12,29,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    --tilt: 0deg;
}
.polaroid--left  { --tilt: -1.4deg; }
.polaroid--right { --tilt: 1.6deg; }
.polaroid.is-revealed { transform: rotate(var(--tilt)); }
[data-reveal="up"].polaroid { transform: translateY(28px) rotate(0); }
[data-reveal="up"].polaroid.is-revealed { transform: translateY(0) rotate(var(--tilt)); }
.polaroid:hover {
    transform: rotate(0) translateY(-3px);
    box-shadow: 0 14px 30px rgba(13,12,29,.12);
}
.polaroid__tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 90px;
    height: 18px;
    background: rgba(216,255,0,.78);
    border: 1px dashed rgba(13,12,29,.22);
    box-shadow: 0 2px 8px rgba(13,12,29,.08);
}
.polaroid__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.polaroid__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--accent2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 15px;
    flex: 0 0 auto;
}
.polaroid__avatar--photo { overflow: hidden; background: var(--line); }
.polaroid__avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.polaroid__name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.polaroid__meta { margin-top: 3px; font-size: 11px; color: var(--muted); }
.polaroid__stars { color: var(--accent); letter-spacing: 1.5px; margin-bottom: 8px; font-size: 14px; }
.polaroid__text {
    font-size: 13.5px;
    line-height: 1.55;
    color: #2a2940;
    margin-bottom: 10px;
}
.polaroid__verified {
    font-size: 11px;
    font-weight: 600;
    color: var(--good);
    letter-spacing: .3px;
}

/* === STEPS === */
.steps {
    padding: 40px 22px 44px;
    background: var(--bg-ink);
    color: #f5f1e6;
    position: relative;
    overflow: hidden;
}
.steps::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,255,0,.18), transparent 70%);
    pointer-events: none;
}
.steps__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -.6px;
    line-height: 1.12;
    color: #fefce8;
    position: relative;
}
.steps__progress {
    position: relative;
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    margin-bottom: 22px;
    overflow: hidden;
}
.steps__progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(.2,.7,.3,1);
    transition-delay: .25s;
}
.steps.is-revealed .steps__progress-fill { width: 100%; }

.steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
}
.step {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 16px 14px 14px;
    position: relative;
    transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.step:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.07);
    border-color: rgba(216,255,0,.3);
}
.step__icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--accent2);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.step__icon svg { width: 22px; height: 22px; }
.step__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fefce8;
    margin-bottom: 4px;
    line-height: 1.2;
}
.step__desc {
    font-size: 12px;
    line-height: 1.45;
    color: #c5c0ad;
    margin-bottom: 12px;
}
.step__time {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    color: var(--accent2);
    background: rgba(0,0,0,.2);
}

/* === FAQ === */
.faq { padding: 40px 22px 36px; }
.faq__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 18px 0;
    font: inherit;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.35;
    transition: color .2s ease;
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    flex: 0 0 auto;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
    background: transparent;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    color: #303040;
    font-size: 14px;
    line-height: 1.65;
    transition: max-height .35s ease, padding .35s ease;
}
.faq__item.is-open .faq__answer {
    max-height: 320px;
    padding: 0 0 18px;
}
.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* === ORDER === */
.order {
    margin: 32px 22px 28px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--ink);
    overflow: hidden;
    position: relative;
}
.order__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
    padding: 22px 22px 0;
    letter-spacing: -.4px;
}
.order__receipt {
    padding: 18px 22px 18px;
    background: var(--bg-soft);
    margin-top: 18px;
    position: relative;
}
.order__receipt::before,
.order__receipt::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 12px;
    background: radial-gradient(circle at 6px 0, var(--bg-soft) 5px, transparent 6px) 0 0 / 12px 12px repeat-x;
    pointer-events: none;
}
.order__receipt::before {
    top: -12px;
    transform: rotate(180deg);
    background: radial-gradient(circle at 6px 12px, var(--bg-soft) 5px, transparent 6px) 0 0 / 12px 12px repeat-x;
}
.order__receipt::after {
    bottom: -12px;
}
.order__receipt-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.order__receipt-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: var(--ink);
}
.order__receipt-id {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    color: var(--muted);
    background: #fff;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px dashed var(--line);
}
.order__receipt-divider {
    height: 0;
    border-top: 1.5px dashed var(--line);
    margin: 12px 0;
}
.order__receipt-product {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order__receipt-product img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    flex: 0 0 auto;
    background: #fff;
}
.order__receipt-info { flex: 1; min-width: 0; }
.order__receipt-product h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.25;
}
.order__receipt-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.order__receipt-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.order__receipt-price-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
}
.order__receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}
.order__receipt-row-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
}
.order__receipt-row-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.order__form {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-field-wrapper { position: relative; }
.order__form .field {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 14px 10px;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.order__form .field-label {
    position: absolute;
    left: 12px;
    top: 16px;
    font-size: 14px;
    color: var(--muted);
    pointer-events: none;
    transition: top .2s ease, font-size .2s ease, color .2s ease, background .2s ease;
    padding: 0 4px;
    background: transparent;
    line-height: 1;
}
.order__form .field:focus + .field-label,
.order__form .field:not(:placeholder-shown) + .field-label {
    top: -7px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    background: #fff;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.order__form .field:focus {
    border-color: var(--accent);
    box-shadow: 4px 4px 0 var(--accent-soft);
}
.error-message {
    display: block;
    color: var(--bad);
    font-size: 12px;
    margin-top: 4px;
    padding-left: 4px;
    font-weight: 600;
}
.field.error { border-color: var(--bad) !important; }
.order__form .btn { margin-top: 6px; }
.order__note {
    margin-top: 4px;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

/* === FOOTER === */
.landing-page .footer {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-ink);
    color: #c5c0ad;
    padding: 32px 22px 36px;
    text-align: center;
}
.footer__shop-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: #fefce8;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: .3px;
}
.footer a {
    color: #c5c0ad;
    text-decoration: none;
    font-size: 12px;
    transition: color .2s ease;
    white-space: nowrap;
}
.footer a:hover { color: var(--accent2); }
.menu-menu-1-container { margin-top: 4px; overflow-x: auto; }
.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
}
.footer__copyright {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

/* === STICKY ORDER BAR === */
.sticky-order-bar {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%) translateY(20px);
    width: min(456px, calc(100vw - 16px));
    z-index: 28;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: 5px 5px 0 var(--accent);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.sticky-order-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.sticky-order-bar__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.sticky-order-bar__prices {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.sticky-order-bar__price-new {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.4px;
}
.sticky-order-bar__price-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    margin-top: 2px;
}
.sticky-order-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: background .2s ease;
}
.sticky-order-bar__btn:hover { background: var(--accent); }
.sticky-order-bar__signals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--line);
}
.sticky-order-bar__signal {
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}
.sticky-order-bar__signal-label {
    font-size: 10px;
    color: var(--muted);
}
.sticky-order-bar__signal-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

/* === RECENT ORDER POPUP === */
.recent-order-popup {
    position: fixed;
    left: max(14px, calc(50% - 240px + 14px));
    top: 90px;
    z-index: 30;
    max-width: min(380px, calc(100vw - 28px));
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid var(--ink);
    background: #fff;
    box-shadow: 4px 4px 0 var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    pointer-events: none;
}
.recent-order-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.recent-order-popup__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent2);
    border: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
}
.recent-order-popup__content { flex: 1; min-width: 0; }
.recent-order-popup__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}
.recent-order-popup__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.recent-order-popup__product {
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recent-order-popup__meta {
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
    .hero { padding: 24px 18px 28px; }
    .hero__title { font-size: 32px; }
    .hero__sticker { width: 76px; height: 76px; top: -12px; right: -4px; }
    .hero__sticker-value { font-size: 22px; }
    .about, .vs, .specs, .polaroids, .steps, .faq { padding-left: 18px; padding-right: 18px; }
    .order { margin-left: 18px; margin-right: 18px; }
    .vs__title, .specs__title, .polaroids__title, .steps__title, .faq__title, .order__title { font-size: 22px; }
    .steps__grid { grid-template-columns: 1fr; }
    .step__desc { font-size: 13px; }
}
