:root {
    color-scheme: dark;
    --bg: #0b0b0c;
    --surface: #141416;
    --surface-2: #1b1b1e;
    --text: #f7f7f5;
    --muted: #a8a8a3;
    --line: #2b2b2f;
    --accent: #ff6b57;
    --accent-dark: #16100f;
    --positive: #64d69a;
    --warning: #f0c66c;
    --danger: #ff8173;
    --content: 1180px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

button,
input {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--text);
    color: var(--bg);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 10px max(18px, calc((100vw - var(--content)) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 12, 0.94);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.brand-word {
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
}

.brand-product {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-button,
.back-button,
.copy-button,
.close-button {
    min-height: 44px;
    padding: 8px 4px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-weight: 750;
}

.text-button:hover,
.back-button:hover,
.copy-button:hover {
    color: var(--accent);
}

.hero {
    position: relative;
    display: flex;
    min-height: clamp(500px, 77svh, 720px);
    align-items: flex-end;
    isolation: isolate;
    background-image: url("../images/demo-cooking.webp");
    background-position: 60% 42%;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 7, 8, 0.97) 0%, rgba(7, 7, 8, 0.78) 45%, rgba(7, 7, 8, 0.16) 100%);
}

.hero-content {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 72px 24px 64px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
    letter-spacing: 0;
    line-height: 1.12;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(38px, 5rem, 70px);
    font-weight: 900;
}

h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 2.2rem, 40px);
    font-weight: 860;
}

h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 830;
}

h4 {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 28px;
    color: #ddddda;
    font-size: 18px;
}

.hero-actions,
.ready-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.button-primary {
    background: var(--accent);
    color: #100908;
}

.button-primary:hover:not(:disabled) {
    background: #ff806e;
}

.button-secondary {
    border-color: #505056;
    background: rgba(18, 18, 20, 0.75);
    color: var(--text);
}

.button-secondary:hover:not(:disabled) {
    border-color: #77777d;
    background: #202023;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: #d7d7d3;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.trust-list li::before {
    margin-right: 8px;
    color: var(--positive);
    content: "✓";
}

.selection-section,
.workspace,
.results,
.how-band {
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto;
    padding: 76px 0;
}

.section-heading,
.workspace-heading,
.result-toolbar,
.video-meta,
.dialog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading > p {
    max-width: 470px;
    margin-bottom: 8px;
    color: var(--muted);
}

.section-heading.compact {
    align-items: center;
}

.section-heading.compact h3 {
    margin: 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.demo-card {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.demo-card::after {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.demo-card:hover::after,
.demo-card:focus-visible::after {
    border-color: var(--accent);
}

.demo-card img {
    width: 100%;
    height: 286px;
    object-fit: cover;
}

.demo-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 16px;
}

.demo-card h3 {
    margin: 0;
    font-size: 17px;
}

.demo-card p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.duration-badge {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.demo-skeleton {
    min-height: 370px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #18181a;
    animation: skeleton-pulse 1.4s ease-in-out infinite alternate;
}

.upload-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 40px 0 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.upload-divider::before,
.upload-divider::after {
    height: 1px;
    flex: 1;
    background: var(--line);
    content: "";
}

.upload-zone {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    min-height: 126px;
    align-items: center;
    padding: 24px;
    border: 1px dashed #55555b;
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging {
    border-color: var(--accent);
    background: #1a1717;
}

.upload-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #120909;
    font-size: 28px;
    font-weight: 600;
}

.upload-zone h3,
.upload-zone p {
    margin: 0;
}

.upload-zone p {
    color: var(--muted);
}

.upload-limits {
    margin-top: 4px !important;
    font-size: 12px;
}

.inline-error {
    min-height: 24px;
    margin: 10px 0 0;
    color: var(--danger);
    font-weight: 700;
}

.workspace,
.results {
    border-top: 1px solid var(--line);
}

.workspace-heading,
.result-toolbar {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 28px;
}

.workspace-heading h2,
.result-toolbar h2 {
    margin: 0;
}

.back-button {
    margin-right: 8px;
}

.workspace-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
    gap: 40px;
    align-items: start;
}

.preview-column {
    max-width: 470px;
}

.video-shell {
    overflow: hidden;
    width: min(100%, 390px);
    aspect-ratio: 9 / 16;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #000;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-meta {
    width: min(100%, 390px);
    margin-top: 12px;
    align-items: center;
}

.video-meta strong,
.video-meta span {
    display: block;
}

.video-meta span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.analysis-controls {
    display: grid;
    gap: 24px;
    padding-top: 18px;
}

.control-label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.goal-control {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.goal-control label {
    position: relative;
}

.goal-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.goal-control span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    cursor: pointer;
    font-size: 13px;
    font-weight: 750;
}

.goal-control input:checked + span {
    border-color: var(--accent);
    background: var(--accent-dark);
    color: #ff9b8d;
}

.goal-control input:focus-visible + span {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.privacy-note {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.privacy-note strong,
.privacy-note span {
    display: block;
}

.privacy-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.analyze-button {
    width: 100%;
    min-height: 56px;
}

.progress-panel {
    margin-top: 36px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.progress-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-head h3 {
    margin: 0;
}

.activity-indicator {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 3px solid #38383d;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 900ms linear infinite;
}

.stage-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    color: #69696f;
    font-size: 12px;
    font-weight: 750;
    list-style: none;
}

.stage-list li {
    min-height: 52px;
    padding-top: 10px;
    border-top: 2px solid #343438;
}

.stage-list li.is-active {
    border-color: var(--accent);
    color: var(--text);
}

.stage-list li.is-complete {
    border-color: var(--positive);
    color: var(--muted);
}

.result-toolbar {
    justify-content: space-between;
}

.score-section {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 30px 0 36px;
    border-bottom: 1px solid var(--line);
}

.score-value {
    min-width: 112px;
    color: var(--accent);
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
}

.score-label {
    display: block;
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 850;
}

.score-section p {
    max-width: 670px;
    margin: 0;
    color: #d6d6d2;
    font-size: 17px;
}

.result-section {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 0;
}

.intelligence-grid div {
    min-width: 0;
    padding: 14px;
    border-left: 2px solid var(--accent);
    background: var(--surface);
}

.intelligence-grid dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.intelligence-grid dd {
    overflow-wrap: anywhere;
    margin: 5px 0 0;
    color: var(--text);
    font-weight: 750;
}

.result-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
    border-bottom: 1px solid var(--line);
}

.result-split .result-section {
    border: 0;
}

.strength-list,
.improvement-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.strength-list li,
.improvement-list li {
    position: relative;
    min-height: 46px;
    padding: 12px 12px 12px 42px;
    border-radius: 6px;
    background: var(--surface);
}

.strength-list li::before {
    position: absolute;
    top: 12px;
    left: 14px;
    color: var(--positive);
    content: "✓";
    font-weight: 900;
}

.improvement-list {
    counter-reset: improvements;
}

.improvement-list li {
    counter-increment: improvements;
}

.improvement-list li::before {
    position: absolute;
    top: 11px;
    left: 13px;
    color: var(--accent);
    content: counter(improvements);
    font-weight: 900;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.option-block {
    position: relative;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.option-block.wide {
    grid-column: 1 / -1;
}

.option-block p {
    margin: 0;
    padding-right: 54px;
    overflow-wrap: anywhere;
}

.copy-button {
    position: absolute;
    top: 8px;
    right: 12px;
    color: var(--accent);
    font-size: 12px;
}

.caption-item {
    position: relative;
    min-height: 52px;
    padding: 12px 58px 12px 0;
    border-top: 1px solid var(--line);
}

.caption-item:first-child {
    border-top: 0;
}

.caption-item p {
    margin: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 9px;
    border: 1px solid #4b3734;
    border-radius: 6px;
    background: var(--accent-dark);
    color: #ff9e91;
    font-size: 13px;
    font-weight: 750;
}

.signal-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.signal {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
}

.signal-name,
.signal-level {
    display: block;
}

.signal-name {
    min-height: 40px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.signal-level {
    margin-top: 8px;
    color: var(--text);
    font-size: 15px;
    font-weight: 850;
    text-transform: capitalize;
}

.signal-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 10px;
}

.signal-bar i {
    height: 3px;
    background: #343438;
}

.signal[data-level="low"] .signal-bar i:nth-child(-n+1),
.signal[data-level="medium"] .signal-bar i:nth-child(-n+2),
.signal[data-level="high"] .signal-bar i:nth-child(-n+3),
.signal[data-level="excellent"] .signal-bar i:nth-child(-n+4) {
    background: var(--accent);
}

.result-disclaimer {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.ready-section {
    padding: 48px;
    border: 1px solid #443431;
    border-radius: var(--radius);
    background: #181313;
}

.ready-section h3 {
    margin-bottom: 8px;
    font-size: 28px;
}

.ready-section > p:not(.eyebrow) {
    max-width: 590px;
    color: #d5d5d1;
}

.ready-actions {
    margin-top: 22px;
}

.how-band {
    border-top: 1px solid var(--line);
}

.how-band > ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.how-band li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d8d8d4;
    font-weight: 720;
}

.how-band li span,
.how-dialog li span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #130a09;
    font-weight: 900;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px max(20px, calc((100vw - var(--content)) / 2));
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.how-dialog {
    width: min(calc(100% - 32px), 560px);
    padding: 26px;
    border: 1px solid #444448;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
}

.how-dialog::backdrop {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.how-dialog .dialog-head {
    align-items: flex-start;
}

.how-dialog h2 {
    margin: 0;
    font-size: 26px;
}

.close-button {
    width: 44px;
    padding: 0;
    font-size: 28px;
    line-height: 1;
}

.how-dialog ol {
    display: grid;
    gap: 18px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.how-dialog li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.how-dialog > .button {
    width: 100%;
}

.toast {
    position: fixed;
    z-index: 300;
    right: 18px;
    bottom: 18px;
    max-width: min(360px, calc(100% - 36px));
    padding: 12px 16px;
    border: 1px solid #4c4c50;
    border-radius: 6px;
    background: #222225;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
    color: var(--text);
    font-size: 13px;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

noscript {
    display: block;
    padding: 16px;
    background: #321b18;
    color: #fff;
    text-align: center;
}

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

@keyframes skeleton-pulse {
    from { background-color: #151517; }
    to { background-color: #202023; }
}

@media (max-width: 980px) {
    .demo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-card:last-child {
        grid-column: 1 / -1;
    }

    .workspace-grid {
        grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
        gap: 28px;
    }

    .signal-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: clamp(470px, 76svh, 620px);
        background-position: 68% center;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.76) 58%, rgba(7, 7, 8, 0.28) 100%);
    }

    .hero-content {
        padding: 80px 20px 42px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .section-heading,
    .result-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .demo-grid,
    .workspace-grid,
    .result-split,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .demo-card:last-child,
    .option-block.wide {
        grid-column: auto;
    }

    .demo-card {
        display: grid;
        min-height: 190px;
        grid-template-columns: 42% 58%;
    }

    .demo-card img {
        height: 100%;
        min-height: 190px;
    }

    .demo-card-body {
        align-content: center;
    }

    .demo-skeleton {
        min-height: 190px;
    }

    .upload-zone {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .upload-zone > .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .preview-column,
    .video-shell,
    .video-meta {
        max-width: 100%;
        width: 100%;
    }

    .video-shell {
        max-height: 68svh;
        aspect-ratio: 16 / 10;
    }

    .stage-list {
        grid-template-columns: 1fr;
    }

    .stage-list li {
        min-height: 34px;
        padding: 6px 0 6px 14px;
        border-top: 0;
        border-left: 2px solid #343438;
    }

    .score-section {
        align-items: start;
    }

    .score-value {
        min-width: 84px;
        font-size: 60px;
    }

    .intelligence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-split {
        gap: 0;
    }

    .result-split .result-section + .result-section {
        border-top: 1px solid var(--line);
    }

    .signal-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ready-section {
        padding: 28px 22px;
    }

    .how-band > ol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .site-header {
        min-height: 62px;
        padding-inline: 14px;
    }

    .brand {
        gap: 7px;
    }

    .brand-word {
        font-size: 17px;
    }

    .brand-product {
        max-width: 112px;
        font-size: 10px;
    }

    .site-header .text-button {
        font-size: 12px;
    }

    h1 {
        font-size: 37px;
    }

    .hero-actions,
    .ready-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .ready-actions .button {
        width: 100%;
    }

    .trust-list {
        display: grid;
        gap: 7px;
    }

    .selection-section,
    .workspace,
    .results,
    .how-band {
        width: min(calc(100% - 28px), var(--content));
        padding: 56px 0;
    }

    .demo-card {
        min-height: 170px;
        grid-template-columns: 40% 60%;
    }

    .demo-card img {
        min-height: 170px;
    }

    .demo-card-body {
        padding: 13px;
    }

    .upload-zone {
        padding: 18px;
    }

    .upload-mark {
        width: 42px;
        height: 42px;
    }

    .workspace-heading {
        gap: 12px;
    }

    .goal-control span {
        min-height: 44px;
    }

    .progress-panel {
        padding: 20px;
    }

    .score-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .score-value {
        min-width: 0;
    }

    .intelligence-grid,
    .signal-list {
        grid-template-columns: 1fr;
    }

    .signal-name {
        min-height: 0;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        padding-inline: 16px;
    }
}

@media (max-width: 340px) {
    .brand-product {
        display: none;
    }

    h1 {
        font-size: 34px;
    }

    .demo-card {
        display: block;
    }

    .demo-card img {
        width: 100%;
        height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.startup-failure {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
    padding: 32px 20px;
    text-align: center;
}

.startup-failure > div {
    max-width: 560px;
}

.startup-failure h1 {
    margin: 12px 0;
}

.startup-failure p:not(.eyebrow) {
    color: var(--text-muted);
    margin: 0 auto 24px;
}
