:root {
  --bg: #cbeee1;
  --bg-deep: #a9d9c7;
  --line: rgba(71, 126, 108, 0.2);
  --mint: #59c4a3;
  --mint-bright: #327f69;
  --text: #123127;
  --muted: #55756a;
  --paper: #f4f0e8;
  --paper-soft: #faf7f1;
  --slate: #1f2b29;
  --warning: #ffe4b5;
  --shadow: 0 26px 64px rgba(38, 87, 72, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1380px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: #f4fff9;
  background:
      radial-gradient(ellipse at left center, rgba(8, 28, 22, 0.42), transparent 34%),
      radial-gradient(ellipse at right center, rgba(8, 28, 22, 0.42), transparent 34%),
      radial-gradient(circle at top left, rgba(155, 242, 208, 0.18), transparent 32%),
      radial-gradient(circle at 80% 12%, rgba(118, 230, 196, 0.14), transparent 26%),
      linear-gradient(180deg, #16372e 0%, #1a4036 45%, #123329 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  padding: 28px;
}

.ambient,
.mist {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  top: 12%;
  left: -8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(130, 255, 215, 0.22), transparent 70%);
  filter: blur(24px);
}

.ambient-right {
  right: -10%;
  top: 36%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(102, 221, 194, 0.18), transparent 70%);
  filter: blur(36px);
}

.mist-top,
.mist-bottom {
  left: 0;
  width: 100%;
  height: 14rem;
  background: linear-gradient(180deg, rgba(230, 255, 246, 0.08), transparent);
  filter: blur(22px);
}

.mist-top {
  top: 0;
}

.mist-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.topbar,
.hero,
.section,
.section-tight {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px 14px 12px;
  margin-bottom: 48px;
  background: rgba(220, 238, 230, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  position: sticky;
  top: 18px;
  z-index: 20;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(91, 181, 146, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 253, 247, 0.76), rgba(211, 241, 229, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 22px rgba(52, 110, 89, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(213, 255, 238, 0.22);
  background:
      radial-gradient(circle at 30% 30%, rgba(246, 255, 251, 0.62), rgba(170, 220, 201, 0.9)),
      rgba(205, 237, 225, 0.94);
  box-shadow:
      0 0 0 12px rgba(229, 248, 241, 0.98),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.nav {
  display: inline-flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(91, 181, 146, 0.2);
  background: linear-gradient(135deg, rgba(240, 253, 247, 0.74), rgba(211, 241, 229, 0.56));
  white-space: nowrap;
  font-weight: 700;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--mint-bright);
  border-color: rgba(91, 181, 146, 0.28);
  background: linear-gradient(135deg, rgba(248, 255, 252, 0.86), rgba(221, 246, 236, 0.7));
  transform: translateY(-1px);
}

.topbar-actions,
.hero-contact,
.contact-banner-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.topbar-actions {
  flex: 0 0 auto;
}

.contact-pill,
.hero-contact a,
.support-card a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(91, 181, 146, 0.18);
  background: linear-gradient(135deg, rgba(240, 253, 247, 0.76), rgba(211, 241, 229, 0.58));
  color: var(--mint-bright);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 26px;
  padding: 24px 0 24px;
}

.page-hero {
  width: var(--content-width);
  margin: 0 auto;
}

.page-hero {
  padding: 72px 0 0;
}

.home-heading {
  max-width: 780px;
}

.glass-panel,
.glass-card {
  background: linear-gradient(180deg, rgba(243, 253, 248, 0.76), rgba(195, 228, 216, 0.7));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  color: var(--text);
}

#experience .glass-card,
#sources .glass-card,
.contact-banner.glass-panel,
.estimate-output.glass-panel {
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.96), rgba(244, 240, 232, 0.9));
  border-color: rgba(78, 92, 88, 0.14);
}

.hero-copy,
.rebate-toolbar,
.estimate-form,
.estimate-output,
.utility-card {
  border-radius: var(--radius-xl);
}

.hero-copy,
.estimate-form,
.estimate-output {
  padding: 30px;
}

.hero-copy {
  padding: 58px 62px;
  background: linear-gradient(180deg, rgba(242, 251, 247, 0.78), rgba(205, 232, 221, 0.68));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-trust-pill {
  min-height: 36px;
  padding: 0 14px;
  background: rgba(155, 242, 208, 0.12);
  border-color: rgba(155, 242, 208, 0.18);
}

.hero-trust-copy {
  color: var(--mint-bright);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero-text,
.section-heading p:last-child {
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-text {
  color: #315047;
}

.section-heading p:last-child {
  color: rgba(241, 255, 249, 0.94);
  max-width: 48rem;
}

.glass-card p,
.estimate-output > p,
.source-card p,
.utility-card p,
.fine-print,
.result-card p,
.result-card span,
.lead-capture-placeholder p,
.surge-highlight p,
.support-card p,
.contact-banner p,
.footer-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

#experience .section-heading p:last-child,
#rebates .section-heading p:last-child,
#sources .section-heading p:last-child {
  color: rgba(232, 255, 245, 0.96);
}

#experience .glass-card p,
#sources .glass-card p,
.contact-banner p,
.estimate-output > p {
  color: #425a52;
}

.hero-text {
  max-width: 44rem;
  margin-top: 20px;
}

.hero-subnote {
  margin-top: 14px;
  color: #44625a;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-contact {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 34px;
  border: 1px solid rgba(213, 255, 238, 0.16);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 30px rgba(52, 110, 89, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.34), transparent 36%);
  pointer-events: none;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 32px rgba(52, 110, 89, 0.18);
}

.button-primary {
  background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 40%),
      linear-gradient(135deg, rgba(186, 245, 223, 0.84) 0%, rgba(98, 197, 164, 0.58) 100%);
  color: #18483a;
  border-color: rgba(91, 181, 146, 0.28);
}

.button-secondary,
.button-ghost {
  background:
      radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.44), transparent 38%),
      linear-gradient(135deg, rgba(240, 253, 247, 0.74), rgba(211, 241, 229, 0.56));
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-metrics,
.trust-grid,
.card-grid,
.sources-grid,
.form-grid,
.photo-grid {
  display: grid;
  gap: 18px;
}

.pill-row,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics,
.trust-grid,
.card-grid,
.sources-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.trust-grid > :last-child {
  grid-column: 1 / -1;
}

.card-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.card-grid > :first-child {
  grid-column: 1 / -1;
}

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

.hero-metrics {
  margin-top: 32px;
  gap: 16px;
}

.hero-metrics article,
.result-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(228, 244, 237, 0.82);
  border: 1px solid rgba(82, 142, 122, 0.18);
}

#experience .glass-card,
#sources .glass-card {
  padding: 28px;
}

.hero-metrics strong,
.result-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-metrics span,
.result-card span {
  color: #48675d;
  font-size: 0.98rem;
  line-height: 1.58;
}

.forest-frame {
  position: relative;
  min-height: 664px;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(245, 255, 250, 0.88), rgba(193, 236, 221, 0.48));
  border: 1px solid rgba(91, 181, 146, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.forest-frame img {
  width: 100%;
  height: 100%;
  min-height: 628px;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(1.13);
  transform-origin: center center;
  border-radius: 28px;
  filter: saturate(0.86) brightness(0.82) contrast(1.02);
}

.install-banner {
  overflow: hidden;
}

.simple-section {
  padding-top: 80px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-strip .glass-card {
  padding: 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.simple-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.text-link {
  color: #dffcf1;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffffff;
}

.install-banner-header {
  max-width: 720px;
  margin-bottom: 24px;
}

.install-banner-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.install-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
}

.install-marquee::before,
.install-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(11vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.install-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 51, 41, 1), rgba(18, 51, 41, 0));
}

.install-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(18, 51, 41, 1), rgba(18, 51, 41, 0));
}

.install-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: install-scroll 60s linear infinite;
}

.install-shot {
  flex: 0 0 clamp(320px, 28vw, 430px);
  height: clamp(250px, 26vw, 340px);
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(20, 44, 36, 0.88), rgba(33, 68, 56, 0.72));
  border: 1px solid rgba(244, 240, 232, 0.18);
  box-shadow: 0 20px 44px rgba(7, 25, 21, 0.22);
  overflow: hidden;
}

.install-shot img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: contain;
  object-position: center center;
  filter: none;
  transform: none;
  backface-visibility: hidden;
  image-rendering: auto;
}

.shot-center img {
  object-position: 50% 44%;
}

.shot-right img {
  object-position: 86% 50%;
}

.shot-right-deep img {
  object-position: 92% 50%;
}

.reflection {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -6%;
  height: 32%;
  background: linear-gradient(180deg, rgba(123, 242, 205, 0.2), rgba(123, 242, 205, 0));
  filter: blur(18px);
  transform: scaleY(-1);
  opacity: 0.55;
}

.visual-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
}

.visual-overlay p {
  font-weight: 600;
  color: #28473e;
}

.section {
  padding: 92px 0 0;
}

.section-tight {
  padding-top: 30px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 18px;
}

#experience .section-heading,
#sources .section-heading {
  max-width: 760px;
}

.glass-card,
.utility-card,
.rebate-toolbar {
  padding: 24px;
}

.rebate-toolbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 22px;
}

.rebate-toolbar label,
.estimate-form label {
  display: grid;
  gap: 10px;
  color: #23453a;
  font-weight: 700;
}

.label-title {
  color: var(--text);
  font-weight: 700;
}

.rebate-toolbar select,
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(82, 142, 122, 0.2);
  border-radius: 24px;
  background: rgba(244, 253, 249, 0.88);
  color: var(--text);
  font-size: 1rem;
}

.rebate-results {
  display: grid;
  gap: 18px;
}

.utility-top,
.card-actions,
.result-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.utility-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(213, 255, 238, 0.08);
  border: 1px solid rgba(213, 255, 238, 0.08);
  color: var(--mint-bright);
  font-size: 0.88rem;
  font-weight: 700;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.form-grid,
.photo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid {
  margin-top: 18px;
}

.estimator-intro,
.lead-capture-placeholder {
  margin-bottom: 22px;
}

.load-section {
  margin-bottom: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: none;
  background: rgba(216, 255, 240, 0.04);
}

.load-calc-container.is-collapsed .progress-shell,
.load-calc-container.is-collapsed .form-grid > label:not(:first-child),
.load-calc-container.is-collapsed .section-minihead.appliance-head,
.load-calc-container.is-collapsed .appliance-grid,
 .load-calc-container.is-collapsed .load-grid,
 .load-calc-container.is-collapsed .load-followup-grid,
 .load-calc-container.is-collapsed > .field-hint {
  display: none;
}

.collapsible-block.is-collapsed {
  display: none;
}

.section-toggle-row {
  margin-top: 22px;
}

.section-toggle {
  display: grid;
  gap: 14px;
  max-width: 560px;
  color: #f1fff9;
  font-weight: 600;
  font-size: 1.08rem;
}

.section-toggle span {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  font-weight: 800;
  color: #f8fffc;
}

.section-toggle select {
  border: 1px solid rgba(91, 181, 146, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(240, 253, 247, 0.78), rgba(211, 241, 229, 0.64));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 22px rgba(52, 110, 89, 0.08);
  backdrop-filter: blur(16px);
  min-height: 66px;
  padding: 0 20px;
  font-size: 1.02rem;
  font-weight: 700;
}

.section-minihead {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-minihead p,
.load-card p {
  color: #48675d;
  line-height: 1.72;
  font-size: 1rem;
}

.lead-capture-placeholder,
.surge-highlight {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(213, 255, 238, 0.12);
  background: rgba(216, 255, 240, 0.08);
}

.load-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.progress-shell {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: none;
  background: rgba(213, 255, 238, 0.06);
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.progress-top span {
  color: #48675d;
  font-size: 0.98rem;
}

.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(213, 255, 238, 0.08);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--mint) 0%, #75d8b7 100%);
  transition: width 180ms ease;
}

.appliance-head {
  margin-top: 10px;
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.appliance-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: rgba(213, 255, 238, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.appliance-title {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.appliance-title span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.appliance-inputs {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}

.result-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: rgba(213, 255, 238, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 600;
}

.check-card input {
  width: 18px;
  height: 18px;
}

.check-card-static {
  opacity: 0.85;
}

.field-hint,
.lead-capture-placeholder p {
  color: #4d6e63;
  font-size: 0.98rem;
  line-height: 1.62;
}

.county-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hidden-field {
  display: none !important;
}

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

.manual-utility {
  transition: opacity 180ms ease;
}

.full-span {
  grid-column: 1 / -1;
}

.form-feedback {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.form-feedback-success,
.form-feedback-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.form-feedback-success {
  color: #163e32;
  background: rgba(212, 255, 232, 0.5);
  border: 1px solid rgba(93, 183, 149, 0.25);
}

.form-feedback-error {
  color: #6b2d24;
  background: rgba(255, 229, 223, 0.72);
  border: 1px solid rgba(197, 110, 90, 0.22);
}

.estimate-form.is-submitting,
.estimate-form.is-submitting button,
#contactForm.is-submitting,
#contactForm.is-submitting button {
  cursor: progress;
}

.estimate-form.is-submitting .button,
#contactForm.is-submitting .button {
  opacity: 0.82;
}

.result-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.estimate-total-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(179, 240, 216, 0.44), rgba(235, 250, 244, 0.62));
  border: 1px solid rgba(91, 181, 146, 0.2);
}

.estimate-total-card strong {
  display: block;
  margin: 6px 0 10px;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 1;
  text-align: right;
}

.estimate-total-card p {
  color: #3d5d53;
  line-height: 1.72;
  font-size: 1rem;
}

.result-line {
  padding-top: 14px;
  border-top: 1px solid rgba(213, 255, 238, 0.08);
  color: #1e3b31;
  font-size: 1rem;
}

.note-card span {
  color: var(--muted);
  line-height: 1.7;
}

.load-card {
  border-width: 1px;
}

.load-good {
  border-color: rgba(155, 242, 208, 0.35);
  background: rgba(155, 242, 208, 0.12);
}

.load-tight {
  border-color: rgba(255, 228, 181, 0.45);
  background: rgba(255, 228, 181, 0.12);
}

.load-exceeded {
  border-color: rgba(255, 166, 166, 0.45);
  background: rgba(255, 166, 166, 0.12);
}

.load-unknown {
  border-color: rgba(213, 255, 238, 0.16);
  background: rgba(213, 255, 238, 0.06);
}
.support-card,
.contact-banner,
.footer-inner {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(213, 255, 238, 0.08);
  background: rgba(216, 255, 240, 0.06);
}

.support-card {
  display: grid;
  gap: 12px;
}

.support-card p,
.footer-inner p,
.contact-banner p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 30px 0 50px;
}

.footer-inner {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(246, 255, 251, 0.68), rgba(170, 220, 201, 0.9)),
    rgba(205, 237, 225, 0.94);
  border: 1px solid rgba(91, 181, 146, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 24px rgba(16, 40, 33, 0.12);
  flex: 0 0 auto;
}

.footer-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
}

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

.process-list li {
  position: relative;
  padding: 0 0 22px 86px;
  border-bottom: 1px solid rgba(213, 255, 238, 0.12);
}

.process-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 0;
  top: -4px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(186, 245, 223, 0.84), rgba(98, 197, 164, 0.58));
  color: #173d31;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.process-list {
  counter-reset: process;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.process-list p {
  color: rgba(241, 255, 249, 0.94);
  max-width: 52rem;
}

.result-line {
  padding-top: 14px;
  border-top: 1px solid rgba(213, 255, 238, 0.08);
}

.status-good {
  color: var(--mint-bright);
}

.status-warn {
  color: var(--warning);
}

.empty-state {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(213, 255, 238, 0.18);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .estimate-layout,
  .hero-metrics,
  .trust-grid,
  .card-grid,
  .sources-grid,
  .contact-banner,
  .highlight-strip,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .forest-frame,
  .forest-frame img {
    min-height: 560px;
  }

  .trust-grid > :last-child,
  .card-grid > :first-child {
    grid-column: auto;
  }

  .install-shot {
    flex-basis: 320px;
    height: 250px;
  }
}

@media (max-width: 840px) {
  .site-shell {
    padding: 18px;
  }

  .topbar,
  .hero,
  .section,
  .section-tight {
    width: min(1380px, calc(100vw - 36px));
  }

  .topbar {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    padding: 12px 14px;
    position: sticky;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(290px, calc(100vw - 36px));
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(91, 181, 146, 0.2);
    background: rgba(228, 243, 236, 0.98);
    box-shadow: 0 22px 44px rgba(7, 25, 21, 0.22);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 25;
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .topbar.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 16px;
  }

  .topbar-actions,
  .footer-inner,
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-actions {
    gap: 8px;
    justify-content: flex-end;
  }

  .topbar-actions .button-ghost {
    display: none;
  }

  .contact-pill {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
  }

  .rebate-toolbar,
  .form-grid,
  .photo-grid,
  .load-grid,
  .appliance-grid,
  .appliance-inputs,
  .county-picker {
    grid-template-columns: 1fr;
  }

  .cta-stack {
    flex-direction: column;
  }

  .hero-copy,
  .estimate-form,
  .estimate-output {
    padding: 32px;
  }

  .brand {
    margin-left: 0;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    box-shadow:
      0 0 0 7px rgba(7, 25, 21, 0.72),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  .page-hero {
    padding-top: 96px;
  }

  .process-list li {
    padding-left: 74px;
  }

  .install-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .install-marquee::-webkit-scrollbar {
    display: none;
  }

  .install-marquee::before,
  .install-marquee::after {
    display: none;
  }

  .install-track {
    width: max-content;
    animation: none !important;
    padding-right: 0;
  }

  .install-track .install-shot[aria-hidden="true"] {
    display: none;
  }

  .install-shot {
    flex-basis: 82vw;
    max-width: 420px;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }

  .install-marquee {
    scroll-snap-type: x proximity;
    scroll-padding-right: 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ambient-left {
    animation: drift 14s ease-in-out infinite alternate;
  }

  .ambient-right {
    animation: drift 18s ease-in-out infinite alternate-reverse;
  }

  .forest-frame::after {
    content: "";
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 20%;
    background: linear-gradient(180deg, rgba(219, 255, 243, 0.16), transparent);
    filter: blur(24px);
    animation: shimmer 7s ease-in-out infinite;
  }

  .install-track {
    animation: install-scroll 60s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .install-track {
    animation: none;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(20px, -18px, 0);
  }
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes install-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}
