:root {
  --navy-950: #05111e;
  --navy-900: #071a2c;
  --navy-800: #0b2944;
  --blue: #23a9ef;
  --blue-light: #69d3ff;
  --cyan: #9cecff;
  --orange: #ffb22e;
  --red: #ff5c5c;
  --green: #38d996;
  --paper: #f4f9fc;
  --ink: #0a1d2f;
  --muted: #6d8090;
  --line: rgba(255, 255, 255, .13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--navy-950); }

body {
  margin: 0;
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 169, 239, .17), transparent 26rem),
    radial-gradient(circle at 88% 72%, rgba(255, 178, 46, .08), transparent 28rem),
    linear-gradient(145deg, #061421 0%, #0b2944 52%, #061520 100%);
  overflow-x: hidden;
}

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

.site-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: .025em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(150deg, #69d3ff, #168ed6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 7px 20px rgba(35,169,239,.26);
  color: #05243c;
  font-weight: 950;
  letter-spacing: -.06em;
}

.brand b, .brand small { display: block; }
.brand b { font-size: 17px; line-height: 1; }
.brand small { margin-top: 4px; font-size: 10px; letter-spacing: .24em; color: var(--blue-light); }

.top-actions { display: flex; gap: 9px; }

.icon-button {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: white;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.icon-button:hover, .icon-button:focus-visible { background: rgba(255,255,255,.14); transform: translateY(-1px); outline: none; }
.icon-button[aria-pressed="true"] { color: #718294; text-decoration: line-through; }

main {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: 42px 0 50px;
}

.game-column { min-width: 0; }

.game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 740px;
  max-height: 820px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(165deg, #0b2c49, #061726 75%);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: 0 35px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
  touch-action: manipulation;
  user-select: none;
}

.hud {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 52px;
}

.hud-stat { display: flex; flex-direction: column; }
.hud-stat-right { align-items: flex-end; }
.hud-label { font-size: 10px; letter-spacing: .16em; color: #9ab0c0; font-weight: 800; }
.hud-stat strong { font-size: 24px; line-height: 1.05; font-variant-numeric: tabular-nums; }
#combo { color: var(--orange); }

.timer { position: relative; width: 52px; height: 52px; display: grid; place-items: center; }
.timer svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.timer circle { fill: none; stroke-width: 4; }
.timer-track { stroke: rgba(255,255,255,.12); }
.timer-ring { stroke: var(--blue-light); stroke-linecap: round; stroke-dasharray: 113.1; stroke-dashoffset: 0; transition: stroke-dashoffset .25s linear, stroke .2s ease; }
.timer strong { z-index: 1; font-size: 17px; font-variant-numeric: tabular-nums; }

.damage-wrap { position: relative; z-index: 2; margin: 12px 0 14px; }
.damage-labels { display: flex; justify-content: space-between; margin-bottom: 5px; color: #b4c6d2; font-size: 11px; font-weight: 750; }
.damage-track { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.damage-fill { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--orange) 64%, var(--red)); transition: width .2s linear; }

.tower {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.34));
}

.tower-picture,
.tower-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tower-picture { z-index: 1; pointer-events: none; }
.tower-art { object-fit: contain; }

.tower-heading {
  position: absolute;
  z-index: 5;
  top: 2.2%;
  left: 12%;
  right: 12%;
  min-height: 28px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(4,18,30,.83);
  border: 1px solid rgba(255,255,255,.18);
  color: #c9d9e2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  backdrop-filter: blur(5px);
}

.level-badge { color: var(--orange); }

.flood-level {
  position: absolute;
  z-index: 2;
  left: 8%;
  right: 8%;
  bottom: 9%;
  height: 0;
  max-height: 73%;
  border-radius: 12px 12px 22px 22px;
  background: linear-gradient(180deg, rgba(65,207,255,.14), rgba(0,123,205,.42));
  box-shadow: inset 0 8px 22px rgba(130,229,255,.18);
  opacity: .76;
  pointer-events: none;
  transition: height .25s linear;
}
.flood-level::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 9px;
  border-radius: 50%;
  background: rgba(105,220,255,.52);
  box-shadow: 0 0 14px rgba(55,194,255,.45);
}

.unit-grid {
  position: absolute;
  z-index: 4;
  left: 13%;
  right: 13%;
  top: 7.5%;
  bottom: 24%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: .35% 9.5%;
}

.unit {
  position: relative;
  overflow: visible;
  min-height: 0;
  border-radius: 7px;
  background: transparent;
  transition: background .15s ease, box-shadow .15s ease;
}

.unit.is-wet {
  background: radial-gradient(circle at 50% 64%, rgba(82,219,255,.3), rgba(11,132,201,.07) 65%, transparent 72%);
  box-shadow: inset 0 0 14px rgba(75,206,255,.23);
}
.unit.is-alert { animation: room-alert .5s ease-in-out infinite alternate; }

.unit-number {
  position: absolute;
  top: 5%;
  left: 1%;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(4,18,30,.68);
  font-size: 7px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing: .06em;
}

.building-base {
  position: absolute;
  z-index: 6;
  left: 10%;
  right: 10%;
  bottom: 2.5%;
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 13px;
  background: rgba(4,18,30,.85);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 9px 24px rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
}

.pipe-legend { display: flex; align-items: center; gap: 7px; color: #8da4b3; font-size: 6px; font-weight: 900; letter-spacing: .05em; }
.pipe-legend span { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.pipe-legend i { width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.06); }
.cold-dot { background: #159fe9; }
.hot-dot { background: #f0463e; }
.drain-dot { background: #66737c; }

.shutoff-button {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255,178,46,.42);
  background: rgba(255,178,46,.12);
  color: white;
  cursor: pointer;
}
.shutoff-button:hover, .shutoff-button:focus-visible { background: rgba(255,178,46,.22); outline: none; }
.shutoff-button:disabled { opacity: .35; cursor: default; }
.shutoff-button b, .shutoff-button small { display: block; line-height: 1.05; text-align: left; }
.shutoff-button b { font-size: 8px; letter-spacing: .07em; }
.shutoff-button small { margin-top: 3px; font-size: 7px; color: var(--orange); font-weight: 800; }
.valve-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #362305; font-size: 18px; }

.leak {
  position: absolute;
  z-index: 7;
  width: clamp(48px, 7vw, 64px);
  height: clamp(48px, 7vw, 64px);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(.4);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  animation: leak-in .22s cubic-bezier(.15,.95,.35,1.35) forwards, leak-pulse .72s ease-in-out .22s infinite alternate;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  box-shadow: 0 0 0 5px rgba(255,255,255,.1), 0 10px 20px rgba(0,0,0,.28);
  touch-action: manipulation;
}
.leak::after { content: ""; position: absolute; inset: -7px; border: 2px solid currentColor; border-radius: 50%; opacity: .35; animation: ripple .8s ease-out infinite; }
.leak-drip { background: linear-gradient(150deg, #5ad8ff, #057cc4); font-size: 25px; }
.leak-spray { background: linear-gradient(150deg, #9beaff, #0a8ad4); font-size: 25px; }
.leak-burst { background: linear-gradient(150deg, #21b5f4, #085ba8); font-size: 26px; }
.leak-spark { background: linear-gradient(150deg, #ffcc4c, #ec7722); font-size: 27px; color: #fff7c7; }
.leak.is-hit { animation: hit .13s ease; }
.leak.is-fixed { pointer-events: none; animation: fixed .28s ease forwards; }

.hp-dots { position: absolute; bottom: -8px; display: flex; gap: 3px; }
.hp-dots i { width: 6px; height: 6px; border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hp-dots i.is-gone { opacity: .18; }

.floating-score {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 950;
  font-size: 17px;
  text-shadow: 0 2px 6px rgba(0,0,0,.55);
  pointer-events: none;
  animation: score-float .72s ease-out forwards;
}
.floating-score.bad { color: #ffd05c; }

.status-toast {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 95px;
  transform: translate(-50%, -12px);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(4,18,30,.86);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}
.status-toast.show { opacity: 1; transform: translate(-50%, 0); }

.screen {
  position: absolute;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5,17,30,.76);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.screen.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }

.screen-start {
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 46%, rgba(53,185,245,.26), transparent 34%),
    linear-gradient(115deg, rgba(5,17,30,.98) 0%, rgba(7,30,50,.97) 51%, rgba(11,54,84,.88));
}
.start-glow { position: absolute; width: 340px; height: 340px; right: -40px; top: 120px; border-radius: 50%; border: 1px solid rgba(105,211,255,.22); box-shadow: 0 0 0 40px rgba(105,211,255,.035), 0 0 0 85px rgba(105,211,255,.02); }
.start-copy { position: relative; z-index: 3; width: 57%; padding: clamp(28px, 6vw, 66px) 0 0 clamp(14px, 4vw, 44px); }
.eyebrow { display: block; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .19em; }
.start-copy h1 { margin: 12px 0 10px; font-size: clamp(48px, 8vw, 82px); line-height: .79; letter-spacing: -.075em; font-weight: 1000; }
.start-copy h1 span { color: var(--blue-light); }
.start-copy > p:not(.best-line) { max-width: 300px; color: #c2d4df; font-size: 16px; line-height: 1.45; }
.start-buttons { width: min(280px, 100%); margin-top: 24px; display: grid; gap: 9px; }

.primary-button, .secondary-button {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  border: 0;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.primary-button { background: linear-gradient(135deg, #6bddff, #1b9ee3); color: #062038; box-shadow: 0 12px 30px rgba(35,169,239,.25), inset 0 1px 0 rgba(255,255,255,.55); }
.secondary-button { background: rgba(255,255,255,.07); color: white; border: 1px solid rgba(255,255,255,.15); }
.primary-button:hover, .secondary-button:hover, .primary-button:focus-visible, .secondary-button:focus-visible { transform: translateY(-2px); filter: brightness(1.08); outline: none; }
.full-button { width: 100%; }

.best-line { margin-top: 14px; font-size: 10px; letter-spacing: .14em; color: #8299a9; }
.best-line b { color: white; font-size: 13px; }
.plumber-mascot { position: absolute; z-index: 2; right: -3%; bottom: -7%; height: 94%; max-width: 61%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 22px 22px rgba(0,0,0,.38)); pointer-events: none; }
.quick-rule { position: absolute; z-index: 4; left: 30px; right: 30px; bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0; color: #93aabb; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.quick-rule span { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-left: 3px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--blue-light); }

.modal-card {
  position: relative;
  width: min(440px, 100%);
  max-height: 96%;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 38px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(160deg, rgba(14,48,73,.98), rgba(5,22,37,.98));
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}
.modal-close { position: absolute; right: 15px; top: 13px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: white; background: rgba(255,255,255,.07); font-size: 25px; cursor: pointer; }
.modal-card h2 { margin: 9px 0 22px; font-size: clamp(28px, 5vw, 42px); line-height: .98; letter-spacing: -.04em; }
.instruction-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.instruction-list > div { display: flex; align-items: center; gap: 10px; min-height: 69px; padding: 10px; border-radius: 13px; background: rgba(255,255,255,.06); }
.instruction-list p { margin: 0; }
.instruction-list b, .instruction-list small { display: block; }
.instruction-list b { font-size: 13px; }
.instruction-list small { margin-top: 3px; color: #8ea7b8; font-size: 10px; }
.demo-leak { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; font-size: 20px; }
.demo-drip, .demo-spray, .demo-burst { background: rgba(35,169,239,.18); }
.demo-spark { background: rgba(255,178,46,.18); }
.modal-tip { margin: 18px 0; color: #b9ccd8; font-size: 12px; line-height: 1.5; }

.end-card { text-align: center; }
.end-card h2 { margin-bottom: 14px; }
.final-score { display: flex; flex-direction: column; padding: 16px 0 18px; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.final-score span { font-size: 9px; color: #8fa7b7; font-weight: 850; letter-spacing: .17em; }
.final-score strong { margin-top: 4px; font-size: 47px; line-height: 1; color: var(--blue-light); font-variant-numeric: tabular-nums; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 16px 0; }
.result-grid div + div { border-left: 1px solid rgba(255,255,255,.1); }
.result-grid strong, .result-grid span { display: block; }
.result-grid strong { font-size: 18px; }
.result-grid span { margin-top: 3px; color: #839aaa; font-size: 9px; }
.new-best { min-height: 18px; color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .18em; }
.new-best:empty { visibility: hidden; }
.end-actions { display: grid; grid-template-columns: 1.2fr 1fr; gap: 9px; margin-top: 9px; }
.tip-link { display: block; margin-top: 14px; padding: 12px; text-align: left; text-decoration: none; border-radius: 12px; background: rgba(255,178,46,.09); border: 1px solid rgba(255,178,46,.2); }
.tip-link span, .tip-link b, .tip-link small { display: block; }
.tip-link span { color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.tip-link b { margin-top: 4px; color: white; font-size: 11px; line-height: 1.35; }
.tip-link small { margin-top: 5px; color: #91aaba; font-size: 9px; }

.game-note { margin: 12px 0 0; color: #6e899a; font-size: 10px; text-align: center; }

.info-panel { padding-right: 4px; }
.section-number { color: var(--blue-light); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.info-panel > h2 { max-width: 390px; margin: 13px 0 16px; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.02; letter-spacing: -.045em; }
.info-panel > p { color: #a9bdca; line-height: 1.68; font-size: 14px; }
.feature-card { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-top: 1px solid var(--line); }
.feature-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(105,211,255,.09); border: 1px solid rgba(105,211,255,.14); color: var(--blue-light); font-size: 17px; font-weight: 900; }
.feature-card b { font-size: 13px; }
.feature-card p { margin: 3px 0 0; color: #7892a3; font-size: 11px; }
.pro-note { margin-top: 15px; padding: 14px; border-radius: 13px; background: rgba(255,178,46,.08); border-left: 3px solid var(--orange); }
.pro-badge { color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.pro-note p { margin: 6px 0 0; color: #b8c9d3; font-size: 11px; line-height: 1.55; }
.blog-button { min-height: 50px; margin-top: 15px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: white; text-decoration: none; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.blog-button:hover, .blog-button:focus-visible { background: rgba(255,255,255,.07); outline: none; }
.blog-button span { color: var(--blue-light); font-size: 19px; }

footer { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: #668193; font-size: 9px; line-height: 1.5; }

.game-frame.is-shaking { animation: shake .25s ease; }
.game-frame.is-danger .timer-ring { stroke: var(--red); }
.game-frame.is-danger .damage-fill { box-shadow: 0 0 14px rgba(255,92,92,.45); }
.game-frame.is-frozen .tower { filter: drop-shadow(0 18px 25px rgba(0,0,0,.25)) saturate(.45) brightness(1.15); }
.game-frame.is-frozen .leak { animation-play-state: paused; }

@keyframes leak-in { to { transform: translate(-50%, -50%) scale(1); } }
@keyframes leak-pulse { to { transform: translate(-50%, -50%) scale(1.1); } }
@keyframes ripple { from { transform: scale(.76); opacity: .5; } to { transform: scale(1.3); opacity: 0; } }
@keyframes fixed { to { transform: translate(-50%, -50%) scale(1.45); opacity: 0; } }
@keyframes hit { 50% { transform: translate(-50%, -50%) scale(.82); } }
@keyframes score-float { to { transform: translate(-50%, -125%); opacity: 0; } }
@keyframes room-alert { to { background-color: rgba(255,92,92,.12); } }
@keyframes shake { 25% { transform: translateX(-5px); } 55% { transform: translateX(5px); } 80% { transform: translateX(-2px); } }

@media (max-width: 920px) {
  main { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .info-panel { display: none; }
  .game-frame { aspect-ratio: 4 / 5; }
}

@media (max-width: 620px) {
  .site-shell { width: 100%; }
  .topbar { height: 62px; padding: 0 14px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand b { font-size: 15px; }
  main { display: block; padding: 0; }
  .game-frame { min-height: calc(100dvh - 62px); max-height: none; aspect-ratio: auto; border: 0; border-radius: 0; padding: 12px; }
  .hud { min-height: 46px; }
  .hud-stat strong { font-size: 21px; }
  .timer { width: 46px; height: 46px; }
  .tower { width: min(100%, 390px); }
  .building-base { min-height: 46px; }
  .screen { padding: 14px; }
  .start-copy { width: 72%; padding: 42px 0 0 15px; }
  .start-copy h1 { font-size: clamp(49px, 16vw, 72px); }
  .start-copy > p:not(.best-line) { max-width: 220px; font-size: 14px; }
  .plumber-mascot { right: -22%; bottom: 0; height: 71%; max-width: 72%; opacity: .9; }
  .quick-rule { left: 9px; right: 9px; bottom: 12px; gap: 5px; font-size: 8px; }
  .quick-rule span { width: 16px; height: 16px; }
  .game-note, footer { display: none; }
  .modal-card { padding: 25px 20px 20px; }
  .modal-card h2 { font-size: 31px; }
  .leak { width: 54px; height: 54px; }
}

@media (max-height: 700px) and (max-width: 620px) {
  .game-frame { min-height: 638px; }
  .topbar { display: none; }
  .plumber-mascot { height: 68%; }
  .start-copy { padding-top: 28px; }
}

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