/* Mock page utilities — supplement tailwind.css until `npm run build:css` is run */

/* Gateway page — compact mobile layout, all stream cards visible */
.mock-gateway {
    min-height: calc(100vh - 5rem);
    overflow: visible;
}

.mock-gateway__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.mock-gateway__eyebrow {
    margin-bottom: 0.5rem;
}

.mock-gateway__title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.mock-gateway__intro {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.mock-gateway__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.mock-gateway__card {
    padding: 0.875rem 1rem;
}

.mock-gateway__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.625rem;
}

.mock-gateway__card-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.mock-gateway__card-title {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 0.375rem;
}

.mock-gateway__card-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 0.625rem;
}

.mock-gateway__card-cta {
    font-size: 0.75rem;
}

.mock-gateway__footer {
    margin-top: 1.25rem;
}

@media (min-width: 640px) {
    .mock-gateway__inner {
        justify-content: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .mock-gateway__eyebrow {
        margin-bottom: 1rem;
    }

    .mock-gateway__title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .mock-gateway__intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .mock-gateway__grid {
        gap: 1.5rem;
    }

    .mock-gateway__card {
        padding: 1.5rem;
    }

    .mock-gateway__card-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.25rem;
    }

    .mock-gateway__card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .mock-gateway__card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .mock-gateway__card-desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .mock-gateway__card-cta {
        font-size: 0.875rem;
    }

    .mock-gateway__footer {
        margin-top: 2.5rem;
    }
}

@media (min-width: 768px) {
    .mock-gateway__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .mock-gateway__inner {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .mock-gateway__title {
        font-size: 3.75rem;
    }

    .mock-gateway__grid {
        gap: 2rem;
    }

    .mock-gateway__card {
        padding: 2rem;
    }
}

/* Layout */
.grid { display: grid; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-wrap { flex-wrap: wrap; }
.items-baseline { align-items: baseline; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.bottom-0 { bottom: 0; }

/* Sizing */
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-xl { max-width: 36rem; }
.min-w-\[4\.5rem\] { min-width: 4.5rem; }
.w-2 { width: 0.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.h-2 { height: 0.5rem; }
.h-8 { height: 2rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-px { height: 1px; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }

/* Spacing */
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-11 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }

/* Typography */
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.leading-tight { line-height: 1.25; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.break-all { word-break: break-all; }
.uppercase { text-transform: uppercase; }

/* Borders & radius */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: 1rem; }
.border-2 { border-width: 2px; }
.border-dashed { border-style: dashed; }
.border-primary\/15 { border-color: hsl(var(--primary) / 0.15); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/25 { border-color: hsl(var(--primary) / 0.25); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.border-white\/30 { border-color: rgb(255 255 255 / 0.3); }

/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/15 { background-color: rgb(255 255 255 / 0.15); }
.bg-white\/60 { background-color: rgb(255 255 255 / 0.6); }
.bg-white\/70 { background-color: rgb(255 255 255 / 0.7); }
.bg-accent\/30 { background-color: hsl(var(--accent) / 0.3); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/60 { background-color: hsl(var(--primary) / 0.6); }
.bg-primary\/\[0\.02\] { background-color: hsl(var(--primary) / 0.02); }
.bg-primary\/\[0\.04\] { background-color: hsl(var(--primary) / 0.04); }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }

/* Text colors */
.text-white { color: #fff; }
.text-white\/20 { color: rgb(255 255 255 / 0.2); }
.text-white\/50 { color: rgb(255 255 255 / 0.5); }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }
.text-white\/75 { color: rgb(255 255 255 / 0.75); }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-primary\/80 { color: hsl(var(--primary) / 0.8); }
.text-primary\/90 { color: hsl(var(--primary) / 0.9); }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-black\/50 { --tw-gradient-from: rgb(0 0 0 / 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-black\/60 { --tw-gradient-from: rgb(0 0 0 / 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-emerald-900\/60 { --tw-gradient-from: rgb(6 78 59 / 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-slate-800\/60 { --tw-gradient-from: rgb(30 41 59 / 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-amber-900\/40 { --tw-gradient-from: rgb(120 53 15 / 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#3d2b1f\]\/80 { --tw-gradient-from: rgb(61 43 31 / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#1a1a1a\]\/80 { --tw-gradient-from: rgb(26 26 26 / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#2c2416\]\/80 { --tw-gradient-from: rgb(44 36 22 / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-\[\#003320\] { --tw-gradient-stops: var(--tw-gradient-from), #003320, var(--tw-gradient-to, transparent); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.to-\[\#001a10\] { --tw-gradient-to: #001a10; }
.to-transparent { --tw-gradient-to: transparent; }
.to-primary\/85 { --tw-gradient-to: hsl(var(--primary) / 0.85); }
.to-primary\/90 { --tw-gradient-to: hsl(var(--primary) / 0.9); }

/* Effects */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.overflow-hidden { overflow: hidden; }
.resize-y { resize: vertical; }
.appearance-none { appearance: none; }
.cursor-pointer { cursor: pointer; }
.shrink-0 { flex-shrink: 0; }
.accent-primary { accent-color: hsl(var(--primary)); }
.ring-4 { box-shadow: 0 0 0 4px var(--tw-ring-color, transparent); }
.ring-primary\/15 { --tw-ring-color: hsl(var(--primary) / 0.15); }

/* Form focus */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-primary\/20:focus { --tw-ring-color: hsl(var(--primary) / 0.2); }
.focus\:border-primary:focus { border-color: hsl(var(--primary)); }

/* Disabled */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Hover */
.hover\:bg-white\/15:hover { background-color: rgb(255 255 255 / 0.15); }
.hover\:bg-primary\/\[0\.04\]:hover { background-color: hsl(var(--primary) / 0.04); }
.hover\:border-primary\/30:hover { border-color: hsl(var(--primary) / 0.3); }
.hover\:border-primary\/50:hover { border-color: hsl(var(--primary) / 0.5); }
.hover\:border-white\/30:hover { border-color: rgb(255 255 255 / 0.3); }
.hover\:text-white\/80:hover { color: rgb(255 255 255 / 0.8); }
.hover\:text-primary\/90:hover { color: hsl(var(--primary) / 0.9); }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:gap-2:hover { gap: 0.5rem; }
.group:hover .group-hover\:opacity-40 { opacity: 0.4; }
.group:hover .group-hover\:gap-2 { gap: 0.5rem; }
.group:hover .group-hover\:text-primary\/90 { color: hsl(var(--primary) / 0.9); }

/* Transitions */
.duration-300 { transition-duration: 300ms; }

/* Responsive */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:flex-row-reverse { flex-direction: row-reverse; }
    .sm\:items-center { align-items: center; }
    .sm\:items-baseline { align-items: baseline; }
    .sm\:justify-between { justify-content: space-between; }
    .sm\:p-6 { padding: 1.5rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:p-12 { padding: 3rem; }
    .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
    .sm\:gap-0 { gap: 0; }
    .sm\:w-48 { width: 12rem; }
    .sm\:min-w-\[5\.5rem\] { min-width: 5.5rem; }
    .sm\:block { display: block; }
    .sm\:mb-14 { margin-bottom: 3.5rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
    .lg\:w-12 { width: 3rem; }
}

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Path 1 — inspiration photo thumbnail grid */
.mock-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mock-photo-thumb {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mock-photo-thumb__preview {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid hsl(var(--border));
    background: linear-gradient(135deg, hsl(var(--primary) / 0.08), hsl(var(--primary) / 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mock-photo-thumb__preview svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary) / 0.5);
}

.mock-photo-thumb__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mock-photo-thumb__remove {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: none;
    background-color: rgb(0 0 0 / 0.55);
    color: #fff;
    cursor: pointer;
    transition: background-color 150ms;
}

.mock-photo-thumb__remove:hover {
    background-color: rgb(0 0 0 / 0.75);
}

.mock-photo-thumb__remove svg {
    width: 0.75rem;
    height: 0.75rem;
}

.mock-photo-thumb__name {
    font-size: 0.6875rem;
    line-height: 1.25;
    color: hsl(var(--muted-foreground));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-photo-upload-zone {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    border: 2px dashed hsl(var(--primary) / 0.3);
    background-color: hsl(var(--primary) / 0.02);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 150ms, background-color 150ms;
}

.mock-photo-upload-zone:hover {
    border-color: hsl(var(--primary) / 0.5);
    background-color: hsl(var(--primary) / 0.04);
}

.mock-photo-upload-zone--uploading {
    opacity: 0.45;
    cursor: wait;
    border-color: hsl(var(--primary) / 0.2);
    background-color: hsl(var(--primary) / 0.03);
}

.mock-photo-upload-zone--uploading:hover {
    border-color: hsl(var(--primary) / 0.2);
    background-color: hsl(var(--primary) / 0.03);
}

.mock-session-status {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.mock-session-status__spinner {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border: 2px solid hsl(var(--primary) / 0.2);
    border-top-color: hsl(var(--primary));
    border-radius: 50%;
    animation: mock-session-spin 0.7s linear infinite;
}

@keyframes mock-session-spin {
    to { transform: rotate(360deg); }
}

.mock-photo-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.mock-photo-counter {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

.mock-photo-limit-msg {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    padding: 0.75rem 1rem;
    border-radius: calc(var(--radius));
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--accent) / 0.3);
    margin-bottom: 1rem;
}

.mock-photo-review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.mock-photo-review-thumb {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: calc(var(--radius));
    border: 1px solid hsl(var(--border));
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mock-photo-review-thumb svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--primary) / 0.5);
}

.mock-photo-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 640px) {
    .mock-photo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.5rem;
    }
}

/* Path 1 — horizontal progress bar with moving thumb */
.mock-progress {
    --mock-progress-green: #004225;
    --mock-progress-grey: #8A8D8F;
    --mock-progress-track: #E4E5E6;
    --mock-progress-thumb-size: 1.375rem;
    --mock-progress-track-height: 0.3125rem;
    --mock-progress-padding-x: calc(var(--mock-progress-thumb-size) / 2);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    min-width: 0;
    margin-bottom: 1.75rem;
    overflow: visible;
}

.mock-progress__bar {
    flex: 1 1 auto;
    min-width: 0;
    min-height: var(--mock-progress-thumb-size);
    display: flex;
    align-items: center;
    overflow: visible;
}

.mock-progress__track {
    position: relative;
    width: 100%;
    height: var(--mock-progress-track-height);
    margin-inline: var(--mock-progress-padding-x);
    background-color: var(--mock-progress-track);
    border-radius: 9999px;
    overflow: visible;
}

.mock-progress__fill {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: calc(var(--progress, 0) * 1%);
    background: linear-gradient(90deg, var(--mock-progress-green) 0%, #005c33 100%);
    border-radius: 9999px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-progress__thumb {
    position: absolute;
    top: 50%;
    left: calc(var(--progress, 0) * 1%);
    transform: translate(-50%, -50%);
    width: var(--mock-progress-thumb-size);
    height: var(--mock-progress-thumb-size);
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mock-progress__thumb-ring {
    position: absolute;
    inset: -3px;
    border-radius: 9999px;
    background: rgb(0 66 37 / 0.12);
    animation: mock-progress-pulse 2.4s ease-in-out infinite;
}

.mock-progress__thumb-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: var(--mock-progress-green);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1;
    box-shadow:
        0 0 0 2px #fff,
        0 2px 6px rgb(0 66 37 / 0.28);
}

.mock-progress__thumb-icon svg {
    display: block;
}

.mock-progress__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.375rem;
    flex: 0 0 auto;
    margin: 0;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.6875rem;
    line-height: 1;
}

.mock-progress__step-name {
    color: var(--mock-progress-green);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-progress__counter {
    color: var(--mock-progress-grey);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

@keyframes mock-progress-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}

@media (min-width: 640px) {
    .mock-progress {
        --mock-progress-thumb-size: 1.75rem;
        --mock-progress-track-height: 0.4375rem;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .mock-progress__thumb-ring {
        inset: -4px;
    }

    .mock-progress__thumb-icon {
        font-size: 0.75rem;
    }

    .mock-progress__thumb-icon svg {
        width: 16px;
        height: 16px;
    }

    .mock-progress__meta {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .mock-progress__counter::before {
        content: "·";
        margin-right: 0.5rem;
        color: var(--mock-progress-grey);
        font-weight: 400;
    }
}

@media (max-width: 639px) {
    .mock-progress__step-name {
        display: none;
    }
}

/* Path 1 — contact form styling (matches paddysinteriors.co.uk/contact) */
.mock-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: Inter, sans-serif;
}

.mock-contact-form__heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111827;
    margin-bottom: 0.5rem;
}

.mock-contact-form__intro {
    font-size: 0.875rem;
    color: #8a8d8f;
    margin-bottom: 0.5rem;
}

.mock-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mock-contact-form__label {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: hsl(var(--foreground));
}

.mock-contact-form__control,
.mock-contact-form__select {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid #d1d5db;
    background-color: #fff;
    color: #111827;
    padding: 0.75rem 1rem;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: border-color 150ms, box-shadow 150ms;
}

.mock-contact-form__control--readonly {
    background-color: #f9fafb;
    color: #374151;
    cursor: default;
}

.mock-contact-form__textarea {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 7.5rem;
    height: auto;
    padding: 0.75rem 1rem;
    resize: vertical;
}

.mock-contact-form__control::placeholder,
.mock-contact-form__textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.mock-contact-form__control:focus-visible,
.mock-contact-form__select:focus-visible,
.mock-contact-form__textarea:focus-visible {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 1px hsl(var(--ring));
}

.mock-contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.75rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mock-contact-form__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mock-contact-form__control,
    .mock-contact-form__select,
    .mock-contact-form__textarea {
        font-size: 0.875rem;
    }
}

/* Path 2 — preset image lightbox */
.preset-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.preset-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgb(0 0 0 / 0.75);
    cursor: pointer;
}

.preset-lightbox__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 56rem);
    max-height: calc(100vh - 2rem);
}

.preset-lightbox__close {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.95);
    color: #111827;
    cursor: pointer;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
    transition: background-color 150ms;
}

.preset-lightbox__close:hover {
    background: #fff;
}

.preset-lightbox__stage {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #111827;
}

.preset-lightbox__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms;
}

.preset-lightbox__image--active {
    opacity: 1;
    pointer-events: auto;
}

.preset-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.45);
    color: #fff;
    cursor: pointer;
    transition: background-color 150ms;
}

.preset-lightbox__nav:hover {
    background: rgb(0 0 0 / 0.65);
}

.preset-lightbox__nav--prev {
    left: 0.75rem;
}

.preset-lightbox__nav--next {
    right: 0.75rem;
}

.preset-lightbox__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.preset-lightbox__counter {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.preset-lightbox__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.preset-lightbox__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.45);
    cursor: pointer;
    transition: background-color 150ms, transform 150ms;
}

.preset-lightbox__dot--active {
    background: #fff;
    transform: scale(1.15);
}

.preset-hero__open-lightbox {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.45);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    transition: opacity 200ms, background-color 150ms;
}

.group:hover .preset-hero__open-lightbox,
.preset-hero__open-lightbox:focus-visible {
    opacity: 1;
}

.preset-hero__open-lightbox:hover {
    background: rgb(0 0 0 / 0.65);
}

/* Path 2 estimate — floating pin when in-flow card leaves the viewport.
   Discreet bottom bar: ~12–16px + safe-area. Online DB chip is corner-only. */
.path2-estimate-pin {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: 0;
    transform: translateY(112%);
    transition:
        opacity 280ms ease,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.path2-estimate-pin--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.path2-estimate-pin__inner {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--primary) / 0.15);
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 28px hsl(var(--primary) / 0.14),
        0 2px 8px rgb(0 0 0 / 0.06);
    padding: 0.75rem 1rem;
    text-align: center;
}

.path2-estimate-pin__tier {
    margin: 0 0 0.2rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: hsl(var(--primary) / 0.7);
}

.path2-estimate-pin__price {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.15;
    color: hsl(var(--primary));
}

@media (min-width: 640px) {
    .path2-estimate-pin__inner {
        padding: 0.875rem 1.25rem;
    }

    .path2-estimate-pin__price {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .path2-estimate-pin {
        transition: opacity 150ms ease;
        transform: none;
    }

    .path2-estimate-pin--visible {
        transform: none;
    }
}
