:root {
  color-scheme: light;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: #fff1f2;
  color: #3a0d11;
}
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.admin-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.admin-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 18, 27, 0.12);
  color: #820014;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.admin-toolbar a:hover {
  background: rgba(181, 18, 27, 0.22);
  box-shadow: 0 8px 24px rgba(130, 0, 20, 0.18);
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.header-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(28px, 4vw, 36px);
  color: #820014;
  letter-spacing: 0.8px;
}
.brand-logo {
  height: 54px;
  width: auto;
}
.brand-title span {
  display: inline-block;
}
@media (max-width: 520px) {
  .brand-logo {
    height: 44px;
  }
  .brand-title {
    gap: 12px;
  }
}
.unit-toggle {
  display: inline-flex;
  border-radius: 999px;
  background: #ffe2e6;
  padding: 4px;
  border: 1px solid rgba(181, 18, 27, 0.22);
}
.unit-option {
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #820014;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.unit-option .flag {
  font-size: 18px;
  line-height: 1;
}
.unit-option.is-active {
  background: #b5121b;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(181, 18, 27, 0.28);
}
.card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(130, 0, 20, 0.12);
  padding: 28px 30px 32px;
  margin: 0;
  position: relative;
}
.card h2 {
  margin-top: 0;
  font-size: 22px;
  color: #820014;
}
.layout {
  display: grid;
  gap: 28px;
}
.layout-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.experience-tier {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: #ffe2e6;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(181, 18, 27, 0.18);
}
.experience-tier__option {
  background: transparent;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #820014;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.experience-tier__option.is-active {
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(181, 18, 27, 0.16);
}
.experience-tier__option.is-locked {
  position: relative;
}
.experience-tier__label {
  font-size: 16px;
}
.experience-tier__description {
  font-size: 13px;
  color: #7d2932;
  font-weight: 500;
}
.experience-tier__option.is-locked .experience-tier__description::before {
  content: '🔒 ';
}
@media (max-width: 720px) {
  .experience-tier {
    grid-template-columns: 1fr;
  }
  .experience-tier__option {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .experience-tier__label {
    font-size: 15px;
  }
  .experience-tier__description {
    font-size: 12px;
  }
}
.layout-aside {
  position: static;
  align-self: stretch;
  z-index: auto;
}
@media (min-width: 1024px) {
  .layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: flex-start;
  }
  .layout-aside {
    position: sticky;
    top: 24px;
    align-self: flex-start;
    z-index: 10;
  }
}
.grid {
  display: grid;
  gap: clamp(16px, 2.6vw, 26px);
}
.grid-two {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.section-grid.grid-two {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-grid.grid-two {
    grid-template-columns: 1fr;
  }
}
.input-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.area-preset-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.area-message {
  font-size: 14px;
  color: #5d0c17;
  background: rgba(181, 18, 27, 0.08);
  padding: 10px 12px;
  border-radius: 12px;
}
.area-message strong {
  color: #b5121b;
}
.area-message__hint {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #7d2932;
}
.section-block {
  background: #fff7f8;
  border-radius: 16px;
  padding: 22px 24px 26px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
}
.section-heading {
  margin-bottom: 16px;
}
.section-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b5121b;
}
.section-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #7d2932;
}
.section-disclaimer {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(33, 36, 44, 0.75);
}
.section-grid {
  margin-top: 10px;
}
.product-line-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-panel {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(181, 18, 27, 0.08);
}
.info-panel h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #820014;
}
.info-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5d0c17;
}
.info-panel-list li span {
  font-weight: 600;
}
.input-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.input-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.value-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(181, 18, 27, 0.08);
  color: #820014;
  font-weight: 600;
  width: fit-content;
}
.value-pill-label {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.78;
}
.value-pill-value {
  font-size: 18px;
}
.value-pill-unit {
  font-size: 13px;
  opacity: 0.72;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5d0c17;
}
input[type="number"],
input[type="text"],
select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #f3b9be;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
  border-color: #b5121b;
  box-shadow: 0 0 0 3px rgba(181, 18, 27, 0.18);
  outline: none;
}
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #b5121b 50%),
  linear-gradient(135deg, #b5121b 50%, transparent 50%),
  linear-gradient(to right, #ffe2e6, #ffe2e6);
  background-position: calc(100% - 18px) calc(50% - 4px),
  calc(100% - 12px) calc(50% - 4px),
  calc(100% - 2.5rem) 0.6rem;
  background-size: 6px 6px, 6px 6px, 1px 70%;
  background-repeat: no-repeat;
}
.input-with-suffix {
  position: relative;
}
.input-with-suffix .suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #820014;
  font-weight: 600;
  pointer-events: none;
}
.results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.results-card {
  box-shadow: 0 16px 38px rgba(130, 0, 20, 0.18);
}
.results-grid {
  display: grid;
  gap: 16px;
}
.results-grid--primary {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.results-grid--secondary {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.result-tile {
  border-radius: 16px;
  padding: 20px 22px;
  background: linear-gradient(130deg, #b5121b, #ff6b7c);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.result-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}
.result-tile--stat {
  background: #ffffff;
  color: #820014;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
}
.result-tile--stat::after {
  display: none;
}
.result-tile h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.result-tile--stat h3 {
  font-size: 18px;
  letter-spacing: 0.4px;
  text-transform: none;
  color: #820014;
}
.result-tile p {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}
.result-tile .result-stat {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.result-tile .result-stat__unit {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.result-unit {
  font-size: 16px;
  font-weight: 500;
}
.mobile-impact .result-unit {
  font-size: 14px;
  font-weight: 600;
}
.result-secondary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.16);
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 14px;
}
.result-tile--stat .result-secondary {
  background: rgba(181, 18, 27, 0.08);
  color: #5d0c17;
}
.result-tile .result-note {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.result-tile--stat .result-note {
  color: #5d0c17;
}
.badge-stack {
  display: grid;
  gap: 8px;
  margin: 8px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.badge.badge-positive {
  background: rgba(36, 142, 68, 0.38);
  color: #ffffff;
}
.result-tile--stat .result-stat {
  color: #b5121b;
}
.result-tile--stat .result-stat__unit {
  color: #820014;
}
.result-tile--stat .badge {
  background: rgba(181, 18, 27, 0.12);
  color: #820014;
}
.result-tile--stat .badge.badge-positive {
  background: rgba(15, 108, 47, 0.16);
  color: #0f6c2f;
}
.compliance-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #5d0c17;
}
.visual-comparison {
  margin-top: 24px;
  background: #fff7f8;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.visual-header h3 {
  margin: 0;
  font-size: 18px;
  color: #820014;
}
.visual-header p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #7d2932;
}
.chart-surface--comparison {
  min-height: 320px;
}
.visual-summary {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .visual-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.visual-summary__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visual-summary__item h4 {
  margin: 0;
  font-size: 15px;
  color: #820014;
}
.visual-summary__values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #5d0c17;
}
.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 247, 248, 0.9);
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.1);
}
.results-actions .button-secondary {
  flex: 1 1 220px;
  min-width: 200px;
  margin-top: 0;
}
.share-message {
  min-height: 18px;
  margin: 4px 0 0;
  font-size: 13px;
  color: #5d0c17;
}
.share-message.is-success {
  color: #0f7a39;
}
.share-message.is-error {
  color: #b5121b;
}
.share-disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(181, 18, 27, 0.06);
  color: rgba(33, 36, 44, 0.84);
  font-size: 13px;
  line-height: 1.5;
}
.share-disclaimer__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #b5121b;
}
.pdf-export-root {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 1024px;
  padding: 24px 0 32px;
  background: #ffffff;
  color: inherit;
  z-index: -1;
  visibility: hidden;
  pointer-events: none;
}
.page--pdf {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 48px 54px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(58, 13, 17, 0.08);
}
.page--pdf .layout {
  gap: 32px;
}
.page--pdf .layout-aside {
  position: static;
  align-self: stretch;
}
.page--pdf .projection.hidden {
  display: block !important;
}
.pdf-report-meta {
  margin: 6px 0 0;
  font-size: 14px;
  color: #7d2932;
  font-weight: 500;
}
.pdf-report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b5121b, #ff6075);
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.page--pdf input,
.page--pdf select,
.page--pdf button {
  pointer-events: none;
}
.page--pdf .results-actions,
.page--pdf .save-panel,
.page--pdf .load-panel,
.page--pdf #share-calculation-message,
.page--pdf #pdf-export-message {
  display: none !important;
}
.pdf-pro-actions {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 226, 230, 0.6);
  border: 1px solid rgba(181, 18, 27, 0.18);
}
.pdf-pro-actions h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #820014;
}
.pdf-pro-actions p {
  margin: 0;
  font-size: 14px;
  color: #5d0c17;
}
.save-panel {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff7f8;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
}
.save-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.save-panel input[type="text"],
.save-panel input[type="email"] {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(181, 18, 27, 0.22);
  font-size: 15px;
  color: #3a0d11;
}
.load-panel__results {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.load-panel__empty {
  margin: 0;
  font-size: 14px;
  color: #5d0c17;
}
.load-panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
}
.load-panel__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.load-panel__item-name {
  font-weight: 600;
  color: #3a0d11;
}
.load-panel__item-meta {
  font-size: 12px;
  color: #7a5c60;
}
.load-panel__load {
  flex-shrink: 0;
}
.save-panel__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.save-panel__cancel {
  background: transparent;
  border: 0;
  color: #820014;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.save-panel__cancel:hover,
.save-panel__cancel:focus-visible {
  outline: none;
  background: rgba(181, 18, 27, 0.08);
}
.save-panel__message {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  color: #5d0c17;
}
.save-panel__message.is-success {
  color: #0f7a39;
}
.save-panel__message.is-error {
  color: #b5121b;
}
.button-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 12px 22px;
  background: #b5121b;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}
.button-link:hover {
  background: #8e0e1d;
  transform: translateY(-1px);
}
.zip-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  background: #fff7f8;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
}
.zip-label-group {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 100%;
}
.zip-label-group > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #7d2932;
}
.info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  background: #b5121b;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.info-badge:hover {
  background: #820014;
}
.info-badge:focus-visible {
  outline: 2px solid rgba(181, 18, 27, 0.4);
  outline-offset: 2px;
}
.info-popover {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff6f7;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 18px 32px rgba(130, 0, 20, 0.18);
  max-width: min(320px, calc(100vw - 64px));
  z-index: 15;
}
.info-popover.hidden {
  display: none;
}
.info-popover p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5d0c17;
}
.degree-day-wrapper {
  margin-top: 18px;
}
.degree-day-layout {
  display: grid;
  gap: 16px;
  align-items: flex-start;
}
.degree-day-panel {
  background: #fff7f8;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.08);
}
.degree-day-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
@media (min-width: 768px) {
  .degree-day-layout {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  }
}
.zip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zip-row button {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 15px;
  background: #ffe2e6;
  color: #820014;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.zip-row button:hover {
  background: #ffd3d9;
  color: #b5121b;
}
.product-preview {
  margin-top: 14px;
  display: flex;
  gap: 20px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(181, 18, 27, 0.06);
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}
.product-preview-media {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(181, 18, 27, 0.16);
}
.product-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-preview-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.product-preview-title {
  margin: 0;
  font-size: 18px;
  color: #820014;
}
.product-preview-meta {
  margin: 0;
  font-weight: 600;
  color: #5d0c17;
}
.product-preview-text {
  margin: 0;
  font-size: 13px;
  color: #7d2932;
  line-height: 1.55;
  white-space: pre-line;
}
.product-info-button {
  align-self: flex-start;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #b5121b, #ff6075);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(181, 18, 27, 0.25);
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-info-button:hover,
.product-info-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(181, 18, 27, 0.32);
}
.heating-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}
.heating-table thead {
  background: rgba(181, 18, 27, 0.08);
  color: #5d0c17;
}
.heating-table th,
.heating-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #f3b9be;
}
.heating-table tbody tr:last-child td {
  border-bottom: none;
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(181, 18, 27, 0.12);
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 226, 230, 0.95), rgba(255, 182, 193, 0.9));
  color: #6c0614;
  box-shadow: 0 12px 26px rgba(181, 18, 27, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(255, 210, 216, 1), rgba(255, 160, 176, 0.95));
  box-shadow: 0 16px 30px rgba(181, 18, 27, 0.24);
}
.button-icon {
  font-size: 18px;
  line-height: 1;
}
.button-label {
  display: inline-flex;
  align-items: center;
}
.button-secondary--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 22px;
  padding-right: 22px;
}
.button-secondary--with-icon .button-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button-secondary--with-icon .button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  text-align: center;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #b5121b, #e74352);
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(130, 0, 20, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button-primary:hover,
.button-primary:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #9d0f16, #cf2f40);
  box-shadow: 0 24px 40px rgba(130, 0, 20, 0.4);
}
.button-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}
.projection {
  grid-column: 1 / -1;
  margin-top: 0;
  border-radius: 16px;
  background: #fff7f8;
  padding: 20px 22px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
}
.projection-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7d2932;
}
.projection-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.projection-controls label {
  margin-bottom: 0;
}
.projection-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(181, 18, 27, 0.18);
  background: #ffffff;
  margin-bottom: 16px;
}
.projection-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.projection-table th,
.projection-table td {
  padding: 10px 14px;
  text-align: left;
}
.projection-table th {
  background: rgba(181, 18, 27, 0.08);
  font-weight: 600;
  color: #51171b;
}
.projection-table tbody tr:nth-child(even) {
  background: rgba(181, 18, 27, 0.05);
}
.projection-table tbody tr:nth-child(odd) {
  background: transparent;
}
.pro-preview-card {
  margin-top: 26px;
  padding: 24px 26px 30px;
  border-radius: 20px;
  background: linear-gradient(155deg, #fff5f6 0%, #ffe1e7 48%, #fff9f9 100%);
  border: 1px solid rgba(181, 18, 27, 0.16);
  box-shadow: 0 20px 44px rgba(130, 0, 20, 0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.pro-preview-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 234, 238, 0.2) 60%, transparent 100%);
  pointer-events: none;
}
.pro-preview-card.is-dismissed {
  display: none;
}
.pro-preview-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.pro-preview-card__header h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  color: #820014;
}
.pro-preview-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px 6px;
  border-radius: 999px;
  background: #b5121b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  box-shadow: 0 10px 18px rgba(181, 18, 27, 0.28);
}
.pro-preview-card__intro {
  margin: 0;
  color: #5d0c17;
  line-height: 1.55;
  font-size: 15px;
}
.pro-preview-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.pro-preview-card__item {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 16px 18px 18px;
  box-shadow: 0 12px 28px rgba(181, 18, 27, 0.12);
  border: 1px solid rgba(181, 18, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-preview-card__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #a01019;
}
.pro-preview-card__value {
  font-size: 22px;
  font-weight: 700;
  color: #820014;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}
.pro-preview-card__value--icons {
  font-size: 19px;
}
.pro-preview-card__hint {
  font-size: 13px;
  color: #7d2932;
}
.pro-preview-card__cta {
  align-self: center;
  margin-inline: auto;
  padding-inline: 22px;
  box-shadow: 0 12px 24px rgba(181, 18, 27, 0.22);
}
.pro-preview-card__footnote {
  margin: 0;
  font-size: 12px;
  color: #7d2932;
  text-align: center;
}
@media (max-width: 900px) {
  .pro-preview-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .pro-preview-card__grid {
    grid-template-columns: 1fr;
  }
}
[data-pro-obscured] {
  color: rgba(130, 0, 20, 0.8);
  letter-spacing: 0.08em;
}
.is-tier-locked {
  position: relative;
}
.is-tier-locked > :not(.tier-lock) {
  filter: blur(3px);
  opacity: 0.35;
  pointer-events: none;
}
.is-tier-locked .tier-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  border-radius: inherit;
  background: rgba(255, 241, 242, 0.95);
  border: 1px dashed rgba(181, 18, 27, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  z-index: 5;
}
.tier-lock__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #a01019;
}
.tier-lock__text {
  margin: 0;
  font-size: 15px;
  color: #5d0c17;
  line-height: 1.4;
}
.tier-lock__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-size: 13px;
  color: #820014;
}
.tier-lock__list li {
  background: rgba(255, 226, 230, 0.6);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
}
.tier-lock__cta {
  margin-top: 6px;
}
.chart-surface {
  width: 100%;
  min-height: 280px;
}
.zip-hint {
  font-size: 13px;
  color: #7d2932;
  margin: 0;
}
.zip-feedback {
  font-size: 14px;
  margin: 0;
  color: #b5121b;
}
.zip-feedback.error {
  color: #c81d25;
}
.zip-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #5d0c17;
}
.zip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #7d2932;
}
.zip-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden {
  display: none !important;
}
.is-tier-hidden {
  display: none !important;
}
.mobile-impact {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px 18px;
  background: rgba(255, 244, 245, 0.9);
  backdrop-filter: blur(16px);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-top: 1px solid rgba(181, 18, 27, 0.18);
  box-shadow: 0 -26px 50px rgba(130, 0, 20, 0.22);
  z-index: 180;
  gap: 16px;
  align-items: stretch;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-impact.is-visible {
  display: flex;
}
.mobile-impact:not(.is-expanded) {
  padding: 12px 18px 18px;
  gap: 12px;
  max-height: clamp(120px, 22vh, 240px);
}
.mobile-impact.is-expanded {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.mobile-impact__metrics {
  display: flex;
  gap: 12px 20px;
  flex: 1 1 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mobile-impact__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: #820014;
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
}
.mobile-impact__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.7;
}
.mobile-impact__value {
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.mobile-impact__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #b5121b, #ff6075);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 14px 32px rgba(181, 18, 27, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mobile-impact__details:focus-visible,
.mobile-impact__details:hover {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(181, 18, 27, 0.38);
}
.mobile-impact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 13, 17, 0.45);
  z-index: 170;
  display: none;
}
.mobile-impact-overlay:not(.hidden) {
  display: block;
}
.mobile-impact-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #b5121b;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(181, 18, 27, 0.22);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mobile-impact-close:focus-visible,
.mobile-impact-close:hover {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(181, 18, 27, 0.28);
}
body.no-scroll {
  overflow: hidden;
}
@media (min-width: 981px) {
  .mobile-impact,
  .mobile-impact-overlay {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .card.results-card {
    display: block;
    padding: 24px 24px 32px;
  }
  .card.results-card.is-mobile-open {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    border-radius: 18px;
    max-height: none;
    overflow: visible;
    box-shadow: 0 18px 44px rgba(58, 13, 17, 0.18);
    z-index: auto;
  }
  .card.results-card.is-mobile-open .mobile-impact-close {
    display: flex;
  }
  .mobile-impact {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 20px 22px;
    background: rgba(255, 247, 248, 0.94);
    border-radius: 18px;
    border: 1px solid rgba(181, 18, 27, 0.16);
    box-shadow: 0 18px 40px rgba(130, 0, 20, 0.14);
    backdrop-filter: none;
    gap: 18px;
    margin-top: 18px;
    z-index: auto;
  }
  .mobile-impact:not(.is-expanded) {
    padding: 20px 22px;
    max-height: none;
  }
  .mobile-impact.is-visible {
    display: flex;
  }
  .mobile-impact__metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .mobile-impact__metric {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(181, 18, 27, 0.12);
  }
  .mobile-impact__value {
    white-space: normal;
  }
  .mobile-impact__details {
    display: none;
  }
  .mobile-impact-overlay {
    display: none !important;
  }
  .results-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .results-actions .button-secondary {
    flex: 1 1 auto;
    width: 100%;
  }
}
.profile-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 440;
  padding: 20px;
}
.profile-modal:not(.hidden) {
  display: flex;
}
.profile-modal__content {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(58, 13, 17, 0.2);
  padding: 26px 28px 30px;
  max-width: 420px;
  width: 100%;
  position: relative;
  max-height: min(90vh, 640px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.profile-modal__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fdf6f7;
  box-shadow: 0 16px 34px rgba(181, 18, 27, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.profile-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 26px;
  color: #b5121b;
  cursor: pointer;
}
.profile-modal__close:focus,
.profile-modal__close:hover {
  outline: none;
  color: #820014;
}
.profile-modal__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #5d0c17;
  flex: 1;
  min-height: 0;
}
.profile-modal__title {
  margin: 0;
  font-size: 20px;
  color: #820014;
}
.profile-modal__meta {
  margin: 0;
  font-weight: 600;
}
.profile-modal__text {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  white-space: pre-line;
}
.profile-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 13, 17, 0.45);
  z-index: 430;
  display: none;
}
.profile-modal__backdrop:not(.hidden) {
  display: block;
}
.lead-capture {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 40px));
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(130, 0, 20, 0.24);
  z-index: 460;
  padding: 26px 28px;
}
.lead-capture__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-capture__close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #820014;
}
.lead-capture__title {
  margin: 0;
  font-size: 20px;
  color: #820014;
}
.lead-capture__description {
  margin: 0;
  font-size: 14px;
  color: #5d0c17;
}
.lead-capture__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-capture__form input[type="email"] {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(181, 18, 27, 0.22);
  font-size: 15px;
  color: #3a0d11;
}
.lead-capture__message {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  color: #b5121b;
}
.lead-capture__message.is-success {
  color: #0f7a39;
}
.lead-capture__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 13, 17, 0.45);
  z-index: 450;
  display: none;
}
.lead-capture__backdrop:not(.hidden) {
  display: block;
}

.wizard-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(8, 12, 27, 0.78);
  backdrop-filter: blur(6px);
  z-index: 400;
}

.wizard-overlay:not(.hidden) {
  display: flex;
}

.wizard {
  position: relative;
  width: min(720px, 100%);
  max-height: min(640px, 100%);
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(18, 21, 32, 0.32);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wizard__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #2d2f3a;
  cursor: pointer;
}

.wizard__progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
  padding: 24px 32px 16px;
  background: linear-gradient(135deg, #f4f6ff, #eef1ff);
}

.wizard-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a6075;
}

.wizard-progress__index {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(90, 96, 117, 0.35);
  background: #ffffff;
  font-weight: 600;
}

.wizard-progress__step.is-active .wizard-progress__index {
  border-color: #b5121b;
  background: #b5121b;
  color: #ffffff;
}

.wizard-progress__step.is-complete .wizard-progress__index {
  border-color: rgba(181, 18, 27, 0.85);
  background: rgba(181, 18, 27, 0.1);
  color: #b5121b;
}

.wizard-progress__label {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.wizard__body {
  padding: 28px 32px 0;
  overflow-y: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wizard__title {
  margin: 0;
  font-size: 24px;
  color: #171a29;
}

.wizard__description {
  margin: 0;
  color: #51586f;
  font-size: 16px;
  line-height: 1.5;
}

.wizard__description.is-hidden {
  display: none;
}

.wizard__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wizard__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #4b526a;
}

.wizard__text strong {
  color: #171a29;
}

.wizard__fallback {
  margin: 0;
  font-weight: 600;
  color: #b5121b;
}

.wizard__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 32px 28px;
  border-top: 1px solid rgba(23, 26, 41, 0.08);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
}

.wizard__button {
  flex: 1 1 0;
  border-radius: 999px;
  border: 1px solid rgba(181, 18, 27, 0.28);
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #ffffff;
  color: #b5121b;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.wizard__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wizard__button:not(:disabled):hover,
.wizard__button:not(:disabled):focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(181, 18, 27, 0.12);
}

.wizard__button--primary {
  background: #b5121b;
  color: #ffffff;
  border-color: #b5121b;
}

.wizard__content .section-block,
.wizard__content .card {
  box-shadow: none;
  border: none;
  padding: 0;
}

.wizard__content .section-heading {
  margin-bottom: 12px;
}

.wizard__content .section-grid,
.wizard__content .degree-day-wrapper,
.wizard__content .grid {
  margin-top: 0;
}

.wizard__content .results-card {
  padding: 0;
}

.wizard-launch {
  margin: 18px 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.wizard-launch__button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #b5121b, #e43a45);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(181, 18, 27, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wizard-launch__button:focus-visible,
.wizard-launch__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 45px rgba(181, 18, 27, 0.35);
}

.wizard-launch__note {
  margin: 0;
  color: #5a6075;
  font-size: 15px;
}

.wizard-section {
  animation: wizardSlideIn 0.3s ease;
}

@keyframes wizardSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-placeholder {
  display: none !important;
}

body.wizard-open {
  overflow: hidden;
}

.wizard__content .product-preview {
  margin-top: 18px;
}

.site-footer {
  margin: 64px auto 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(181, 18, 27, 0.2);
  text-align: center;
  font-size: 14px;
  color: #5d0c17;
}

.site-footer p {
  margin: 0;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .wizard-overlay {
    padding: 18px;
  }
  .wizard {
    width: min(100%, 560px);
    max-height: 92vh;
  }
  .wizard__progress {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    padding: 20px 20px 12px;
  }
  .wizard__body {
    padding: 22px 20px 0;
  }
  .wizard__controls {
    flex-direction: column;
    padding: 18px 20px 22px;
  }
  .wizard__button {
    width: 100%;
  }
  .wizard-launch {
    align-items: stretch;
  }
  .wizard-launch__button {
    width: 100%;
    text-align: center;
  }
  .page {
    padding: 26px 18px 120px;
  }
  .layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .layout-aside {
    order: 3;
    position: static;
    top: auto;
  }
  .card.results-card {
    padding: 24px 20px 30px;
  }
  .results {
    gap: 16px;
  }
  .result-tile {
    padding: 18px 18px;
  }
  .result-tile p {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .input-grid-three,
  .degree-day-grid,
  .degree-day-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .zip-row {
    flex-direction: column;
  }
  .zip-row button {
    width: 100%;
    padding: 12px 16px;
  }
  .product-preview {
    flex-direction: column;
  }
  .product-preview-media {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .product-info-button {
    width: 100%;
    text-align: center;
  }
  .area-message {
    font-size: 13px;
  }
  .mobile-impact {
    padding: 16px 18px 20px;
    gap: 16px;
  }
  .mobile-impact__metrics {
    grid-template-columns: minmax(0, 1fr);
  }
  .mobile-impact__metric {
    padding: 12px 14px;
  }
  .mobile-impact__value {
    font-size: 18px;
  }
  .card.results-card {
    padding: 22px 18px 28px;
  }
  .result-tile {
    padding: 16px 18px;
  }
  .result-tile p {
    font-size: 22px;
  }
  .result-secondary {
    font-size: 14px;
    gap: 6px;
  }
  .site-footer {
    margin: 48px auto 24px;
    font-size: 13px;
  }
}
