:root {
    --navy: #020617;
    --navy-soft: #0f172a;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --blue: #60a5fa;
    --blue-strong: #2563eb;
    --emerald: #10b981;
    --emerald-700: #047857;
    --emerald-200: #a7f3d0;
    --emerald-50: #ecfdf5;
    --red: #dc2626;
    --radius: 16px;
    --container: 1200px;
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    min-width: 320px;
    background: var(--slate-50);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--slate-900);
    background: var(--slate-50);
}

button,
input,
textarea {
    font: inherit;
}

button,
label[for],
input[type="checkbox"] {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.24);
    outline-offset: 3px;
}

.page-shell {
    min-height: 100vh;
}

.site-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-size: 15px;
    line-height: 20px;
}

.brand-copy small {
    color: var(--slate-500);
    font-size: 12px;
    line-height: 16px;
}

.identity-button,
.live-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--emerald-200);
    border-radius: 999px;
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.identity-button {
    gap: 9px;
    min-height: 42px;
    padding: 5px 14px 5px 6px;
    cursor: pointer;
    transition: border-color 160ms ease, transform 160ms ease;
}

.identity-button:hover {
    border-color: #6ee7b7;
    transform: translateY(-1px);
}

.identity-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--emerald);
    font-size: 10px;
    font-weight: 800;
}

.identity-copy {
    display: grid;
    min-width: 104px;
    text-align: left;
}

.identity-copy small {
    display: none;
}

.identity-copy strong {
    max-width: 180px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.identity-edit {
    color: var(--emerald-700);
    font-size: 11px;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 64px;
    min-height: 288px;
    padding: 56px max(24px, calc((100vw - var(--container)) / 2));
    color: var(--white);
    background: var(--navy);
}

.eyebrow {
    margin: 0;
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.hero .eyebrow {
    color: #93c5fd;
}

.hero h1 {
    margin: 15px 0 19px;
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
}

.hero-copy > p:last-child {
    max-width: 660px;
    margin: 0;
    color: var(--slate-300);
    font-size: 18px;
    line-height: 1.55;
}

.progress-card {
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.progress-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--slate-300);
    font-size: 14px;
}

.progress-heading strong {
    color: var(--white);
}

.progress-track {
    height: 8px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
}

.progress-track span {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--blue);
    transition: width 300ms ease;
}

.progress-card p {
    margin: 13px 0 0;
    color: var(--slate-400);
    font-size: 12px;
}

.summary-grid {
    width: min(var(--container), calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto;
    padding: 56px 0 38px;
}

.summary-card {
    display: grid;
    min-height: 132px;
    padding: 20px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(148, 163, 184, 0.18);
}

.summary-card p {
    margin: 0;
    color: var(--slate-400);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.summary-card > strong {
    align-self: end;
    margin-top: 9px;
    font-size: 30px;
    line-height: 1;
}

.summary-card > span {
    margin-top: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.summary-status > strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald-700);
    font-size: 18px;
}

.summary-status i,
.live-badge i,
.group-index i {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--emerald);
}

.workspace {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0 88px;
}

.workspace-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
}

.workspace-heading h2 {
    margin: 8px 0 5px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.workspace-heading > div > span {
    color: var(--slate-500);
    font-size: 14px;
}

.live-badge {
    flex: 0 0 auto;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
}

.composer-column {
    margin-bottom: 54px;
}

.composer-card {
    padding: 24px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(148, 163, 184, 0.18);
}

.composer-heading {
    margin-bottom: 22px;
}

.composer-heading h2,
.group-header h2 {
    margin: 7px 0 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.composer-heading h2 {
    font-size: 23px;
}

#taskForm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
}

.field {
    min-width: 0;
}

.field-label-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.field label,
.modal-card > label {
    color: var(--slate-700);
    font-size: 12px;
    font-weight: 700;
}

.field-label-row span {
    color: var(--slate-400);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.field-label-row b {
    font-weight: inherit;
}

input[type="text"],
input[type="url"],
textarea,
.modal-card input {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    color: var(--slate-900);
    background: var(--white);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input[type="text"],
input[type="url"],
.modal-card input {
    height: 46px;
    padding: 0 13px;
}

textarea {
    min-height: 96px;
    padding: 12px 13px;
    line-height: 1.5;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--slate-400);
}

input[type="text"]:focus,
input[type="url"]:focus,
textarea:focus,
.modal-card input:focus {
    outline: none;
    border-color: var(--blue-strong);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.11);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: var(--red);
}

.url-input-wrap {
    position: relative;
}

.url-input-wrap > span {
    position: absolute;
    left: 13px;
    top: 50%;
    color: var(--blue-strong);
    transform: translateY(-50%);
}

.url-input-wrap input {
    padding-left: 37px;
}

.file-drop {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px dashed var(--slate-300);
    border-radius: 10px;
    background: var(--slate-50);
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease;
}

.file-drop:hover,
.file-drop.is-dragging {
    border-color: var(--blue-strong);
    background: #eff6ff;
}

.file-drop input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.file-icon {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: var(--blue-strong);
    background: #dbeafe;
    font-size: 20px;
}

.file-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.file-copy strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-copy small {
    color: var(--slate-500);
    font-size: 11px;
}

.field-error {
    margin: 6px 2px 0;
    color: var(--red);
    font-size: 11px;
    line-height: 1.4;
}

.field-error:empty {
    display: none;
}

.form-error {
    grid-column: 1 / -1;
    margin: 0;
}

.submit-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 5px 4px 18px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

#taskForm > .submit-button {
    grid-column: 1 / -1;
    justify-self: end;
    width: 220px;
}

.submit-button:hover:not(:disabled) {
    background: var(--slate-900);
    transform: translateY(-1px);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.6;
}

.submit-arrow {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--white);
    font-size: 17px;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 5px 0;
    color: var(--slate-500);
    font-size: 11px;
}

.privacy-note span {
    color: var(--emerald);
    font-size: 8px;
}

.board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.task-group {
    min-width: 0;
}

.group-header {
    min-height: 69px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--slate-200);
}

.group-index {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--slate-400);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.group-index i {
    width: 7px;
    height: 7px;
}

.completed-group .group-index i {
    background: var(--blue);
}

.group-header h2 {
    font-size: 25px;
}

.count-badge {
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.count-badge.muted {
    border: 1px solid var(--emerald-200);
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.task-list {
    display: grid;
    gap: 14px;
}

.task-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    animation: card-in 220ms ease both;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.task-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 8px 22px rgba(148, 163, 184, 0.16);
    transform: translateY(-1px);
}

.task-card.completed {
    background: rgba(255, 255, 255, 0.72);
}

.task-topline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.status-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    margin: 0;
    border: 1.5px solid var(--slate-300);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease;
}

.status-checkbox::after {
    content: "✓";
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 150ms ease, transform 150ms ease;
}

.status-checkbox:hover {
    border-color: var(--emerald);
}

.status-checkbox:checked {
    border-color: var(--emerald);
    background: var(--emerald);
}

.status-checkbox:checked::after {
    opacity: 1;
    transform: scale(1);
}

.status-checkbox:disabled {
    cursor: wait;
    opacity: 0.55;
}

.task-title-wrap {
    min-width: 0;
    flex: 1;
}

.task-title {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.completed .task-title {
    color: var(--slate-500);
    text-decoration: line-through;
    text-decoration-color: var(--slate-300);
}

.task-description {
    margin: 13px 0 0 36px;
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.task-url {
    width: fit-content;
    max-width: calc(100% - 36px);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 13px 0 0 36px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #eff6ff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.task-url:hover {
    text-decoration: underline;
}

.task-url span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.screenshot-button {
    width: calc(100% - 36px);
    display: block;
    margin: 14px 0 0 36px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    background: var(--slate-100);
    cursor: zoom-in;
}

.screenshot-button img {
    width: 100%;
    max-height: 170px;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

.screenshot-button:hover img {
    transform: scale(1.02);
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 17px 0 0 36px;
    padding-top: 14px;
    border-top: 1px solid var(--slate-100);
}

.avatar {
    width: 29px;
    height: 29px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    color: var(--slate-700);
    background: var(--slate-100);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.meta-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.meta-copy strong,
.meta-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta-copy strong {
    color: var(--slate-700);
    font-size: 11px;
}

.meta-copy span {
    color: var(--slate-400);
    font-size: 10px;
}

.transition-note {
    margin: 11px 0 0 36px;
    padding: 8px 10px;
    border: 1px solid var(--emerald-200);
    border-radius: 9px;
    color: var(--emerald-700);
    background: var(--emerald-50);
    font-size: 10px;
    line-height: 1.45;
}

.empty-state,
.loading-card {
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
}

.empty-state {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 45px 25px;
    text-align: center;
}

.empty-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 6px;
    border-radius: 12px;
    color: var(--emerald-700);
    background: var(--emerald-50);
    font-size: 18px;
}

.empty-state strong {
    font-size: 15px;
}

.empty-state span {
    max-width: 230px;
    color: var(--slate-500);
    font-size: 11px;
    line-height: 1.5;
}

.loading-card {
    height: 160px;
    padding: 22px;
}

.loading-line {
    height: 10px;
    margin-bottom: 13px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--slate-100) 25%, var(--white) 50%, var(--slate-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.25s infinite linear;
}

.loading-line:nth-child(1) { width: 70%; }
.loading-line:nth-child(2) { width: 92%; }
.loading-line:nth-child(3) { width: 54%; }

.site-footer {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    border-top: 1px solid var(--slate-200);
    background: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-brand > b {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: var(--navy);
    font-size: 12px;
}

.footer-brand > span {
    display: grid;
}

.footer-brand strong {
    font-size: 13px;
}

.footer-brand small {
    color: var(--slate-500);
    font-size: 11px;
}

.modal {
    width: min(500px, calc(100% - 28px));
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 20px;
    color: var(--slate-900);
    background: transparent;
}

.modal::backdrop {
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(5px);
}

.modal[open] {
    animation: modal-in 180ms ease both;
}

.modal-card {
    position: relative;
    padding: clamp(28px, 5vw, 42px);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.3);
}

.modal-close,
.image-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    background: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.modal-kicker {
    color: var(--blue-strong);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.modal-card h2 {
    margin: 12px 0 10px;
    font-size: clamp(32px, 7vw, 42px);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.modal-card > p:not(.field-error) {
    margin: 0 0 25px;
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.55;
}

.modal-card > input {
    margin-top: 8px;
}

.modal-card .submit-button {
    width: 100%;
    margin-top: 18px;
}

.storage-note {
    display: block;
    margin-top: 14px;
    color: var(--slate-400);
    font-size: 10px;
    text-align: center;
}

.image-modal {
    width: min(1100px, calc(100% - 28px));
    max-height: calc(100vh - 28px);
}

.image-modal-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--navy);
    box-shadow: 0 35px 100px rgba(2, 6, 23, 0.5);
}

.image-modal-card img {
    width: 100%;
    max-height: calc(100vh - 95px);
    display: block;
    object-fit: contain;
}

.image-modal-card p {
    margin: 0;
    padding: 13px 18px;
    color: var(--slate-200);
    font-size: 11px;
}

.image-close {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 12px;
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(2, 6, 23, 0.72);
}

.toast-region {
    position: fixed;
    z-index: 20;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.toast {
    width: min(360px, calc(100vw - 44px));
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    color: var(--white);
    background: var(--navy-soft);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
    font-size: 12px;
    line-height: 1.45;
    animation: toast-in 200ms ease both;
}

.toast.error {
    background: #7f1d1d;
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(8px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .board {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .site-header,
    .hero,
    .site-footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-header {
        min-height: 78px;
    }

    .brand-copy small,
    .identity-edit {
        display: none;
    }

    .identity-copy {
        min-width: 0;
    }

    .identity-copy strong {
        max-width: 90px;
    }

    .identity-button {
        padding-right: 10px;
    }

    .hero {
        min-height: 0;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-copy > p:last-child {
        font-size: 16px;
    }

    .summary-grid,
    .workspace {
        width: calc(100% - 36px);
    }

    .summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 34px 0 25px;
    }

    .summary-card {
        min-height: 120px;
        padding: 16px;
    }

    .summary-card > strong {
        font-size: 26px;
    }

    .summary-status > strong {
        font-size: 15px;
    }

    .workspace {
        padding-top: 18px;
        padding-bottom: 64px;
    }

    .workspace-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .workspace-heading h2 {
        font-size: 27px;
    }

    .composer-card {
        padding: 19px;
    }

    #taskForm {
        grid-template-columns: 1fr;
    }

    .form-error,
    #taskForm > .submit-button {
        grid-column: auto;
    }

    #taskForm > .submit-button {
        width: 100%;
    }

    .task-card {
        padding: 18px;
    }

    .task-description,
    .task-url,
    .screenshot-button,
    .task-meta,
    .transition-note {
        margin-left: 0;
    }

    .task-url,
    .screenshot-button {
        width: 100%;
        max-width: 100%;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        padding-top: 22px;
        padding-bottom: 22px;
    }
}

@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;
    }
}
