@font-face {
  font-family: "Lexend";
  src: url("/assets/lexend-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

/* ==========================================================================
   Drive Auto Body — Online Estimate
   Structure and flow mirror the Auto Body Shop Booster estimate app:
   50px grey title bar, outlined fields with notched labels, vehicle tiles,
   tap-a-panel damage map, one job per screen, fixed Back / Next bar.
   Branding is Drive's.
   ========================================================================== */

:root {
  --ink: #1b1917;
  --ink-2: #4a4643;
  --muted: #7c766f;
  --faint: #a8a19a;
  --line: #ece6de;
  --line-2: #d9d1c6;
  --shell: #edE8e0;
  --chrome: #17150f;
  --field: #f6f3ee;
  --paper: #ffffff;
  --orange: #ff6b00;
  --orange-deep: #b34a00;
  --orange-wash: #fff3e8;
  --danger: #b42318;
  --ok: #0f7a4a;
  --r-1: 12px;
  --r-2: 16px;
  --r-3: 24px;
  --pill: 999px;
  --lift: 0 1px 2px rgba(41, 30, 18, .05);
  --lift-2: 0 2px 4px rgba(41, 30, 18, .04), 0 18px 40px -18px rgba(41, 30, 18, .22);
  --appbar-h: 58px;
  --ease: cubic-bezier(.32, .72, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(128px + env(safe-area-inset-bottom));
}

img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--orange-deep); }

:where(button, a, input, select, textarea):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.noscript-help {
  background: var(--orange-wash);
  border-bottom: 1px solid var(--orange);
  padding: 14px 18px;
  text-align: center;
  font-size: 14px;
}

/* ------------------------------------------------------------ app bar */

.appbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  height: var(--appbar-h);
  background: var(--chrome);
  border-bottom: 0;
}

.appbar__title {
  margin: 0;
  grid-column: 2;
  text-align: center;
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  padding: 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appbar__back { grid-column: 1; }
.appbar__call { grid-column: 3; }

.appbar__brand {
  grid-column: 2;
  display: grid;
  place-items: center;
  min-width: 0;
}
.appbar__brand img {
  height: 24px;
  width: auto;
}

.appbar__back,
.appbar__call {
  appearance: none;
  border: 0;
  background: none;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: opacity .14s ease;
}
.appbar__back:hover, .appbar__call:hover { opacity: .6; }
.appbar__call { color: var(--orange); }
.appbar__back svg { width: 23px; height: 23px; }
.appbar__call svg { width: 20px; height: 20px; }
.appbar__back[hidden] { display: grid !important; visibility: hidden; }

.appbar__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
}
.appbar__progress {
  background: rgba(255, 255, 255, .13);
}
.appbar__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width .42s var(--ease);
}

/* ---------------------------------------------------------- screens */

.app { min-height: calc(100dvh - var(--appbar-h)); background: var(--shell); }

.screen { max-width: 540px; margin: 0 auto; }
.screen[hidden] { display: none !important; }

.screen:not([hidden]) { animation: screenIn .26s var(--ease) both; }
@keyframes screenIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.pad,
.screen--gate,
.screen--start,
.screen--thanks {
  background: var(--paper);
  border-radius: var(--r-3);
  box-shadow: 0 1px 2px rgba(41, 30, 18, .05), 0 22px 48px -22px rgba(41, 30, 18, .28);
  margin: 14px 12px 0;
  padding: 28px 22px 32px;
}
.pad--tight { padding: 26px 14px 22px; }

/* screen heading — replaces the grey uppercase bar */
.shead { margin: 0 0 26px; }
.shead .shead__step {
  margin: 0 0 10px;
  font-family: "Lexend", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.shead .shead__step:empty { display: none; }
.shead h2 {
  font-family: "Lexend", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.14;
  margin: 0 0 7px;
  color: var(--ink);
}
.shead p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--muted); }

.screen__h1 {
  font-family: "Lexend", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 10px;
}

.screen__lead {
  margin: 0 auto 22px;
  max-width: 40ch;
  text-align: center;
  color: var(--ink-2);
  font-size: 15px;
}

.screen__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

.brand {
  width: 190px;
  height: auto;
  margin: 26px auto 18px;
}

/* ---------------------------------------------------------- fields */

.ofield {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  min-width: 0;
}

.ofield__label {
  order: -1;
  margin: 0 0 7px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-2);
  white-space: normal;
}
.ofield__label i {
  font-style: normal;
  font-weight: 500;
  color: var(--faint);
}

.ofield input,
.ofield select,
.ofield textarea {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1.5px solid transparent;
  border-radius: var(--r-1);
  background: var(--field);
  color: var(--ink);
  font-size: 16px; /* no iOS zoom */
  transition: background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.ofield textarea {
  height: auto;
  padding: 14px 15px;
  resize: vertical;
  min-height: 124px;
  line-height: 1.55;
}

.ofield input:hover,
.ofield select:hover,
.ofield textarea:hover { background: #f1ece5; }

.ofield input:focus,
.ofield select:focus,
.ofield textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .13);
}

.ofield select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c766f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
}

.ofield__prefix {
  position: absolute;
  left: 15px;
  bottom: 0;
  height: 54px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}
.ofield__prefix ~ input { padding-left: 42px; }

.ofield.is-bad input,
.ofield.is-bad select {
  border-color: var(--danger);
  background: #fdf3f2;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .1);
}

.vrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.ofield--year { max-width: 132px; }
.ofield--zip { max-width: 140px; }

/* ------------------------------------------------- vehicle tiles */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.tile {
  appearance: none;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-2);
  background: var(--paper);
  padding: 17px 4px 13px;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 7px;
  transition: border-color .13s ease, background .13s ease, color .13s ease;
}
.tile svg { width: 100%; max-width: 56px; height: auto; fill: var(--ink); transition: fill .13s ease; }
.tile span {
  font-family: "Lexend", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}
.tile:hover { border-color: var(--ink-2); }
.tile.is-on {
  border-color: var(--chrome);
  background: var(--chrome);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(23, 21, 15, .6);
}
.tile.is-on svg { fill: var(--orange); }
.tile.is-on svg { fill: var(--orange); }

/* -------------------------------------------------- photo screens */

.stepline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}
.stepline span {
  font-family: "Lexend", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stepline b { font-size: 13.5px; font-weight: 650; color: var(--ink); text-align: right; }

.example {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-2);
  overflow: hidden;
  background: #221f1c;
  margin-bottom: 18px;
}
.example__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .18s ease;
}
.example__img.is-on { opacity: 1; }
.example__tag {
  position: absolute;
  left: 10px; top: 10px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: var(--r-1);
  background: rgba(20, 20, 20, .82);
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.example__frame {
  position: absolute;
  inset: 12% 6%;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 2px;
  box-shadow: 0 0 0 2000px rgba(16, 20, 26, .42);
  transition: inset .3s cubic-bezier(.4, 0, .2, 1);
}
.example__frame::before,
.example__frame::after {
  content: "";
  position: absolute;
  width: 15px; height: 15px;
  border: 3px solid var(--orange);
}
.example__frame::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.example__frame::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
.example--close .example__frame { inset: 24% 26%; }
.example[data-region="wide"]  .example__frame { inset: 12% 6% 14% 6%; }
.example[data-region="close"] .example__frame { inset: 4% 2% 13% 5%; }
.example[data-region="angle"] .example__frame { inset: 5% 2% 18% 2%; }

.vinshot {
  aspect-ratio: 4 / 3;
  margin: 0 0 20px;
  border-radius: var(--r-2);
  overflow: hidden;
  background: #eaeaee;
}
.vinshot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.finder__note {
  margin: 14px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

.orline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 14px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.orline::before,
.orline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.photo-h {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}
.photo-p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; }

.photo-err:not(:empty) {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--r-1);
  background: #fdf0ee;
  border: 1px solid rgba(192, 57, 43, .3);
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}

.finder {
  margin-top: 6px;
  padding: 18px 18px 16px;
  border-radius: var(--r-2);
  background: var(--field);
}
.finder__title {
  margin: 0 0 12px;
  font-family: "Lexend", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.finder__list {
  counter-reset: spot;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.finder__list li {
  counter-increment: spot;
  position: relative;
  padding-left: 34px;
}
.finder__list li::before {
  content: counter(spot);
  position: absolute;
  left: 0; top: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--chrome);
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.finder__list b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.finder__list span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

#c-vin {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* capture tile + thumbnails */

.capture {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 24px 16px;
  border: 1.5px dashed var(--line);
  border-radius: var(--r-2);
  background: #fcfcfd;
  cursor: pointer;
  transition: border-color .13s ease, background .13s ease;
}
.capture:hover { border-color: var(--orange); background: var(--orange-wash); }
.capture input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.capture__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px rgba(255, 107, 0, .12);
}
.capture__icon svg { width: 25px; height: 25px; }
.capture strong {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 650;
}
.capture small { font-size: 12.5px; color: var(--muted); }

.shot {
  position: relative;
  border-radius: var(--r-2);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f5f7;
}
.shot img { width: 100%; height: 172px; object-fit: cover; }
.shot__doc {
  display: grid;
  place-items: center;
  height: 172px;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  color: var(--ink-2);
  gap: 6px;
}
.shot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 12.5px;
}
.shot__ok { display: inline-flex; align-items: center; gap: 6px; color: #1d8a4e; font-weight: 650; }
.shot__ok svg { width: 15px; height: 15px; }
.shot__bar button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------- buttons */

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 16px 26px;
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .13s ease, border-color .13s ease, color .13s ease;
}
.btn--block { display: flex; width: 100%; }
.btn--xl { padding: 19px 26px; font-size: 16.5px; box-shadow: 0 1px 2px rgba(41,30,18,.1), 0 12px 26px -10px rgba(255,107,0,.55); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-deep); }
.btn--primary:disabled { background: #cfd3d8; color: #8b9199; cursor: not-allowed; }
.btn--ghost { background: var(--paper); border-color: var(--line); color: var(--ink); margin-top: 10px; }
.btn--ghost:hover { border-color: var(--ink); }

.linkbtn {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: var(--orange-deep);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------ bottom nav bar */

.navbar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 40;
  max-width: 516px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px 9px 8px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: var(--lift-2);
}
.navbar[hidden] { display: none !important; }

.navbar__back {
  appearance: none;
  border: 0;
  background: none;
  padding: 12px 18px;
  border-radius: var(--pill);
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color .14s ease, background .14s ease;
}
.navbar__back:hover:not(:disabled) { color: var(--ink); background: var(--shell); }
.navbar__back:disabled { color: #cdc6bd; cursor: default; }

.navbar__next {
  appearance: none;
  border: 0;
  border-radius: var(--pill);
  padding: 14px 32px;
  min-width: 150px;
  background: var(--orange);
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(41, 30, 18, .1), 0 8px 18px -8px rgba(255, 107, 0, .6);
  transition: background .14s ease, transform .08s ease, box-shadow .14s ease;
}
.navbar__next:hover:not(:disabled) { background: var(--orange-deep); }
.navbar__next:active:not(:disabled) { transform: translateY(1px); }
.navbar__next:disabled {
  background: #e9e3db;
  color: var(--faint);
  cursor: not-allowed;
  box-shadow: none;
}

/* ----------------------------------------------- gate / handoff */



.qr {
  width: 184px; height: 184px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 12px;
  background: var(--paper);
  box-shadow: var(--lift);
}
.qr__url {
  margin: 0 0 20px;
  text-align: center;
  font-size: 12px;
  color: var(--faint);
  letter-spacing: .01em;
  word-break: break-all;
}
.qr svg, .qr canvas, .qr img { width: 100%; height: 100%; }

.handoff {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 18px;
  margin-bottom: 18px;
  background: #fdfbf8;
}
.handoff__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.handoff__tab {
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  padding: 9px 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: -1px;
}
.handoff__tab svg { width: 17px; height: 17px; }
.handoff__tab.is-active { color: var(--orange-deep); border-bottom-color: var(--orange); }

.handoff__status:not(:empty) {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #1d8a4e;
}
.handoff__status.is-bad { color: var(--danger); }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  cursor: pointer;
}
.consent input {
  width: 17px; height: 17px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.consent span { font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.consent a { color: var(--ink-2); text-decoration: underline; }

.gate__skip { text-align: center; font-size: 13.5px; color: var(--ink-2); margin: 0 0 24px; }

.scope {
  margin: 18px 0 0;
  padding-left: 11px;
  border-left: 2px solid var(--orange);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* --------------------------------------------------- thank you */

.tick {
  width: 66px; height: 66px;
  margin: 40px auto 20px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
}
.tick svg { width: 32px; height: 32px; }

.ref {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: #f4f5f7;
  margin: 0 auto 24px;
}
.ref span { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.ref strong { font-family: "Lexend", sans-serif; font-size: 14px; }

/* ------------------------------------------------- sending veil */

.sending {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .93);
  display: grid;
  place-items: center;
  padding: 24px;
}
.sending[hidden] { display: none !important; }
.sending__box { display: grid; justify-items: center; gap: 16px; text-align: center; }
.sending__box p { margin: 0; display: grid; gap: 5px; }
.sending__box strong { font-family: "Lexend", sans-serif; font-size: 16px; }
.sending__box span { font-size: 13px; color: var(--muted); }

.spinner {
  width: 40px; height: 40px;
  border: 3px solid #e4e6ea;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------- wider screens */

@media (min-width: 560px) {
  .screen { max-width: 540px; }
  .pad,
  .screen--gate,
  .screen--start,
  .screen--thanks { margin: 22px auto 0; padding: 34px 30px 36px; }
  .example { aspect-ratio: 16 / 10; }
  .navbar { left: 0; right: 0; }
}

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