:root {
  color-scheme: light;
  --forest-950: #0d291d;
  --forest-900: #123524;
  --forest-800: #174832;
  --forest-700: #1d5b3e;
  --forest-600: #287451;
  --leaf-500: #4f9568;
  --leaf-300: #9cc9a9;
  --sage-100: #e5eee6;
  --sage-50: #f2f6f1;
  --sand-100: #f1ede3;
  --paper: #fbfcf8;
  --white: #ffffff;
  --ink: #14261c;
  --muted: #69766e;
  --line: #d9e1d9;
  --danger: #a53b36;
  --warning: #9b661d;
  --shadow: 0 24px 65px rgba(18, 53, 36, .09);
  --shadow-soft: 0 10px 34px rgba(18, 53, 36, .065);
  font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--sage-50);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(156, 201, 169, .24), transparent 30rem),
    linear-gradient(180deg, #f7f9f5 0%, #eff4ee 100%);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(40, 116, 81, .23);
  outline-offset: 3px;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  letter-spacing: -.035em;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.ambient-one {
  width: 32rem;
  height: 32rem;
  top: -20rem;
  left: 20%;
  border: 1px solid rgba(40, 116, 81, .12);
}

.ambient-two {
  width: 23rem;
  height: 23rem;
  right: -15rem;
  top: 45%;
  background: rgba(156, 201, 169, .12);
}

.loading-view {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 24px;
}

.loading-line {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.loading-line::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--forest-700);
  animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
  from { transform: translateX(-100%); }
  to { transform: translateX(200%); }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
}

.brand-symbol {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.brand-lockup-light {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 7px;
  color: var(--forest-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c8ddca;
}

.muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.login-view {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(390px, 1fr);
  background: var(--paper);
}

.login-story {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 70px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950) url("/assets/login-rhino-no-text.png") right center / cover no-repeat;
  position: relative;
}

.login-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 31, 21, .74) 0%, rgba(8, 31, 21, .3) 42%, rgba(8, 31, 21, .04) 72%),
    linear-gradient(180deg, rgba(8, 31, 21, .12) 45%, rgba(8, 31, 21, .8) 100%);
  pointer-events: none;
}

.login-story > * {
  position: relative;
  z-index: 1;
}

.story-copy {
  width: min(540px, 100%);
}

.story-copy h1 {
  max-width: 7ch;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .98;
  text-shadow: 0 8px 32px rgba(5, 23, 15, .32);
}

.story-copy > p:last-child {
  max-width: 38ch;
  color: #c9d8cd;
  font-size: 16px;
  line-height: 1.7;
}

.story-foot {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #afc5b5;
  font-size: 12px;
  letter-spacing: .035em;
}

.signal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #72b886;
  box-shadow: 0 0 0 5px rgba(114, 184, 134, .11);
}

.login-panel {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 64px);
  background:
    radial-gradient(circle at 70% 18%, rgba(156, 201, 169, .2), transparent 18rem),
    linear-gradient(180deg, #f8faf6 0%, #eef3ed 100%);
}

.login-card {
  width: min(430px, 100%);
  display: grid;
  gap: 23px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(217, 225, 217, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.login-card h2 {
  margin-bottom: 7px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.form-stack {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: #425248;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
}

input,
textarea {
  width: 100%;
  min-height: 47px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  transition: border-color .16s ease, box-shadow .16s ease;
}

textarea {
  min-height: 94px;
  resize: vertical;
  line-height: 1.5;
}

input:hover,
textarea:hover {
  border-color: #b8c7b9;
}

input:focus,
textarea:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(40, 116, 81, .09);
  outline: 0;
}

.primary-button,
.secondary-button,
.quiet-button,
.text-button {
  border: 0;
}

.primary-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 9px;
  padding: 0 17px;
  color: var(--white);
  background: var(--forest-700);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 9px 24px rgba(23, 72, 50, .19);
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.primary-button:hover:not(:disabled) {
  background: var(--forest-800);
  box-shadow: 0 12px 28px rgba(23, 72, 50, .25);
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: .5;
  box-shadow: none;
}

.secondary-button {
  min-height: 38px;
  border: 1px solid #bfd0c1;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--forest-700);
  background: #f7faf6;
  font-size: 12px;
  font-weight: 750;
}

.secondary-button:hover {
  border-color: var(--forest-600);
  background: var(--sage-100);
}

.quiet-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: #425248;
  background: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
}

.quiet-button:hover {
  color: var(--forest-700);
  border-color: #b5c9b9;
  background: var(--white);
}

.text-button {
  width: fit-content;
  min-height: 28px;
  padding: 0;
  color: var(--forest-600);
  background: transparent;
  font-size: 12px;
  font-weight: 750;
}

.text-button:hover {
  color: var(--forest-900);
  text-decoration: underline;
}

.security-note {
  color: #809086;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.form-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.5;
}

.auth-setup {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid #cadacb;
  border-radius: 11px;
  padding: 12px;
  background: #f3f8f2;
}

.auth-setup img {
  width: 124px;
  height: 124px;
  border-radius: 7px;
}

.auth-setup strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.secret-code {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: var(--forest-900);
  font-size: 11px;
}

.topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(217, 225, 217, .85);
  background: rgba(248, 250, 246, .9);
  backdrop-filter: blur(15px);
}

.product-name {
  margin-left: 10px;
  padding-left: 18px;
  border-left: 1px solid #cbd6cc;
  color: #647268;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .015em;
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.storage-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #cfe0d1;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--forest-700);
  background: #eef6ee;
  font-size: 11px;
  font-weight: 750;
}

.storage-badge.offline {
  color: var(--warning);
  border-color: #eadabe;
  background: #fbf4e9;
}

.storage-badge.offline .signal-dot {
  background: #d09a42;
  box-shadow: 0 0 0 5px rgba(208, 154, 66, .11);
}

.storage-badge.checking {
  color: var(--muted);
  background: var(--white);
}

.username-label {
  margin-left: 3px;
  color: var(--muted);
  font-size: 12px;
}

.dashboard-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1.3fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.hero h1 {
  margin-bottom: 15px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.hero > div:first-child > p:last-child {
  max-width: 54ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.protection-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 21px;
}

.protection-strip > div {
  display: flex;
  gap: 11px;
  padding-right: 19px;
}

.protection-strip > div + div {
  border-left: 1px solid var(--line);
  padding-left: 19px;
}

.protection-icon {
  color: var(--leaf-500);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.protection-strip strong,
.protection-strip span span {
  display: block;
}

.protection-strip strong {
  margin-bottom: 4px;
  color: #304339;
  font-size: 11px;
}

.protection-strip span span {
  color: #77837b;
  font-size: 10px;
  line-height: 1.5;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(290px, .75fr);
  gap: 20px;
  align-items: start;
}

.upload-card,
.archive-card {
  border: 1px solid rgba(211, 222, 212, .95);
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.upload-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.archive-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 25px;
  padding: 27px;
}

.card-heading,
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.card-heading h2,
.section-heading h2 {
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.count-badge {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  background: var(--sage-50);
  font-size: 10px;
  font-weight: 700;
}

.dropzone {
  min-height: 212px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  border: 1.5px dashed #aac2ad;
  border-radius: 12px;
  padding: 25px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(156, 201, 169, .17), transparent 12rem),
    #f7faf6;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.dropzone:hover,
.dropzone.dragging {
  border-color: var(--forest-600);
  background: #f0f7f0;
  transform: translateY(-1px);
}

.upload-glyph {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-700);
  font-size: 21px;
  box-shadow: 0 9px 21px rgba(23, 72, 50, .18);
}

.dropzone strong,
.dropzone small {
  display: block;
}

.dropzone strong {
  font-size: 14px;
}

.dropzone small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.file-hint {
  color: #829087;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .11em;
}

.selected-files {
  display: grid;
  gap: 7px;
}

.selected-file {
  min-height: 54px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px 9px;
  background: #fcfdfa;
}

.file-kind {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--forest-700);
  background: var(--sage-100);
  font-size: 9px;
  font-weight: 850;
}

.selected-file strong,
.selected-file span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file strong {
  font-size: 11px;
}

.selected-file span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.remove-file {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 18px;
}

.remove-file:hover {
  color: var(--danger);
  background: #f7eded;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.optional {
  color: #93a098;
  font-weight: 500;
}

.location-block {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  background: var(--sage-50);
}

.location-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.location-pin {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 8px solid var(--sage-100);
  border-radius: 50% 50% 50% 0;
  background: var(--forest-600);
  transform: rotate(-45deg);
}

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

.location-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.location-copy p {
  color: var(--muted);
  font-size: 10px;
}

.upload-submit {
  width: 100%;
}

.upload-progress {
  display: grid;
  gap: 8px;
}

.progress-copy,
.buffer-meter > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
}

.progress-copy strong {
  color: var(--forest-800);
}

.progress-track,
.buffer-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage-100);
}

.progress-track span,
.buffer-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--forest-600);
  transition: width .2s ease;
}

.archive-metrics {
  display: grid;
  gap: 14px;
}

.metric-large {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.metric-large strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -.04em;
}

.metric-large span,
.metric-row {
  color: var(--muted);
  font-size: 11px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.metric-row strong {
  color: var(--ink);
}

.privacy-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 1px solid #c9dacb;
  border-radius: 10px;
  padding: 14px;
  background: #f2f7f1;
}

.privacy-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-700);
  font-family: Georgia, serif;
  font-size: 15px;
}

.privacy-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-800);
  font-size: 11px;
}

.privacy-card p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.buffer-meter {
  display: grid;
  gap: 8px;
}

.observations-section {
  margin-top: 62px;
}

.section-heading {
  align-items: end;
  margin-bottom: 20px;
}

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

.observation-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 7px 25px rgba(18, 53, 36, .045);
}

.media-preview {
  height: 184px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 20%, rgba(156, 201, 169, .24), transparent 12rem),
    var(--forest-950);
}

.media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview {
  display: grid;
  place-items: center;
  color: #c4d9c7;
  text-align: center;
}

.play-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border: 1px solid rgba(196, 217, 199, .46);
  border-radius: 50%;
  font-size: 14px;
}

.video-preview span:last-child {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.observation-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.observation-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.observation-top strong {
  display: block;
  max-width: 21ch;
  overflow: hidden;
  color: #263a2e;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.observation-top span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.state-pill {
  min-height: 25px;
  display: inline-flex !important;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  color: var(--forest-700) !important;
  background: var(--sage-100);
  font-size: 9px !important;
  font-weight: 800;
  white-space: nowrap;
}

.state-pill.queued,
.state-pill.retry {
  color: var(--warning) !important;
  background: #f8efdf;
}

.observation-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e8ede8;
  padding-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.observation-notes {
  display: -webkit-box;
  overflow: hidden;
  color: #5d6c63;
  font-size: 10px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed #c4d2c6;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .5);
  font-size: 13px;
}

footer {
  width: min(1280px, calc(100% - 48px));
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

footer p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

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

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .archive-card {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .archive-card .card-heading,
  .archive-card .buffer-meter {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .login-view {
    grid-template-columns: 1fr;
  }

  .login-story {
    min-height: clamp(330px, 46vh, 460px);
    padding: 28px 24px;
    background-position: right center;
  }

  .story-copy {
    width: min(390px, 82%);
    margin: 58px 0 28px;
  }

  .story-copy h1 {
    margin-bottom: 0;
    font-size: clamp(42px, 9vw, 58px);
  }

  .story-copy > p:last-child {
    display: none;
  }

  .story-foot {
    display: none;
  }

  .login-panel {
    padding: 0;
    background: var(--white);
  }

  .login-card {
    width: min(540px, 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 12px 16px;
  }

  .product-name,
  .username-label {
    display: none;
  }

  .storage-badge {
    width: 34px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
  }

  .storage-badge .signal-dot {
    margin-left: 30px;
  }

  .dashboard-shell {
    width: min(100% - 28px, 1280px);
    padding-top: 42px;
  }

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

  .protection-strip {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .protection-strip > div + div {
    border-left: 0;
    padding-left: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .location-block {
    grid-template-columns: 1fr auto;
  }

  .location-copy {
    grid-column: 1 / -1;
  }

  .archive-card {
    grid-template-columns: 1fr;
  }

  .archive-card .card-heading,
  .archive-card .buffer-meter {
    grid-column: auto;
  }

  .observations-grid {
    grid-template-columns: 1fr;
  }

  .auth-setup {
    grid-template-columns: 1fr;
  }

  footer {
    width: min(100% - 28px, 1280px);
  }
}

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