@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("fonts/newsreader-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --bg: #faf9f5;
  --ink: #19333e;
  --muted: #50636b;
  --accent: #215d76;
  --line: #ced8da;
  --ice: #eaf0f1;
  --mint: #edf0e8;
  --page-width: 1248px;
  --gutter: clamp(24px, 4.5vw, 80px);
  --section-space: clamp(80px, 9vw, 144px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --layer-header: 2;
  --layer-focus: 3;
  font-family: Manrope, "Avenir Next", system-ui, sans-serif;
  font-synthesis: none;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height, 96px) + 24px);
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
.landing {
  --section-space: clamp(64px, 6vw, 96px);
  --stage-radius: 24px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}
button,
summary {
  font: inherit;
  touch-action: manipulation;
}
button {
  color: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="tabpanel"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
p {
  margin: 0 0 24px;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.4rem, 6.4vw, 6rem);
}
h2 {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
}
h3 {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin-bottom: 12px;
}
em {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.18em;
  letter-spacing: -0.035em;
  font-optical-sizing: auto;
}
figure {
  margin: 0;
}
.wrap {
  width: min(var(--page-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
section[id],
p[id] {
  scroll-margin-top: 24px;
}
.ui-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
::selection {
  color: var(--ink);
  background: #d6e6eb;
}
.lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}
.fine-print,
figcaption,
.capture-note {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px 12px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    transform 160ms var(--ease-out);
}
.button > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff18;
  font-size: 1.2rem;
  transition: transform 180ms var(--ease-out);
}
.button:active,
.nav-cta:active {
  transform: scale(0.97);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #95a9b1;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: var(--layer-focus);
  padding: 12px 20px;
  background: #fff;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.landing .site-header {
  position: sticky;
  top: 0;
  z-index: var(--layer-header);
  background: var(--bg);
  border-bottom: 1px solid #19333e0d;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 28px;
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand img {
  border-radius: 10px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 22px;
}
.site-header nav a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
}
.site-header nav a {
  position: relative;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.site-header nav a[aria-current]::after {
  transform: scaleX(1);
}
.nav-cta {
  gap: 18px;
  padding: 10px 19px;
  border: 1px solid #aabdc4;
  border-radius: 999px;
  transition:
    background 180ms ease,
    transform 160ms var(--ease-out);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 52px;
  align-items: center;
  padding-block: 44px 64px;
}
.hero-copy {
  padding-block: 22px;
}
.weather-signoff {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 0;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--accent);
}
.weather-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.weather-mark-sun {
  stroke: #976717;
  fill: #f3d493;
}
.weather-mark-cloud {
  stroke: var(--accent);
  fill: var(--bg);
}
.hero h1 {
  margin-bottom: 30px;
}
.hero h1 em {
  white-space: normal;
}
.hero .lede {
  max-width: 36ch;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.fine-print {
  margin: 16px 0 0;
}
.hero-product {
  width: 100%;
  justify-self: end;
}
.product-stage {
  background: var(--ice);
  border-radius: var(--stage-radius, 0);
}
.hero-stage {
  padding: 24px 32px;
  background: radial-gradient(ellipse at 0 0, #f3e7cd 0, transparent 65%), #dceae7;
  border: 1px solid #cadad4;
}
.hero-stage .product-image {
  max-width: 300px;
  margin-inline: auto;
}
.image-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.015em;
}
.product-image {
  display: block;
  cursor: zoom-in;
}
.product-image img {
  width: 100%;
  box-shadow: 0 22px 44px -26px #19333e70;
}
.image-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.image-action > span {
  font-size: 1rem;
  transition: transform 180ms var(--ease-out);
}
figcaption {
  margin-top: 14px;
  max-width: 46ch;
}
figcaption a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-product > figcaption {
  display: block;
  padding-inline: 2px;
  font-size: 0.8125rem;
}
.source-band {
  border-block: 1px solid var(--line);
  background: #eaf0ed;
}
.source-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 22px;
}
.source-band p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}
.source-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.8125rem;
}
.source-band li {
  white-space: nowrap;
}
.chapter-section {
  padding-block: var(--section-space);
}
.chapter-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 40px;
}
.chapter-label,
.story-copy > .chapter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}
.chapter-label span {
  font-variant-numeric: tabular-nums;
  padding-right: 12px;
  border-right: 1px solid #a6bcbf;
}
.chapter-intro {
  max-width: 410px;
  padding-bottom: 2px;
}
.chapter-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}
.plan-section {
  background: var(--bg);
}
.planning-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.planning-gallery:not(:has(.gallery-ready)) {
  display: block;
}
.plan-tabs {
  display: grid;
  gap: 10px;
}
.plan-tabs button {
  display: block;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff60;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.plan-tabs button[aria-selected="true"] {
  background: #e0ebee;
  border-color: #799ca8;
  box-shadow: inset 3px 0 var(--accent);
  color: var(--accent);
}
.plan-tabs button[aria-selected="true"] .tab-heading {
  font-weight: 700;
}
.tab-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.tab-description {
  display: block;
  margin-top: 12px;
  max-width: 39ch;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
}
.tab-arrow {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 180ms var(--ease-out);
}
.plan-tabs button[aria-selected="true"] .tab-arrow {
  transform: rotate(45deg);
}
.plan-screens {
  padding: 32px 50px 24px;
  background: radial-gradient(ellipse at 100% 0, #f5f0df 0, transparent 70%), #dfeaed;
  border: 1px solid #cad9dd;
}
.plan-panel {
  max-width: 310px;
  margin-inline: auto;
}
.plan-screens:not(.gallery-ready) .plan-panel + .plan-panel {
  margin-top: 56px;
}
.plan-panel figcaption {
  min-height: 3.4em;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-copy {
  max-width: 435px;
}
.story-copy h2 {
  margin-bottom: 30px;
}
.story-copy > p {
  color: var(--muted);
}
.story-copy > p:not(.lede) {
  font-size: 0.91rem;
}
.story-product {
  width: min(100%, 310px);
  justify-self: center;
}
.reverse .story-copy {
  order: 2;
}
.reverse .road-visual {
  order: 1;
}
.road-section {
  padding-top: 0;
}
.road-visual {
  padding: 48px 40px 30px;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 0 0, #f1ebd9 0, transparent 70%), #e0e9dc;
  border: 1px solid #cfdcc9;
}
.detail-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-note p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.share-section {
  background: #e4ece7;
  border-block: 1px solid #ccd9d1;
}
.share-section .story-grid {
  grid-template-columns: 1.15fr 0.85fr;
}
.share-section h2 {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
}
.share-visual {
  display: grid;
  place-items: center;
  padding: 36px 40px 26px;
  background: #ffffff66;
  border: 1px solid #cad9d0;
}
.shared-product {
  width: min(100%, 280px);
}
.questions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0 100px;
  padding-block: var(--section-space);
}
.questions h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.answers details {
  border-top: 1px solid var(--line);
}
.answers details:last-child {
  border-bottom: 1px solid var(--line);
}
.answers summary {
  position: relative;
  padding: 26px 36px 26px 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}
.answers summary::-webkit-details-marker {
  display: none;
}
.answers summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 22px;
  font-size: 1.35rem;
  font-weight: 400;
}
.answers details[open] summary::after {
  content: "−";
}
.answers p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.8;
  padding-right: 18px;
}
.answers p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.capture-note {
  grid-column: 1 / -1;
  max-width: 75ch;
  margin: 64px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
}
.install {
  padding-block: 100px;
  background: #e0ebee;
}
.install-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}
.install h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  margin-bottom: 24px;
}
.install .text-link {
  margin-top: 18px;
}
.qr-wrap {
  max-width: 200px;
  padding: 20px;
  text-align: center;
  background: #ffffffc7;
  border: 1px solid #b7c9cf;
}
.qr-wrap p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 16px 0 0;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px;
}
.site-footer .brand {
  font-size: 0.96rem;
}
.site-footer > p {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.875rem;
}
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
html:has(.image-dialog[open]) {
  overflow: hidden;
}
.image-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid #cbd6da;
  background: var(--bg);
  color: var(--ink);
}
.image-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.image-dialog::backdrop {
  background: #102b39c9;
}
.dialog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}
.dialog-toolbar h2 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.close-dialog {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #aabdc4;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
}
.close-dialog span {
  font-size: 1.2rem;
}
.dialog-scroll {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 24px;
  background: #e8eeef;
}
.dialog-scroll:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.dialog-scroll img {
  width: 100%;
  height: auto;
}
.dialog-error {
  padding: 24px;
}
.dialog-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.dialog-footer .text-link {
  font-size: 0.875rem;
}
.guide {
  max-width: 760px;
  padding-block: 65px 100px;
}
.guide h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  margin-bottom: 28px;
}
.guide h2 {
  font-size: 1.65rem;
  margin: 42px 0 18px;
  letter-spacing: -0.035em;
}
.guide .lede {
  max-width: 50ch;
}
.guide p,
.guide li {
  color: var(--muted);
}
.guide li {
  padding-left: 6px;
  margin-bottom: 12px;
}
.guide a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.guide-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}
.legal .wrap {
  max-width: 760px;
  padding-block: 48px 64px;
}
.legal .brand {
  margin-bottom: 40px;
  text-decoration: none;
}
.legal h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}
.legal h2 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  margin: 36px 0 16px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal li {
  margin-bottom: 14px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal .callout {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-block: 30px;
}
.legal .updated,
.legal .page-footer {
  font-size: 0.8rem;
}
.legal .page-footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 45px;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--accent);
  }
  .button:hover {
    background: var(--accent);
    color: #fff;
  }
  .button:hover > span {
    transform: translate(2px, -2px);
  }
  .nav-cta:hover {
    background: #e8eeef;
  }
  .site-header nav a:hover::after {
    transform: scaleX(1);
  }
  .product-image:hover .image-action > span {
    transform: translate(2px, -2px);
  }
  .plan-tabs button:hover {
    background: #e8eeef50;
  }
}
/* Keep the planning introduction beside its image on desktop, with the
   choices directly below it. The no-script gallery retains its reading order. */
@media (min-width: 1000px) {
  .plan-section > .wrap:has(.gallery-ready) {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px 72px;
  }
  .plan-section:has(.gallery-ready) .chapter-heading {
    display: block;
    margin: 0;
    align-self: end;
  }
  .plan-section:has(.gallery-ready) .chapter-intro {
    margin-top: 28px;
  }
  .planning-gallery:has(.gallery-ready) {
    display: contents;
  }
  .planning-gallery:has(.gallery-ready) .plan-tabs {
    grid-column: 1;
    align-self: start;
  }
  .plan-screens.gallery-ready {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .landing .install {
    padding-block: 76px;
  }
}
@media (max-width: 1050px) {
  .hero {
    gap: 32px;
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-stage {
    padding-inline: 24px;
  }
  .site-header nav {
    gap: 20px;
    margin-right: 0;
  }
  .story-grid,
  .chapter-heading,
  .questions {
    gap: 56px;
  }
  .planning-gallery {
    gap: 48px;
  }
  .plan-screens {
    padding-inline: 32px;
  }
  .share-visual {
    padding-inline: 24px;
  }
}
@media (max-width: 780px) {
  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px 16px;
    margin: 0;
    border-top: 1px solid var(--line);
  }
  .hero {
    gap: 28px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .hero-stage {
    padding: 20px;
  }
  .image-label {
    font-size: 0.8125rem;
  }
  .source-band .wrap {
    align-items: flex-start;
  }
  .source-band ul {
    flex-direction: column;
    gap: 6px;
  }
  .story-grid,
  .chapter-heading,
  .questions {
    gap: 36px;
  }
  .story-copy h2,
  .share-section h2 {
    font-size: 2.8rem;
  }
  .planning-gallery {
    gap: 28px;
  }
  .plan-screens {
    padding: 28px;
  }
  .tab-heading {
    font-size: 1rem;
  }
  .tab-description {
    font-size: 0.875rem;
  }
  .road-visual {
    padding: 28px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --section-space: 76px;
  }
  .landing {
    --section-space: 76px;
    --stage-radius: 0;
  }
  html {
    scroll-padding-top: calc(var(--header-height, 76px) + 20px);
  }
  .site-header {
    min-height: 76px;
    gap: 16px;
  }
  .header-inner {
    gap: 16px;
  }
  .brand {
    font-size: 1.06rem;
    gap: 9px;
  }
  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .nav-cta {
    font-size: 0.8125rem;
    gap: 10px;
    padding: 8px 14px;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 42px 40px;
  }
  .hero-copy {
    padding: 0;
  }
  .site-header nav a {
    font-size: 0.8125rem;
  }
  .weather-signoff {
    margin-top: 24px;
    font-size: 0.8125rem;
  }
  .weather-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 2.1rem + 4vw, 4.35rem);
    letter-spacing: -0.035em;
    margin-bottom: 26px;
  }
  .hero h1 em {
    white-space: normal;
  }
  .hero .lede {
    font-size: 1rem;
    max-width: 37ch;
    margin-bottom: 26px;
  }
  .hero-actions {
    gap: 8px 20px;
  }
  .button {
    min-height: 54px;
    gap: 20px;
    padding-left: 23px;
    font-size: 0.82rem;
  }
  .button > span {
    width: 30px;
    height: 30px;
  }
  .hero-actions .text-link {
    font-size: 0.875rem;
  }
  .fine-print {
    font-size: 0.8125rem;
    margin-top: 12px;
  }
  .hero-stage {
    padding: 20px 24px 16px;
    margin-inline: calc(-1 * var(--gutter));
  }
  .hero-stage .product-image {
    max-width: none;
  }
  .image-label {
    font-size: 0.8125rem;
    margin-bottom: 18px;
  }
  .hero-product > figcaption {
    font-size: 0.8125rem;
    margin-top: 16px;
  }
  .source-band .wrap {
    display: block;
    padding-block: 26px;
  }
  .source-band p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .source-band ul {
    flex-direction: row;
    font-size: 0.8125rem;
    gap: 6px 16px;
  }
  h2,
  .story-copy h2,
  .share-section h2 {
    font-size: clamp(2.65rem, 10.2vw, 3.6rem);
  }
  .chapter-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 32px;
  }
  .chapter-intro {
    max-width: none;
  }
  .chapter-intro .lede {
    margin-bottom: 16px;
  }
  .planning-gallery {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .plan-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    gap: 0;
  }
  .plan-tabs button {
    border-bottom: 1px solid var(--line);
    padding: 12px 8px 16px;
    text-align: center;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid var(--line);
  }
  .plan-tabs button[aria-selected="true"] {
    box-shadow: none;
    border-bottom-color: var(--accent);
  }
  .tab-heading {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.6;
    letter-spacing: -0.015em;
  }
  .tab-description,
  .tab-arrow {
    display: none;
  }
  .plan-screens {
    padding: 24px;
    margin-inline: calc(-1 * var(--gutter));
  }
  .plan-panel {
    max-width: none;
  }
  .plan-panel figcaption {
    font-size: 0.8125rem;
  }
  .story-grid,
  .share-section .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-copy {
    max-width: none;
  }
  .story-copy h2 {
    margin-bottom: 26px;
  }
  .story-copy > p:not(.lede) {
    font-size: 0.87rem;
  }
  .reverse .story-copy,
  .reverse .road-visual {
    order: initial;
  }
  .road-visual {
    padding: 24px;
    margin-inline: calc(-1 * var(--gutter));
  }
  .story-product {
    width: 100%;
    max-width: 360px;
  }
  .detail-note {
    margin-top: 26px;
    padding-top: 24px;
  }
  .share-visual {
    padding: 24px;
    margin-inline: calc(-1 * var(--gutter));
  }
  .shared-product {
    width: 100%;
  }
  .questions {
    display: block;
  }
  .questions h2 {
    font-size: 2.8rem;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .answers summary {
    font-size: 0.87rem;
    padding-block: 24px;
  }
  .answers p {
    font-size: 0.9375rem;
    padding-right: 0;
  }
  .capture-note {
    margin-top: 36px;
    font-size: 0.8125rem;
  }
  .install {
    padding-block: 72px;
  }
  .install-inner {
    display: block;
  }
  .install h2 {
    font-size: clamp(2.6rem, 10vw, 3.7rem);
  }
  .qr-wrap {
    display: none;
  }
  .site-footer {
    align-items: flex-start;
    gap: 16px;
    padding-block: 30px;
  }
  .site-footer > p {
    margin-left: auto;
    padding-top: 5px;
  }
  .site-footer nav {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .dialog-toolbar {
    padding: 14px 18px;
    gap: 12px;
  }
  .dialog-toolbar h2 {
    font-size: 0.92rem;
  }
  .close-dialog {
    font-size: 0.8125rem;
    gap: 10px;
    padding-inline: 12px;
  }
  .dialog-scroll {
    padding: 12px;
  }
  .dialog-footer {
    padding: 8px 18px;
    font-size: 0.8125rem;
  }
  .dialog-footer .text-link {
    font-size: 0.875rem;
  }
  .guide {
    padding-block: 40px 60px;
  }
  .guide-images {
    gap: 16px;
  }
}
@media (min-width: 1000px) and (max-height: 800px) {
  .hero {
    padding-block: 24px 40px;
  }
  .hero-stage .product-image {
    max-width: 230px;
  }
  .hero h1 {
    font-size: clamp(4rem, 6vw, 5.6rem);
  }
  .weather-signoff {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
