.iuv-quest {
    --iuv-bg: #f7f3eb;
    --iuv-bg-deep: #f3eee4;
    --iuv-paper: #ffffff;
    --iuv-ink: #1b2430;
    --iuv-ink-soft: #4a4450;
    --iuv-muted: #7a7368;
    --iuv-navy: #1c2433;
    --iuv-navy-hover: #10151f;
    --iuv-gold: #c4a35a;
    --iuv-gold-deep: #b08d3e;
    --iuv-gold-line: #dcc89a;
    --iuv-gold-soft: #f3ead6;
    --iuv-line: #eee6d6;
    --iuv-dot-empty: #e4dccb;
    --iuv-green: #2f7a4f;
    --iuv-green-bg: #e8f6ee;
    --iuv-green-border: #8dcfb0;
    --iuv-red: #c44545;
    --iuv-red-bg: #fdecec;
    --iuv-red-border: #f0b3b3;
    --iuv-radius: 16px;
    --iuv-radius-sm: 12px;
    --iuv-wrap: 1120px;
    --iuv-sans: "Manrope", "Segoe UI", sans-serif;
    --iuv-serif: "Cormorant Garamond", Georgia, serif;
    --iuv-shadow: 0 10px 30px rgba(28, 36, 51, 0.04);
    --iuv-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --iuv-duration: 0.45s;

    position: relative;
    min-height: 70vh;
    overflow-x: clip;
    background: var(--iuv-bg);
    color: var(--iuv-ink);
    font-family: var(--iuv-sans);
    font-size: 16px;
    line-height: 1.55;
}

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

.iuv-quest img {
    display: block;
    max-width: 100%;
    height: auto;
}

.iuv-quest button {
    font-family: inherit;
}

.iuv-quest a,
.iuv-quest button,
.iuv-quest .iuv-answer,
.iuv-quest .iuv-card,
.iuv-quest .iuv-progress__dot {
    -webkit-tap-highlight-color: transparent;
}

.iuv-quest[hidden],
.iuv-quest [hidden] {
    display: none !important;
}

.iuv-wrap {
    width: min(var(--iuv-wrap), calc(100% - 48px));
    margin: 0 auto;
}

.iuv-screen {
    padding: 48px 0 80px;
}

.iuv-screen--narrow {
    padding-top: 28px;
}

.iuv-screen--landing,
.iuv-app {
    opacity: 1;
    transform: none;
    transition:
            opacity 0.32s var(--iuv-ease),
            transform 0.32s var(--iuv-ease);
}

.iuv-screen--landing.is-leaving,
.iuv-app.is-leaving {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.iuv-screen--enter {
    animation: iuv-fade-up var(--iuv-duration) var(--iuv-ease) both;
}

@keyframes iuv-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iuv-fade-down {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes iuv-pop {
    0% {
        transform: scale(0.96);
    }

    60% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes iuv-mark-in {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.iuv-screen--enter .iuv-grid > * {
    animation: iuv-fade-up 0.5s var(--iuv-ease) both;
}

.iuv-screen--enter .iuv-grid > *:nth-child(1) {
    animation-delay: 0.04s;
}

.iuv-screen--enter .iuv-grid > *:nth-child(2) {
    animation-delay: 0.09s;
}

.iuv-screen--enter .iuv-grid > *:nth-child(3) {
    animation-delay: 0.14s;
}

.iuv-screen--enter .iuv-grid > *:nth-child(4) {
    animation-delay: 0.18s;
}

.iuv-screen--enter .iuv-grid > *:nth-child(5) {
    animation-delay: 0.22s;
}

.iuv-screen--landing.is-entered .iuv-landing {
    animation: iuv-fade-up var(--iuv-duration) var(--iuv-ease) both;
}

.iuv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 28px;
    border: 0;
    border-radius: 999px;
    background: var(--iuv-navy);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(28, 36, 51, 0.12);
    transition:
            background 0.28s var(--iuv-ease),
            color 0.28s var(--iuv-ease),
            box-shadow 0.28s var(--iuv-ease),
            opacity 0.28s var(--iuv-ease);
}

.iuv-btn:focus-visible {
    outline: 2px solid var(--iuv-gold);
    outline-offset: 3px;
}

.iuv-btn:disabled,
.iuv-btn.is-disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none;
}

.iuv-btn--block {
    width: 100%;
}

.iuv-btn__icon {
    flex: 0 0 auto;
    transition: transform 0.28s var(--iuv-ease);
}

.iuv-landing {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
    padding-top: 24px;
}

.iuv-landing > *,
.iuv-grid > * {
    min-width: 0;
}

.iuv-landing__title {
    margin: 0 0 16px;
    color: var(--iuv-ink);
    font-family: var(--iuv-sans);
    font-size: clamp(40px, 4.6vw, 58px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.98;
    overflow-wrap: anywhere;
}

.iuv-landing__subtitle {
    max-width: 36ch;
    margin: 0 0 28px;
    color: var(--iuv-ink-soft);
    font-size: 17px;
    line-height: 1.55;
}

.iuv-highlights {
    margin: 0 0 36px;
    padding: 20px 0 0;
    border-top: 1px solid var(--iuv-line);
    list-style: none;
}

.iuv-highlights__item {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
}

.iuv-highlights__item::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iuv-gold);
}

.iuv-highlights__item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
}

.iuv-highlights__text {
    color: var(--iuv-ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

.iuv-highlights__text p {
    margin: 0;
}

.iuv-landing__media {
    overflow: hidden;
    border-radius: 22px;
}

.iuv-landing__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--iuv-shadow);
    transition: transform 0.7s var(--iuv-ease);
}

.iuv-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iuv-letter {
    width: min(720px, 100%);
    margin: 0 auto 28px;
    padding: 36px 44px 32px;
    background: var(--iuv-paper);
    border: 1px solid var(--iuv-gold-line);
    border-radius: var(--iuv-radius);
    box-shadow: var(--iuv-shadow);
}

.iuv-letter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee3c8;
}

.iuv-letter__title {
    margin: 0;
    color: var(--iuv-gold);
    font-family: var(--iuv-serif);
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.15;
}

.iuv-letter__quill {
    color: var(--iuv-gold);
}

.iuv-letter__body {
    color: var(--iuv-ink);
    font-family: var(--iuv-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.55;
}

.iuv-letter__body p {
    margin: 0 0 16px;
}

.iuv-letter__body p:last-child {
    margin-bottom: 0;
}

.iuv-letter__sign {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid #eee3c8;
    color: var(--iuv-ink);
    font-family: var(--iuv-serif);
    text-align: right;
}

.iuv-letter__signoff {
    margin: 0;
    font-size: 18px;
    font-style: italic;
}

.iuv-letter__name {
    margin: 4px 0 0;
    font-size: 28px;
    font-weight: 600;
}

.iuv-progress {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--iuv-line);
}

.iuv-progress__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--iuv-navy);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.iuv-progress__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.iuv-progress__dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--iuv-dot-empty);
}

.iuv-progress__dot.is-current,
.iuv-progress__dot.is-done {
    background: var(--iuv-gold);
}

.iuv-progress__dot.is-current {
    transform: scale(1.28);
}

.iuv-progress__dot.is-correct {
    background: var(--iuv-green);
}

.iuv-progress__dot.is-wrong {
    background: var(--iuv-red);
}

.iuv-progress__label {
    color: var(--iuv-gold);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.iuv-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px 32px;
    align-items: start;
}

.iuv-grid--arrive {
    grid-template-areas:
        "guide map"
        "task map"
        "action address";
}

.iuv-grid--arrive .iuv-guide {
    grid-area: guide;
}

.iuv-grid--arrive .iuv-task {
    grid-area: task;
}

.iuv-grid--arrive .iuv-action {
    grid-area: action;
    align-self: end;
}

.iuv-grid--arrive .iuv-map {
    grid-area: map;
}

.iuv-grid--arrive .iuv-address {
    grid-area: address;
}

.iuv-grid--info {
    grid-template-areas:
        "guide info"
        "action extra";
}

.iuv-grid--info .iuv-guide {
    grid-area: guide;
}

.iuv-grid--info .iuv-action {
    grid-area: action;
}

.iuv-grid--info .iuv-info {
    grid-area: info;
}

.iuv-grid--info .iuv-extra {
    grid-area: extra;
}

.iuv-grid--question {
    grid-template-areas:
        "panel side"
        "action side";
}

.iuv-grid--question .iuv-qpanel {
    grid-area: panel;
}

.iuv-grid--question .iuv-action {
    grid-area: action;
}

.iuv-grid--question .iuv-qside {
    grid-area: side;
}

.iuv-card {
    background: var(--iuv-paper);
    border: 1px solid var(--iuv-gold-line);
    border-radius: var(--iuv-radius);
    box-shadow: var(--iuv-shadow);
}

.iuv-card--soft {
    border-color: #ece4d4;
}

.iuv-guide {
    padding: 20px 22px 22px;
}

.iuv-guide__person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--iuv-line);
}

.iuv-guide__avatar,
.iuv-guide__avatar-fallback {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.iuv-guide__avatar-fallback {
    display: grid;
    place-items: center;
    background: var(--iuv-gold-soft);
    color: var(--iuv-gold-deep);
    font-weight: 700;
}

.iuv-guide__name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.iuv-guide__role {
    margin: 2px 0 0;
    color: var(--iuv-gold);
    font-size: 13px;
    font-weight: 600;
}

.iuv-guide__text {
    margin: 0;
    color: var(--iuv-ink);
    font-size: 16px;
    line-height: 1.55;
}

.iuv-task h2 {
    margin: 8px 0 10px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.iuv-task-text {
    color: var(--iuv-ink);
    font-size: 16px;
    line-height: 1.55;
}

.iuv-task-text p {
    margin: 0 0 14px;
}

.iuv-map {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #e7e4de;
    border-radius: 18px;
}

.iuv-map img,
.iuv-map__leaflet {
    width: 100%;
    height: clamp(280px, 32vw, 360px);
    object-fit: cover;
}

.iuv-map--empty {
    display: grid;
    place-items: center;
    width: 100%;
    height: clamp(280px, 32vw, 360px);
    background: #e8e6e1;
}

.iuv-map__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.iuv-map__pin {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 2px solid var(--iuv-gold);
    border-radius: 50%;
    background: var(--iuv-navy);
    color: #fff;
    box-shadow: 0 8px 20px rgba(28, 36, 51, 0.18);
}

.iuv-map__label {
    min-height: 40px;
    max-width: min(240px, calc(100vw - 80px));
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--iuv-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.iuv-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--iuv-paper);
    border: 1px solid #ece4d4;
    border-radius: var(--iuv-radius-sm);
}

.iuv-address__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #f3eee4;
    color: var(--iuv-muted);
}

.iuv-address__label {
    margin: 0 0 2px;
    color: var(--iuv-muted);
    font-size: 13px;
}

.iuv-address__value {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.iuv-address a {
    color: inherit;
    text-decoration: none;
}

.iuv-info {
    padding: 28px 30px 30px;
}

.iuv-info h2 {
    margin: 0 0 14px;
    font-family: var(--iuv-serif);
    font-size: 28px;
    font-weight: 600;
}

.iuv-info__body {
    color: var(--iuv-ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.iuv-info__body p {
    margin: 0 0 14px;
}

.iuv-extra {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
}

.iuv-extra img {
    width: 120px;
    height: 84px;
    flex: 0 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.iuv-extra h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
}

.iuv-extra a {
    color: var(--iuv-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.iuv-qpanel {
    padding: 28px 26px 22px;
}

.iuv-question {
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--iuv-line);
    font-family: var(--iuv-serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.35;
}

.iuv-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iuv-answer {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid #e4ddd0;
    border-radius: 12px;
    background: #fff;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
            border-color 0.28s var(--iuv-ease),
            background 0.28s var(--iuv-ease);
}

.iuv-answer:disabled {
    cursor: default;
}

.iuv-answer.is-selected,
.iuv-answer.is-correct {
    border-color: var(--iuv-green-border);
    background: var(--iuv-green-bg);
}

.iuv-answer.is-correct,
.iuv-answer.is-wrong {
    animation: iuv-pop 0.38s var(--iuv-ease);
}

.iuv-answer.is-wrong {
    border-color: var(--iuv-red-border);
    background: var(--iuv-red-bg);
}

.iuv-answer--image {
    align-items: stretch;
    min-height: 0;
    padding: 10px;
}

.iuv-answer--image .iuv-answer__mark {
    align-self: center;
}

.iuv-answer img {
    width: 168px;
    max-height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

.iuv-answer__mark {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 1.5px solid #cfc6b6;
    border-radius: 50%;
    background: #fff;
    color: transparent;
}

.iuv-answer.is-selected .iuv-answer__mark,
.iuv-answer.is-correct .iuv-answer__mark,
.iuv-answer.is-wrong .iuv-answer__mark {
    animation: iuv-mark-in 0.28s var(--iuv-ease);
}

.iuv-answer.is-selected .iuv-answer__mark,
.iuv-answer.is-correct .iuv-answer__mark {
    border-color: var(--iuv-green);
    background: var(--iuv-green);
    color: #fff;
}

.iuv-answer.is-wrong .iuv-answer__mark {
    border-color: var(--iuv-red);
    background: var(--iuv-red);
    color: #fff;
}

.iuv-answer__text {
    font-size: 15px;
    font-weight: 500;
}

.iuv-qside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iuv-quote {
    padding: 18px 20px;
    background: var(--iuv-paper);
    border: 1px solid var(--iuv-gold-line);
    border-radius: var(--iuv-radius-sm);
    color: var(--iuv-ink-soft);
    font-family: var(--iuv-serif);
    font-size: 18px;
    line-height: 1.5;
}

.iuv-quote p {
    margin: 0;
}

.iuv-qimage {
    overflow: hidden;
    border-radius: 16px;
}

.iuv-qimage img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.iuv-finale {
    text-align: center;
}

.iuv-finale__ornament {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border: 1px solid var(--iuv-gold-line);
    border-radius: 50%;
    color: var(--iuv-gold);
}

.iuv-finale__title {
    margin: 0 0 12px;
    font-family: var(--iuv-serif);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
}

.iuv-finale__subtitle {
    width: min(640px, 100%);
    margin: 0 auto 36px;
    color: var(--iuv-muted);
    font-size: 16px;
    line-height: 1.55;
}

.iuv-finale__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    text-align: left;
}

.iuv-finale .iuv-letter {
    width: 100%;
    margin: 0;
}

.iuv-result {
    padding: 22px 24px 20px;
}

.iuv-result__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.iuv-result__head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.iuv-result__score {
    color: var(--iuv-gold);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.iuv-result__dots {
    display: flex;
    gap: 7px;
    margin-bottom: 12px;
}

.iuv-result__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--iuv-dot-empty);
}

.iuv-result__dots span.is-correct {
    background: var(--iuv-green);
}

.iuv-result__dots span.is-wrong {
    background: var(--iuv-red);
}

.iuv-result__message {
    margin: 0;
    color: var(--iuv-ink-soft);
    font-size: 15px;
}

.iuv-promo {
    margin-top: 16px;
    padding: 20px 24px 22px;
}

.iuv-promo__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--iuv-gold-line);
}

.iuv-promo__event {
    margin: 0;
    color: var(--iuv-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.iuv-promo__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #ece9e2;
    color: var(--iuv-ink);
    font-size: 11px;
    font-weight: 700;
}

.iuv-promo__label {
    margin: 18px 0 6px;
    color: var(--iuv-muted);
    font-size: 14px;
    text-align: center;
}

.iuv-promo__code {
    margin: 0 0 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ece4d4;
    font-family: var(--iuv-serif);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    overflow-wrap: anywhere;
}

.iuv-finale__cta {
    margin-top: 18px;
}

.iuv-action {
    justify-self: start;
}

@media (hover: hover) and (pointer: fine) {
    .iuv-btn:hover:not(:disabled):not(.is-disabled) {
        background: var(--iuv-navy-hover);
    }

    .iuv-answer:hover:not(:disabled) {
        border-color: var(--iuv-gold);
    }

    .iuv-landing__media:hover .iuv-landing__image {
        transform: scale(1.035);
    }
}

@media (max-width: 1100px) {
    .iuv-landing {
        gap: 36px;
    }

    .iuv-grid {
        gap: 22px 24px;
    }
}

@media (max-width: 980px) {
    .iuv-wrap {
        width: min(var(--iuv-wrap), calc(100% - 36px));
    }

    .iuv-landing,
    .iuv-grid,
    .iuv-finale__grid {
        grid-template-columns: 1fr;
    }

    .iuv-landing {
        gap: 28px;
        padding-top: 8px;
    }

    .iuv-grid--arrive {
        grid-template-areas:
            "guide"
            "task"
            "map"
            "address"
            "action";
    }

    .iuv-grid--info {
        grid-template-areas:
            "guide"
            "info"
            "extra"
            "action";
    }

    .iuv-grid--question {
        grid-template-areas:
            "panel"
            "side"
            "action";
    }

    .iuv-action {
        justify-self: start;
    }

    .iuv-progress {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "back label"
            "dots dots";
        gap: 14px;
    }

    .iuv-progress__back {
        grid-area: back;
    }

    .iuv-progress__dots {
        grid-area: dots;
        justify-content: flex-start;
    }

    .iuv-progress__label {
        grid-area: label;
        text-align: right;
    }

    .iuv-letter {
        padding: 24px 22px;
    }

    .iuv-letter__title {
        font-size: 28px;
    }

    .iuv-task h2,
    .iuv-info h2 {
        font-size: 24px;
    }

    .iuv-landing__image {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .iuv-wrap {
        width: min(var(--iuv-wrap), calc(100% - 24px));
    }

    .iuv-screen {
        padding: 24px 0 48px;
    }

    .iuv-landing__title {
        font-size: clamp(30px, 9vw, 36px);
    }

    .iuv-landing__subtitle {
        max-width: none;
        font-size: 16px;
    }

    .iuv-landing__image {
        height: 280px;
    }

    .iuv-letter {
        padding: 20px 18px;
    }

    .iuv-letter__title {
        font-size: 24px;
    }

    .iuv-letter__body {
        font-size: 18px;
    }

    .iuv-letter__name {
        font-size: 24px;
    }

    .iuv-qpanel,
    .iuv-info,
    .iuv-guide {
        padding: 20px 18px;
    }

    .iuv-question {
        font-size: 21px;
    }

    .iuv-extra {
        flex-direction: column;
        align-items: flex-start;
    }

    .iuv-extra img {
        width: 100%;
        height: 160px;
    }

    .iuv-result__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .iuv-btn {
        width: 100%;
    }

    .iuv-action {
        width: 100%;
        justify-self: stretch;
    }

    .iuv-progress__dots {
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        padding: 4px 0;
        scrollbar-width: none;
    }

    .iuv-progress__dots::-webkit-scrollbar {
        display: none;
    }

    .iuv-progress__dot {
        width: 8px;
        height: 8px;
    }

    .iuv-answer--image {
        flex-direction: column;
        align-items: flex-start;
    }

    .iuv-answer--image img {
        width: 100%;
        max-height: 170px;
    }

    .iuv-map,
    .iuv-map--empty {
        min-height: 260px;
    }

    .iuv-map img,
    .iuv-map__leaflet,
    .iuv-map--empty {
        height: 260px;
    }

    .iuv-map__pin {
        width: 48px;
        height: 48px;
    }

    .iuv-promo__code {
        font-size: 28px;
    }
}

@media (max-width: 400px) {
    .iuv-progress__label {
        font-size: 12px;
    }

    .iuv-guide__name {
        font-size: 15px;
    }

    .iuv-letter {
        padding: 18px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iuv-quest *,
    .iuv-quest *::before,
    .iuv-quest *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .iuv-screen--landing,
    .iuv-app,
    .iuv-screen--landing.is-leaving,
    .iuv-app.is-leaving {
        opacity: 1;
        transform: none;
    }
}