:root {
  color-scheme: light;
  --bg: #f8faf7;
  --surface: #fffefa;
  --text: #111815;
  --muted: #5d6863;
  --subtle: rgba(17, 24, 21, 0.13);
  --border: rgba(17, 24, 21, 0.2);
  --accent: #1268b3;
  --accent-strong: #0b4d88;
  --accent-soft: #e6f1fb;
  --mood-bg: #edf6ff;
  --mood-wash: rgba(18, 104, 179, 0.08);
  --good: #178653;
  --good-soft: #e2f5e9;
  --warn: #bd7b18;
  --warn-soft: #fff1d3;
  --bad: #c53a2f;
  --bad-soft: #ffe4df;
  --shadow: 0 18px 60px rgba(17, 24, 21, 0.1);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-mood="open"] {
  --bg: #f3fbf4;
  --surface: #fffefa;
  --accent: #178653;
  --accent-strong: #0f643d;
  --accent-soft: #def3e7;
  --mood-bg: #dcf5e5;
  --mood-wash: rgba(23, 134, 83, 0.14);
}

body[data-mood="crack"] {
  --bg: #fff9eb;
  --surface: #fffefa;
  --accent: #bd7b18;
  --accent-strong: #8e590f;
  --accent-soft: #fff0cd;
  --mood-bg: #ffefc8;
  --mood-wash: rgba(189, 123, 24, 0.16);
}

body[data-mood="closed"],
body[data-mood="error"] {
  --bg: #fff5ef;
  --surface: #fffefa;
  --accent: #c53a2f;
  --accent-strong: #98261e;
  --accent-soft: #ffe1dc;
  --mood-bg: #ffdcd5;
  --mood-wash: rgba(197, 58, 47, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  transition: background 220ms ease;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.app-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.topbar {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  justify-content: space-between;
  gap: 0 24px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--accent);
}

.brand-mark svg,
.primary-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.source-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
p {
  margin: 0;
}

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

.setup-details summary {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 850;
}

.setup-details summary:hover {
  text-decoration: underline;
}

.setup-panel {
  margin-top: 2px;
  padding: 20px 0 18px;
  border-top: 1px solid var(--border);
}

.location-tools {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(280px, 1.25fr);
  gap: 12px;
  align-items: end;
}

.primary-action {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 820;
  box-shadow: 0 10px 28px var(--mood-wash);
}

.primary-action:hover {
  background: var(--accent-strong);
}

.zip-form {
  display: grid;
  gap: 7px;
}

.zip-form label,
.input-grid label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.zip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.86);
  color: var(--text);
  padding: 0 13px;
  font-size: 17px;
  outline: none;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--mood-wash);
}

.zip-row button,
.ghost-button {
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 820;
}

.indoor-details,
.advanced-panel {
  color: var(--muted);
}

.indoor-details summary,
.advanced-panel summary {
  width: fit-content;
  cursor: pointer;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 820;
}

.indoor-details summary {
  margin-top: 12px;
}

.indoor-content {
  margin-top: 12px;
}

.setup-status {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.input-grid label {
  display: grid;
  gap: 7px;
}

.answer-stack {
  display: grid;
  gap: 0;
}

.result-hero {
  position: relative;
  width: 100vw;
  min-height: 570px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 56px max(20px, calc((100vw - 1120px) / 2)) 104px;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(480px, 1fr);
  column-gap: clamp(36px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 45%),
    linear-gradient(140deg, rgba(255, 248, 237, 0.55) 0%, rgba(255, 254, 250, 0.35) 42%, var(--mood-wash) 100%),
    url("./assets/wallpaper.webp") repeat left top / 628px auto;
}

.weather-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.weather-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 34px;
  height: 46px;
  background: linear-gradient(180deg, rgba(17, 24, 21, 0.08), rgba(17, 24, 21, 0) 30%), #f7f4ec;
  border-top: 1px solid rgba(17, 24, 21, 0.05);
}

.weather-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(17, 24, 21, 0.1), rgba(17, 24, 21, 0) 35%), #e2dccd;
}

.window-view {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  justify-self: end;
  margin: 0 72px 0 0;
  width: min(45vw, 540px);
  aspect-ratio: 540 / 404;
  overflow: hidden;
  border: 13px solid #fff6e8;
  border-radius: 10px;
  background: var(--mood-bg);
  box-shadow:
    0 24px 72px rgba(17, 24, 21, 0.18),
    inset 0 0 0 2px rgba(17, 24, 21, 0.1);
}

.window-view::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 5px), rgba(255, 246, 232, 0.96) calc(50% - 5px) calc(50% + 5px), transparent calc(50% + 5px)),
    linear-gradient(180deg, transparent calc(50% - 5px), rgba(255, 246, 232, 0.96) calc(50% - 5px) calc(50% + 5px), transparent calc(50% + 5px));
  box-shadow: inset 0 0 34px rgba(17, 24, 21, 0.16);
}

.window-view::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -26px;
  z-index: 4;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #f1dfc9;
  box-shadow: 0 15px 26px rgba(17, 24, 21, 0.18);
}

.weather-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 62%),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    linear-gradient(160deg, var(--mood-bg), var(--bg));
}

body[data-scene="hot"] .weather-scene,
body[data-scene="swamp"] .weather-scene {
  background:
    radial-gradient(circle at 73% 22%, rgba(255, 230, 141, 0.95) 0 11%, transparent 12%),
    linear-gradient(160deg, #ff8b59, #ffe6d7 72%);
}

body[data-scene="desert"] .weather-scene {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 219, 79, 0.98) 0 12%, transparent 13%),
    linear-gradient(170deg, #ff9a3f 0%, #ffd38a 48%, #f3c36f 100%);
}

body[data-scene="rain"] .weather-scene {
  background: linear-gradient(160deg, #738195, #dfe7ef 74%);
}

body[data-scene="wind"] .weather-scene {
  background: linear-gradient(160deg, #b9d9ef, #fff8ea 74%);
}

body[data-scene="good"] .weather-scene {
  background:
    radial-gradient(circle at 72% 23%, rgba(255, 226, 97, 0.96) 0 10%, transparent 11%),
    linear-gradient(160deg, #80d6a0, #f4ffe9 78%);
}

body[data-scene="cold"] .weather-scene {
  background: linear-gradient(160deg, #9fc7dd, #f5fbff 76%);
}

body[data-scene="snow"] .weather-scene {
  background: linear-gradient(165deg, #7fa9c8 0%, #e7f3fb 62%, #ffffff 100%);
}

.sun {
  position: absolute;
  top: 34px;
  right: 56px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: #ffd34f;
  box-shadow: 0 0 0 18px rgba(255, 211, 79, 0.18), 0 0 80px rgba(255, 136, 51, 0.55);
}

.cloud {
  position: absolute;
  width: 210px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0.52;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  top: -36px;
  left: 38px;
  width: 96px;
  height: 96px;
}

.cloud::after {
  top: -26px;
  right: 32px;
  width: 82px;
  height: 82px;
}

.cloud-one {
  top: 78px;
  left: -72px;
}

.cloud-two {
  right: -72px;
  bottom: 132px;
  transform: scale(0.78);
}

.haze,
.wind,
.rain,
.snow {
  position: absolute;
  pointer-events: none;
}

.haze {
  left: 42px;
  right: 42px;
  height: 16px;
  border-top: 5px solid rgba(147, 62, 41, 0.28);
  border-radius: 50%;
  opacity: 0;
}

.haze-one {
  top: 178px;
}

.haze-two {
  top: 226px;
  transform: translateX(36px);
}

body[data-scene="hot"] .haze,
body[data-scene="swamp"] .haze,
body[data-scene="desert"] .haze {
  opacity: 1;
}

.rain {
  top: 36px;
  width: 7px;
  height: 160px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, rgba(31, 73, 108, 0.55) 0 18px, transparent 18px 34px);
  transform: rotate(12deg);
  opacity: 0;
}

.rain-one {
  left: 22%;
}

.rain-two {
  right: 25%;
  top: 90px;
}

body[data-scene="rain"] .rain {
  opacity: 1;
}

.snow {
  top: 32px;
  width: 260px;
  height: 230px;
  opacity: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 2px, transparent 3px);
  background-position: 0 0, 34px 28px;
  background-size: 48px 48px, 62px 62px;
}

.snow-one {
  left: 38px;
}

.snow-two {
  right: 24px;
  top: 76px;
}

body[data-scene="snow"] .snow {
  opacity: 1;
}

.wind {
  left: 36px;
  right: 36px;
  height: 28px;
  border-top: 5px solid rgba(11, 77, 136, 0.35);
  border-radius: 50%;
  opacity: 0;
}

.wind-one {
  top: 104px;
}

.wind-two {
  bottom: 132px;
  transform: translateX(28px);
}

body[data-scene="wind"] .wind {
  opacity: 1;
}

.landscape {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  overflow: hidden;
}

.ridge {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 34%;
  height: 74px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 254, 250, 0.38);
}

.ridge-two {
  bottom: 26%;
  transform: translateX(14%);
  background: rgba(17, 24, 21, 0.09);
}

.ground {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.72), rgba(17, 24, 21, 0.1));
}

.dune,
.snowfield {
  position: absolute;
  inset: auto -10% 0;
  height: 58%;
  opacity: 0;
  border-radius: 50% 50% 0 0;
}

.dune-one {
  background: #d9933f;
  transform: translateX(-14%);
}

.dune-two {
  height: 44%;
  background: #f5bd67;
  transform: translateX(18%);
}

body[data-scene="desert"] .dune,
body[data-scene="hot"] .dune {
  opacity: 1;
}

body[data-scene="desert"] .ground,
body[data-scene="hot"] .ground {
  background: linear-gradient(180deg, #f6c16d, #d98a36);
}

body[data-scene="good"] .ground,
body[data-scene="wind"] .ground {
  background: linear-gradient(180deg, #b8e39c, #74b66d);
}

body[data-scene="swamp"] .ground {
  background: linear-gradient(180deg, #d7b06f, #a48754);
}

.snowfield {
  background: linear-gradient(180deg, #ffffff, #dbeef8);
}

body[data-scene="snow"] .snowfield {
  opacity: 1;
}

body[data-scene="snow"] .ground {
  background: #ffffff;
}

.scene-readout {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 5;
  display: grid;
  gap: 2px;
  color: var(--text);
}

.scene-readout strong {
  font-size: 42px;
  line-height: 1;
  font-weight: 940;
}

.scene-readout span {
  color: rgba(17, 24, 21, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.josh-stage {
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2 - 84px));
  bottom: -6px;
  z-index: 4;
  width: clamp(215px, 24vw, 260px);
  height: min(52vw, 470px);
  min-width: 215px;
  max-height: 480px;
  max-width: calc(100vw - 36px);
  pointer-events: none;
}

.josh-character {
  position: absolute;
  inset: auto 0 0 auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  filter: drop-shadow(0 20px 18px rgba(17, 24, 21, 0.24));
  transform-origin: bottom center;
  transition: opacity 180ms ease, transform 180ms ease;
}

body[data-josh="mask"] .josh-mask,
body[data-josh="sneeze"] .josh-sneeze,
body[data-josh="hot"] .josh-hot,
body[data-josh="good"] .josh-good,
body[data-josh="wind"] .josh-wind,
body[data-josh="indoor"] .josh-indoor,
body[data-josh="rain"] .josh-rain,
body[data-josh="cold"] .josh-cold {
  opacity: 1;
  transform: translateY(0);
}

body[data-josh="rain"] .josh-rain,
body[data-josh="cold"] .josh-cold {
  max-width: 108%;
  right: -8px;
}

.verdict-panel {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 5;
  max-width: 430px;
  padding: 0;
}

.status-line {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 16px;
  font-weight: 850;
}

.verdict-answer {
  max-width: 430px;
  color: var(--text);
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.93;
  font-weight: 940;
}

.verdict-panel p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.screen-reader-score {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.conditions-panel,
.reason-panel,
.advanced-panel,
.faq-panel {
  border-bottom: 1px solid var(--border);
}

.conditions-panel {
  padding: 24px 0;
}

.reason-panel {
  position: relative;
  max-width: 860px;
  padding: 28px 0 30px;
}

.reason-panel h2 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.location-stack {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.topbar .setup-details {
  grid-column: 2;
  margin-top: -6px;
}

.topbar .setup-details[open] {
  grid-column: 1 / -1;
  margin-top: 0;
}

.location-stack span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-heading h2,
.faq-panel h2 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
}

.section-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.reason-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  position: relative;
  padding-left: 31px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.42;
}

.reason-list li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--reason-bg, var(--accent-soft));
  color: var(--reason-color, var(--accent));
  font-size: 14px;
  font-weight: 950;
}

.reason-list li.positive {
  --reason-bg: var(--good-soft);
  --reason-color: var(--good);
}

.reason-list li.positive::before {
  content: "✓";
}

.reason-list li.caution {
  --reason-bg: var(--warn-soft);
  --reason-color: var(--warn);
}

.reason-list li.caution::before {
  content: "!";
}

.reason-list li.negative {
  --reason-bg: var(--bad-soft);
  --reason-color: var(--bad);
}

.reason-list li.negative::before {
  content: "×";
}

.reason-list li:nth-child(n + 4) {
  display: none;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--subtle);
}

.metric {
  min-width: 0;
  padding: 16px 22px;
  border-right: 1px solid var(--subtle);
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
}

.metric-label,
.metric span:last-child {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.metric strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--accent-strong);
  font-size: 25px;
  line-height: 1;
}

.rule-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--subtle);
}

.rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--subtle);
}

.rule-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.rule-row strong {
  color: var(--text);
  font-size: 14px;
}

.rule-row.good strong {
  color: var(--good);
}

.rule-row.warn strong {
  color: var(--warn);
}

.rule-row.bad strong {
  color: var(--bad);
}

.faq-panel h2 {
  margin: 0 0 8px;
}

.advanced-panel {
  padding: 18px 0;
}

.faq-panel {
  padding: 28px 0 32px;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid var(--subtle);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
}

.faq-list p {
  max-width: 700px;
  padding: 0 0 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.site-footer {
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  text-align: center;
}

@media (max-width: 1100px) {
  .result-hero {
    min-height: 0;
    padding: 44px max(20px, calc((100vw - 820px) / 2)) 94px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .verdict-panel {
    width: min(100%, 820px);
    max-width: none;
  }

  .verdict-answer {
    max-width: 820px;
    font-size: clamp(58px, 11vw, 82px);
  }

  .verdict-panel p {
    max-width: 680px;
  }

  .window-view {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: min(100%, 820px);
    aspect-ratio: auto;
    height: 320px;
    margin: 30px 0 0;
    border-width: 10px;
  }

  .josh-stage {
    right: max(20px, calc((100vw - 820px) / 2));
    bottom: -4px;
    width: 230px;
    height: 350px;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .app-shell {
    width: min(100% - 24px, 560px);
    padding-top: 14px;
  }

  .topbar {
    align-items: center;
    gap: 0 12px;
  }

  .location-tools,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .result-hero {
    padding: 30px 12px 80px;
  }

  .window-view {
    height: 270px;
    margin-top: 22px;
    border-width: 9px;
  }

  .sun {
    width: 86px;
    height: 86px;
    top: 26px;
    right: 34px;
  }

  .scene-readout {
    left: 16px;
    right: auto;
    bottom: 18px;
  }

  .josh-stage {
    right: 16px;
    bottom: -3px;
    width: 202px;
    height: 304px;
    min-width: 0;
  }

  .verdict-answer {
    font-size: clamp(52px, 16vw, 72px);
  }

  .verdict-panel p,
  .reason-list li {
    font-size: 17px;
  }

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

  .metric {
    padding: 14px 16px;
    border-bottom: 1px solid var(--subtle);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:first-child {
    padding-left: 16px;
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .reason-panel {
    padding: 12px 0 14px;
  }
}

@media (max-width: 430px) {
  .app-shell {
    padding-top: 6px;
  }

  .topbar {
    padding-bottom: 0;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .location-stack span {
    font-size: 11px;
  }

  #updatedAt {
    display: none;
  }

  .setup-details summary {
    font-size: 0;
  }

  .setup-details summary::after {
    content: "Change location";
    font-size: 13px;
  }

  .verdict-answer {
    font-size: clamp(46px, 14.5vw, 58px);
  }

  .result-hero {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .window-view {
    justify-self: center;
    width: min(296px, calc(100% - 28px));
    height: 230px;
    margin-top: 18px;
  }

  .josh-stage {
    width: 160px;
    height: 244px;
    right: 8px;
  }

  .scene-readout strong {
    font-size: 34px;
  }

  .verdict-panel {
    padding: 0;
  }

  .verdict-panel p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.42;
  }

  .status-line {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .conditions-panel {
    padding: 6px 0;
  }

  .metric {
    padding: 6px 12px;
  }

  .metric strong {
    margin: 3px 0 2px;
    font-size: 22px;
  }

  .metric-label,
  .metric span:last-child {
    font-size: 10px;
  }

  .reason-panel h2 {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .reason-list {
    gap: 5px;
  }

  .reason-list li {
    min-height: 20px;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.2;
  }

  .reason-list li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

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