/* ==========================================================================
   Glopy · Onboarding · Screen 02 — "¿Qué quieres descubrir?"
   Gloppy's first intelligent filter. Fast, clean, premium. Form-free feel.
   ========================================================================== */

:root {
    --gl-blue: #1060ff;
    --gl-blue-deep: #0b4ad6;
    --gl-blue-soft: #3d86ff;
    --gl-bg-0: #05070f;
    --gl-bg-1: #0a0e1a;
    --gl-card: #0b1322;
    --gl-text: #ffffff;
    --gl-text-muted: #9aa6c2;
    --gl-radius: 22px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

.ob-body {
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(120% 80% at 50% 8%, #0d1426 0%, var(--gl-bg-1) 46%, var(--gl-bg-0) 100%);
    color: var(--gl-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
}

.ob-aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(55% 38% at 50% 26%, rgba(16, 96, 255, 0.26) 0%, rgba(16, 96, 255, 0) 70%),
        radial-gradient(45% 30% at 50% 92%, rgba(16, 96, 255, 0.14) 0%, rgba(16, 96, 255, 0) 72%);
    animation: ob-breathe 7s ease-in-out infinite;
}

/* Layout ------------------------------------------------------------------- */
.ob-screen {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: calc(clamp(18px, 4vh, 30px) + env(safe-area-inset-top))
             clamp(18px, 5vw, 26px)
             calc(clamp(18px, 3vh, 26px) + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vh, 26px);
    animation: ob-fade-in 0.3s ease-out both;
}

/* Top: logo + progress ----------------------------------------------------- */
.ob-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ob-logo {
    margin: 0;
    font-weight: 900;
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, var(--gl-blue-soft) 0%, var(--gl-blue) 60%, var(--gl-blue-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gl-blue);
    filter: drop-shadow(0 4px 18px rgba(16, 96, 255, 0.45));
}

.ob-progress {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ob-progress__bar {
    display: flex;
    gap: 6px;
}

.ob-progress__seg {
    width: 26px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease;
}

.ob-progress__seg.is-active {
    background: linear-gradient(90deg, var(--gl-blue-soft), var(--gl-blue));
    box-shadow: 0 0 10px rgba(16, 96, 255, 0.6);
}

.ob-progress__label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gl-text-muted);
    letter-spacing: 0.01em;
}

/* Hero: character + title + subtitle --------------------------------------- */
.ob-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(6px, 1.5vh, 12px);
}

.ob-character {
    position: relative;
    width: clamp(110px, 30vw, 150px);
    height: clamp(110px, 30vw, 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ob-character__glow {
    position: absolute;
    inset: -22%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(16, 96, 255, 0.55) 0%, rgba(16, 96, 255, 0.14) 46%, rgba(16, 96, 255, 0) 72%);
    filter: blur(6px);
    animation: ob-glow 3.6s ease-in-out infinite;
}

.ob-character__img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: ob-float 4s ease-in-out infinite;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.45));
    will-change: transform;
}

.ob-title {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.7rem, 6.6vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.ob-subtitle {
    margin: 0;
    font-size: clamp(0.98rem, 3.6vw, 1.08rem);
    line-height: 1.45;
    color: var(--gl-text-muted);
    max-width: 30ch;
}

/* Cards -------------------------------------------------------------------- */
.ob-cards {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2.2vh, 18px);
    margin-top: auto;
}

.ob-card {
    position: relative;
    display: block;
    width: 100%;
    min-height: clamp(150px, 21vh, 188px);
    padding: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gl-radius);
    background: var(--gl-card);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.ob-card__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    transform: scale(1.001); /* avoid sub-pixel edge gaps */
    transition: transform 0.4s ease;
}

/* Dark scrim so the photo melts into the card on the left (where text sits). */
.ob-card__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            var(--gl-card) 0%,
            rgba(11, 19, 34, 0.92) 24%,
            rgba(11, 19, 34, 0.45) 52%,
            rgba(11, 19, 34, 0.05) 80%,
            rgba(11, 19, 34, 0) 100%),
        linear-gradient(180deg, rgba(5, 7, 15, 0) 40%, rgba(5, 7, 15, 0.35) 100%);
}

.ob-card__body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: clamp(18px, 4vw, 24px);
    max-width: 68%;
}

.ob-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16, 96, 255, 0.12);
    border: 1px solid rgba(61, 134, 255, 0.35);
    color: var(--gl-blue-soft);
    margin-bottom: 2px;
}

.ob-card__icon svg { width: 26px; height: 26px; }

.ob-card__title {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.4rem, 5.6vw, 1.7rem);
    letter-spacing: -0.01em;
}

.ob-card__desc {
    margin: 0;
    font-size: clamp(0.85rem, 3.4vw, 0.95rem);
    line-height: 1.4;
    color: var(--gl-text-muted);
}

/* Selected check badge */
.ob-card__check {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gl-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 96, 255, 0.6);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ob-card__check svg { width: 16px; height: 16px; }

/* Interactions */
.ob-card:active { transform: scale(0.985); }

.ob-card:hover .ob-card__media { transform: scale(1.04); }

.ob-card.is-selected {
    border-color: var(--gl-blue);
    box-shadow:
        0 0 0 1px var(--gl-blue),
        0 10px 34px rgba(16, 96, 255, 0.4);
}

.ob-card.is-selected .ob-card__check {
    opacity: 1;
    transform: scale(1);
}

.ob-card:focus-visible {
    outline: 3px solid rgba(61, 134, 255, 0.7);
    outline-offset: 3px;
}

/* CTA ---------------------------------------------------------------------- */
.ob-cta {
    padding-top: 4px;
}

.ob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--gl-blue-soft) 0%, var(--gl-blue) 60%, var(--gl-blue-deep) 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(16, 96, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.16s ease, box-shadow 0.25s ease, filter 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.ob-btn:hover { filter: brightness(1.05); }

.ob-btn:active {
    transform: translateY(1px) scale(0.99);
    box-shadow:
        0 16px 44px rgba(16, 96, 255, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ob-btn:focus-visible {
    outline: 3px solid rgba(61, 134, 255, 0.7);
    outline-offset: 3px;
}

/* Keyframes ---------------------------------------------------------------- */
@keyframes ob-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes ob-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ob-glow { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes ob-breathe { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }

/* Column wrappers are transparent on mobile (layout flows exactly as before)... */
.ob-col { display: contents; }

/* ...and become a real two-column split hero on large screens. -------------- */
@media (min-width: 900px) {
    .ob-screen--split {
        max-width: 1080px;
        padding-inline: clamp(40px, 6vw, 72px);
        display: grid;
        grid-template-columns: 0.92fr 1.08fr;
        align-items: center;
        column-gap: clamp(40px, 5vw, 84px);
        gap: 0;
    }

    .ob-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    /* Left column: branding + conversational hero, left-aligned. */
    .ob-col--left { gap: clamp(20px, 3.5vh, 34px); }
    .ob-top { align-items: flex-start; }
    .ob-hero { align-items: flex-start; text-align: left; }
    .ob-logo { font-size: clamp(1.8rem, 2.4vw, 2.35rem); }
    .ob-character {
        width: clamp(140px, 12vw, 188px);
        height: clamp(140px, 12vw, 188px);
        margin: 0 0 4px;
    }
    .ob-title { font-size: clamp(2.1rem, 3vw, 2.9rem); }
    .ob-subtitle { max-width: 34ch; }

    /* Right column: the decision (cards + CTA). */
    .ob-col--right { gap: clamp(16px, 2.6vh, 22px); }
    .ob-cards { margin-top: 0; gap: clamp(16px, 2.4vh, 20px); }
    .ob-card { min-height: clamp(168px, 22vh, 210px); }
}

/* Very wide screens: a hair more breathing room. */
@media (min-width: 1280px) {
    .ob-screen--split { max-width: 1160px; column-gap: 96px; }
}

/* Short viewports: trim the character so cards stay above the fold. */
@media (max-height: 720px) {
    .ob-character { width: clamp(86px, 18vh, 120px); height: clamp(86px, 18vh, 120px); }
    .ob-hero { gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    .ob-aurora, .ob-character__glow, .ob-character__img { animation: none !important; }
    .ob-screen { animation: none !important; }
    .ob-slider::-webkit-slider-thumb { transition: none !important; }
}

/* ==========================================================================
   Screen 03 — Preferences ("Cuéntame tus preferencias")
   A conversational setup, never a classic form.
   ========================================================================== */

/* Header becomes a positioning context for the back button. */
.ob-top { position: relative; }

/* Back button (sits at the start of the header row). */
.ob-back {
    position: absolute;
    left: 0;
    top: -2px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.ob-back:hover { background: rgba(255, 255, 255, 0.1); }
.ob-back:active { transform: scale(0.92); }
.ob-back svg { width: 20px; height: 20px; }

/* The form is just a stack of "conversation" blocks. */
.ob-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2.4vh, 18px);
}

.ob-block {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--gl-radius);
    padding: clamp(16px, 4.4vw, 22px);
}

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

.ob-block__label {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--gl-text-muted);
}

.ob-block__aux {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gl-text-muted);
}

.ob-bigval {
    font-size: clamp(1.5rem, 6.2vw, 1.95rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 2px 0 14px;
}

/* Sliders ------------------------------------------------------------------ */
.ob-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    background-image: linear-gradient(90deg, var(--gl-blue-soft), var(--gl-blue));
    background-size: var(--pct, 50%) 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    outline-offset: 6px;
}
.ob-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: transparent; }
.ob-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -8px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gl-blue);
    box-shadow: 0 2px 12px rgba(16, 96, 255, 0.65);
    transition: transform 0.12s ease;
}
.ob-slider:active::-webkit-slider-thumb { transform: scale(1.12); }
.ob-slider::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); }
.ob-slider::-moz-range-progress { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--gl-blue-soft), var(--gl-blue)); }
.ob-slider::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 3px solid var(--gl-blue);
    box-shadow: 0 2px 12px rgba(16, 96, 255, 0.65);
}

.ob-bounds {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gl-text-muted);
}

/* Chips (radio / checkbox driven) ------------------------------------------ */
.ob-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.ob-chip-input {
    position: absolute;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ob-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gl-text);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease, transform 0.14s ease;
}
.ob-chip svg { width: 18px; height: 18px; color: var(--gl-text-muted); transition: color 0.2s ease; }
.ob-chip i.bi { font-size: 18px; line-height: 1; color: var(--gl-text-muted); transition: color 0.2s ease; }
.ob-chip .emoji { font-size: 1.05rem; line-height: 1; }
.ob-chip:active { transform: scale(0.96); }

.ob-chip-input:checked + .ob-chip {
    background: linear-gradient(180deg, var(--gl-blue-soft), var(--gl-blue));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(16, 96, 255, 0.45);
}
.ob-chip-input:checked + .ob-chip svg,
.ob-chip-input:checked + .ob-chip i.bi { color: #fff; }
.ob-chip-input:focus-visible + .ob-chip { outline: 3px solid rgba(61, 134, 255, 0.7); outline-offset: 2px; }

/* Number pills (habitaciones): evenly spread across the row. */
.ob-chips--nums .ob-chip { flex: 1 1 0; justify-content: center; min-width: 52px; padding: 13px 12px; }

/* Pets: two large side-by-side options. */
.ob-pets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ob-pets .ob-chip { width: 100%; justify-content: center; padding: 16px 14px; border-radius: 14px; }

/* Zona — custom smart selector --------------------------------------------- */
.ob-select { position: relative; }
.ob-select__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.ob-select__btn:hover { border-color: rgba(61, 134, 255, 0.4); }
.ob-select__btn .pin { display: flex; color: var(--gl-blue-soft); }
.ob-select__btn .pin svg { width: 20px; height: 20px; }
.ob-select__btn .label { flex: 1 1 auto; }
.ob-select__btn .chev { display: flex; color: var(--gl-text-muted); transition: transform 0.25s ease; }
.ob-select__btn .chev svg { width: 18px; height: 18px; }
.ob-select.is-open .ob-select__btn .chev { transform: rotate(180deg); }
.ob-select.is-open .ob-select__btn { border-color: var(--gl-blue); }

.ob-select__menu {
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    background: #0c1322;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    display: none;
    flex-direction: column;
    gap: 2px;
}
.ob-select.is-open .ob-select__menu { display: flex; animation: ob-fade-in 0.15s ease-out both; }
.ob-select__item {
    padding: 12px; border-radius: 10px;
    background: transparent; border: 0;
    color: #fff; text-align: left; font-size: 0.95rem; cursor: pointer;
    transition: background 0.15s ease;
}
.ob-select__item:hover { background: rgba(16, 96, 255, 0.18); }
.ob-select__item.is-active { background: rgba(16, 96, 255, 0.28); }

/* Continue button arrow */
.ob-btn { position: relative; }
.ob-btn__arrow { position: absolute; right: 24px; display: flex; }
.ob-btn__arrow svg { width: 22px; height: 22px; }

/* ==========================================================================
   Screen 04 — "¡Listo! Gloppy ya está aprendiendo de ti."
   ========================================================================== */

/* Graduation cap + twinkling particles around Gloppy. */
.ob-character--grad .ob-character__glow {
    background: radial-gradient(circle at 50% 45%, rgba(16, 96, 255, 0.65) 0%, rgba(16, 96, 255, 0.18) 46%, rgba(16, 96, 255, 0) 72%);
}

.ob-gradcap {
    position: absolute;
    top: -16%;
    left: 50%;
    transform: translateX(-52%) rotate(-12deg);
    font-size: clamp(2.3rem, 8vw, 3.1rem);
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55));
}

.ob-spark {
    position: absolute;
    color: var(--gl-blue-soft);
    filter: drop-shadow(0 0 6px rgba(61, 134, 255, 0.85));
    pointer-events: none;
    animation: ob-twinkle 2.4s ease-in-out infinite;
}

@keyframes ob-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.55); }
    50%      { opacity: 1;    transform: scale(1); }
}

/* Preferences summary -------------------------------------------------------*/
.ob-summary__title {
    margin: 0 0 4px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ob-sum-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
}
.ob-sum-row:first-of-type { border-top: 0; }

.ob-sum-row__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 96, 255, 0.12);
    border: 1px solid rgba(61, 134, 255, 0.3);
    color: var(--gl-blue-soft);
    font-size: 1.2rem;
}

.ob-sum-row__main { flex: 1 1 auto; min-width: 0; }
.ob-sum-row__label { font-size: 0.95rem; font-weight: 600; color: var(--gl-text); }
.ob-sum-row__value {
    margin-top: 2px;
    font-size: 0.92rem;
    color: var(--gl-blue-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob-sum-row__chev {
    flex: 0 0 auto;
    color: var(--gl-text-muted);
    font-size: 1.1rem;
    display: flex;
    transition: transform 0.15s ease, color 0.15s ease;
}
.ob-sum-row:hover .ob-sum-row__chev { color: #fff; transform: translateX(3px); }

/* AI highlight block --------------------------------------------------------*/
.ob-ai {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 96, 255, 0.18), rgba(16, 96, 255, 0.05));
    border: 1px solid rgba(61, 134, 255, 0.25);
}
.ob-ai__icon { flex: 0 0 auto; display: flex; color: var(--gl-blue-soft); font-size: 1.7rem; }
.ob-ai__text { font-size: 0.9rem; line-height: 1.45; color: #cfd9f0; }
.ob-ai__spark {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gl-blue-soft);
    opacity: 0.65;
    font-size: 1.15rem;
    animation: ob-twinkle 2.8s ease-in-out infinite;
}

/* Desktop: sticky conversational hero on the left, scrolling form on right. */
@media (min-width: 900px) {
    .ob-screen--form { align-items: start; }
    .ob-screen--form .ob-col--left {
        position: sticky;
        top: 0;
        align-self: start;
        height: 100vh;
        height: 100dvh;
        justify-content: center;
        padding-block: 24px;
    }
    .ob-screen--form .ob-col--right { padding-block: clamp(28px, 5vh, 60px); }
}

